diff --git a/.all-contributorsrc b/.all-contributorsrc
index 72d7f5c2d..76a5feded 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -1178,6 +1178,15 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "EmmanuelDemey",
+ "name": "Emmanuel DEMEY",
+ "avatar_url": "https://avatars.githubusercontent.com/u/555768?v=4",
+ "profile": "http://gillespie59.github.io/",
+ "contributions": [
+ "doc"
+ ]
}
],
"contributorsPerLine": 7,
diff --git a/.gitignore b/.gitignore
index a522c4666..96fd2f3e1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -65,4 +65,5 @@ tmpanalogapp*
~/.nvm/nvm.sh
.nx/cache
-.nx/workspace-data
\ No newline at end of file
+.nx/workspace-data
+vite.config.*.timestamp*
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 83fda9d15..36988bdef 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,27 @@
+## [1.9.2-beta.4](https://github.com/analogjs/analog/compare/v1.9.2-beta.3...v1.9.2-beta.4) (2024-11-05)
+
+### Bug Fixes
+
+- **platform:** exclude Nx package from Vite optimizations ([#1434](https://github.com/analogjs/analog/issues/1434)) ([c27a59e](https://github.com/analogjs/analog/commit/c27a59e91927fd12a270896e429fb1c4dc7c842a))
+
+## [1.9.2-beta.3](https://github.com/analogjs/analog/compare/v1.9.2-beta.2...v1.9.2-beta.3) (2024-11-04)
+
+### Bug Fixes
+
+- add support for Angular v19-rc.0 ([#1431](https://github.com/analogjs/analog/issues/1431)) ([68a7b1d](https://github.com/analogjs/analog/commit/68a7b1d04f9194d03b1040f8d121495e23f92b49))
+
+## [1.9.2-beta.2](https://github.com/analogjs/analog/compare/v1.9.2-beta.1...v1.9.2-beta.2) (2024-11-04)
+
+### Bug Fixes
+
+- **vite-plugin-angular:** add NODE_ENV check as fallback for production ([#1432](https://github.com/analogjs/analog/issues/1432)) ([763c797](https://github.com/analogjs/analog/commit/763c797c06a961132d10e9e7a8b56307b4860033))
+
+## [1.9.2-beta.1](https://github.com/analogjs/analog/compare/v1.9.1...v1.9.2-beta.1) (2024-10-30)
+
+### Bug Fixes
+
+- **vite-plugin-angular:** add define option for ngServerMode ([#1427](https://github.com/analogjs/analog/issues/1427)) ([b3a460f](https://github.com/analogjs/analog/commit/b3a460fe98efdc6a41fa7e8200a7bb5d6d27b54b))
+
## [1.9.1](https://github.com/analogjs/analog/compare/v1.9.0...v1.9.1) (2024-10-28)
### Bug Fixes
diff --git a/README.md b/README.md
index eb08c95ae..63d867fb8 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-[![All Contributors](https://img.shields.io/badge/all_contributors-124-orange.svg?style=flat-square)](#contributors-)
+[![All Contributors](https://img.shields.io/badge/all_contributors-125-orange.svg?style=flat-square)](#contributors-)
@@ -271,6 +271,7 @@ Thanks goes to these wonderful people for contributing to Analog ([emoji key](ht
Kilesh Maharjan 💻
Diego Jesús 💻 🚇
Rockerturner 💻
+ Emmanuel DEMEY 📖
diff --git a/apps/blog-app/src/vite-env.d.ts b/apps/blog-app/src/vite-env.d.ts
new file mode 100644
index 000000000..c08d88d48
--- /dev/null
+++ b/apps/blog-app/src/vite-env.d.ts
@@ -0,0 +1,9 @@
+///
+
+interface ImportMetaEnv {
+ readonly VITE_ANALOG_PUBLIC_BASE_URL: string;
+}
+
+interface ImportMeta {
+ readonly env: ImportMetaEnv;
+}
diff --git a/apps/blog-app/vite.config.ts b/apps/blog-app/vite.config.ts
index b163b0de2..7ac6dda09 100644
--- a/apps/blog-app/vite.config.ts
+++ b/apps/blog-app/vite.config.ts
@@ -1,6 +1,7 @@
///
import analog, { type PrerenderContentFile } from '@analogjs/platform';
+import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
import { defineConfig } from 'vite';
// Only run in Netlify CI
@@ -75,6 +76,7 @@ export default defineConfig(() => {
},
},
}),
+ nxViteTsPaths(),
],
};
});
diff --git a/apps/docs-app/docs/contributors.mdx b/apps/docs-app/docs/contributors.mdx
index 2bdfe6450..4f05b9144 100644
--- a/apps/docs-app/docs/contributors.mdx
+++ b/apps/docs-app/docs/contributors.mdx
@@ -218,6 +218,7 @@ Andres is a software engineer for HeroDevs, Angular and Firebase GDE.
Kilesh Maharjan 💻
Diego Jesús 💻 🚇
Rockerturner 💻
+ Emmanuel DEMEY 📖
diff --git a/apps/docs-app/docs/features/routing/middleware.md b/apps/docs-app/docs/features/routing/middleware.md
index b45130a58..bb1a50804 100644
--- a/apps/docs-app/docs/features/routing/middleware.md
+++ b/apps/docs-app/docs/features/routing/middleware.md
@@ -18,7 +18,7 @@ Middleware is defined using the `defineEventHandler` function.
```ts
import { defineEventHandler, sendRedirect, setHeaders } from 'h3';
-export default eventHandler((event) => {
+export default defineEventHandler((event) => {
if (event.node.req.originalUrl === '/checkout') {
console.log('event url', event.node.req.originalUrl);
diff --git a/apps/docs-app/i18n/de/docusaurus-plugin-content-docs/current/contributors.mdx b/apps/docs-app/i18n/de/docusaurus-plugin-content-docs/current/contributors.mdx
index 3fcc196b8..034787d9e 100644
--- a/apps/docs-app/i18n/de/docusaurus-plugin-content-docs/current/contributors.mdx
+++ b/apps/docs-app/i18n/de/docusaurus-plugin-content-docs/current/contributors.mdx
@@ -218,6 +218,7 @@ Andres ist Softwareentwickler für HeroDevs, Angular und Firebase GDE.
Kilesh Maharjan 💻
Diego Jesús 💻 🚇
Rockerturner 💻
+ Emmanuel DEMEY 📖
diff --git a/apps/docs-app/i18n/es/docusaurus-plugin-content-docs/current/contributors.mdx b/apps/docs-app/i18n/es/docusaurus-plugin-content-docs/current/contributors.mdx
index c334891f6..55718acee 100644
--- a/apps/docs-app/i18n/es/docusaurus-plugin-content-docs/current/contributors.mdx
+++ b/apps/docs-app/i18n/es/docusaurus-plugin-content-docs/current/contributors.mdx
@@ -218,6 +218,7 @@ Andres es un ingeniero en software para HeroDevs, GDE en Angular y Firebase.
Kilesh Maharjan 💻
Diego Jesús 💻 🚇
Rockerturner 💻
+ Emmanuel DEMEY 📖
diff --git a/jest.config.ts b/jest.config.ts
index d0dbd1b88..6b3f2d6e2 100644
--- a/jest.config.ts
+++ b/jest.config.ts
@@ -1,5 +1,5 @@
-import { getJestProjects } from '@nx/jest';
+import { getJestProjectsAsync } from '@nx/jest';
-export default {
- projects: getJestProjects(),
-};
+export default async () => ({
+ projects: await getJestProjectsAsync(),
+});
diff --git a/libs/card/src/lib/card/__snapshots__/card.component.spec.ts.snap b/libs/card/src/lib/card/__snapshots__/card.component.spec.ts.snap
index 70a70a94d..3237b131a 100644
--- a/libs/card/src/lib/card/__snapshots__/card.component.spec.ts.snap
+++ b/libs/card/src/lib/card/__snapshots__/card.component.spec.ts.snap
@@ -5,7 +5,6 @@ exports[`CardComponent > should create the app 1`] = `
card-works
diff --git a/nx.json b/nx.json
index 6adf1e2ed..b1142fb28 100644
--- a/nx.json
+++ b/nx.json
@@ -68,5 +68,6 @@
"projectSpecificFiles": []
},
"nxCloudAccessToken": "NDRkYzdkYmMtNDI3NS00MDI0LWFkMGQtMmI0Zjc2MTY2YzU0fHJlYWQtb25seQ==",
- "defaultBase": "main"
+ "defaultBase": "main",
+ "useLegacyCache": true
}
diff --git a/package.json b/package.json
index 663adf910..df2883ae6 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "analogjs-platform",
- "version": "1.9.1",
+ "version": "1.9.2-beta.4",
"license": "MIT",
"type": "module",
"scripts": {
@@ -41,23 +41,23 @@
},
"private": true,
"dependencies": {
- "@angular/animations": "^18.2.4",
- "@angular/cdk": "^18.2.4",
- "@angular/common": "^18.2.4",
- "@angular/compiler": "^18.2.4",
- "@angular/core": "^18.2.4",
- "@angular/forms": "^18.2.4",
- "@angular/material": "^18.2.4",
- "@angular/platform-browser": "^18.2.4",
- "@angular/platform-browser-dynamic": "^18.2.4",
- "@angular/platform-server": "^18.2.4",
- "@angular/router": "^18.2.4",
+ "@angular/animations": "^19.0.0-rc.0",
+ "@angular/cdk": "^19.0.0-rc.0",
+ "@angular/common": "^19.0.0-rc.0",
+ "@angular/compiler": "^19.0.0-rc.0",
+ "@angular/core": "^19.0.0-rc.0",
+ "@angular/forms": "^19.0.0-rc.0",
+ "@angular/material": "^19.0.0-rc.0",
+ "@angular/platform-browser": "^19.0.0-rc.0",
+ "@angular/platform-browser-dynamic": "^19.0.0-rc.0",
+ "@angular/platform-server": "^19.0.0-rc.0",
+ "@angular/router": "^19.0.0-rc.0",
"@astrojs/mdx": "^3.0.1",
"@astrojs/react": "^3.0.0",
"@babel/core": "^7.21.8",
"@mdx-js/react": "3.0.1",
- "@nx/angular": "19.5.3",
- "@nx/devkit": "19.5.3",
+ "@nx/angular": "20.0.8",
+ "@nx/devkit": "20.0.8",
"@trpc/client": "^10.25.0",
"@trpc/server": "^10.25.0",
"ajv-formats": "^2.1.1",
@@ -77,33 +77,33 @@
"ufo": "^1.5.4",
"xhr2": "^0.2.1",
"zod": "^3.23.8",
- "zone.js": "^0.14.10"
+ "zone.js": "^0.15.0"
},
"devDependencies": {
- "@angular-devkit/architect": "^0.1802.4",
- "@angular-devkit/build-angular": "^18.2.4",
- "@angular-devkit/core": "^18.2.4",
- "@angular-devkit/schematics": "^18.2.4",
+ "@angular-devkit/architect": "^0.1900.0-rc.0",
+ "@angular-devkit/build-angular": "^19.0.0-rc.0",
+ "@angular-devkit/core": "^19.0.0-rc.0",
+ "@angular-devkit/schematics": "^19.0.0-rc.0",
"@angular-eslint/eslint-plugin": "18.3.1",
"@angular-eslint/eslint-plugin-template": "18.3.1",
"@angular-eslint/template-parser": "18.3.1",
- "@angular/build": "^18.2.4",
- "@angular/cli": "~18.2.4",
- "@angular/compiler-cli": "^18.2.4",
- "@angular/language-service": "^18.2.4",
+ "@angular/build": "^19.0.0-rc.0",
+ "@angular/cli": "^19.0.0-rc.0",
+ "@angular/compiler-cli": "^19.0.0-rc.0",
+ "@angular/language-service": "^19.0.0-rc.0",
"@astrojs/markdown-component": "^1.0.5",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@netlify/functions": "^2.3.0",
- "@nx/cypress": "19.5.3",
- "@nx/eslint": "19.5.3",
- "@nx/eslint-plugin": "19.5.3",
- "@nx/jest": "19.5.3",
- "@nx/js": "19.5.3",
- "@nx/plugin": "19.5.3",
- "@nx/vite": "19.5.3",
- "@nx/web": "19.5.3",
- "@schematics/angular": "^18.2.4",
+ "@nx/cypress": "20.0.8",
+ "@nx/eslint": "20.0.8",
+ "@nx/eslint-plugin": "20.0.8",
+ "@nx/jest": "20.0.8",
+ "@nx/js": "20.0.8",
+ "@nx/plugin": "20.0.8",
+ "@nx/vite": "20.0.8",
+ "@nx/web": "20.0.8",
+ "@schematics/angular": "^19.0.0-rc.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
@@ -113,7 +113,7 @@
"@swc/helpers": "0.5.11",
"@types/babel__core": "^7.20.0",
"@types/hast": "^3.0.3",
- "@types/jest": "29.4.4",
+ "@types/jest": "29.5.14",
"@types/marked": "^5.0.0",
"@types/node": "18.19.15",
"@types/prismjs": "^1.26.0",
@@ -138,8 +138,8 @@
"fs-extra": "^11.1.1",
"h3": "^1.8.2",
"happy-dom": "^12.10.3",
- "jest": "^29.5.0",
- "jest-environment-jsdom": "^29.5.0",
+ "jest": "29.7.0",
+ "jest-environment-jsdom": "29.7.0",
"jsdom": "22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"kolorist": "^1.6.0",
@@ -147,9 +147,9 @@
"marked-mangle": "^1.1.7",
"marked-shiki": "^1.1.0",
"minimist": "^1.2.7",
- "ng-packagr": "^18.2.1",
+ "ng-packagr": "^19.0.0-rc.0",
"nitropack": "^2.9.7",
- "nx": "19.5.3",
+ "nx": "20.0.8",
"playwright": "^1.30.0",
"postcss": "^8.4.21",
"postcss-import": "~15.1.0",
@@ -171,7 +171,7 @@
"ts-jest": "29.1.0",
"ts-morph": "^21.0.1",
"ts-node": "10.9.1",
- "typescript": "5.4.3",
+ "typescript": "~5.5.0",
"vfile": "^6.0.3",
"vite": "^5.3.0",
"vite-plugin-eslint": "^1.8.1",
diff --git a/packages/astro-angular/package.json b/packages/astro-angular/package.json
index 875d92486..ce3132c46 100644
--- a/packages/astro-angular/package.json
+++ b/packages/astro-angular/package.json
@@ -1,6 +1,6 @@
{
"name": "@analogjs/astro-angular",
- "version": "1.9.1",
+ "version": "1.9.2-beta.4",
"description": "Use Angular components within Astro",
"type": "module",
"author": "Brandon Roberts ",
@@ -32,7 +32,7 @@
"url": "https://github.com/sponsors/brandonroberts"
},
"dependencies": {
- "@analogjs/vite-plugin-angular": "^1.9.1"
+ "@analogjs/vite-plugin-angular": "^1.9.2-beta.4"
},
"peerDependencies": {
"@angular-devkit/build-angular": ">=16.0.0",
diff --git a/packages/content/package.json b/packages/content/package.json
index 9ea5390ea..a6871d36e 100644
--- a/packages/content/package.json
+++ b/packages/content/package.json
@@ -1,6 +1,6 @@
{
"name": "@analogjs/content",
- "version": "1.9.1",
+ "version": "1.9.2-beta.4",
"description": "Content Rendering for Analog",
"type": "module",
"author": "Brandon Roberts ",
@@ -23,10 +23,10 @@
"url": "https://github.com/sponsors/brandonroberts"
},
"peerDependencies": {
- "@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
- "@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
- "@angular/platform-browser": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
- "@angular/router": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
+ "@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc.0",
+ "@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc.0",
+ "@angular/platform-browser": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc.0",
+ "@angular/router": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc.0",
"@nx/devkit": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0",
"front-matter": "^4.0.2",
"marked": ">=5.0.2",
diff --git a/packages/create-analog/package.json b/packages/create-analog/package.json
index c8e83f7b9..f3d2efa09 100644
--- a/packages/create-analog/package.json
+++ b/packages/create-analog/package.json
@@ -1,6 +1,6 @@
{
"name": "create-analog",
- "version": "1.9.1",
+ "version": "1.9.2-beta.4",
"type": "module",
"license": "MIT",
"author": "Brandon Roberts",
diff --git a/packages/create-analog/template-angular-v16/package.json b/packages/create-analog/template-angular-v16/package.json
index ec5431690..fd83409df 100644
--- a/packages/create-analog/template-angular-v16/package.json
+++ b/packages/create-analog/template-angular-v16/package.json
@@ -15,8 +15,8 @@
"test": "ng test"
},
"dependencies": {
- "@analogjs/content": "^1.9.1",
- "@analogjs/router": "^1.9.1",
+ "@analogjs/content": "^1.9.2-beta.4",
+ "@analogjs/router": "^1.9.2-beta.4",
"@angular/animations": "^16.2.0",
"@angular/common": "^16.2.0",
"@angular/compiler": "^16.2.0",
@@ -38,9 +38,9 @@
"zone.js": "~0.13.0"
},
"devDependencies": {
- "@analogjs/platform": "^1.9.1",
- "@analogjs/vite-plugin-angular": "^1.9.1",
- "@analogjs/vitest-angular": "^1.9.1",
+ "@analogjs/platform": "^1.9.2-beta.4",
+ "@analogjs/vite-plugin-angular": "^1.9.2-beta.4",
+ "@analogjs/vitest-angular": "^1.9.2-beta.4",
"@angular-devkit/build-angular": "^16.2.0",
"@angular/cli": "^16.2.0",
"@angular/compiler-cli": "^16.2.0",
diff --git a/packages/create-analog/template-angular-v17/package.json b/packages/create-analog/template-angular-v17/package.json
index f75ee1baf..258342b57 100644
--- a/packages/create-analog/template-angular-v17/package.json
+++ b/packages/create-analog/template-angular-v17/package.json
@@ -15,8 +15,8 @@
"test": "ng test"
},
"dependencies": {
- "@analogjs/content": "^1.9.1",
- "@analogjs/router": "^1.9.1",
+ "@analogjs/content": "^1.9.2-beta.4",
+ "@analogjs/router": "^1.9.2-beta.4",
"@angular/animations": "^17.2.0",
"@angular/common": "^17.2.0",
"@angular/compiler": "^17.2.0",
@@ -38,9 +38,9 @@
"zone.js": "~0.14.0"
},
"devDependencies": {
- "@analogjs/platform": "^1.9.1",
- "@analogjs/vite-plugin-angular": "^1.9.1",
- "@analogjs/vitest-angular": "^1.9.1",
+ "@analogjs/platform": "^1.9.2-beta.4",
+ "@analogjs/vite-plugin-angular": "^1.9.2-beta.4",
+ "@analogjs/vitest-angular": "^1.9.2-beta.4",
"@angular-devkit/build-angular": "^17.2.0",
"@angular/cli": "^17.2.0",
"@angular/compiler-cli": "^17.2.0",
diff --git a/packages/create-analog/template-blog/package.json b/packages/create-analog/template-blog/package.json
index 0850aa88d..8bdd36f27 100644
--- a/packages/create-analog/template-blog/package.json
+++ b/packages/create-analog/template-blog/package.json
@@ -15,8 +15,8 @@
"test": "ng test"
},
"dependencies": {
- "@analogjs/content": "^1.9.1",
- "@analogjs/router": "^1.9.1",
+ "@analogjs/content": "^1.9.2-beta.4",
+ "@analogjs/router": "^1.9.2-beta.4",
"@angular/animations": "^18.0.0",
"@angular/build": "^18.0.0",
"@angular/common": "^18.0.0",
@@ -36,9 +36,9 @@
"zone.js": "~0.14.0"
},
"devDependencies": {
- "@analogjs/platform": "^1.9.1",
- "@analogjs/vite-plugin-angular": "^1.9.1",
- "@analogjs/vitest-angular": "^1.9.1",
+ "@analogjs/platform": "^1.9.2-beta.4",
+ "@analogjs/vite-plugin-angular": "^1.9.2-beta.4",
+ "@analogjs/vitest-angular": "^1.9.2-beta.4",
"@angular/cli": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"jsdom": "^22.1.0",
diff --git a/packages/create-analog/template-latest/package.json b/packages/create-analog/template-latest/package.json
index e3d2b2152..f1fd65bba 100644
--- a/packages/create-analog/template-latest/package.json
+++ b/packages/create-analog/template-latest/package.json
@@ -15,8 +15,8 @@
},
"private": true,
"dependencies": {
- "@analogjs/content": "^1.9.1",
- "@analogjs/router": "^1.9.1",
+ "@analogjs/content": "^1.9.2-beta.4",
+ "@analogjs/router": "^1.9.2-beta.4",
"@angular/animations": "^18.0.0",
"@angular/build": "^18.0.0",
"@angular/common": "^18.0.0",
@@ -38,9 +38,9 @@
"zone.js": "~0.14.3"
},
"devDependencies": {
- "@analogjs/platform": "^1.9.1",
- "@analogjs/vite-plugin-angular": "^1.9.1",
- "@analogjs/vitest-angular": "^1.9.1",
+ "@analogjs/platform": "^1.9.2-beta.4",
+ "@analogjs/vite-plugin-angular": "^1.9.2-beta.4",
+ "@analogjs/vitest-angular": "^1.9.2-beta.4",
"@angular/cli": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"jsdom": "^22.0.0",
diff --git a/packages/create-analog/template-minimal/package.json b/packages/create-analog/template-minimal/package.json
index ed4d48279..56f6efd46 100644
--- a/packages/create-analog/template-minimal/package.json
+++ b/packages/create-analog/template-minimal/package.json
@@ -15,8 +15,8 @@
},
"private": true,
"dependencies": {
- "@analogjs/content": "^1.9.1",
- "@analogjs/router": "^1.9.1",
+ "@analogjs/content": "^1.9.2-beta.4",
+ "@analogjs/router": "^1.9.2-beta.4",
"@angular/animations": "^18.0.0",
"@angular/build": "^18.0.0",
"@angular/common": "^18.0.0",
@@ -38,9 +38,9 @@
"zone.js": "~0.14.3"
},
"devDependencies": {
- "@analogjs/platform": "^1.9.1",
- "@analogjs/vite-plugin-angular": "^1.9.1",
- "@analogjs/vitest-angular": "^1.9.1",
+ "@analogjs/platform": "^1.9.2-beta.4",
+ "@analogjs/vite-plugin-angular": "^1.9.2-beta.4",
+ "@analogjs/vitest-angular": "^1.9.2-beta.4",
"@angular/cli": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"typescript": "~5.4.2",
diff --git a/packages/platform/package.json b/packages/platform/package.json
index a838fd96b..a0bd86b40 100644
--- a/packages/platform/package.json
+++ b/packages/platform/package.json
@@ -1,6 +1,6 @@
{
"name": "@analogjs/platform",
- "version": "1.9.1",
+ "version": "1.9.2-beta.4",
"description": "The fullstack meta-framework for Angular",
"type": "module",
"author": "Brandon Roberts ",
@@ -29,8 +29,8 @@
},
"dependencies": {
"nitropack": "^2.9.0",
- "@analogjs/vite-plugin-angular": "^1.9.1",
- "@analogjs/vite-plugin-nitro": "^1.9.1",
+ "@analogjs/vite-plugin-angular": "^1.9.2-beta.4",
+ "@analogjs/vite-plugin-nitro": "^1.9.2-beta.4",
"vitefu": "^0.2.5"
},
"peerDependencies": {
diff --git a/packages/platform/src/lib/deps-plugin.ts b/packages/platform/src/lib/deps-plugin.ts
index 05305f76c..03e578bae 100644
--- a/packages/platform/src/lib/deps-plugin.ts
+++ b/packages/platform/src/lib/deps-plugin.ts
@@ -48,6 +48,7 @@ export function depsPlugin(options?: Options): Plugin[] {
'@nx/eslint',
'webpack',
'fsevents',
+ 'nx',
],
},
};
diff --git a/packages/platform/src/lib/platform-plugin.ts b/packages/platform/src/lib/platform-plugin.ts
index ee40ee1f1..5417f3cd6 100644
--- a/packages/platform/src/lib/platform-plugin.ts
+++ b/packages/platform/src/lib/platform-plugin.ts
@@ -10,6 +10,7 @@ import { clearClientPageEndpointsPlugin } from './clear-client-page-endpoint.js'
import { ssrXhrBuildPlugin } from './ssr/ssr-xhr-plugin.js';
import { depsPlugin } from './deps-plugin.js';
import { injectHTMLPlugin } from './ssr/inject-html-plugin.js';
+import { serverModePlugin } from '../server-mode-plugin.js';
export function platformPlugin(opts: Options = {}): Plugin[] {
const { ...platformOptions } = {
@@ -37,6 +38,7 @@ export function platformPlugin(opts: Options = {}): Plugin[] {
additionalContentDirs: platformOptions.additionalContentDirs,
...(opts?.vite ?? {}),
}),
+ serverModePlugin(),
ssrXhrBuildPlugin(),
clearClientPageEndpointsPlugin(),
];
diff --git a/packages/platform/src/server-mode-plugin.ts b/packages/platform/src/server-mode-plugin.ts
new file mode 100644
index 000000000..1beee0806
--- /dev/null
+++ b/packages/platform/src/server-mode-plugin.ts
@@ -0,0 +1,24 @@
+import { Plugin } from 'vite';
+
+/**
+ * This plugin ensures the ngServerMode flag is set
+ * during SSR. This should be revisited when Vite 6 lands
+ * with the new Environment API.
+ */
+export function serverModePlugin(): Plugin {
+ return {
+ name: 'analogjs-server-mode-plugin',
+ transform(code, id, options) {
+ if (
+ options?.ssr &&
+ (id.endsWith('platform-server.mjs') || id.endsWith('core.mjs'))
+ ) {
+ return {
+ code: code.replaceAll('ngServerMode', 'true'),
+ };
+ }
+
+ return;
+ },
+ };
+}
diff --git a/packages/router/package.json b/packages/router/package.json
index 2e2b111c7..6d09da972 100644
--- a/packages/router/package.json
+++ b/packages/router/package.json
@@ -1,6 +1,6 @@
{
"name": "@analogjs/router",
- "version": "1.9.1",
+ "version": "1.9.2-beta.4",
"description": "Filesystem-based routing for Angular",
"type": "module",
"author": "Brandon Roberts ",
@@ -24,9 +24,9 @@
"url": "https://github.com/sponsors/brandonroberts"
},
"peerDependencies": {
- "@analogjs/content": "^1.9.1",
- "@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
- "@angular/router": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
+ "@analogjs/content": "^1.9.2-beta.4",
+ "@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc.0",
+ "@angular/router": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc.0"
},
"dependencies": {
"tslib": "^2.0.0"
diff --git a/packages/trpc/package.json b/packages/trpc/package.json
index a03a18f14..b5cde31df 100644
--- a/packages/trpc/package.json
+++ b/packages/trpc/package.json
@@ -20,8 +20,8 @@
"url": "https://github.com/analogjs/analog.git"
},
"peerDependencies": {
- "@angular/common": "^16.0.0 || ^17.0.0 || ^18.0.0",
- "@angular/core": "^16.0.0 || ^17.0.0 || ^18.0.0",
+ "@angular/common": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc.0",
+ "@angular/core": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc.0",
"@trpc/client": "^10.25.0",
"@trpc/server": "^10.25.0",
"isomorphic-fetch": "^3.0.0",
diff --git a/packages/vite-plugin-angular/package.json b/packages/vite-plugin-angular/package.json
index e4aa6c31b..828ebb2b6 100644
--- a/packages/vite-plugin-angular/package.json
+++ b/packages/vite-plugin-angular/package.json
@@ -1,6 +1,6 @@
{
"name": "@analogjs/vite-plugin-angular",
- "version": "1.9.1",
+ "version": "1.9.2-beta.4",
"description": "Vite Plugin for Angular",
"type": "module",
"keywords": [
@@ -24,8 +24,8 @@
"url": "https://github.com/sponsors/brandonroberts"
},
"peerDependencies": {
- "@angular-devkit/build-angular": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
- "@angular/build": "^18.0.0"
+ "@angular-devkit/build-angular": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc.0",
+ "@angular/build": "^18.0.0 || ^19.0.0-rc.0"
},
"peerDependenciesMeta": {
"@angular-devkit/build-angular": {
diff --git a/packages/vite-plugin-angular/src/lib/angular-build-optimizer-plugin.ts b/packages/vite-plugin-angular/src/lib/angular-build-optimizer-plugin.ts
index 390ff3d93..423dddcc8 100644
--- a/packages/vite-plugin-angular/src/lib/angular-build-optimizer-plugin.ts
+++ b/packages/vite-plugin-angular/src/lib/angular-build-optimizer-plugin.ts
@@ -23,7 +23,9 @@ export function buildOptimizerPlugin({
name: '@analogjs/vite-plugin-angular-optimizer',
apply: 'build',
config(userConfig) {
- isProd = userConfig.mode === 'production';
+ isProd =
+ userConfig.mode === 'production' ||
+ process.env['NODE_ENV'] === 'production';
return {
define: isProd
@@ -31,6 +33,7 @@ export function buildOptimizerPlugin({
ngJitMode: 'false',
ngI18nClosureMode: 'false',
ngDevMode: 'false',
+ ngServerMode: `${!!userConfig.build?.ssr}`,
}
: {},
esbuild: {
@@ -39,6 +42,7 @@ export function buildOptimizerPlugin({
ngDevMode: 'false',
ngJitMode: 'false',
ngI18nClosureMode: 'false',
+ ngServerMode: `${!!userConfig.build?.ssr}`,
}
: undefined,
},
diff --git a/packages/vite-plugin-angular/src/lib/angular-vite-plugin.ts b/packages/vite-plugin-angular/src/lib/angular-vite-plugin.ts
index 1fa01ba82..e6da18911 100644
--- a/packages/vite-plugin-angular/src/lib/angular-vite-plugin.ts
+++ b/packages/vite-plugin-angular/src/lib/angular-vite-plugin.ts
@@ -161,7 +161,9 @@ export function angular(options?: PluginOptions): Plugin[] {
name: '@analogjs/vite-plugin-angular',
async config(config, { command }) {
watchMode = command === 'serve';
- isProd = config.mode === 'production';
+ isProd =
+ config.mode === 'production' ||
+ process.env['NODE_ENV'] === 'production';
pluginOptions.tsconfig =
options?.tsconfig ??
resolve(
diff --git a/packages/vite-plugin-nitro/package.json b/packages/vite-plugin-nitro/package.json
index d0d039655..0a4b76566 100644
--- a/packages/vite-plugin-nitro/package.json
+++ b/packages/vite-plugin-nitro/package.json
@@ -1,6 +1,6 @@
{
"name": "@analogjs/vite-plugin-nitro",
- "version": "1.9.1",
+ "version": "1.9.2-beta.4",
"description": "A Vite plugin for adding a nitro API server",
"type": "module",
"author": "Brandon Roberts ",
diff --git a/packages/vitest-angular/package.json b/packages/vitest-angular/package.json
index e09a88a32..cef1bfab7 100644
--- a/packages/vitest-angular/package.json
+++ b/packages/vitest-angular/package.json
@@ -1,6 +1,6 @@
{
"name": "@analogjs/vitest-angular",
- "version": "1.9.1",
+ "version": "1.9.2-beta.4",
"description": "Vitest Builder for Angular",
"type": "module",
"author": "Brandon Roberts ",
@@ -33,7 +33,7 @@
},
"peerDependencies": {
"@analogjs/vite-plugin-angular": "*",
- "@angular-devkit/architect": "^0.1500.0 || ^0.1600.0 || ^0.1700.0 || ^0.1800.0",
+ "@angular-devkit/architect": "^0.1500.0 || ^0.1600.0 || ^0.1700.0 || ^0.1800.0 || ^0.1900.0-rc.0",
"vitest": "^1.3.1 || ^2.0.0"
},
"ng-update": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index d716f9d75..42d605b73 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,44 +9,44 @@ importers:
.:
dependencies:
'@angular/animations':
- specifier: ^18.2.4
- version: 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
'@angular/cdk':
- specifier: ^18.2.4
- version: 18.2.4(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
'@angular/common':
- specifier: ^18.2.4
- version: 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
'@angular/compiler':
- specifier: ^18.2.4
- version: 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
'@angular/core':
- specifier: ^18.2.4
- version: 18.2.4(rxjs@7.8.1)(zone.js@0.14.10)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)
'@angular/forms':
- specifier: ^18.2.4
- version: 18.2.4(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
'@angular/material':
- specifier: ^18.2.4
- version: 18.2.4(pfg3bh4prbfez6sjttu64fyb3u)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(hk32twamtskxrqrnsb2jg7u53m)
'@angular/platform-browser':
- specifier: ^18.2.4
- version: 18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
'@angular/platform-browser-dynamic':
- specifier: ^18.2.4
- version: 18.2.4(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))
'@angular/platform-server':
- specifier: ^18.2.4
- version: 18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))
'@angular/router':
- specifier: ^18.2.4
- version: 18.2.4(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
'@astrojs/mdx':
specifier: ^3.0.1
- version: 3.0.1(astro@4.8.7(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)(typescript@5.4.3))
+ version: 3.0.1(astro@4.8.7(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)(typescript@5.5.4))
'@astrojs/react':
specifier: ^3.0.0
- version: 3.0.0(@types/react-dom@18.0.10)(@types/react@18.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
+ version: 3.0.0(@types/react-dom@18.0.10)(@types/react@18.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))
'@babel/core':
specifier: ^7.21.8
version: 7.21.8
@@ -54,11 +54,11 @@ importers:
specifier: 3.0.1
version: 3.0.1(@types/react@18.0.21)(react@18.3.1)
'@nx/angular':
- specifier: 19.5.3
- version: 19.5.3(@angular-devkit/build-angular@18.2.4(msxzxskjzouwjmooscvhcfgs3u))(@angular-devkit/core@18.2.4(chokidar@3.6.0))(@angular-devkit/schematics@18.2.4(chokidar@3.6.0))(@babel/traverse@7.25.6)(@schematics/angular@18.2.4(chokidar@3.6.0))(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(esbuild@0.19.5)(eslint@8.57.0)(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(rxjs@7.8.1)(typescript@5.4.3)
+ specifier: 20.0.8
+ version: 20.0.8(@angular-devkit/build-angular@19.0.0-rc.0(nsmkqsfxcv5d74cmjogqx5r2fe))(@angular-devkit/core@19.0.0-rc.0)(@angular-devkit/schematics@19.0.0-rc.0)(@babel/traverse@7.25.9)(@schematics/angular@19.0.0-rc.0)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(esbuild@0.19.5)(eslint@8.57.0)(html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rxjs@7.8.1)(typescript@5.5.4)
'@nx/devkit':
- specifier: 19.5.3
- version: 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ specifier: 20.0.8
+ version: 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
'@trpc/client':
specifier: ^10.25.0
version: 10.25.0(@trpc/server@10.25.0)
@@ -117,42 +117,42 @@ importers:
specifier: ^3.23.8
version: 3.23.8
zone.js:
- specifier: ^0.14.10
- version: 0.14.10
+ specifier: ^0.15.0
+ version: 0.15.0
devDependencies:
'@angular-devkit/architect':
- specifier: ^0.1802.4
- version: 0.1802.4(chokidar@3.6.0)
+ specifier: ^0.1900.0-rc.0
+ version: 0.1900.0-rc.0
'@angular-devkit/build-angular':
- specifier: ^18.2.4
- version: 18.2.4(msxzxskjzouwjmooscvhcfgs3u)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(nsmkqsfxcv5d74cmjogqx5r2fe)
'@angular-devkit/core':
- specifier: ^18.2.4
- version: 18.2.4(chokidar@3.6.0)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0
'@angular-devkit/schematics':
- specifier: ^18.2.4
- version: 18.2.4(chokidar@3.6.0)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0
'@angular-eslint/eslint-plugin':
specifier: 18.3.1
- version: 18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)
+ version: 18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
'@angular-eslint/eslint-plugin-template':
specifier: 18.3.1
- version: 18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)
+ version: 18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
'@angular-eslint/template-parser':
specifier: 18.3.1
- version: 18.3.1(eslint@8.57.0)(typescript@5.4.3)
+ version: 18.3.1(eslint@8.57.0)(typescript@5.5.4)
'@angular/build':
- specifier: ^18.2.4
- version: 18.2.4(@angular/compiler-cli@18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3))(@angular/platform-server@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))))(@types/node@18.19.15)(chokidar@3.6.0)(less@4.1.3)(postcss@8.4.38)(stylus@0.59.0)(tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)))(terser@5.31.6)(typescript@5.4.3)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(lkxsnzd7gbjrgxt3dmtisn4bda)
'@angular/cli':
- specifier: ~18.2.4
- version: 18.2.4(chokidar@3.6.0)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@types/node@18.19.15)
'@angular/compiler-cli':
- specifier: ^18.2.4
- version: 18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4)
'@angular/language-service':
- specifier: ^18.2.4
- version: 18.2.4
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0
'@astrojs/markdown-component':
specifier: ^1.0.5
version: 1.0.5
@@ -166,47 +166,47 @@ importers:
specifier: ^2.3.0
version: 2.3.0
'@nx/cypress':
- specifier: 19.5.3
- version: 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(cypress@13.14.2)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
+ specifier: 20.0.8
+ version: 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(cypress@13.14.2)(eslint@8.57.0)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
'@nx/eslint':
- specifier: 19.5.3
- version: 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ specifier: 20.0.8
+ version: 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
'@nx/eslint-plugin':
- specifier: 19.5.3
- version: 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.4.3))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
+ specifier: 20.0.8
+ version: 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.5.4))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
'@nx/jest':
- specifier: 19.5.3
- version: 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@5.4.3)
+ specifier: 20.0.8
+ version: 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))(typescript@5.5.4)
'@nx/js':
- specifier: 19.5.3
- version: 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
+ specifier: 20.0.8
+ version: 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
'@nx/plugin':
- specifier: 19.5.3
- version: 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@5.4.3)
+ specifier: 20.0.8
+ version: 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))(typescript@5.5.4)
'@nx/vite':
- specifier: 19.5.3
- version: 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))(vitest@1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
+ specifier: 20.0.8
+ version: 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))(vitest@1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))
'@nx/web':
- specifier: 19.5.3
- version: 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
+ specifier: 20.0.8
+ version: 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
'@schematics/angular':
- specifier: ^18.2.4
- version: 18.2.4(chokidar@3.6.0)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0
'@semantic-release/changelog':
specifier: ^6.0.3
- version: 6.0.3(semantic-release@22.0.12(typescript@5.4.3))
+ version: 6.0.3(semantic-release@22.0.12(typescript@5.5.4))
'@semantic-release/exec':
specifier: ^6.0.3
- version: 6.0.3(semantic-release@22.0.12(typescript@5.4.3))
+ version: 6.0.3(semantic-release@22.0.12(typescript@5.5.4))
'@semantic-release/git':
specifier: ^10.0.1
- version: 10.0.1(semantic-release@22.0.12(typescript@5.4.3))
+ version: 10.0.1(semantic-release@22.0.12(typescript@5.5.4))
'@swc-node/register':
specifier: 1.9.2
- version: 1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3)
+ version: 1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4)
'@swc/cli':
specifier: 0.3.12
- version: 0.3.12(@swc/core@1.5.7(@swc/helpers@0.5.11))(chokidar@3.6.0)
+ version: 0.3.12(@swc/core@1.5.7(@swc/helpers@0.5.11))
'@swc/core':
specifier: 1.5.7
version: 1.5.7(@swc/helpers@0.5.11)
@@ -220,8 +220,8 @@ importers:
specifier: ^3.0.3
version: 3.0.3
'@types/jest':
- specifier: 29.4.4
- version: 29.4.4
+ specifier: 29.5.14
+ version: 29.5.14
'@types/marked':
specifier: ^5.0.0
version: 5.0.0
@@ -239,19 +239,19 @@ importers:
version: 18.0.10
'@typescript-eslint/eslint-plugin':
specifier: 7.4.0
- version: 7.4.0(@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)
+ version: 7.4.0(@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
'@typescript-eslint/parser':
specifier: 7.4.0
- version: 7.4.0(eslint@8.57.0)(typescript@5.4.3)
+ version: 7.4.0(eslint@8.57.0)(typescript@5.5.4)
'@typescript-eslint/utils':
specifier: ^8.0.0-alpha.28
- version: 8.5.0(eslint@8.57.0)(typescript@5.4.3)
+ version: 8.5.0(eslint@8.57.0)(typescript@5.5.4)
all-contributors-cli:
specifier: ^6.24.0
version: 6.24.0(encoding@0.1.13)
astro:
specifier: 4.8.7
- version: 4.8.7(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)(typescript@5.4.3)
+ version: 4.8.7(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)(typescript@5.5.4)
autoprefixer:
specifier: ^10.4.19
version: 10.4.19(postcss@8.4.38)
@@ -295,10 +295,10 @@ importers:
specifier: ^12.10.3
version: 12.10.3
jest:
- specifier: ^29.5.0
- version: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ specifier: 29.7.0
+ version: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
jest-environment-jsdom:
- specifier: ^29.5.0
+ specifier: 29.7.0
version: 29.7.0
jsdom:
specifier: 22.1.0
@@ -322,14 +322,14 @@ importers:
specifier: ^1.2.7
version: 1.2.7
ng-packagr:
- specifier: ^18.2.1
- version: 18.2.1(@angular/compiler-cli@18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3))(tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)))(tslib@2.7.0)(typescript@5.4.3)
+ specifier: ^19.0.0-rc.0
+ version: 19.0.0-rc.0(@angular/compiler-cli@19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)))(tslib@2.7.0)(typescript@5.5.4)
nitropack:
specifier: ^2.9.7
version: 2.9.7(encoding@0.1.13)(webpack-sources@3.2.3)
nx:
- specifier: 19.5.3
- version: 19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))
+ specifier: 20.0.8
+ version: 20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))
playwright:
specifier: ^1.30.0
version: 1.30.0
@@ -368,10 +368,10 @@ importers:
version: 0.3.2
semantic-release:
specifier: ^22.0.7
- version: 22.0.12(typescript@5.4.3)
+ version: 22.0.12(typescript@5.5.4)
semantic-release-replace-plugin:
specifier: ^1.2.7
- version: 1.2.7(semantic-release@22.0.12(typescript@5.4.3))
+ version: 1.2.7(semantic-release@22.0.12(typescript@5.5.4))
sharp:
specifier: ^0.33.5
version: 0.33.5
@@ -383,37 +383,37 @@ importers:
version: 1.15.5
tailwindcss:
specifier: ^3.1.0
- version: 3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ version: 3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
ts-jest:
specifier: 29.1.0
- version: 29.1.0(@babel/core@7.21.8)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.21.8))(esbuild@0.19.5)(jest@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)))(typescript@5.4.3)
+ version: 29.1.0(@babel/core@7.21.8)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.21.8))(esbuild@0.19.5)(jest@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)))(typescript@5.5.4)
ts-morph:
specifier: ^21.0.1
version: 21.0.1
ts-node:
specifier: 10.9.1
- version: 10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)
+ version: 10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)
typescript:
- specifier: 5.4.3
- version: 5.4.3
+ specifier: ~5.5.0
+ version: 5.5.4
vfile:
specifier: ^6.0.3
version: 6.0.3
vite:
specifier: ^5.3.0
- version: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ version: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.0)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
+ version: 1.8.1(eslint@8.57.0)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))
vite-tsconfig-paths:
specifier: 4.2.0
- version: 4.2.0(typescript@5.4.3)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
+ version: 4.2.0(typescript@5.5.4)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))
vitefu:
specifier: ^0.2.5
- version: 0.2.5(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
+ version: 0.2.5(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))
vitest:
specifier: 1.4.0
- version: 1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ version: 1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
webpack-bundle-analyzer:
specifier: ^4.7.0
version: 4.7.0
@@ -464,8 +464,8 @@ packages:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
- '@adobe/css-tools@4.3.1':
- resolution: {integrity: sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==}
+ '@adobe/css-tools@4.3.3':
+ resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
'@algolia/autocomplete-core@1.9.3':
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
@@ -547,27 +547,28 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@angular-devkit/architect@0.1802.4':
- resolution: {integrity: sha512-VH7AwGng1zuWPTJoH1IgHYeNhqZIgzlwDx39JPmArZAW/WZHDILWB7ipbTNw0R4U4VncrXJqDmMVex7NdHP6sg==}
+ '@angular-devkit/architect@0.1900.0-rc.0':
+ resolution: {integrity: sha512-BwuNv6q4yasl2TpaQORTscJpXC1Qkt4XNNYCX8cPBeIXtZNG8KNQ4gWdRqIj5TUzR+FGNDiutegh/f4+irHHhw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@angular-devkit/build-angular@18.2.4':
- resolution: {integrity: sha512-zLDstS95Yb7iBA1ZCYe3LsOLpIhr0ZC3sZ03PhVvAGbVRGSbQNnhQRZLKMk+LDhYJiG+eNFQGLfU3RfZrGds7A==}
+ '@angular-devkit/build-angular@19.0.0-rc.0':
+ resolution: {integrity: sha512-8Xq/Hq/8JaLQWp/MJuuDfmVLoi7WI1wVHmn6X8UnHfg5PgThKYQwGmlMDXGzpD9ZP7fuGkv0j1XvydQSx6DDPQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
- '@angular/compiler-cli': ^18.0.0
- '@angular/localize': ^18.0.0
- '@angular/platform-server': ^18.0.0
- '@angular/service-worker': ^18.0.0
- '@web/test-runner': ^0.18.0
+ '@angular/compiler-cli': ^19.0.0-next.0
+ '@angular/localize': ^19.0.0-next.0
+ '@angular/platform-server': ^19.0.0-next.0
+ '@angular/service-worker': ^19.0.0-next.0
+ '@angular/ssr': ^19.0.0-rc.0
+ '@web/test-runner': ^0.19.0
browser-sync: ^3.0.2
jest: ^29.5.0
jest-environment-jsdom: ^29.5.0
karma: ^6.3.0
- ng-packagr: ^18.0.0
+ ng-packagr: ^19.0.0-next.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0
- typescript: '>=5.4 <5.6'
+ typescript: '>=5.5 <5.7'
peerDependenciesMeta:
'@angular/localize':
optional: true
@@ -575,6 +576,8 @@ packages:
optional: true
'@angular/service-worker':
optional: true
+ '@angular/ssr':
+ optional: true
'@web/test-runner':
optional: true
browser-sync:
@@ -592,24 +595,24 @@ packages:
tailwindcss:
optional: true
- '@angular-devkit/build-webpack@0.1802.4':
- resolution: {integrity: sha512-juaDoguYccObm2xnzRDRlOtiL7ZyZcSAyiyls6QuO8hoo/h6phdHALJkUhI9+SIhCRQ6eUQtolC7hN3J+FZKnA==}
+ '@angular-devkit/build-webpack@0.1900.0-rc.0':
+ resolution: {integrity: sha512-8n5SGpX9HY88hf2e3VSlBpm2vDgAF9az2P3hzQhtetnbVav7hFReuROqIxQpbHfvFuadMC6DLF76xuJltc/oXg==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^5.0.2
- '@angular-devkit/core@18.2.4':
- resolution: {integrity: sha512-svlgZ0vbLrfNJAQE5WePAutcYIyA7C0OfzKSTMsfV2X1I+1blYDaZIu/ocnHqofMHu6ZqdSaaU/p/rieqU8fcA==}
+ '@angular-devkit/core@19.0.0-rc.0':
+ resolution: {integrity: sha512-O/vFkCcpF4MEpVkrigBPrOn9syrh7BBbYijMF526kHISdK/6BuLX9k+JMFaUjk7pOENDMg2BKtYGTDpeAvG4oQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
- chokidar: ^3.5.2
+ chokidar: ^4.0.0
peerDependenciesMeta:
chokidar:
optional: true
- '@angular-devkit/schematics@18.2.4':
- resolution: {integrity: sha512-s2WdUhyLlKj5kOjb6vrvJg9/31KvgyRJGjy7PnzS43tpwF9MLuM3AYhuJsXHPhx+i0nyWn/Jnd8ZLjMzXljSxg==}
+ '@angular-devkit/schematics@19.0.0-rc.0':
+ resolution: {integrity: sha512-S4wrEpVQw9GrkTiryWRWQCw+VnD45iOkirVd4h9x82Cb1899/UEzYEMCsh7uJfYBOWiLMIcR3dArDgg7GIID3A==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@angular-eslint/bundled-angular-compiler@18.3.1':
@@ -642,24 +645,26 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular/animations@18.2.4':
- resolution: {integrity: sha512-ajjXpLD+SyxbHnmhj2ZvYpXneviOjcBgU9L2UX4OVS0jVWxCNHLhJrcMqtqFHA6U5fPnhPNR9cmnt6tmqri0rA==}
+ '@angular/animations@19.0.0-rc.0':
+ resolution: {integrity: sha512-DPXHzid9xfPNgWzGXXh/r0OpPTPTsQfbWrZF9YXDNz0qxEjKPtTUqP0rOYmt1u0j93yA48iWI9tuZQNy+4XptQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
- '@angular/core': 18.2.4
+ '@angular/core': 19.0.0-rc.0
- '@angular/build@18.2.4':
- resolution: {integrity: sha512-GVs7O7wxNMJCkqh6Vv2u9GEArWg9jyEt8Fofd6CJGzxKBYQ4hR5gjzL/lU6kNFiMcioS1wm1f6qtJtgilUO+9A==}
+ '@angular/build@19.0.0-rc.0':
+ resolution: {integrity: sha512-k+l52iN5mGGEjPZTZnXoZXoyVabRvu46CxISEb+jSTV4/8WmHyoF8mINVjbpTIlrGpEaxjirm9Fd8c9+S1HIbA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
- '@angular/compiler-cli': ^18.0.0
- '@angular/localize': ^18.0.0
- '@angular/platform-server': ^18.0.0
- '@angular/service-worker': ^18.0.0
+ '@angular/compiler': ^19.0.0-next.9
+ '@angular/compiler-cli': ^19.0.0-next.9
+ '@angular/localize': ^19.0.0-next.9
+ '@angular/platform-server': ^19.0.0-next.9
+ '@angular/service-worker': ^19.0.0-next.9
+ '@angular/ssr': ^19.0.0-rc.0
less: ^4.2.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0
- typescript: '>=5.4 <5.6'
+ typescript: '>=5.5 <5.7'
peerDependenciesMeta:
'@angular/localize':
optional: true
@@ -667,6 +672,8 @@ packages:
optional: true
'@angular/service-worker':
optional: true
+ '@angular/ssr':
+ optional: true
less:
optional: true
postcss:
@@ -674,110 +681,110 @@ packages:
tailwindcss:
optional: true
- '@angular/cdk@18.2.4':
- resolution: {integrity: sha512-o+TuxZDqStfkviEkCR05pVyP6R2RIruEs/45Cms76hlsIheMoxRaxir/yrHdh4tZESJJhcO/EVE+aymNIRWAfg==}
+ '@angular/cdk@19.0.0-rc.0':
+ resolution: {integrity: sha512-PH1je7FXoooCuzEplz4rCwf5Bri53pdIgQhD162rxFBnwukvaU84jszss1EF0ERqsqGuLAehy4eAeY+GQhHKeQ==}
peerDependencies:
- '@angular/common': ^18.0.0 || ^19.0.0
- '@angular/core': ^18.0.0 || ^19.0.0
+ '@angular/common': ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
+ '@angular/core': ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/cli@18.2.4':
- resolution: {integrity: sha512-n+Y2xlgcpTZ+MZmycf2b3ceVvANDJFkDEodobVtyG63WvGOhkZ3aGhT7sHguKpAQwJLicSf8zF2z+v1Yi0DvRw==}
+ '@angular/cli@19.0.0-rc.0':
+ resolution: {integrity: sha512-dQXj0g4MXUo2CXe2YYsqbWM9W8hYNFIgiQgqBead+sXPv1RU0l4AhJzR2PQgBRc8kyzGSpKWgI/m0n2joDjQZA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
hasBin: true
- '@angular/common@18.2.4':
- resolution: {integrity: sha512-flUaKhdr8KvtjH0cLC6Rrjirt8GsiFlrmZLZplr784O3Gkei2VBBNFoopgmlEzbVGPiIG5QlFZH9yvah6JPQZw==}
+ '@angular/common@19.0.0-rc.0':
+ resolution: {integrity: sha512-a5biXAz9tNfRGAp4eRodjbTZ1ILBJrwnumjuwzyY5swlFRGXJ/VxZWiXVDNe+aoCkiJFOWAKpio6lDyn4qrgIw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
- '@angular/core': 18.2.4
+ '@angular/core': 19.0.0-rc.0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/compiler-cli@18.2.4':
- resolution: {integrity: sha512-BIp5zr+npqSs/4KWPxwKdn7+sjo008ieNOQDlXyQms9BKlxx/gDnj7W2TsxhrkDTYCIHF73fJZ7u2U8Qy4JWfw==}
+ '@angular/compiler-cli@19.0.0-rc.0':
+ resolution: {integrity: sha512-DsYk+br7qf0gng8asovez7V3TIuQTyauGeXhMzxnS8j1y4AFg5Nmog4U33Kj5lzikdf0c8KpZWjC2ctfG/RhGw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
hasBin: true
peerDependencies:
- '@angular/compiler': 18.2.4
- typescript: '>=5.4 <5.6'
+ '@angular/compiler': 19.0.0-rc.0
+ typescript: '>=5.5 <5.7'
- '@angular/compiler@18.2.4':
- resolution: {integrity: sha512-o3ngFr1Bjt7cKOu4DSZJGCUF9YPTxJee97wFon2eNFj6FFNTmnGwAvsnJjHBMmk90fmZLC2/HpPdhYz7WprMZQ==}
+ '@angular/compiler@19.0.0-rc.0':
+ resolution: {integrity: sha512-x9v1qUg8BPGNS5XqHV5Y/yRk31mq5wu9OOWbmN8wdOGcdPxiA6lq0Qs0tx4N/afHCwWNVI0T7TQm+ER5bVJBmw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
- '@angular/core': 18.2.4
+ '@angular/core': 19.0.0-rc.0
peerDependenciesMeta:
'@angular/core':
optional: true
- '@angular/core@18.2.4':
- resolution: {integrity: sha512-ulYmYpI/ZVQ5BL38rBy4DS/9wgGWmVD9Uo6tcrLqCzt1G1G2nKwseZv009536pHfk6dj2HdPSkpcerhWh57DWw==}
+ '@angular/core@19.0.0-rc.0':
+ resolution: {integrity: sha512-xC/p0NSzoxEqwIWhfLZ6NWdr8S579s/49pjISUELgFi58DFydddyOnT503T0v/ubFQ5CzVi/FxO/3WBQuW1ryA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
- zone.js: ~0.14.10
+ zone.js: ~0.15.0
- '@angular/forms@18.2.4':
- resolution: {integrity: sha512-rlLhReauUz6jhLCEkGabLqqF6xLaTfvxafuj2ojzcqoKGSZcXDIM/UOSoWX756B8NtrpsuglpGBZjZlsrAZGsg==}
+ '@angular/forms@19.0.0-rc.0':
+ resolution: {integrity: sha512-myWy7N1zhJSpNFkG7CjJopg8c3cS66r2+OI6DdX3TwlQwm0MeKQ9Z+BiEUeAmuTAIUGEaE6WY5TzdlQqZ8DIIg==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
- '@angular/common': 18.2.4
- '@angular/core': 18.2.4
- '@angular/platform-browser': 18.2.4
+ '@angular/common': 19.0.0-rc.0
+ '@angular/core': 19.0.0-rc.0
+ '@angular/platform-browser': 19.0.0-rc.0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/language-service@18.2.4':
- resolution: {integrity: sha512-Keg6n8u8xHLhRDTmx4hUqh1AtVFUt8hDxPMYSUu64czjOT5Dnh8XsgKagu563NEjxbDaCzttPuO+y3DlcaDZoQ==}
+ '@angular/language-service@19.0.0-rc.0':
+ resolution: {integrity: sha512-e4aHLmP4S7PyX3K240mK9bfX2qg0ddINuGaFUY+hph6m4E/PVl34yd2fQ9ksUO3IDd/0J8TBVWD7z4KOIE0SMQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
- '@angular/material@18.2.4':
- resolution: {integrity: sha512-F09145mI/EAHY9ngdnQTo3pFRmUoU/50i6cmddtL4cse0WidatoodQr0gZCksxhmpJgRy5mTcjh/LU2hShOgcA==}
+ '@angular/material@19.0.0-rc.0':
+ resolution: {integrity: sha512-BUuu4QOABhSKXiAZunhVuFBopClEoBjx5CNUfSBEvNNcCwbUJcYOESdw6ENxUButXNcoZ9+WlRpjTgGFP1+/8w==}
peerDependencies:
- '@angular/animations': ^18.0.0 || ^19.0.0
- '@angular/cdk': 18.2.4
- '@angular/common': ^18.0.0 || ^19.0.0
- '@angular/core': ^18.0.0 || ^19.0.0
- '@angular/forms': ^18.0.0 || ^19.0.0
- '@angular/platform-browser': ^18.0.0 || ^19.0.0
+ '@angular/animations': ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
+ '@angular/cdk': 19.0.0-rc.0
+ '@angular/common': ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
+ '@angular/core': ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
+ '@angular/forms': ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
+ '@angular/platform-browser': ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/platform-browser-dynamic@18.2.4':
- resolution: {integrity: sha512-0nA04zJueGzdnl37TJ7guDCrzxYS4fjqgvYKiOpFktpMHPuNrBlAQo5YA7u20HGFG3i47PQh7hEWhQaqcXXpQw==}
+ '@angular/platform-browser-dynamic@19.0.0-rc.0':
+ resolution: {integrity: sha512-/i7V6MacnaBhgdPmqrq5C9C1lKcUOSB0VLMZ6yEFy2xZFUMzxr0R9b15guw7VPT73TExjhPRegCrGMUKTKjIpQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
- '@angular/common': 18.2.4
- '@angular/compiler': 18.2.4
- '@angular/core': 18.2.4
- '@angular/platform-browser': 18.2.4
+ '@angular/common': 19.0.0-rc.0
+ '@angular/compiler': 19.0.0-rc.0
+ '@angular/core': 19.0.0-rc.0
+ '@angular/platform-browser': 19.0.0-rc.0
- '@angular/platform-browser@18.2.4':
- resolution: {integrity: sha512-ddzq5MyPvFyTv0kUe8U9fbhE1nZtLYBCFKDqICrzHXiVRAdqLv6qtE5PtbURrdspSy1u/YEGV4LdkNJK3UgnZQ==}
+ '@angular/platform-browser@19.0.0-rc.0':
+ resolution: {integrity: sha512-pJvAk0OMov95CzhHV2nIzQ7cJsEzFaScCikUrJrRHw1Za3gMc5jw0LJDaUjf+T712NoH0Wbh/eewlAxR/JbDbA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
- '@angular/animations': 18.2.4
- '@angular/common': 18.2.4
- '@angular/core': 18.2.4
+ '@angular/animations': 19.0.0-rc.0
+ '@angular/common': 19.0.0-rc.0
+ '@angular/core': 19.0.0-rc.0
peerDependenciesMeta:
'@angular/animations':
optional: true
- '@angular/platform-server@18.2.4':
- resolution: {integrity: sha512-ix4jyN+rzkeJ/aEiWcstRHy7C4j/Q+KrXGumRLwpCkNgFRaO8YKFGGivXuPQsViCJoUzPtHu0zptJa6zSVLxyw==}
+ '@angular/platform-server@19.0.0-rc.0':
+ resolution: {integrity: sha512-ne+/+OZSjhaVb/UmLJiIjXJzSgzPRdPGERRo05y19C6ioM7GUbTIr+AnmdpjgkKNL8Eyq3QNPO7+ngjvYZbB+A==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
- '@angular/animations': 18.2.4
- '@angular/common': 18.2.4
- '@angular/compiler': 18.2.4
- '@angular/core': 18.2.4
- '@angular/platform-browser': 18.2.4
+ '@angular/animations': 19.0.0-rc.0
+ '@angular/common': 19.0.0-rc.0
+ '@angular/compiler': 19.0.0-rc.0
+ '@angular/core': 19.0.0-rc.0
+ '@angular/platform-browser': 19.0.0-rc.0
- '@angular/router@18.2.4':
- resolution: {integrity: sha512-kYNHD3K1Xou2PRMqbG2tVahtMobgDlhwHdMB7G5oFHg6K13gQ2TmopF1U5A2wYtIMdsC+AkVGIJEOxQN8fmgcA==}
+ '@angular/router@19.0.0-rc.0':
+ resolution: {integrity: sha512-jCB2GDQH19iHX0flqF+y477WTpnZT+IppvptNHLc2f+estyZkLrxOqPqJ5QLnzUFcceE0Swb9LgLeoj2dnBduw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
- '@angular/common': 18.2.4
- '@angular/core': 18.2.4
- '@angular/platform-browser': 18.2.4
+ '@angular/common': 19.0.0-rc.0
+ '@angular/core': 19.0.0-rc.0
+ '@angular/platform-browser': 19.0.0-rc.0
rxjs: ^6.5.3 || ^7.4.0
'@astrojs/compiler@2.8.0':
@@ -838,6 +845,10 @@ packages:
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/compat-data@7.22.9':
resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
engines: {node: '>=6.9.0'}
@@ -846,6 +857,10 @@ packages:
resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==}
engines: {node: '>=6.9.0'}
+ '@babel/compat-data@7.26.2':
+ resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/core@7.21.8':
resolution: {integrity: sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==}
engines: {node: '>=6.9.0'}
@@ -858,6 +873,10 @@ packages:
resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/generator@7.22.9':
resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==}
engines: {node: '>=6.9.0'}
@@ -866,22 +885,30 @@ packages:
resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.25.0':
- resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==}
- engines: {node: '>=6.9.0'}
-
'@babel/generator@7.25.6':
resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.26.0':
+ resolution: {integrity: sha512-/AIkAmInnWwgEAJGQr9vY0c66Mj6kjkE2ZPB1PurTRaRAh3U+J45sAQMjQDJdh4WbR3l0x5xkimXBKyBXXAu2w==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-annotate-as-pure@7.24.7':
resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-annotate-as-pure@7.25.9':
+ resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-compilation-targets@7.22.10':
resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==}
engines: {node: '>=6.9.0'}
@@ -894,6 +921,10 @@ packages:
resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-create-class-features-plugin@7.24.5':
resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
engines: {node: '>=6.9.0'}
@@ -906,6 +937,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-create-class-features-plugin@7.25.9':
+ resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-create-regexp-features-plugin@7.22.15':
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
@@ -918,6 +955,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-create-regexp-features-plugin@7.25.9':
+ resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-define-polyfill-provider@0.6.2':
resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
@@ -951,6 +994,10 @@ packages:
resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-imports@7.22.5':
resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
engines: {node: '>=6.9.0'}
@@ -963,6 +1010,10 @@ packages:
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-transforms@7.22.9':
resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
engines: {node: '>=6.9.0'}
@@ -981,6 +1032,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-optimise-call-expression@7.22.5':
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
@@ -989,8 +1046,8 @@ packages:
resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.22.5':
- resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.24.5':
@@ -1001,18 +1058,34 @@ packages:
resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-plugin-utils@7.25.9':
+ resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-remap-async-to-generator@7.25.0':
resolution: {integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-remap-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-replace-supers@7.25.0':
resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-replace-supers@7.25.9':
+ resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-simple-access@7.22.5':
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
@@ -1025,6 +1098,10 @@ packages:
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-simple-access@7.25.9':
+ resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-skip-transparent-expression-wrappers@7.22.5':
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
@@ -1033,6 +1110,10 @@ packages:
resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-split-export-declaration@7.24.7':
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
@@ -1057,6 +1138,10 @@ packages:
resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-identifier@7.19.1':
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
@@ -1085,6 +1170,10 @@ packages:
resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-option@7.22.5':
resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
engines: {node: '>=6.9.0'}
@@ -1097,10 +1186,18 @@ packages:
resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-wrap-function@7.25.0':
resolution: {integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-wrap-function@7.25.9':
+ resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helpers@7.22.11':
resolution: {integrity: sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==}
engines: {node: '>=6.9.0'}
@@ -1113,6 +1210,10 @@ packages:
resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/highlight@7.22.13':
resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==}
engines: {node: '>=6.9.0'}
@@ -1163,36 +1264,71 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.26.2':
+ resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3':
resolution: {integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
+ resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0':
resolution: {integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
+ resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0':
resolution: {integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
+ resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7':
resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0':
resolution: {integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
+ resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-proposal-decorators@7.22.10':
resolution: {integrity: sha512-KxN6TqZzcFi4uD3UifqXElBTBNLAEH1l3vzMQj6JwJZbL2sZlThxSViOKCYY+4Ah4V4JhQ95IVB7s/Y6SJSlMQ==}
engines: {node: '>=6.9.0'}
@@ -1248,8 +1384,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.24.7':
- resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==}
+ '@babel/plugin-syntax-import-assertions@7.26.0':
+ resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1260,6 +1396,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-import-attributes@7.26.0':
+ resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-import-meta@7.10.4':
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
@@ -1342,138 +1484,276 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-arrow-functions@7.25.9':
+ resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-async-generator-functions@7.25.0':
resolution: {integrity: sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-generator-functions@7.25.9':
+ resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-async-to-generator@7.24.7':
resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-block-scoped-functions@7.24.7':
resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-block-scoped-functions@7.25.9':
+ resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-block-scoping@7.25.0':
resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-block-scoping@7.25.9':
+ resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-class-properties@7.25.4':
resolution: {integrity: sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-class-properties@7.25.9':
+ resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-class-static-block@7.24.7':
resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
+ '@babel/plugin-transform-class-static-block@7.26.0':
+ resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+
'@babel/plugin-transform-classes@7.25.4':
resolution: {integrity: sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-classes@7.25.9':
+ resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-computed-properties@7.24.7':
resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-computed-properties@7.25.9':
+ resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-destructuring@7.24.8':
resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-destructuring@7.25.9':
+ resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-dotall-regex@7.24.7':
resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-dotall-regex@7.25.9':
+ resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-duplicate-keys@7.24.7':
resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-duplicate-keys@7.25.9':
+ resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0':
resolution: {integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-transform-dynamic-import@7.24.7':
resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-dynamic-import@7.25.9':
+ resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-exponentiation-operator@7.24.7':
resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-exponentiation-operator@7.25.9':
+ resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-export-namespace-from@7.24.7':
resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-export-namespace-from@7.25.9':
+ resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-for-of@7.24.7':
resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-for-of@7.25.9':
+ resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-function-name@7.25.1':
resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-function-name@7.25.9':
+ resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-json-strings@7.24.7':
resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-json-strings@7.25.9':
+ resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-literals@7.25.2':
resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-literals@7.25.9':
+ resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-logical-assignment-operators@7.24.7':
resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9':
+ resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-member-expression-literals@7.24.7':
resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-member-expression-literals@7.25.9':
+ resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-amd@7.24.7':
resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-amd@7.25.9':
+ resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-commonjs@7.24.1':
resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
engines: {node: '>=6.9.0'}
@@ -1486,90 +1766,180 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-commonjs@7.25.9':
+ resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-systemjs@7.25.0':
resolution: {integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-systemjs@7.25.9':
+ resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-umd@7.24.7':
resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-umd@7.25.9':
+ resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-named-capturing-groups-regex@7.24.7':
resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-transform-new-target@7.24.7':
resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-new-target@7.25.9':
+ resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-nullish-coalescing-operator@7.24.7':
resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9':
+ resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-numeric-separator@7.24.7':
resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-numeric-separator@7.25.9':
+ resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-object-rest-spread@7.24.7':
resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-object-rest-spread@7.25.9':
+ resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-object-super@7.24.7':
resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-object-super@7.25.9':
+ resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-optional-catch-binding@7.24.7':
resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-optional-catch-binding@7.25.9':
+ resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-optional-chaining@7.24.8':
resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-parameters@7.24.7':
resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-parameters@7.25.9':
+ resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-private-methods@7.25.4':
resolution: {integrity: sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-private-methods@7.25.9':
+ resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-private-property-in-object@7.24.7':
resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-private-property-in-object@7.25.9':
+ resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-property-literals@7.24.7':
resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-property-literals@7.25.9':
+ resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-react-constant-elements@7.24.6':
resolution: {integrity: sha512-vQfyXRtG/kNIcTYRd/49uJnwvMig9X3R4XsTVXRml2RFupZFY+2RDuK+/ymb+MfX2WuIHAgUZc2xEvQrnI7QCg==}
engines: {node: '>=6.9.0'}
@@ -1624,38 +1994,86 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.24.7':
- resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
+ '@babel/plugin-transform-regenerator@7.25.9':
+ resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.24.7':
- resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==}
+ '@babel/plugin-transform-regexp-modifiers@7.26.0':
+ resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
- '@babel/plugin-transform-shorthand-properties@7.24.7':
- resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
+ '@babel/plugin-transform-reserved-words@7.24.7':
+ resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.24.7':
- resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
+ '@babel/plugin-transform-reserved-words@7.25.9':
+ resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.24.7':
- resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
+ '@babel/plugin-transform-runtime@7.24.7':
+ resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.24.7':
- resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
+ '@babel/plugin-transform-runtime@7.25.9':
+ resolution: {integrity: sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-shorthand-properties@7.24.7':
+ resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-shorthand-properties@7.25.9':
+ resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-spread@7.24.7':
+ resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-spread@7.25.9':
+ resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-sticky-regex@7.24.7':
+ resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-sticky-regex@7.25.9':
+ resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-template-literals@7.24.7':
+ resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-template-literals@7.25.9':
+ resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1666,6 +2084,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-typeof-symbol@7.25.9':
+ resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-typescript@7.22.11':
resolution: {integrity: sha512-0E4/L+7gfvHub7wsbTv03oRtD69X31LByy44fGmFzbZScpupFByMcgCJ0VbBTkzyjSJKuRoGN8tcijOWKTmqOA==}
engines: {node: '>=6.9.0'}
@@ -1678,30 +2102,60 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-escapes@7.25.9':
+ resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-unicode-property-regex@7.24.7':
resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-property-regex@7.25.9':
+ resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-unicode-regex@7.24.7':
resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-regex@7.25.9':
+ resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-unicode-sets-regex@7.25.4':
resolution: {integrity: sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9':
+ resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/preset-env@7.25.3':
resolution: {integrity: sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/preset-env@7.26.0':
+ resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/preset-modules@0.1.6-no-external-plugins':
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
@@ -1734,6 +2188,10 @@ packages:
resolution: {integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==}
engines: {node: '>=6.9.0'}
+ '@babel/runtime@7.26.0':
+ resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/template@7.22.5':
resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
engines: {node: '>=6.9.0'}
@@ -1746,6 +2204,10 @@ packages:
resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
engines: {node: '>=6.9.0'}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/traverse@7.22.11':
resolution: {integrity: sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==}
engines: {node: '>=6.9.0'}
@@ -1758,6 +2220,10 @@ packages:
resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.21.5':
resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==}
engines: {node: '>=6.9.0'}
@@ -1790,6 +2256,10 @@ packages:
resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
+ engines: {node: '>=6.9.0'}
+
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -2050,8 +2520,8 @@ packages:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
- '@discoveryjs/json-ext@0.6.1':
- resolution: {integrity: sha512-boghen8F0Q8D+0/Q1/1r6DUEieUJ8w2a1gIknExMSHBsJFOr2+0KUfHiVYBvucPwl3+RU5PFBK833FjFCh3BhA==}
+ '@discoveryjs/json-ext@0.6.3':
+ resolution: {integrity: sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==}
engines: {node: '>=14.17.0'}
'@docsearch/css@3.6.0':
@@ -2251,14 +2721,8 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.23.0':
- resolution: {integrity: sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [aix]
-
- '@esbuild/aix-ppc64@0.23.1':
- resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
+ '@esbuild/aix-ppc64@0.24.0':
+ resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -2281,14 +2745,8 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.23.0':
- resolution: {integrity: sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [android]
-
- '@esbuild/android-arm64@0.23.1':
- resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
+ '@esbuild/android-arm64@0.24.0':
+ resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -2311,14 +2769,8 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.23.0':
- resolution: {integrity: sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [android]
-
- '@esbuild/android-arm@0.23.1':
- resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
+ '@esbuild/android-arm@0.24.0':
+ resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -2341,14 +2793,8 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.23.0':
- resolution: {integrity: sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [android]
-
- '@esbuild/android-x64@0.23.1':
- resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
+ '@esbuild/android-x64@0.24.0':
+ resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -2371,14 +2817,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.23.0':
- resolution: {integrity: sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [darwin]
-
- '@esbuild/darwin-arm64@0.23.1':
- resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
+ '@esbuild/darwin-arm64@0.24.0':
+ resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -2401,14 +2841,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.23.0':
- resolution: {integrity: sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [darwin]
-
- '@esbuild/darwin-x64@0.23.1':
- resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
+ '@esbuild/darwin-x64@0.24.0':
+ resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -2431,14 +2865,8 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.23.0':
- resolution: {integrity: sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [freebsd]
-
- '@esbuild/freebsd-arm64@0.23.1':
- resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
+ '@esbuild/freebsd-arm64@0.24.0':
+ resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -2461,14 +2889,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.23.0':
- resolution: {integrity: sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [freebsd]
-
- '@esbuild/freebsd-x64@0.23.1':
- resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
+ '@esbuild/freebsd-x64@0.24.0':
+ resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -2491,14 +2913,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.23.0':
- resolution: {integrity: sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [linux]
-
- '@esbuild/linux-arm64@0.23.1':
- resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
+ '@esbuild/linux-arm64@0.24.0':
+ resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -2521,14 +2937,8 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.23.0':
- resolution: {integrity: sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [linux]
-
- '@esbuild/linux-arm@0.23.1':
- resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
+ '@esbuild/linux-arm@0.24.0':
+ resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -2551,14 +2961,8 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.23.0':
- resolution: {integrity: sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [linux]
-
- '@esbuild/linux-ia32@0.23.1':
- resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
+ '@esbuild/linux-ia32@0.24.0':
+ resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -2581,14 +2985,8 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.23.0':
- resolution: {integrity: sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==}
- engines: {node: '>=18'}
- cpu: [loong64]
- os: [linux]
-
- '@esbuild/linux-loong64@0.23.1':
- resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
+ '@esbuild/linux-loong64@0.24.0':
+ resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -2611,14 +3009,8 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.23.0':
- resolution: {integrity: sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==}
- engines: {node: '>=18'}
- cpu: [mips64el]
- os: [linux]
-
- '@esbuild/linux-mips64el@0.23.1':
- resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
+ '@esbuild/linux-mips64el@0.24.0':
+ resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -2641,14 +3033,8 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.23.0':
- resolution: {integrity: sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [linux]
-
- '@esbuild/linux-ppc64@0.23.1':
- resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
+ '@esbuild/linux-ppc64@0.24.0':
+ resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -2671,14 +3057,8 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.23.0':
- resolution: {integrity: sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==}
- engines: {node: '>=18'}
- cpu: [riscv64]
- os: [linux]
-
- '@esbuild/linux-riscv64@0.23.1':
- resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
+ '@esbuild/linux-riscv64@0.24.0':
+ resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -2701,14 +3081,8 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.23.0':
- resolution: {integrity: sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==}
- engines: {node: '>=18'}
- cpu: [s390x]
- os: [linux]
-
- '@esbuild/linux-s390x@0.23.1':
- resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
+ '@esbuild/linux-s390x@0.24.0':
+ resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -2731,14 +3105,8 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.23.0':
- resolution: {integrity: sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [linux]
-
- '@esbuild/linux-x64@0.23.1':
- resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
+ '@esbuild/linux-x64@0.24.0':
+ resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
@@ -2761,26 +3129,14 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.23.0':
- resolution: {integrity: sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [netbsd]
-
- '@esbuild/netbsd-x64@0.23.1':
- resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
+ '@esbuild/netbsd-x64@0.24.0':
+ resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.23.0':
- resolution: {integrity: sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [openbsd]
-
- '@esbuild/openbsd-arm64@0.23.1':
- resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
+ '@esbuild/openbsd-arm64@0.24.0':
+ resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
@@ -2803,14 +3159,8 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.23.0':
- resolution: {integrity: sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.23.1':
- resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
+ '@esbuild/openbsd-x64@0.24.0':
+ resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
@@ -2833,14 +3183,8 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.23.0':
- resolution: {integrity: sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [sunos]
-
- '@esbuild/sunos-x64@0.23.1':
- resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
+ '@esbuild/sunos-x64@0.24.0':
+ resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -2863,14 +3207,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.23.0':
- resolution: {integrity: sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [win32]
-
- '@esbuild/win32-arm64@0.23.1':
- resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
+ '@esbuild/win32-arm64@0.24.0':
+ resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -2893,14 +3231,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.23.0':
- resolution: {integrity: sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [win32]
-
- '@esbuild/win32-ia32@0.23.1':
- resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
+ '@esbuild/win32-ia32@0.24.0':
+ resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -2923,14 +3255,8 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.23.0':
- resolution: {integrity: sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [win32]
-
- '@esbuild/win32-x64@0.23.1':
- resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
+ '@esbuild/win32-x64@0.24.0':
+ resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
@@ -3089,61 +3415,89 @@ packages:
cpu: [x64]
os: [win32]
- '@inquirer/checkbox@2.5.0':
- resolution: {integrity: sha512-sMgdETOfi2dUHT8r7TT1BTKOwNvdDGFDXYWtQ2J69SvlYNntk9I/gJe7r5yvMwwsuKnYbuRs3pNhx4tgNck5aA==}
+ '@inquirer/checkbox@4.0.1':
+ resolution: {integrity: sha512-ehJjmNPdguajc1hStvjN7DJNVjwG5LC1mgGMGFjCmdkn2fxB2GtULftMnlaqNmvMdPpqdaSoOFpl86VkLtG4pQ==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+
+ '@inquirer/confirm@5.0.1':
+ resolution: {integrity: sha512-6ycMm7k7NUApiMGfVc32yIPp28iPKxhGRMqoNDiUjq2RyTAkbs5Fx0TdzBqhabcKvniDdAAvHCmsRjnNfTsogw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
- '@inquirer/confirm@3.1.22':
- resolution: {integrity: sha512-gsAKIOWBm2Q87CDfs9fEo7wJT3fwWIJfnDGMn9Qy74gBnNFOACDNfhUzovubbJjWnKLGBln7/NcSmZwj5DuEXg==}
+ '@inquirer/core@10.0.1':
+ resolution: {integrity: sha512-KKTgjViBQUi3AAssqjUFMnMO3CM3qwCHvePV9EW+zTKGKafFGFF01sc1yOIYjLJ7QU52G/FbzKc+c01WLzXmVQ==}
engines: {node: '>=18'}
- '@inquirer/core@9.1.0':
- resolution: {integrity: sha512-RZVfH//2ytTjmaBIzeKT1zefcQZzuruwkpTwwbe/i2jTl4o9M+iML5ChULzz6iw1Ok8iUBBsRCjY2IEbD8Ft4w==}
+ '@inquirer/editor@4.0.1':
+ resolution: {integrity: sha512-qAHHJ6hs343eNtCKgV2wV5CImFxYG8J1pl/YCeI5w9VoW7QpulRUU26+4NsMhjR6zDRjKBsH/rRjCIcaAOHsrg==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
- '@inquirer/editor@2.2.0':
- resolution: {integrity: sha512-9KHOpJ+dIL5SZli8lJ6xdaYLPPzB8xB9GZItg39MBybzhxA16vxmszmQFrRwbOA918WA2rvu8xhDEg/p6LXKbw==}
+ '@inquirer/expand@4.0.1':
+ resolution: {integrity: sha512-9anjpdc802YInXekwePsa5LWySzVMHbhVS6v6n5IJxrl8w09mODOeP69wZ1d0WrOvot2buQSmYp4lW/pq8y+zQ==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
- '@inquirer/expand@2.3.0':
- resolution: {integrity: sha512-qnJsUcOGCSG1e5DTOErmv2BPQqrtT6uzqn1vI/aYGiPKq+FgslGZmtdnXbhuI7IlT7OByDoEEqdnhUnVR2hhLw==}
+ '@inquirer/figures@1.0.7':
+ resolution: {integrity: sha512-m+Trk77mp54Zma6xLkLuY+mvanPxlE4A7yNKs2HBiyZ4UkVs28Mv5c/pgWrHeInx+USHeX/WEPzjrWrcJiQgjw==}
engines: {node: '>=18'}
- '@inquirer/figures@1.0.5':
- resolution: {integrity: sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==}
+ '@inquirer/input@4.0.1':
+ resolution: {integrity: sha512-m+SliZ2m43cDRIpAdQxfv5QOeAQCuhS8TGLvtzEP1An4IH1kBES4RLMRgE/fC+z29aN8qYG8Tq/eXQQKTYwqAg==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
- '@inquirer/input@2.3.0':
- resolution: {integrity: sha512-XfnpCStx2xgh1LIRqPXrTNEEByqQWoxsWYzNRSEUxJ5c6EQlhMogJ3vHKu8aXuTacebtaZzMAHwEL0kAflKOBw==}
+ '@inquirer/number@3.0.1':
+ resolution: {integrity: sha512-gF3erqfm0snpwBjbyKXUUe17QJ7ebm49btXApajrM0rgCCoYX0o9W5NCuYNae87iPxaIJVjtuoQ42DX32IdbMA==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
- '@inquirer/number@1.1.0':
- resolution: {integrity: sha512-ilUnia/GZUtfSZy3YEErXLJ2Sljo/mf9fiKc08n18DdwdmDbOzRcTv65H1jjDvlsAuvdFXf4Sa/aL7iw/NanVA==}
+ '@inquirer/password@4.0.1':
+ resolution: {integrity: sha512-D7zUuX4l4ZpL3D7/SWu9ibijP09jigwHi/gfUHLx5GMS5oXzuMfPV2xPMG1tskco4enTx70HA0VtMXecerpvbg==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
- '@inquirer/password@2.2.0':
- resolution: {integrity: sha512-5otqIpgsPYIshqhgtEwSspBQE40etouR8VIxzpJkv9i0dVHIpyhiivbkH9/dGiMLdyamT54YRdGJLfl8TFnLHg==}
+ '@inquirer/prompts@7.0.1':
+ resolution: {integrity: sha512-cu2CpGC2hz7WTt2VBvdkzahDvYice6vYA/8Dm7Fy3tRNzKuQTF2EY3CV4H2GamveWE6tA2XzyXtbWX8+t4WMQg==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
- '@inquirer/prompts@5.3.8':
- resolution: {integrity: sha512-b2BudQY/Si4Y2a0PdZZL6BeJtl8llgeZa7U2j47aaJSCeAl1e4UI7y8a9bSkO3o/ZbZrgT5muy/34JbsjfIWxA==}
+ '@inquirer/rawlist@4.0.1':
+ resolution: {integrity: sha512-0LuMOgaWs7W8JNcbiKkoFwyWFDEeCmLqDCygF0hidQUVa6J5grFVRZxrpompiWDFM49Km2rf7WoZwRo1uf1yWQ==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
- '@inquirer/rawlist@2.3.0':
- resolution: {integrity: sha512-zzfNuINhFF7OLAtGHfhwOW2TlYJyli7lOUoJUXw/uyklcwalV6WRXBXtFIicN8rTRK1XTiPWB4UY+YuW8dsnLQ==}
+ '@inquirer/search@3.0.1':
+ resolution: {integrity: sha512-ehMqjiO0pAf+KtdONKeCLVy4i3fy3feyRRhDrvzWhiwB8JccgKn7eHFr39l+Nx/FaZAhr0YxIJvkK5NuNvG+Ww==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
- '@inquirer/search@1.1.0':
- resolution: {integrity: sha512-h+/5LSj51dx7hp5xOn4QFnUaKeARwUCLs6mIhtkJ0JYPBLmEYjdHSYh7I6GrLg9LwpJ3xeX0FZgAG1q0QdCpVQ==}
+ '@inquirer/select@4.0.1':
+ resolution: {integrity: sha512-tVRatFRGU49bxFCKi/3P+C0E13KZduNFbWuHWRx0L2+jbiyKRpXgHp9qiRHWRk/KarhYBXzH/di6w3VQ5aJd5w==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
- '@inquirer/select@2.5.0':
- resolution: {integrity: sha512-YmDobTItPP3WcEI86GvPo+T2sRHkxxOq/kXmsBjHS5BVXUgvgZ5AfJjkvQvZr03T81NnI3KrrRuMzeuYUQRFOA==}
+ '@inquirer/type@1.5.5':
+ resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==}
engines: {node: '>=18'}
- '@inquirer/type@1.5.3':
- resolution: {integrity: sha512-xUQ14WQGR/HK5ei+2CvgcwoH9fQ4PgPGmVFSN0pc1+fVyDL3MREhyAY7nxEErSu6CkllBM3D7e3e+kOvtu+eIg==}
+ '@inquirer/type@3.0.0':
+ resolution: {integrity: sha512-YYykfbw/lefC7yKj7nanzQXILM7r3suIvyFlCcMskc99axmsSewXWkAfXKwMbgxL76iAFVmRwmYdwNZNc8gjog==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
'@ioredis/commands@1.2.0':
resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
@@ -3152,6 +3506,10 @@ packages:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
+ '@isaacs/fs-minipass@4.0.1':
+ resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
+ engines: {node: '>=18.0.0'}
+
'@istanbuljs/load-nyc-config@1.1.0':
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
@@ -3296,39 +3654,39 @@ packages:
'@leichtgewicht/ip-codec@2.0.4':
resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
- '@listr2/prompt-adapter-inquirer@2.0.15':
- resolution: {integrity: sha512-MZrGem/Ujjd4cPTLYDfCZK2iKKeiO/8OX13S6jqxldLs0Prf2aGqVlJ77nMBqMv7fzqgXEgjrNHLXcKR8l9lOg==}
+ '@listr2/prompt-adapter-inquirer@2.0.17':
+ resolution: {integrity: sha512-RqeiaslWDOP6d5QqQdg+PxB3sC5QBTnti84LEzYtxRsQlHf5+IzFiJOhrnHIxuaEwtbtlU8pugIcc6e6lrobkQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
- '@inquirer/prompts': '>= 3 < 6'
+ '@inquirer/prompts': '>= 3 < 7'
- '@lmdb/lmdb-darwin-arm64@3.0.13':
- resolution: {integrity: sha512-uiKPB0Fv6WEEOZjruu9a6wnW/8jrjzlZbxXscMB8kuCJ1k6kHpcBnuvaAWcqhbI7rqX5GKziwWEdD+wi2gNLfA==}
+ '@lmdb/lmdb-darwin-arm64@3.1.3':
+ resolution: {integrity: sha512-VV667lP23gIsQkb80rnQwAHjj6F1uZp30qTnvLSlep3pOomzXcQBMFp4ZmJLeGJnnPy54JjNsYBFyg9X95wCPw==}
cpu: [arm64]
os: [darwin]
- '@lmdb/lmdb-darwin-x64@3.0.13':
- resolution: {integrity: sha512-bEVIIfK5mSQoG1R19qA+fJOvCB+0wVGGnXHT3smchBVahYBdlPn2OsZZKzlHWfb1E+PhLBmYfqB5zQXFP7hJig==}
+ '@lmdb/lmdb-darwin-x64@3.1.3':
+ resolution: {integrity: sha512-kuhKKJxGCQr9gBtUd7cVBBn6OtwQg7vIiD5gHEZb+jWLJulg6N4uPSLTab8W9tvpb3ryRTAejMt7F89/2MoRrQ==}
cpu: [x64]
os: [darwin]
- '@lmdb/lmdb-linux-arm64@3.0.13':
- resolution: {integrity: sha512-afbVrsMgZ9dUTNUchFpj5VkmJRxvht/u335jUJ7o23YTbNbnpmXif3VKQGCtnjSh+CZaqm6N3CPG8KO3zwyZ1Q==}
+ '@lmdb/lmdb-linux-arm64@3.1.3':
+ resolution: {integrity: sha512-XnSHGKsJ1Fr5LBjyDkG7JnVJlduhg7AhV1J6YQujStsKnehuiidsNW0InEJrAO4QMHqquwnCfLvU9PPJfpFVYw==}
cpu: [arm64]
os: [linux]
- '@lmdb/lmdb-linux-arm@3.0.13':
- resolution: {integrity: sha512-Yml1KlMzOnXj/tnW7yX8U78iAzTk39aILYvCPbqeewAq1kSzl+w59k/fiVkTBfvDi/oW/5YRxL+Fq+Y1Fr1r2Q==}
+ '@lmdb/lmdb-linux-arm@3.1.3':
+ resolution: {integrity: sha512-R0CkYoJPHUfxPe2LaAqMGwTf5+1eXchUMNISO8OKEvKkS/zg2emIYTOb29v1k8WGSmdJkgQneBav/W3h5NorzA==}
cpu: [arm]
os: [linux]
- '@lmdb/lmdb-linux-x64@3.0.13':
- resolution: {integrity: sha512-vOtxu0xC0SLdQ2WRXg8Qgd8T32ak4SPqk5zjItRszrJk2BdeXqfGxBJbP7o4aOvSPSmSSv46Lr1EP4HXU8v7Kg==}
+ '@lmdb/lmdb-linux-x64@3.1.3':
+ resolution: {integrity: sha512-epvFL9/Tem00evtuq05kqWbRppJ4G/D8wa6LnQmOu779VmbrY6+M3v3h4fnt2QqMQt3+J6Cg/gZACDlDcH+eUw==}
cpu: [x64]
os: [linux]
- '@lmdb/lmdb-win32-x64@3.0.13':
- resolution: {integrity: sha512-UCrMJQY/gJnOl3XgbWRZZUvGGBuKy6i0YNSptgMzHBjs+QYDYR1Mt/RLTOPy4fzzves65O1EDmlL//OzEqoLlA==}
+ '@lmdb/lmdb-win32-x64@3.1.3':
+ resolution: {integrity: sha512-S6P96biJyrt/CUYSP0v4OH1U9ITzHhHCh1kn7hHOscS3S1+T/D74sCJKQ9xb/Raos2NJHqtZ8EyQVEVjOzmqbg==}
cpu: [x64]
os: [win32]
@@ -3345,11 +3703,17 @@ packages:
'@types/react': '>=16'
react: '>=16'
- '@module-federation/bridge-react-webpack-plugin@0.2.8':
- resolution: {integrity: sha512-6G1qTo1HWvRcN5fzE+SZgvgzSPoq5YqNx8hFL8BttJmnd3wj4SUOFiikAsXhdVrzSK+Zuzg6pipkiLH1m+pbtw==}
+ '@module-federation/bridge-react-webpack-plugin@0.6.6':
+ resolution: {integrity: sha512-NANaSOKem+1t/Fbd1GjXnStJRe7O33ya+FR/yYkTUd1H5hmlzVDNo/lYxYuUl3O/gH9Lnlr2Gf9unyWoIW0wHw==}
- '@module-federation/dts-plugin@0.2.8':
- resolution: {integrity: sha512-qY1Wbqo0yu9nh6KR8K19t5T4tYtlUbmcNdcaCweISCyAbH99TrhpQkJ89NY0TLtnxQ6uayIYayqAWS7vzyDXVw==}
+ '@module-federation/data-prefetch@0.6.6':
+ resolution: {integrity: sha512-rakEHrg2pqbOqJ3uWT2p3kgTCOxBQdEIqmew3XBAXTZ0NblZtkXeMHupcW/W6+ccvbPdn/T/PSICx9HHSvfEVg==}
+ peerDependencies:
+ react: '>=16.9.0'
+ react-dom: '>=16.9.0'
+
+ '@module-federation/dts-plugin@0.6.6':
+ resolution: {integrity: sha512-sNCghGgrpCOOVk2xpzgAGAFeo2ONcv6eAnEfe7Q2gD7R6NrGgOrB5KVhN/uWIzFJG8tqNfSSjam+woTyrrayfg==}
peerDependencies:
typescript: ^4.9.0 || ^5.0.0
vue-tsc: '>=1.0.24'
@@ -3357,8 +3721,8 @@ packages:
vue-tsc:
optional: true
- '@module-federation/enhanced@0.2.8':
- resolution: {integrity: sha512-6fGM/GiKw6LZiBe6DF8Petz6ih/Yyf3q2htLrx+hrWoDWfWEoWlLvoCUsVkY2UgMCLKid7Fm3Auc4w8A4aRjvQ==}
+ '@module-federation/enhanced@0.6.6':
+ resolution: {integrity: sha512-gGU1tjaksk5Q5X2zpVb/OmlwvKwVVjTXreuFwkK0Z+9QKM9jbu0B/tPSh6sqibPFeu1yM2HOFlOHJhvFs1PmsA==}
peerDependencies:
typescript: ^4.9.0 || ^5.0.0
vue-tsc: '>=1.0.24'
@@ -3371,14 +3735,14 @@ packages:
webpack:
optional: true
- '@module-federation/managers@0.2.8':
- resolution: {integrity: sha512-S5GXqt2Vrs1+uNXHw7UzZ7m3fs8H3nxNsNGQ0j5+HiT5yA7uRTY1AZJZCGAHzG6XImJ1DzL/SW1acM2Hwj0aAw==}
+ '@module-federation/managers@0.6.6':
+ resolution: {integrity: sha512-ryj2twbQmo2KhwKn1xYivpaW94l5wfplDU9FwVvW0wc8hC2lJnuGhoiZqXKL7lNaBrZXge3b43Zlgx5OnFfr6A==}
- '@module-federation/manifest@0.2.8':
- resolution: {integrity: sha512-kw4PeAldkOuGCWfCnDzZwPHUx5qv9+WztY5+TEbsgXc5E+/e2NDA6Gg3eT8zUGeexeGdab3f+DuN9ZClZJYVGA==}
+ '@module-federation/manifest@0.6.6':
+ resolution: {integrity: sha512-45ol0fC8RS2d+0iEt5zdp0vctE2CiOfA2kCmOFz79K33occi8sKmyevfSeZGckZy54NiMnLFteIYBsyIa+g7gg==}
- '@module-federation/rspack@0.2.8':
- resolution: {integrity: sha512-5Bofm3cY7OOwO2DT5TevITd+HAA03zsY1wwsMb1BP6NkS/ukUtsjuRo2Anua0RkHBEIx+Dv5rpqOn7qSlOm1Fg==}
+ '@module-federation/rspack@0.6.6':
+ resolution: {integrity: sha512-30X6QPrJ/eCcmUL4GQ06Z9bQwURBnJI0607Fw2ufmAbhDA0PJFtg7NFFfXzsdChms1ACVbgvgfBH8SJg8j3wBg==}
peerDependencies:
typescript: ^4.9.0 || ^5.0.0
vue-tsc: '>=1.0.24'
@@ -3388,20 +3752,23 @@ packages:
vue-tsc:
optional: true
- '@module-federation/runtime-tools@0.2.8':
- resolution: {integrity: sha512-RSNtyhcNvnTQIdzRUIOGue6WQA/9mL9cY/n0dEd357L/lmLCvfHiZbowlkacckDzyApariUHxzkHrU2Q6kzoew==}
+ '@module-federation/runtime-tools@0.6.6':
+ resolution: {integrity: sha512-w2qHa41p6rADWMS1yBjpqNhaLZ4R5oRy9OYGPe6ywjh+8oqbiBl1CfQglcgEBIpHktEjV/upsgsnjHSdJBdeZw==}
- '@module-federation/runtime@0.2.8':
- resolution: {integrity: sha512-8xmA/+z1zD09F5qU8VnSWLExqTCVWoHOguXsCX79kkqp7i0c+D2YaebWzlQ2kku+DU+0VIzXpQ3BBcumZ3v3wQ==}
+ '@module-federation/runtime@0.6.6':
+ resolution: {integrity: sha512-QsKHUV2HALRzL6mPCdJEZTDuPReKC8MMXf+/VMCtQPp6JhLEjZIO06bfEZqXMbTbTYlMzntIwu1tGCbtJRZDOQ==}
- '@module-federation/sdk@0.2.8':
- resolution: {integrity: sha512-eGMnJxdRDgt6dtMv8gkAlzEbTPWVHb3AHUNUG0w56wcbIF0RHC6kmvpHpSQyq4DVGWv3U4g/ZiH5BvBlqEelDQ==}
+ '@module-federation/sdk@0.6.16':
+ resolution: {integrity: sha512-rzQH/v9bVc032lzV4j1IGYRc5gszwzBevYBBDJf3oNLwkY2kIDUJ99OWvq3aaPJoE0jEWPVe3K5iNc+dZe4tMQ==}
- '@module-federation/third-party-dts-extractor@0.2.8':
- resolution: {integrity: sha512-VGXvdsRlljbFUfGeA448CxR7i6fLWJN07ViRuNXYYXc19e4bQVhBHzrf7eCv9ahcf/tA/8YYCS2h11ixbD691A==}
+ '@module-federation/sdk@0.6.6':
+ resolution: {integrity: sha512-tUv2kPi0FvplcpGi/g4nITAYVAR1RUZ6QvP71T8inmRZSrfcvk1QpGJiL36IjuS67SM3VAoXS0iJ2WX1Rgjvhg==}
- '@module-federation/webpack-bundler-runtime@0.2.8':
- resolution: {integrity: sha512-tiW1kD/V3QNul1/O3Y3lwQv/r4sUU4jvWZykrLvHYt2vuoGe1d4tHnSIFEVEAi9FSpuDwdRK2+NaWBr92gIS7Q==}
+ '@module-federation/third-party-dts-extractor@0.6.6':
+ resolution: {integrity: sha512-xX9p17PpElzATNEulwlJJT731xST7T7OUIDSkkIghp/ICDmZd6WhYJvNBto7xbpaj5SIB7Ocdj4chNGv0xdYPw==}
+
+ '@module-federation/webpack-bundler-runtime@0.6.6':
+ resolution: {integrity: sha512-0UnY9m1fBgHwTpacYWbht1jB5X4Iqspiu1q8kfjUrv6y+R224//ydUFYYO8xfWx4V9SGQFKlU8XFH0FP/r0Hng==}
'@mole-inc/bin-wrapper@8.0.1':
resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==}
@@ -3437,6 +3804,106 @@ packages:
cpu: [x64]
os: [win32]
+ '@napi-rs/nice-android-arm-eabi@1.0.1':
+ resolution: {integrity: sha512-5qpvOu5IGwDo7MEKVqqyAxF90I6aLj4n07OzpARdgDRfz8UbBztTByBp0RC59r3J1Ij8uzYi6jI7r5Lws7nn6w==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [android]
+
+ '@napi-rs/nice-android-arm64@1.0.1':
+ resolution: {integrity: sha512-GqvXL0P8fZ+mQqG1g0o4AO9hJjQaeYG84FRfZaYjyJtZZZcMjXW5TwkL8Y8UApheJgyE13TQ4YNUssQaTgTyvA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [android]
+
+ '@napi-rs/nice-darwin-arm64@1.0.1':
+ resolution: {integrity: sha512-91k3HEqUl2fsrz/sKkuEkscj6EAj3/eZNCLqzD2AA0TtVbkQi8nqxZCZDMkfklULmxLkMxuUdKe7RvG/T6s2AA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@napi-rs/nice-darwin-x64@1.0.1':
+ resolution: {integrity: sha512-jXnMleYSIR/+TAN/p5u+NkCA7yidgswx5ftqzXdD5wgy/hNR92oerTXHc0jrlBisbd7DpzoaGY4cFD7Sm5GlgQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@napi-rs/nice-freebsd-x64@1.0.1':
+ resolution: {integrity: sha512-j+iJ/ezONXRQsVIB/FJfwjeQXX7A2tf3gEXs4WUGFrJjpe/z2KB7sOv6zpkm08PofF36C9S7wTNuzHZ/Iiccfw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@napi-rs/nice-linux-arm-gnueabihf@1.0.1':
+ resolution: {integrity: sha512-G8RgJ8FYXYkkSGQwywAUh84m946UTn6l03/vmEXBYNJxQJcD+I3B3k5jmjFG/OPiU8DfvxutOP8bi+F89MCV7Q==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@napi-rs/nice-linux-arm64-gnu@1.0.1':
+ resolution: {integrity: sha512-IMDak59/W5JSab1oZvmNbrms3mHqcreaCeClUjwlwDr0m3BoR09ZiN8cKFBzuSlXgRdZ4PNqCYNeGQv7YMTjuA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@napi-rs/nice-linux-arm64-musl@1.0.1':
+ resolution: {integrity: sha512-wG8fa2VKuWM4CfjOjjRX9YLIbysSVV1S3Kgm2Fnc67ap/soHBeYZa6AGMeR5BJAylYRjnoVOzV19Cmkco3QEPw==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@napi-rs/nice-linux-ppc64-gnu@1.0.1':
+ resolution: {integrity: sha512-lxQ9WrBf0IlNTCA9oS2jg/iAjQyTI6JHzABV664LLrLA/SIdD+I1i3Mjf7TsnoUbgopBcCuDztVLfJ0q9ubf6Q==}
+ engines: {node: '>= 10'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@napi-rs/nice-linux-riscv64-gnu@1.0.1':
+ resolution: {integrity: sha512-3xs69dO8WSWBb13KBVex+yvxmUeEsdWexxibqskzoKaWx9AIqkMbWmE2npkazJoopPKX2ULKd8Fm9veEn0g4Ig==}
+ engines: {node: '>= 10'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@napi-rs/nice-linux-s390x-gnu@1.0.1':
+ resolution: {integrity: sha512-lMFI3i9rlW7hgToyAzTaEybQYGbQHDrpRkg+1gJWEpH0PLAQoZ8jiY0IzakLfNWnVda1eTYYlxxFYzW8Rqczkg==}
+ engines: {node: '>= 10'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@napi-rs/nice-linux-x64-gnu@1.0.1':
+ resolution: {integrity: sha512-XQAJs7DRN2GpLN6Fb+ZdGFeYZDdGl2Fn3TmFlqEL5JorgWKrQGRUrpGKbgZ25UeZPILuTKJ+OowG2avN8mThBA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@napi-rs/nice-linux-x64-musl@1.0.1':
+ resolution: {integrity: sha512-/rodHpRSgiI9o1faq9SZOp/o2QkKQg7T+DK0R5AkbnI/YxvAIEHf2cngjYzLMQSQgUhxym+LFr+UGZx4vK4QdQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@napi-rs/nice-win32-arm64-msvc@1.0.1':
+ resolution: {integrity: sha512-rEcz9vZymaCB3OqEXoHnp9YViLct8ugF+6uO5McifTedjq4QMQs3DHz35xBEGhH3gJWEsXMUbzazkz5KNM5YUg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@napi-rs/nice-win32-ia32-msvc@1.0.1':
+ resolution: {integrity: sha512-t7eBAyPUrWL8su3gDxw9xxxqNwZzAqKo0Szv3IjVQd1GpXXVkb6vBBQUuxfIYaXMzZLwlxRQ7uzM2vdUE9ULGw==}
+ engines: {node: '>= 10'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@napi-rs/nice-win32-x64-msvc@1.0.1':
+ resolution: {integrity: sha512-JlF+uDcatt3St2ntBG8H02F1mM45i5SF9W+bIKiReVE6wiy3o16oBP/yxt+RZ+N6LbCImJXJ6bXNO2kn9AXicg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@napi-rs/nice@1.0.1':
+ resolution: {integrity: sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ==}
+ engines: {node: '>= 10'}
+
'@napi-rs/wasm-runtime@0.2.4':
resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==}
@@ -3460,12 +3927,12 @@ packages:
resolution: {integrity: sha512-Jq4uk1Mwa5vyxImupJYXPP+I5yYcp3PtguvXtJRutKdm9DPALXfZVtCQzBWMNdZiqVWCM3La9hvaBsPjSMfeug==}
engines: {node: ^14.18.0 || >=16.0.0}
- '@ngtools/webpack@18.2.4':
- resolution: {integrity: sha512-JVDRexu3q7lg2oqJG36RtX7cqTheoZRwg2HhMV8hYXUDL0fyOrv2galwTCgXrx7vAjlx45L2uR2kuWbgW0VVcQ==}
+ '@ngtools/webpack@19.0.0-rc.0':
+ resolution: {integrity: sha512-ES+Zrj9Mhf2E/Xst/Kia3aXmPO8yu9dJO7SXsrPb+pN7jYPDRBV5sUWucTmn4BYZoI77wJZ5Z/h5qLOKJbNPEw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
- '@angular/compiler-cli': ^18.0.0
- typescript: '>=5.4 <5.6'
+ '@angular/compiler-cli': ^19.0.0-next.0
+ typescript: '>=5.5 <5.7'
webpack: ^5.54.0
'@nodelib/fs.scandir@2.1.5':
@@ -3484,78 +3951,49 @@ packages:
resolution: {integrity: sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==}
engines: {node: ^16.14.0 || >=18.0.0}
+ '@npmcli/agent@3.0.0':
+ resolution: {integrity: sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
'@npmcli/fs@3.1.0':
resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- '@npmcli/git@5.0.3':
- resolution: {integrity: sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/installed-package-contents@2.0.1':
- resolution: {integrity: sha512-GIykAFdOVK31Q1/zAtT5MbxqQL2vyl9mvFJv+OGu01zxbhL3p0xc8gJjdNGX1mWmUT43aEKVO2L6V/2j4TOsAA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- hasBin: true
-
- '@npmcli/node-gyp@3.0.0':
- resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- '@npmcli/package-json@5.1.0':
- resolution: {integrity: sha512-1aL4TuVrLS9sf8quCLerU3H9J4vtCtgu8VauYozrmEyU57i/EdKleCnsQ7vpnABIH6c9mnTxcH5sFkO3BlV8wQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/promise-spawn@7.0.0':
- resolution: {integrity: sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/redact@2.0.0':
- resolution: {integrity: sha512-SEjCPAVHWYUIQR+Yn03kJmrJjZDtJLYpj300m3HV9OTRZNpC5YpbMsM3eTkECyT4aWj8lDr9WeY6TWefpubtYQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/run-script@8.1.0':
- resolution: {integrity: sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@nrwl/angular@19.5.3':
- resolution: {integrity: sha512-tEeBngEed92mbrNsTbQcK1oMs+NsyE+M7MxEaGc5rtI3gxEFL7yibefxaGE6IO+tXUNxW1cZsTcb3OoLptRf+A==}
-
- '@nrwl/cypress@19.5.3':
- resolution: {integrity: sha512-pUD/yVnaEuLCadLiThL/aVbX/J5iuOp3f3iPjuOMwWD0wYbIcZgrgImEBIo1NZdIKDBm8cgUhgkmf80RCVnw1g==}
-
- '@nrwl/devkit@19.5.3':
- resolution: {integrity: sha512-kd6eIQjWuFHdO14wVu0rzGtoPbO3EdYM/3gATOupxBzlqD+7dmkvv1Olbri9v598mDApXQNo8q81L2masTAhvg==}
-
- '@nrwl/eslint-plugin-nx@19.5.3':
- resolution: {integrity: sha512-z1JY22vsZERg+Qer25EU30k0cgAy0xER2l7eGWc5nXN8tKkyvPrqdN1m1GGl/+JPWjSUyV2ybVSqTBpUbrfwXA==}
-
- '@nrwl/jest@19.5.3':
- resolution: {integrity: sha512-Y7xZnniVTi8Q53Q+qJhrDnZ4gCOyc+4BGmo8QX63McebyIFyuU0ZIAdfV6LlKq6heyXhbK7iFjMEc/v2nrx6TA==}
-
- '@nrwl/js@19.5.3':
- resolution: {integrity: sha512-86qnph/V0uy1Qc5jO6z+MAdqW1kB1dOdKDTIAr0mauy23FMOmLUo5dr0UdG8HQKtF8k7ceEsycZdSlwXbC+ltQ==}
+ '@npmcli/fs@4.0.0':
+ resolution: {integrity: sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- '@nrwl/nx-plugin@19.5.3':
- resolution: {integrity: sha512-MlQCNS5Z2cDLAuWFNK5T+1vDN14t3nzxupjOR74V5/vT5qiINBJo9KmjfmiFA8+gy/VkabjWQJ7Bsn8nEGZSHw==}
+ '@npmcli/git@6.0.1':
+ resolution: {integrity: sha512-BBWMMxeQzalmKadyimwb2/VVQyJB01PH0HhVSNLHNBDZN/M/h/02P6f8fxedIiFhpMj11SO9Ep5tKTBE7zL2nw==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- '@nrwl/tao@19.5.3':
- resolution: {integrity: sha512-SHtPlQi7zofDdbFjqcrTb/A0Mo9tT8S88H8nJa1+GzhKpGUB9rykHtq0qoYdiRBnQfmfR5LoKfe/jft61Ktvdg==}
+ '@npmcli/installed-package-contents@3.0.0':
+ resolution: {integrity: sha512-fkxoPuFGvxyrH+OQzyTkX2LUEamrF4jZSmxjAtPPHHGO0dqsQ8tTKjnIS8SAnPHdk2I03BDtSMR5K/4loKg79Q==}
+ engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
- '@nrwl/vite@19.5.3':
- resolution: {integrity: sha512-BdJ5XJl+rmipxxcTiM2VLqcgRguBNuWxpVcFdTeLvMA8+5ALKc3h7bydlJPFp2ovCAXG3fEtn3Rd32QWho5BBg==}
+ '@npmcli/node-gyp@4.0.0':
+ resolution: {integrity: sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ '@npmcli/package-json@6.0.1':
+ resolution: {integrity: sha512-YW6PZ99sc1Q4DINEY2td5z9Z3rwbbsx7CyCnOc7UXUUdePXh5gPi1UeaoQVmKQMVbIU7aOwX2l1OG5ZfjgGi5g==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- '@nrwl/web@19.5.3':
- resolution: {integrity: sha512-vhl4otgWCCEgZngrQkKAOoC7AhKc6fpP+OPApWHB5f3derw9wbYHT6HraejYLUeKzgnn/QkBH/IM7xEK1dr+nw==}
+ '@npmcli/promise-spawn@8.0.2':
+ resolution: {integrity: sha512-/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- '@nrwl/webpack@19.5.3':
- resolution: {integrity: sha512-2hzhlwnrXJYHUzlsve1dWtcXRBFjWPkx6uTNilwWF6ixifAa4yoN5Q65icfD5enss3x3pDAVLrUtkM2gJdWG0Q==}
+ '@npmcli/redact@3.0.0':
+ resolution: {integrity: sha512-/1uFzjVcfzqrgCeGW7+SZ4hv0qLWmKXVzFahZGJ6QuJBj6Myt9s17+JL86i76NV9YSnJRcGXJYQbAU0rn1YTCQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- '@nrwl/workspace@19.5.3':
- resolution: {integrity: sha512-ZMVira0WARcwqcyteSBjk5OU4LDwRwAyM4Rl1E+inP01u0xIrk9FLre2e5USI4kMUGNZ9uRoffHpvGsXz1m3JQ==}
+ '@npmcli/run-script@9.0.1':
+ resolution: {integrity: sha512-q9C0uHrb6B6cm3qXVM32UmpqTKuFGbtP23O2K5sLvPMz2hilKd0ptqGXSpuunOuOmPQb/aT5F/kCXFc1P2gO/A==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- '@nx/angular@19.5.3':
- resolution: {integrity: sha512-dD5PhAVN0VDuGFFFZV3/yMzvEd5kmcCTckaGc97W7im6mN/fyfCuDONBfbf0gUSisfV2F/pNuYQfjh0PHoEKpA==}
+ '@nx/angular@20.0.8':
+ resolution: {integrity: sha512-huBgE8oExxNFllbf7bldzx3ormw+yNB2lVpEMyupaGAqfrR9qcUnz29XxIzA0X42Ekecq0QNkGFNx45sBKMM8A==}
peerDependencies:
'@angular-devkit/build-angular': '>= 16.0.0 < 19.0.0'
'@angular-devkit/core': '>= 16.0.0 < 19.0.0'
@@ -3563,30 +4001,30 @@ packages:
'@schematics/angular': '>= 16.0.0 < 19.0.0'
rxjs: ^6.5.3 || ^7.5.0
- '@nx/cypress@19.5.3':
- resolution: {integrity: sha512-cnGmNgeDjAFRqGCfdCH3A6vRJGjZNSEL1HhzvqIm4pCGA/h28aUkRGbbKRbq3SApraxeqo1VGpz5qXb8Mz2KHA==}
+ '@nx/cypress@20.0.8':
+ resolution: {integrity: sha512-VffUDJH0lxIf8z5aXkkYlIt9FRigvEOwXCKsRrNU3Uzv3Yqkv9cAZOS/jGjzfS11EFkMLLV2JSx4HSAMSOtuzg==}
peerDependencies:
cypress: '>= 3 < 14'
peerDependenciesMeta:
cypress:
optional: true
- '@nx/devkit@19.5.3':
- resolution: {integrity: sha512-OUi8OJkoT+y3LwXACO6ugF9l6QppUyHrBIZYOTffBa1ZrnkpJrw03smy+GhAt+BDoeNGEuOPHGvOSV4AmRxnmg==}
+ '@nx/devkit@20.0.8':
+ resolution: {integrity: sha512-MRUGgWSMzYtdwtolvWL5EZlX+7xYgu7JIXf1+3rmZU5adMmlqWKrIbyvDf53XocQlT8oxx/xXTEFHhIymGTQCg==}
peerDependencies:
- nx: '>= 17 <= 20'
+ nx: '>= 19 <= 21'
- '@nx/eslint-plugin@19.5.3':
- resolution: {integrity: sha512-J6J+0AgLF33Y5cHJHUfo5KDXDb6IIt2Sko4a11O72OknC5j1MflL8Sqa85UEkuH13vfeAPTtPIrIQRq3jCAwew==}
+ '@nx/eslint-plugin@20.0.8':
+ resolution: {integrity: sha512-E64qOinUI+LHROHFKgHgDue5wiKWVBZfMVlWXl3/7IfWTf3aTUjQUfMHVTogJWR9Ry7A7tQkXc0Ex/4ISDzUrQ==}
peerDependencies:
- '@typescript-eslint/parser': ^6.13.2 || ^7.0.0
+ '@typescript-eslint/parser': ^6.13.2 || ^7.0.0 || ^8.0.0
eslint-config-prettier: ^9.0.0
peerDependenciesMeta:
eslint-config-prettier:
optional: true
- '@nx/eslint@19.5.3':
- resolution: {integrity: sha512-Ihoe3526kv/B47RWRTnFTW/wybDjCoUCRpPSSdgdoO6YKHrMQ9ABcTR0OEZORRCi1mbCzvA2JXkjG17RFrxEVA==}
+ '@nx/eslint@20.0.8':
+ resolution: {integrity: sha512-mh8zup1mzDcDFY3pjC6rxl8ftzFmtV3upWEbbMcg+P5e4UaDG4vnDyGwOSzZaewL+e864hNzmDN5Xfluz4lNPw==}
peerDependencies:
'@zkochan/js-yaml': 0.0.7
eslint: ^8.0.0 || ^9.0.0
@@ -3594,97 +4032,94 @@ packages:
'@zkochan/js-yaml':
optional: true
- '@nx/jest@19.5.3':
- resolution: {integrity: sha512-hd+G8mgCKkmtmCGMxkpwUxvzyi2v0TjGqr6rmUAFUqv6gE+z9TIehQbbrFI17FiWcF7bLpSE1Xtm7Mu9Pc0fUA==}
+ '@nx/jest@20.0.8':
+ resolution: {integrity: sha512-LEs1EKl0RezDycGKxCaJivvKKXXHL5HUGp9dxE2FuS2nzimYhYldxlOH+zr73J5SWEZtxnMHHjRPkbDffnoxug==}
- '@nx/js@19.5.3':
- resolution: {integrity: sha512-NcL3RicE5b+nvnAQkz2rVDMIcmM62o98SqIF6SmPaevJxMu+2YhlSU4p6btrFDDl3gSvQkhvVAoAsRpb3s1nJQ==}
+ '@nx/js@20.0.8':
+ resolution: {integrity: sha512-PDkjhen4Gl1bMw65XfgebSceNH7HOeTr1f5C+WY/II+7pcAx2lqWj4n6t0XkzBMWlOyfHt/H+O/F4GuZ/hjIyg==}
peerDependencies:
verdaccio: ^5.0.4
peerDependenciesMeta:
verdaccio:
optional: true
- '@nx/linter@19.5.3':
- resolution: {integrity: sha512-+aFsSPlBmosUfp0mC5HnzFKeqTsjsw9cLZM/7NxJNRq3nUIVaxZSx97OSVm5o1LPS9jybtZg2RdO0s/y/FbVjA==}
-
- '@nx/nx-darwin-arm64@19.5.3':
- resolution: {integrity: sha512-DacVfnhx7wiglDXRAdbrmaP4s3ZQXMs8Mk0fGoQYjv1uwWajDOPxMYJUZH0CGysIDADSrku4AIqogGX/CZjSuQ==}
+ '@nx/nx-darwin-arm64@20.0.8':
+ resolution: {integrity: sha512-tDoafq5YUyOwxR1Y796WXA6j49OLJRO7TA/Fym52SSuD3AULbgo3/X5XeY6oL2PWM044CuUVrp3V4cIDUtyJpA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@nx/nx-darwin-x64@19.5.3':
- resolution: {integrity: sha512-AfY1g8nYJbBGiR2SDt/Q8YcQyuwtRmGxfJIrzCu+2+hFFds7RF9iaqeKedWeHN9wAsaTbDnBuDwwojT9LMOxaA==}
+ '@nx/nx-darwin-x64@20.0.8':
+ resolution: {integrity: sha512-bvfZ6VhSvOpPV00veaJDO1a4X+f0dn8S1A73/2ThbGZrZLAQIFrA8v+ysax+bfCGRHNdtlAL+f7TG2buh/4BRg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@nx/nx-freebsd-x64@19.5.3':
- resolution: {integrity: sha512-dWwxFs9bp67n/l1QhI41pSJk+mpwDNh7RY+WQBUldWbIyh8c4/wYk3VaqjALPCcGUky/RCME6rdLkqxFRAIs4A==}
+ '@nx/nx-freebsd-x64@20.0.8':
+ resolution: {integrity: sha512-AdOme0o/pTFy+TutIOAamuGTqbh6nOLrkNEX8f4ogfDRH+k/WvjRQ4z4ne58wf/2EVXua4jKTIEipIZAP/Ad1w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- '@nx/nx-linux-arm-gnueabihf@19.5.3':
- resolution: {integrity: sha512-7l79OXwKVqnTr6/85mVPU+h3nnxGDAWgY6kTJNdmuaFlDgbHKbcNo9FFSu2srdqr1x84UsU49w8ZBJbdwA5YSg==}
+ '@nx/nx-linux-arm-gnueabihf@20.0.8':
+ resolution: {integrity: sha512-PYf7Z30A1TCZq9HVUP6JjT3ghTLYkaBpR6vDwiGWUV/exuNmhUgfYW6TiTpiSArXwnAgSIbaoGe537iEvYzA7A==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- '@nx/nx-linux-arm64-gnu@19.5.3':
- resolution: {integrity: sha512-aFCuoUiEI20tGCxdUDO0JWCWli3RH0LPCXjnQ4H4pNMzT8zpvjvu+Js7FtwFG+NZWOdlmtiDlthnVAd+5ex6Wg==}
+ '@nx/nx-linux-arm64-gnu@20.0.8':
+ resolution: {integrity: sha512-3VpvhjmNR78HVxGzpWiwqZsG5sNvLUv2Qfohtxyc3561o8VU41R9Onf/LJmbbZvmdDaPvvXQp3rs0OXT4i7T1g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-arm64-musl@19.5.3':
- resolution: {integrity: sha512-gcjdlGvgQ4ahSfPpMw32cr7GrCYhr/58D1R/bbyem0QQg+EdLbLlhhdS2pAHBCoENfpSnknQZhMrUN1LR8Qmpw==}
+ '@nx/nx-linux-arm64-musl@20.0.8':
+ resolution: {integrity: sha512-3Z7fTJGG8h4VCHhD8Ix0zr6eFMfa1y3YDlzm8Clxu4Enzz0pEsUrT+ph6qrsArnIyUgiCowSi8+xgHFg7V/F1Q==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-x64-gnu@19.5.3':
- resolution: {integrity: sha512-Jwu6peOyaV9WTR1ihzfIIqEBYsbOSy0cH8H36ce17zpemq6l/Cz5EJ7blVXut1qksMFvC/QbkTWqTlfO5XEHIw==}
+ '@nx/nx-linux-x64-gnu@20.0.8':
+ resolution: {integrity: sha512-Uttl1RHzWpjZgdzowCUNjC6/b3YhZR31wyXWgVF4PDWpDVgy4EigGc19tdrvv8pUVKQFuj0uaSTPUklguN7c3A==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@nx/nx-linux-x64-musl@19.5.3':
- resolution: {integrity: sha512-84KnkghjbInJAoWvCJB34lHq9iGCgo5KjcxUFZJFNDYTQh/VBTp/OhH8bFyPRwQTPVSToLeBhoFvGB1bqBekrA==}
+ '@nx/nx-linux-x64-musl@20.0.8':
+ resolution: {integrity: sha512-llc6ywSPaOWQzEzD73USyAXd/y3Slu+GHS02IsQqZeA23EIOEzhvEeeeKgs4F8LKuFW/TpV6T5IhvSHw9/mvBg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@nx/nx-win32-arm64-msvc@19.5.3':
- resolution: {integrity: sha512-q19m59cm+VTZzlHh+/dSHism7hgKfGHR+nW5xtxIF00rZQpJpv0ve7GVvyXPFw7NXvceYRK1THes1MljYXyslQ==}
+ '@nx/nx-win32-arm64-msvc@20.0.8':
+ resolution: {integrity: sha512-GhPVVNrL0QcQ3B6r0P0Dta3TIesJz7uso7iI5rCZ/oOGa02UsT4NkQBpIhxYQZ4TnHYNy84g4rHtYHrSlpDlEw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@nx/nx-win32-x64-msvc@19.5.3':
- resolution: {integrity: sha512-DOdO7K6ySiwrXsnJNjJXxng427n5+nXIDt4L81ltCdr6oE8wUiUpRTt1dfl65rHknojB/b1at3V6+x450F0/2A==}
+ '@nx/nx-win32-x64-msvc@20.0.8':
+ resolution: {integrity: sha512-yLlcgM0zFdmsExdLv8O2g5FWQ6d2vyN5OynKV+F5BrWHC4LvrqyYJ99y++5bLFoEi19RYIK6sLnzGIRSF6dHGg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@nx/plugin@19.5.3':
- resolution: {integrity: sha512-e4wH2zMVA+nSNqgb/y8KqTtRUYcKGt8F1lDsejGwA0ared1NQzmboats4NCnwgu7btE9oadXV9XjYJyNKljAIw==}
+ '@nx/plugin@20.0.8':
+ resolution: {integrity: sha512-F355zSv1xs+V/gfROMFC66Kc8DhlqW34tLGN6UA8jTgZ25GN/2qjCR77S9wRDrEs2AE+KhSD8PmxudOazUrIJg==}
- '@nx/vite@19.5.3':
- resolution: {integrity: sha512-qJu9X13zDg78z0mKtOt3S2c4umlKkydJ9QfrfKId803wEN/7CXqSbl//I4sDNM/W/UA1MLze0kqpiHLLy3h4gg==}
+ '@nx/vite@20.0.8':
+ resolution: {integrity: sha512-dITVcOvsNcIfHSlguQtEbvXwiNAuxqSHCJMs81wX4pH0KD7WLJ7uizfGJHy+W/L5BiwXv7zBhoklMAsHWEvrog==}
peerDependencies:
vite: ^5.0.0
- vitest: ^1.3.1
+ vitest: ^1.3.1 || ^2.0.0
- '@nx/web@19.5.3':
- resolution: {integrity: sha512-4uq57zrjxplTB7nyLZY05iIOH6tXR55cP/lpj9nWhrMFZluybanaEExe+3a/y0bnn13Le5sg1TXpvapUQYH8tg==}
+ '@nx/web@20.0.8':
+ resolution: {integrity: sha512-trEGtF/0K0RbCIFfWNoyKjnL7b7v3zjnJrK2aDUK+jc/yRZ3A23sq07sDY1U0x5nuyhfDQ5Z8lMADz+ihkHZlA==}
- '@nx/webpack@19.5.3':
- resolution: {integrity: sha512-f1LtVDbZQIAEcGm9XNsaKpe/uBPVKXObemlbmKLXQc743qbkke4W6ACQL0jIB5Aod6gHhxHzY6M19L6HtjU0yg==}
+ '@nx/webpack@20.0.8':
+ resolution: {integrity: sha512-CjgsEBqBMnGHr7IjrQENdAYSlPs1dygQHhFAo1Ioo1yr5XC9kDJ/HFdxpgBYROdS58Tdpj5xTOqw5ictLKt8Iw==}
- '@nx/workspace@19.5.3':
- resolution: {integrity: sha512-nGBN8R/eGVYGHphSAYAXGjyuQx1/Fb27hoGATTop9LBxbzA0QnokRN95Vx9/UFMCJU3Mf5GlXD+x6vCbrRSWug==}
+ '@nx/workspace@20.0.8':
+ resolution: {integrity: sha512-G7nON6s3KDWNAH9P8IBvvAmTGgTsFZPuWH7We9px0ZwsRcURDDP1OqZsYmfr0zTHTS58wu4Uax/uQLwnTVC1xQ==}
'@octokit/auth-token@4.0.0':
resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==}
@@ -3945,6 +4380,16 @@ packages:
cpu: [arm]
os: [android]
+ '@rollup/rollup-android-arm-eabi@4.24.3':
+ resolution: {integrity: sha512-ufb2CH2KfBWPJok95frEZZ82LtDl0A6QKTa8MoM+cWwDZvVGl5/jNb79pIhRvAalUu+7LD91VYR0nwRD799HkQ==}
+ cpu: [arm]
+ os: [android]
+
+ '@rollup/rollup-android-arm-eabi@4.24.4':
+ resolution: {integrity: sha512-jfUJrFct/hTA0XDM5p/htWKoNNTbDLY0KRwEt6pyOA6k2fmk0WVwl65PdUdJZgzGEHWx+49LilkcSaumQRyNQw==}
+ cpu: [arm]
+ os: [android]
+
'@rollup/rollup-android-arm64@4.18.0':
resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==}
cpu: [arm64]
@@ -3955,6 +4400,16 @@ packages:
cpu: [arm64]
os: [android]
+ '@rollup/rollup-android-arm64@4.24.3':
+ resolution: {integrity: sha512-iAHpft/eQk9vkWIV5t22V77d90CRofgR2006UiCjHcHJFVI1E0oBkQIAbz+pLtthFw3hWEmVB4ilxGyBf48i2Q==}
+ cpu: [arm64]
+ os: [android]
+
+ '@rollup/rollup-android-arm64@4.24.4':
+ resolution: {integrity: sha512-j4nrEO6nHU1nZUuCfRKoCcvh7PIywQPUCBa2UsootTHvTHIoIu2BzueInGJhhvQO/2FTRdNYpf63xsgEqH9IhA==}
+ cpu: [arm64]
+ os: [android]
+
'@rollup/rollup-darwin-arm64@4.18.0':
resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==}
cpu: [arm64]
@@ -3965,6 +4420,16 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@rollup/rollup-darwin-arm64@4.24.3':
+ resolution: {integrity: sha512-QPW2YmkWLlvqmOa2OwrfqLJqkHm7kJCIMq9kOz40Zo9Ipi40kf9ONG5Sz76zszrmIZZ4hgRIkez69YnTHgEz1w==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-arm64@4.24.4':
+ resolution: {integrity: sha512-GmU/QgGtBTeraKyldC7cDVVvAJEOr3dFLKneez/n7BvX57UdhOqDsVwzU7UOnYA7AAOt+Xb26lk79PldDHgMIQ==}
+ cpu: [arm64]
+ os: [darwin]
+
'@rollup/rollup-darwin-x64@4.18.0':
resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==}
cpu: [x64]
@@ -3975,6 +4440,36 @@ packages:
cpu: [x64]
os: [darwin]
+ '@rollup/rollup-darwin-x64@4.24.3':
+ resolution: {integrity: sha512-KO0pN5x3+uZm1ZXeIfDqwcvnQ9UEGN8JX5ufhmgH5Lz4ujjZMAnxQygZAVGemFWn+ZZC0FQopruV4lqmGMshow==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-x64@4.24.4':
+ resolution: {integrity: sha512-N6oDBiZCBKlwYcsEPXGDE4g9RoxZLK6vT98M8111cW7VsVJFpNEqvJeIPfsCzbf0XEakPslh72X0gnlMi4Ddgg==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rollup/rollup-freebsd-arm64@4.24.3':
+ resolution: {integrity: sha512-CsC+ZdIiZCZbBI+aRlWpYJMSWvVssPuWqrDy/zi9YfnatKKSLFCe6fjna1grHuo/nVaHG+kiglpRhyBQYRTK4A==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-arm64@4.24.4':
+ resolution: {integrity: sha512-py5oNShCCjCyjWXCZNrRGRpjWsF0ic8f4ieBNra5buQz0O/U6mMXCpC1LvrHuhJsNPgRt36tSYMidGzZiJF6mw==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.24.3':
+ resolution: {integrity: sha512-F0nqiLThcfKvRQhZEzMIXOQG4EeX61im61VYL1jo4eBxv4aZRmpin6crnBJQ/nWnCsjH5F6J3W6Stdm0mBNqBg==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.24.4':
+ resolution: {integrity: sha512-L7VVVW9FCnTTp4i7KrmHeDsDvjB4++KOBENYtNYAiYl96jeBThFfhP6HVxL74v4SiZEVDH/1ILscR5U9S4ms4g==}
+ cpu: [x64]
+ os: [freebsd]
+
'@rollup/rollup-linux-arm-gnueabihf@4.18.0':
resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==}
cpu: [arm]
@@ -3985,6 +4480,16 @@ packages:
cpu: [arm]
os: [linux]
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.3':
+ resolution: {integrity: sha512-KRSFHyE/RdxQ1CSeOIBVIAxStFC/hnBgVcaiCkQaVC+EYDtTe4X7z5tBkFyRoBgUGtB6Xg6t9t2kulnX6wJc6A==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.4':
+ resolution: {integrity: sha512-10ICosOwYChROdQoQo589N5idQIisxjaFE/PAnX2i0Zr84mY0k9zul1ArH0rnJ/fpgiqfu13TFZR5A5YJLOYZA==}
+ cpu: [arm]
+ os: [linux]
+
'@rollup/rollup-linux-arm-musleabihf@4.18.0':
resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==}
cpu: [arm]
@@ -3995,6 +4500,16 @@ packages:
cpu: [arm]
os: [linux]
+ '@rollup/rollup-linux-arm-musleabihf@4.24.3':
+ resolution: {integrity: sha512-h6Q8MT+e05zP5BxEKz0vi0DhthLdrNEnspdLzkoFqGwnmOzakEHSlXfVyA4HJ322QtFy7biUAVFPvIDEDQa6rw==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm-musleabihf@4.24.4':
+ resolution: {integrity: sha512-ySAfWs69LYC7QhRDZNKqNhz2UKN8LDfbKSMAEtoEI0jitwfAG2iZwVqGACJT+kfYvvz3/JgsLlcBP+WWoKCLcw==}
+ cpu: [arm]
+ os: [linux]
+
'@rollup/rollup-linux-arm64-gnu@4.18.0':
resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==}
cpu: [arm64]
@@ -4005,6 +4520,16 @@ packages:
cpu: [arm64]
os: [linux]
+ '@rollup/rollup-linux-arm64-gnu@4.24.3':
+ resolution: {integrity: sha512-fKElSyXhXIJ9pqiYRqisfirIo2Z5pTTve5K438URf08fsypXrEkVmShkSfM8GJ1aUyvjakT+fn2W7Czlpd/0FQ==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-gnu@4.24.4':
+ resolution: {integrity: sha512-uHYJ0HNOI6pGEeZ/5mgm5arNVTI0nLlmrbdph+pGXpC9tFHFDQmDMOEqkmUObRfosJqpU8RliYoGz06qSdtcjg==}
+ cpu: [arm64]
+ os: [linux]
+
'@rollup/rollup-linux-arm64-musl@4.18.0':
resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==}
cpu: [arm64]
@@ -4015,6 +4540,16 @@ packages:
cpu: [arm64]
os: [linux]
+ '@rollup/rollup-linux-arm64-musl@4.24.3':
+ resolution: {integrity: sha512-YlddZSUk8G0px9/+V9PVilVDC6ydMz7WquxozToozSnfFK6wa6ne1ATUjUvjin09jp34p84milxlY5ikueoenw==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-musl@4.24.4':
+ resolution: {integrity: sha512-38yiWLemQf7aLHDgTg85fh3hW9stJ0Muk7+s6tIkSUOMmi4Xbv5pH/5Bofnsb6spIwD5FJiR+jg71f0CH5OzoA==}
+ cpu: [arm64]
+ os: [linux]
+
'@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==}
cpu: [ppc64]
@@ -4025,6 +4560,16 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.3':
+ resolution: {integrity: sha512-yNaWw+GAO8JjVx3s3cMeG5Esz1cKVzz8PkTJSfYzE5u7A+NvGmbVFEHP+BikTIyYWuz0+DX9kaA3pH9Sqxp69g==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.4':
+ resolution: {integrity: sha512-q73XUPnkwt9ZNF2xRS4fvneSuaHw2BXuV5rI4cw0fWYVIWIBeDZX7c7FWhFQPNTnE24172K30I+dViWRVD9TwA==}
+ cpu: [ppc64]
+ os: [linux]
+
'@rollup/rollup-linux-riscv64-gnu@4.18.0':
resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==}
cpu: [riscv64]
@@ -4035,6 +4580,16 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@rollup/rollup-linux-riscv64-gnu@4.24.3':
+ resolution: {integrity: sha512-lWKNQfsbpv14ZCtM/HkjCTm4oWTKTfxPmr7iPfp3AHSqyoTz5AgLemYkWLwOBWc+XxBbrU9SCokZP0WlBZM9lA==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-gnu@4.24.4':
+ resolution: {integrity: sha512-Aie/TbmQi6UXokJqDZdmTJuZBCU3QBDA8oTKRGtd4ABi/nHgXICulfg1KI6n9/koDsiDbvHAiQO3YAUNa/7BCw==}
+ cpu: [riscv64]
+ os: [linux]
+
'@rollup/rollup-linux-s390x-gnu@4.18.0':
resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==}
cpu: [s390x]
@@ -4045,6 +4600,16 @@ packages:
cpu: [s390x]
os: [linux]
+ '@rollup/rollup-linux-s390x-gnu@4.24.3':
+ resolution: {integrity: sha512-HoojGXTC2CgCcq0Woc/dn12wQUlkNyfH0I1ABK4Ni9YXyFQa86Fkt2Q0nqgLfbhkyfQ6003i3qQk9pLh/SpAYw==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@rollup/rollup-linux-s390x-gnu@4.24.4':
+ resolution: {integrity: sha512-P8MPErVO/y8ohWSP9JY7lLQ8+YMHfTI4bAdtCi3pC2hTeqFJco2jYspzOzTUB8hwUWIIu1xwOrJE11nP+0JFAQ==}
+ cpu: [s390x]
+ os: [linux]
+
'@rollup/rollup-linux-x64-gnu@4.18.0':
resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==}
cpu: [x64]
@@ -4055,6 +4620,16 @@ packages:
cpu: [x64]
os: [linux]
+ '@rollup/rollup-linux-x64-gnu@4.24.3':
+ resolution: {integrity: sha512-mnEOh4iE4USSccBOtcrjF5nj+5/zm6NcNhbSEfR3Ot0pxBwvEn5QVUXcuOwwPkapDtGZ6pT02xLoPaNv06w7KQ==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-gnu@4.24.4':
+ resolution: {integrity: sha512-K03TljaaoPK5FOyNMZAAEmhlyO49LaE4qCsr0lYHUKyb6QacTNF9pnfPpXnFlFD3TXuFbFbz7tJ51FujUXkXYA==}
+ cpu: [x64]
+ os: [linux]
+
'@rollup/rollup-linux-x64-musl@4.18.0':
resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==}
cpu: [x64]
@@ -4065,6 +4640,16 @@ packages:
cpu: [x64]
os: [linux]
+ '@rollup/rollup-linux-x64-musl@4.24.3':
+ resolution: {integrity: sha512-rMTzawBPimBQkG9NKpNHvquIUTQPzrnPxPbCY1Xt+mFkW7pshvyIS5kYgcf74goxXOQk0CP3EoOC1zcEezKXhw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-musl@4.24.4':
+ resolution: {integrity: sha512-VJYl4xSl/wqG2D5xTYncVWW+26ICV4wubwN9Gs5NrqhJtayikwCXzPL8GDsLnaLU3WwhQ8W02IinYSFJfyo34Q==}
+ cpu: [x64]
+ os: [linux]
+
'@rollup/rollup-win32-arm64-msvc@4.18.0':
resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==}
cpu: [arm64]
@@ -4075,6 +4660,16 @@ packages:
cpu: [arm64]
os: [win32]
+ '@rollup/rollup-win32-arm64-msvc@4.24.3':
+ resolution: {integrity: sha512-2lg1CE305xNvnH3SyiKwPVsTVLCg4TmNCF1z7PSHX2uZY2VbUpdkgAllVoISD7JO7zu+YynpWNSKAtOrX3AiuA==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rollup/rollup-win32-arm64-msvc@4.24.4':
+ resolution: {integrity: sha512-ku2GvtPwQfCqoPFIJCqZ8o7bJcj+Y54cZSr43hHca6jLwAiCbZdBUOrqE6y29QFajNAzzpIOwsckaTFmN6/8TA==}
+ cpu: [arm64]
+ os: [win32]
+
'@rollup/rollup-win32-ia32-msvc@4.18.0':
resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==}
cpu: [ia32]
@@ -4085,6 +4680,16 @@ packages:
cpu: [ia32]
os: [win32]
+ '@rollup/rollup-win32-ia32-msvc@4.24.3':
+ resolution: {integrity: sha512-9SjYp1sPyxJsPWuhOCX6F4jUMXGbVVd5obVpoVEi8ClZqo52ViZewA6eFz85y8ezuOA+uJMP5A5zo6Oz4S5rVQ==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rollup/rollup-win32-ia32-msvc@4.24.4':
+ resolution: {integrity: sha512-V3nCe+eTt/W6UYNr/wGvO1fLpHUrnlirlypZfKCT1fG6hWfqhPgQV/K/mRBXBpxc0eKLIF18pIOFVPh0mqHjlg==}
+ cpu: [ia32]
+ os: [win32]
+
'@rollup/rollup-win32-x64-msvc@4.18.0':
resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==}
cpu: [x64]
@@ -4095,13 +4700,23 @@ packages:
cpu: [x64]
os: [win32]
- '@rollup/wasm-node@4.18.0':
- resolution: {integrity: sha512-DkLoyblRMhJw9ZogW9zCpyH0CNJ+7GaM7Ty+Vl+G21z/Gr7uKBaXqcJqwWUiNYVxTOgxZrxhDG6pmOFxOuswvw==}
+ '@rollup/rollup-win32-x64-msvc@4.24.3':
+ resolution: {integrity: sha512-HGZgRFFYrMrP3TJlq58nR1xy8zHKId25vhmm5S9jETEfDf6xybPxsavFTJaufe2zgOGYJBskGlj49CwtEuFhWQ==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.24.4':
+ resolution: {integrity: sha512-LTw1Dfd0mBIEqUVCxbvTE/LLo+9ZxVC9k99v1v4ahg9Aak6FpqOfNu5kRkeTAn0wphoC4JU7No1/rL+bBCEwhg==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rollup/wasm-node@4.24.4':
+ resolution: {integrity: sha512-WKJUdPcM8YAYujafY95+2EapqU3F/nwfBkXh9AfkBvWBwFhsvNJABA86Br6graRH2vRE4FBsiqjFvFWOtEO6wg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- '@schematics/angular@18.2.4':
- resolution: {integrity: sha512-GxrPv4eOPrjMKoAVhch9eprW8H/DFhBy5Zgp7CgGui9NprYkkubxw/yyo11WfR5CFZ/q5AfsjV76dPCkhLwLmA==}
+ '@schematics/angular@19.0.0-rc.0':
+ resolution: {integrity: sha512-MNjm6KnTAZvdTsdc6mD2I3guyjJyg+xpoN0tVgkNwZzzv0AUMb0LdZ9V1qlQ8gzvEpoPonAmNilqT06McqPVgA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@semantic-release/changelog@6.0.3':
@@ -4177,29 +4792,29 @@ packages:
'@sideway/pinpoint@2.0.0':
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- '@sigstore/bundle@2.1.1':
- resolution: {integrity: sha512-v3/iS+1nufZdKQ5iAlQKcCsoh0jffQyABvYIxKsZQFWc4ubuGjwZklFHpDgV6O6T7vvV78SW5NHI91HFKEcxKg==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@sigstore/core@1.0.0':
- resolution: {integrity: sha512-dW2qjbWLRKGu6MIDUTBuJwXCnR8zivcSpf5inUzk7y84zqy/dji0/uahppoIgMoKeR+6pUZucrwHfkQQtiG9Rw==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ '@sigstore/bundle@3.0.0':
+ resolution: {integrity: sha512-XDUYX56iMPAn/cdgh/DTJxz5RWmqKV4pwvUAEKEWJl+HzKdCd/24wUa9JYNMlDSCb7SUHAdtksxYX779Nne/Zg==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- '@sigstore/protobuf-specs@0.2.1':
- resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ '@sigstore/core@2.0.0':
+ resolution: {integrity: sha512-nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- '@sigstore/sign@2.2.2':
- resolution: {integrity: sha512-mAifqvvGOCkb5BJ5d/SRrVP5+kKCGxtcHuti6lgqZalIfNxikxlJMMptOqFp9+xV5LAnJMSaMWtzvcgNZ3PlPA==}
+ '@sigstore/protobuf-specs@0.3.2':
+ resolution: {integrity: sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==}
engines: {node: ^16.14.0 || >=18.0.0}
- '@sigstore/tuf@2.3.0':
- resolution: {integrity: sha512-S98jo9cpJwO1mtQ+2zY7bOdcYyfVYCUaofCG6wWRzk3pxKHVAkSfshkfecto2+LKsx7Ovtqbgb2LS8zTRhxJ9Q==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ '@sigstore/sign@3.0.0':
+ resolution: {integrity: sha512-UjhDMQOkyDoktpXoc5YPJpJK6IooF2gayAr5LvXI4EL7O0vd58okgfRcxuaH+YTdhvb5aa1Q9f+WJ0c2sVuYIw==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- '@sigstore/verify@1.0.0':
- resolution: {integrity: sha512-sRU6nblDBQ4pVTWni019Kij+XQj4RP75WXN5z3qHk81dt/L8A7r3v8RgRInTup4/Jf90WNods9CcbnWj7zJ26w==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ '@sigstore/tuf@3.0.0':
+ resolution: {integrity: sha512-9Xxy/8U5OFJu7s+OsHzI96IX/OzjF/zj0BSSaWhgJgTqtlBhQIV2xdrQI5qxLD7+CWWDepadnXAxzaZ3u9cvRw==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ '@sigstore/verify@2.0.0':
+ resolution: {integrity: sha512-Ggtq2GsJuxFNUvQzLoXqRwS4ceRfLAJnrIHUDrzAD0GgnOhwujJkKkxM/s5Bako07c3WtAs/sZo5PJq7VHjeDg==}
+ engines: {node: ^18.17.0 || >=20.5.0}
'@sinclair/typebox@0.25.21':
resolution: {integrity: sha512-gFukHN4t8K4+wVC+ECqeqwzBDeFeTzBXroBTqE6vcWrQGbEUpHO7LYdG0f4xnvYq4VOEwITSlHlp0JBAIFMS/g==}
@@ -4461,9 +5076,9 @@ packages:
resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
engines: {node: ^16.14.0 || >=18.0.0}
- '@tufjs/models@2.0.0':
- resolution: {integrity: sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ '@tufjs/models@3.0.1':
+ resolution: {integrity: sha512-UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
'@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
@@ -4522,6 +5137,9 @@ packages:
'@types/estree@1.0.5':
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+
'@types/express-serve-static-core@4.19.0':
resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==}
@@ -4552,6 +5170,9 @@ packages:
'@types/http-proxy@1.17.14':
resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
+ '@types/http-proxy@1.17.15':
+ resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
+
'@types/istanbul-lib-coverage@2.0.4':
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
@@ -4561,8 +5182,8 @@ packages:
'@types/istanbul-reports@3.0.1':
resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
- '@types/jest@29.4.4':
- resolution: {integrity: sha512-qezb65VIH7X1wobSnd6Lvdve7PXSyQRa3dljTkhTtDhi603RvHQCshSlJcuyMLHJpeHgY3NKwvDJWxMOOHxGDQ==}
+ '@types/jest@29.5.14':
+ resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==}
'@types/jsdom@20.0.1':
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
@@ -4600,9 +5221,6 @@ packages:
'@types/ms@0.7.31':
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
- '@types/mute-stream@0.0.4':
- resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==}
-
'@types/nlcst@1.0.0':
resolution: {integrity: sha512-3TGCfOcy8R8mMQ4CNSNOe3PG66HttvjcLzCoOpvXvDtfWOTi+uT/rxeOKm/qEwbM4SNe1O/PjdiBK2YcTjU4OQ==}
@@ -4618,9 +5236,6 @@ packages:
'@types/node@18.19.15':
resolution: {integrity: sha512-AMZ2UWx+woHNfM11PyAEQmfSxi05jm9OlkxczuHeEqmvwPkYj6MWv44gbzDPefYOLysTOFyI3ziiy2ONmUZfpA==}
- '@types/node@22.5.5':
- resolution: {integrity: sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA==}
-
'@types/normalize-package-data@2.4.1':
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
@@ -4711,9 +5326,6 @@ packages:
'@types/unist@3.0.0':
resolution: {integrity: sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w==}
- '@types/wrap-ansi@3.0.0':
- resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==}
-
'@types/ws@8.5.10':
resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
@@ -4747,20 +5359,20 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@7.18.0':
- resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
'@typescript-eslint/scope-manager@7.4.0':
resolution: {integrity: sha512-68VqENG5HK27ypafqLVs8qO+RkNc7TezCduYrx8YJpXq2QGZ30vmNZGJJJC48+MVn4G2dCV8m5ZTVnzRexTVtw==}
engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/scope-manager@8.13.0':
+ resolution: {integrity: sha512-XsGWww0odcUT0gJoBZ1DeulY1+jkaHUciUq4jKNv4cpInbvvrtDoyBH9rE/n2V29wQJPk8iCH1wipra9BhmiMA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/scope-manager@8.5.0':
resolution: {integrity: sha512-06JOQ9Qgj33yvBEx6tpC8ecP9o860rsR22hWMEd12WcTRrfaFgHr2RB/CA/B+7BMhHkXT4chg2MyboGdFGawYg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@7.18.0':
- resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==}
+ '@typescript-eslint/type-utils@7.4.0':
+ resolution: {integrity: sha512-247ETeHgr9WTRMqHbbQdzwzhuyaJ8dPTuyuUEMANqzMRB1rj/9qFIuIXK7l0FX9i9FXbHeBQl/4uz6mYuCE7Aw==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -4769,30 +5381,29 @@ packages:
typescript:
optional: true
- '@typescript-eslint/type-utils@7.4.0':
- resolution: {integrity: sha512-247ETeHgr9WTRMqHbbQdzwzhuyaJ8dPTuyuUEMANqzMRB1rj/9qFIuIXK7l0FX9i9FXbHeBQl/4uz6mYuCE7Aw==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/type-utils@8.13.0':
+ resolution: {integrity: sha512-Rqnn6xXTR316fP4D2pohZenJnp+NwQ1mo7/JM+J1LWZENSLkJI8ID8QNtlvFeb0HnFSK94D6q0cnMX6SbE5/vA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.56.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@typescript-eslint/types@7.18.0':
- resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
'@typescript-eslint/types@7.4.0':
resolution: {integrity: sha512-mjQopsbffzJskos5B4HmbsadSJQWaRK0UxqQ7GuNA9Ga4bEKeiO6b2DnB6cM6bpc8lemaPseh0H9B/wyg+J7rw==}
engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/types@8.13.0':
+ resolution: {integrity: sha512-4cyFErJetFLckcThRUFdReWJjVsPCqyBlJTi6IDEpc1GWCIIZRFxVppjWLIMcQhNGhdWJJRYFHpHoDWvMlDzng==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/types@8.5.0':
resolution: {integrity: sha512-qjkormnQS5wF9pjSi6q60bKUHH44j2APxfh9TQRXK8wbYVeDYYdYJGIROL87LGZZ2gz3Rbmjc736qyL8deVtdw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@7.18.0':
- resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
+ '@typescript-eslint/typescript-estree@7.4.0':
+ resolution: {integrity: sha512-A99j5AYoME/UBQ1ucEbbMEmGkN7SE0BvZFreSnTd1luq7yulcHdyGamZKizU7canpGDWGJ+Q6ZA9SyQobipePg==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
typescript: '*'
@@ -4800,9 +5411,9 @@ packages:
typescript:
optional: true
- '@typescript-eslint/typescript-estree@7.4.0':
- resolution: {integrity: sha512-A99j5AYoME/UBQ1ucEbbMEmGkN7SE0BvZFreSnTd1luq7yulcHdyGamZKizU7canpGDWGJ+Q6ZA9SyQobipePg==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/typescript-estree@8.13.0':
+ resolution: {integrity: sha512-v7SCIGmVsRK2Cy/LTLGN22uea6SaUIlpBcO/gnMGT/7zPtxp90bphcGf4fyrCQl3ZtiBKqVTG32hb668oIYy1g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -4818,32 +5429,32 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@7.18.0':
- resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- eslint: ^8.56.0
-
'@typescript-eslint/utils@7.4.0':
resolution: {integrity: sha512-NQt9QLM4Tt8qrlBVY9lkMYzfYtNz8/6qwZg8pI3cMGlPnj6mOpRxxAm7BMJN9K0AiY+1BwJ5lVC650YJqYOuNg==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
+ '@typescript-eslint/utils@8.13.0':
+ resolution: {integrity: sha512-A1EeYOND6Uv250nybnLZapeXpYMl8tkzYUxqmoKAWnI4sei3ihf2XdZVd+vVOmHGcp3t+P7yRrNsyyiXTvShFQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+
'@typescript-eslint/utils@8.5.0':
resolution: {integrity: sha512-6yyGYVL0e+VzGYp60wvkBHiqDWOpT63pdMV2CVG4LVDd5uR6q1qQN/7LafBZtAtNIn/mqXjsSeS5ggv/P0iECw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@typescript-eslint/visitor-keys@7.18.0':
- resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
'@typescript-eslint/visitor-keys@7.4.0':
resolution: {integrity: sha512-0zkC7YM0iX5Y41homUUeW1CHtZR01K3ybjM1l6QczoMuay0XKtrb93kv95AxUGwdjGr64nNqnOCwmEl616N8CA==}
engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/visitor-keys@8.13.0':
+ resolution: {integrity: sha512-7N/+lztJqH4Mrf0lb10R/CbI1EaAMMGyF5y0oJvFoAhafwgiRA7TXyd8TFn8FC8k5y2dTsYogg238qavRGNnlw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/visitor-keys@8.5.0':
resolution: {integrity: sha512-yTPqMnbAZJNy2Xq2XU8AdtOW9tJIr+UQb64aXB9f3B1498Zx9JorVgFJcZpEc9UBuCCrdzKID2RGAMkYcDtZOw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -5032,6 +5643,10 @@ packages:
resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
engines: {node: '>= 14'}
+ agent-base@7.1.1:
+ resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
+ engines: {node: '>= 14'}
+
aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
@@ -5304,6 +5919,13 @@ packages:
'@babel/core': ^7.12.0
webpack: '>=5'
+ babel-loader@9.2.1:
+ resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==}
+ engines: {node: '>= 14.15.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ webpack: '>=5'
+
babel-plugin-const-enum@1.2.0:
resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==}
peerDependencies:
@@ -5333,6 +5955,11 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs3@0.10.6:
+ resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-polyfill-regenerator@0.6.2:
resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
peerDependencies:
@@ -5384,6 +6011,9 @@ packages:
bcrypt-pbkdf@1.0.2:
resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
+ beasties@0.1.0:
+ resolution: {integrity: sha512-+Ssscd2gVG24qRNC+E2g88D+xsQW4xwakWtKAiGEQ3Pw54/FGdyo9RrfxhGhEv6ilFVbB7r3Lgx+QnAxnSpECw==}
+
before-after-hook@2.2.3:
resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
@@ -5453,6 +6083,10 @@ packages:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
+ braces@3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+ engines: {node: '>=8'}
+
browserslist@4.21.5:
resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -5468,6 +6102,11 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
+ browserslist@4.24.2:
+ resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
bs-logger@0.2.6:
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
engines: {node: '>= 6'}
@@ -5531,6 +6170,10 @@ packages:
resolution: {integrity: sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w==}
engines: {node: ^16.14.0 || >=18.0.0}
+ cacache@19.0.1:
+ resolution: {integrity: sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
cache-content-type@1.0.1:
resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==}
engines: {node: '>= 6.0.0'}
@@ -5605,6 +6248,9 @@ packages:
caniuse-lite@1.0.30001660:
resolution: {integrity: sha512-GacvNTTuATm26qC74pt+ad1fW15mlQ/zuTzzY1ZoIzECTP8HURDfF43kNxPgf7H1jmelCBQTTbBNxdSXOA7Bqg==}
+ caniuse-lite@1.0.30001677:
+ resolution: {integrity: sha512-fmfjsOlJUpMWu+mAAtZZZHz7UEwsUxIIvu1TJfO1HqFQvB/B+ii0xr9B5HpbZY/mC4XZ8SvjHJqtAY6pDPQEog==}
+
cardinal@2.1.1:
resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==}
hasBin: true
@@ -5672,10 +6318,18 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
+ chokidar@4.0.1:
+ resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
+ engines: {node: '>= 14.16.0'}
+
chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
+ chownr@3.0.0:
+ resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
+ engines: {node: '>=18'}
+
chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
@@ -5856,8 +6510,8 @@ packages:
resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
engines: {node: '>=14'}
- commander@12.0.0:
- resolution: {integrity: sha512-MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA==}
+ commander@12.1.0:
+ resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
engines: {node: '>=18'}
commander@2.20.3:
@@ -6073,8 +6727,8 @@ packages:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
- cookies@0.8.0:
- resolution: {integrity: sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==}
+ cookies@0.9.1:
+ resolution: {integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==}
engines: {node: '>= 0.8'}
copy-anything@2.0.6:
@@ -6200,9 +6854,6 @@ packages:
create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
- critters@0.0.24:
- resolution: {integrity: sha512-Oyqew0FGM0wYUSNqR0L6AteO5MpMoUU0rhKRieXeiKs+PmRTxiJMyaunYB2KF6fQ3dzChXKCpbFOEJx3OQ1v/Q==}
-
cron-parser@4.9.0:
resolution: {integrity: sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==}
engines: {node: '>=12.0.0'}
@@ -6617,24 +7268,25 @@ packages:
supports-color:
optional: true
- debug@3.1.0:
- resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==}
+ debug@3.2.7:
+ resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
- debug@3.2.7:
- resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
+ debug@4.3.4:
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
- debug@4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -6881,6 +7533,9 @@ packages:
domutils@3.0.1:
resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==}
+ domutils@3.1.0:
+ resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
+
dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
@@ -6937,6 +7592,9 @@ packages:
electron-to-chromium@1.5.23:
resolution: {integrity: sha512-mBhODedOXg4v5QWwl21DjM5amzjmI1zw9EPrPK/5Wx7C8jt33bpZNrC7OhHUG3pxRtbLpr3W2dXT+Ph1SsfRZA==}
+ electron-to-chromium@1.5.50:
+ resolution: {integrity: sha512-eMVObiUQ2LdgeO1F/ySTXsvqvxb6ZH2zPGaMYsWzRDdOddUa77tdmI0ltg+L16UpbWdhPmuF3wIQYyQq65WfZw==}
+
elkjs@0.8.2:
resolution: {integrity: sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==}
@@ -7014,9 +7672,6 @@ packages:
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- error-inject@1.0.0:
- resolution: {integrity: sha512-JM8N6PytDbmIYm1IhPWlo8vr3NtfjhDY/1MhD/a5b/aad/USE8a0+NsqE9d5n+GVGmuNkPQWm4bFQWv18d8tMg==}
-
es-define-property@1.0.0:
resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
engines: {node: '>= 0.4'}
@@ -7028,8 +7683,8 @@ packages:
es-module-lexer@1.5.3:
resolution: {integrity: sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==}
- esbuild-wasm@0.23.0:
- resolution: {integrity: sha512-6jP8UmWy6R6TUUV8bMuC3ZyZ6lZKI56x0tkxyCIqWwRRJ/DgeQKneh/Oid5EoGoPFLrGNkz47ZEtWAYuiY/u9g==}
+ esbuild-wasm@0.24.0:
+ resolution: {integrity: sha512-xhNn5tL1AhkPg4ft59yXT6FkwKXiPSYyz1IeinJHUJpjvOHOIPvdmFQc0pGdjxlKSbzZc2mNmtVOWAR1EF/JAg==}
engines: {node: '>=18'}
hasBin: true
@@ -7048,20 +7703,11 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.23.0:
- resolution: {integrity: sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==}
+ esbuild@0.24.0:
+ resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==}
engines: {node: '>=18'}
hasBin: true
- esbuild@0.23.1:
- resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
- engines: {node: '>=18'}
- hasBin: true
-
- escalade@3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
- engines: {node: '>=6'}
-
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -7403,6 +8049,10 @@ packages:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
+ fill-range@7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
+ engines: {node: '>=8'}
+
finalhandler@1.2.0:
resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
@@ -7715,6 +8365,10 @@ packages:
engines: {node: '>=16 || 14 >=14.18'}
hasBin: true
+ glob@10.4.5:
+ resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
+ hasBin: true
+
glob@11.0.0:
resolution: {integrity: sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==}
engines: {node: 20 || >=22}
@@ -7761,6 +8415,10 @@ packages:
resolution: {integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==}
engines: {node: '>=8'}
+ globals@15.12.0:
+ resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==}
+ engines: {node: '>=18'}
+
globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
@@ -7957,6 +8615,10 @@ packages:
resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
engines: {node: ^16.14.0 || >=18.0.0}
+ hosted-git-info@8.0.0:
+ resolution: {integrity: sha512-4nw3vOVR+vHUOT8+U4giwe2tcGv+R3pwwRidUe67DoMBTjhrfr6rZYJVVwdkBE+Um050SG+X9tf0Jo4fOpn01w==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
@@ -8008,6 +8670,9 @@ packages:
htmlparser2@8.0.2:
resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
+ htmlparser2@9.1.0:
+ resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==}
+
http-assert@1.5.0:
resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==}
engines: {node: '>= 0.8'}
@@ -8050,8 +8715,8 @@ packages:
'@types/express':
optional: true
- http-proxy-middleware@3.0.0:
- resolution: {integrity: sha512-36AV1fIaI2cWRzHo+rbcxhe3M3jUDCNzc4D5zRl57sEWRAxdXYtw7FSQKYY6PDKssiAKjLYypbssHk+xs/kMXw==}
+ http-proxy-middleware@3.0.3:
+ resolution: {integrity: sha512-usY0HG5nyDUwtqpiZdETNbmKtw3QQ1jwYFZ9wi5iHzX2BcILwQKtYDJPo7XHTsu5Z0B2Hj3W9NNnbd+AjFWjqg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
http-proxy@1.18.1:
@@ -8135,9 +8800,9 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore-walk@6.0.0:
- resolution: {integrity: sha512-bTf9UWe/UP1yxG3QUrj/KOvEhTAUWPcv+WvbFZ28LcqznXabp7Xu6o9y1JEC18+oqODuS7VhTpekV5XvFwsxJg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ ignore-walk@7.0.0:
+ resolution: {integrity: sha512-T4gbf83A4NH95zvhVYZc+qWocBBGlpzUXLPGurJggw/WIOwicfXJChLDP/iBZnN5WqROSu5Bm3hhle4z8a8YGQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
ignore@5.2.4:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
@@ -8220,9 +8885,9 @@ packages:
resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
engines: {node: '>=10'}
- ini@4.1.3:
- resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ ini@5.0.0:
+ resolution: {integrity: sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==}
+ engines: {node: ^18.17.0 || >=20.5.0}
injection-js@2.4.0:
resolution: {integrity: sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==}
@@ -8256,8 +8921,9 @@ packages:
resolution: {integrity: sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==}
engines: {node: '>=12.22.0'}
- ip@2.0.0:
- resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
+ ip-address@9.0.5:
+ resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
+ engines: {node: '>= 12'}
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
@@ -8422,6 +9088,10 @@ packages:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
+ is-plain-object@5.0.0:
+ resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
+ engines: {node: '>=0.10.0'}
+
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
@@ -8524,6 +9194,10 @@ packages:
isomorphic-fetch@3.0.0:
resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==}
+ isomorphic-rslog@0.0.5:
+ resolution: {integrity: sha512-pkU3vvajRJ0LKLaMFy8Cj7ElbFUdkQKVhUk+DQsVCYsLW4uulU65C2s3l+Sm5OtiOwprzkYYcAIJa/COwCYHWA==}
+ engines: {node: '>=14.17.6'}
+
isomorphic-ws@5.0.0:
resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==}
peerDependencies:
@@ -8564,6 +9238,9 @@ packages:
resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
engines: {node: '>=14'}
+ jackspeak@3.4.3:
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
+
jackspeak@4.0.1:
resolution: {integrity: sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==}
engines: {node: 20 || >=22}
@@ -8727,10 +9404,6 @@ packages:
node-notifier:
optional: true
- jiti@1.21.0:
- resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
- hasBin: true
-
jiti@1.21.6:
resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
hasBin: true
@@ -8765,6 +9438,9 @@ packages:
jsbn@0.1.1:
resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
+ jsbn@1.1.0:
+ resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
+
jsdom@20.0.3:
resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==}
engines: {node: '>=14'}
@@ -8792,6 +9468,11 @@ packages:
engines: {node: '>=4'}
hasBin: true
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
+ hasBin: true
+
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
@@ -8805,9 +9486,9 @@ packages:
json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- json-parse-even-better-errors@3.0.0:
- resolution: {integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ json-parse-even-better-errors@4.0.0:
+ resolution: {integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
@@ -8889,18 +9570,15 @@ packages:
knitwork@1.1.0:
resolution: {integrity: sha512-oHnmiBUVHz1V+URE77PNot2lv3QiYU2zQf1JjOVkMt3YDKGbu8NAFr+c4mcNOhdsGrB/VpVbRwPwhiXrPhxQbw==}
- koa-compose@3.2.1:
- resolution: {integrity: sha512-8gen2cvKHIZ35eDEik5WOo8zbVp9t4cP8p4hW4uE55waxolLRexKKrqfCpwhGVppnB40jWeF8bZeTVg99eZgPw==}
-
koa-compose@4.1.0:
resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==}
- koa-convert@1.2.0:
- resolution: {integrity: sha512-K9XqjmEDStGX09v3oxR7t5uPRy0jqJdvodHa6wxWTHrTfDq0WUNnYTOOUZN6g8OM8oZQXprQASbiIXG2Ez8ehA==}
- engines: {node: '>= 4'}
+ koa-convert@2.0.0:
+ resolution: {integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==}
+ engines: {node: '>= 10'}
- koa@2.11.0:
- resolution: {integrity: sha512-EpR9dElBTDlaDgyhDMiLkXrPwp6ZqgAIBvhhmxQ9XN4TFgW+gEz6tkcsNI6BnUbUftrKDjVFj4lW2/J2aNBMMA==}
+ koa@2.15.3:
+ resolution: {integrity: sha512-j/8tY9j5t+GVMLeioLaxweJiKUayFhlGqNTzf2ZGwL0ZCQijd2RLHK0SLW5Tsko8YyyqCZC2cojIb0/s62qTAg==}
engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4}
kolorist@1.6.0:
@@ -9026,12 +9704,12 @@ packages:
enquirer:
optional: true
- listr2@8.2.4:
- resolution: {integrity: sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==}
+ listr2@8.2.5:
+ resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
engines: {node: '>=18.0.0'}
- lmdb@3.0.13:
- resolution: {integrity: sha512-UGe+BbaSUQtAMZobTb4nHvFMrmvuAQKSeaqAX2meTEQjfsbpl5sxdHD8T72OnwD4GU9uwNhYXIVe4QGs8N9Zyw==}
+ lmdb@3.1.3:
+ resolution: {integrity: sha512-WQcfSoOTw+XfBXQN4dRN1Ke5vv+NgmOWs4wH8oh4jYFmPZIaVPiQVF+0nGdjQDLGDcrMMyr2C34cG6WZPes6xQ==}
hasBin: true
load-json-file@4.0.0:
@@ -9223,6 +9901,9 @@ packages:
magic-string@0.30.11:
resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
+ magic-string@0.30.12:
+ resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
+
magic-string@0.30.8:
resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==}
engines: {node: '>=12'}
@@ -9238,10 +9919,14 @@ packages:
make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- make-fetch-happen@13.0.0:
- resolution: {integrity: sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==}
+ make-fetch-happen@13.0.1:
+ resolution: {integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==}
engines: {node: ^16.14.0 || >=18.0.0}
+ make-fetch-happen@14.0.3:
+ resolution: {integrity: sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
@@ -9591,6 +10276,10 @@ packages:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+ engines: {node: '>=8.6'}
+
mime-db@1.33.0:
resolution: {integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==}
engines: {node: '>= 0.6'}
@@ -9672,6 +10361,12 @@ packages:
peerDependencies:
webpack: ^5.0.0
+ mini-css-extract-plugin@2.9.1:
+ resolution: {integrity: sha512-+Vyi+GCCOHnrJ2VPS+6aPoXN2k2jgUzDRhTFLjjTBn23qyXJXkjUWQgTL+mXpF5/A8ixLdCc6kWsoeOjKGejKQ==}
+ engines: {node: '>= 12.13.0'}
+ peerDependencies:
+ webpack: ^5.0.0
+
minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
@@ -9697,6 +10392,10 @@ packages:
resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
engines: {node: '>=16 || 14 >=14.17'}
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
@@ -9711,17 +10410,22 @@ packages:
resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
engines: {node: '>= 8'}
+ minipass-collect@2.0.1:
+ resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
minipass-fetch@3.0.0:
resolution: {integrity: sha512-NSx3k5gR4Q5Ts2poCM/19d45VwhVLBtJZ6ypYcthj2BwmDx/e7lW8Aadnyt3edd2W0ecb+b0o7FYLRYE2AGcQg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ minipass-fetch@4.0.0:
+ resolution: {integrity: sha512-2v6aXUXwLP1Epd/gc32HAMIWoczx+fZwEPRHm/VwtrJzRGwR1qGZXEYV3Zp8ZjjbwaZhMrM6uHV4KVkk+XCc2w==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
minipass-flush@1.0.5:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
engines: {node: '>= 8'}
- minipass-json-stream@1.0.1:
- resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==}
-
minipass-pipeline@1.2.4:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
engines: {node: '>=8'}
@@ -9750,6 +10454,10 @@ packages:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
+ minizlib@3.0.1:
+ resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==}
+ engines: {node: '>= 18'}
+
mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
@@ -9816,6 +10524,10 @@ packages:
resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ mute-stream@2.0.0:
+ resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
@@ -9836,6 +10548,10 @@ packages:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
+ negotiator@1.0.0:
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
+ engines: {node: '>= 0.6'}
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
@@ -9845,15 +10561,15 @@ packages:
nested-error-stacks@2.1.1:
resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==}
- ng-packagr@18.2.1:
- resolution: {integrity: sha512-dy9ZDpZb3QpAz+Y/m8VAu7ctr2VrnRU3gmQwJagnNybVJtCsKn3lZA3IW7Z7GTLoG5IALSPouiCgiB/C8ozv7w==}
+ ng-packagr@19.0.0-rc.0:
+ resolution: {integrity: sha512-s+9tynvmsqNflv4qM8/Fli/Mv2omFTpau7bWlgjakHBh5GCNM2YHu1rqUsc70JWmOmHDQ9LHTvxQyD5VdF3msg==}
engines: {node: ^18.19.1 || >=20.11.1}
hasBin: true
peerDependencies:
- '@angular/compiler-cli': ^18.0.0 || ^18.2.0-next.0
+ '@angular/compiler-cli': ^19.0.0-next.0
tailwindcss: ^2.0.0 || ^3.0.0
tslib: ^2.3.0
- typescript: '>=5.4 <5.6'
+ typescript: '>=5.5 <5.7'
peerDependenciesMeta:
tailwindcss:
optional: true
@@ -9979,6 +10695,10 @@ packages:
resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==}
engines: {node: ^16.14.0 || >=18.0.0}
+ normalize-package-data@7.0.0:
+ resolution: {integrity: sha512-k6U0gKRIuNCTkwHGZqblCfLfBRh+w1vI6tBo+IeJwq2M8FUiOqhX7GH+GArQGScA7azd1WfyRCvxoXDO3hQDIA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
@@ -9995,37 +10715,37 @@ packages:
resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==}
engines: {node: '>=14.16'}
- npm-bundled@3.0.0:
- resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ npm-bundled@4.0.0:
+ resolution: {integrity: sha512-IxaQZDMsqfQ2Lz37VvyyEtKLe8FsRZuysmedy/N06TU1RyVppYKXrO4xIhR0F+7ubIBox6Q7nir6fQI3ej39iA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- npm-install-checks@6.0.0:
- resolution: {integrity: sha512-SBU9oFglRVZnfElwAtF14NivyulDqF1VKqqwNsFW9HDcbHMAPHpRSsVFgKuwFGq/hVvWZExz62Th0kvxn/XE7Q==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ npm-install-checks@7.1.0:
+ resolution: {integrity: sha512-bkTildVlofeMX7wiOaWk3PlW7YcBXAuEc7TWpOxwUgalG5ZvgT/ms+6OX9zt7iGLv4+VhKbRZhpOfgQJzk1YAw==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- npm-normalize-package-bin@3.0.0:
- resolution: {integrity: sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ npm-normalize-package-bin@4.0.0:
+ resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==}
+ engines: {node: ^18.17.0 || >=20.5.0}
npm-package-arg@11.0.1:
resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==}
engines: {node: ^16.14.0 || >=18.0.0}
- npm-package-arg@11.0.3:
- resolution: {integrity: sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ npm-package-arg@12.0.0:
+ resolution: {integrity: sha512-ZTE0hbwSdTNL+Stx2zxSqdu2KZfNDcrtrLdIk7XGnQFYBWYDho/ORvXtn5XEePcL3tFpGjHCV3X3xrtDh7eZ+A==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- npm-packlist@8.0.0:
- resolution: {integrity: sha512-ErAGFB5kJUciPy1mmx/C2YFbvxoJ0QJ9uwkCZOeR6CqLLISPZBOiFModAbSXnjjlwW5lOhuhXva+fURsSGJqyw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ npm-packlist@9.0.0:
+ resolution: {integrity: sha512-8qSayfmHJQTx3nJWYbbUmflpyarbLMBc6LCAjYsiGtXxDB68HaZpb8re6zeaLGxZzDuMdhsg70jryJe+RrItVQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- npm-pick-manifest@9.1.0:
- resolution: {integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ npm-pick-manifest@10.0.0:
+ resolution: {integrity: sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- npm-registry-fetch@17.0.1:
- resolution: {integrity: sha512-fLu9MTdZTlJAHUek/VLklE6EpIiP3VZpTiuN7OOMCt2Sd67NCpSEetMaxHHEZiZxllp8ZLsUpvbEszqTFEc+wA==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ npm-registry-fetch@18.0.2:
+ resolution: {integrity: sha512-LeVMZBBVy+oQb5R6FDV9OlJCcWDU+al10oKpe+nsvcHnG24Z3uM3SvJYKfGJlfGjVU8v9liejCrUR/M5HO5NEQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
npm-run-path@2.0.2:
resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
@@ -10128,8 +10848,8 @@ packages:
nwsapi@2.2.5:
resolution: {integrity: sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==}
- nx@19.5.3:
- resolution: {integrity: sha512-ZUrnRwPdRWXeo8IuLj16Oo9IfiDjd8C6xKWC4F6wcTNZ9ZS7ZErrfqaQr04zdO89ASF9brbkqm0UkMyDPc6kPQ==}
+ nx@20.0.8:
+ resolution: {integrity: sha512-cMtb+u5Eji7Xm9xMHZkRXMcO8GH6FFqS2+nMgtLUZ/+ZmquEgoV8mbsKVw1u1sJ6osOpWAu9OwXcilwtvSOoBw==}
hasBin: true
peerDependencies:
'@swc-node/register': ^1.8.0
@@ -10337,6 +11057,10 @@ packages:
resolution: {integrity: sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==}
engines: {node: '>=18'}
+ p-map@7.0.2:
+ resolution: {integrity: sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q==}
+ engines: {node: '>=18'}
+
p-queue@8.0.1:
resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==}
engines: {node: '>=18'}
@@ -10380,9 +11104,9 @@ packages:
resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==}
engines: {node: '>=14.16'}
- pacote@18.0.6:
- resolution: {integrity: sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ pacote@20.0.0:
+ resolution: {integrity: sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A==}
+ engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
pako@0.2.9:
@@ -10560,6 +11284,9 @@ packages:
picocolors@1.0.1:
resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
@@ -10596,8 +11323,8 @@ packages:
piscina@4.4.0:
resolution: {integrity: sha512-+AQduEJefrOApE4bV7KRmp3N2JnnyErlVqq4P/jmko4FPz9Z877BCccl/iB3FdrWSUkvbGV9Kan/KllJgat3Vg==}
- piscina@4.6.1:
- resolution: {integrity: sha512-z30AwWGtQE+Apr+2WBZensP2lIvwoaMcOPkQlIEmSGMJNUvaYACylPYrQM6wSdUNJlnDVMSpLv7xTMJqlVshOA==}
+ piscina@4.7.0:
+ resolution: {integrity: sha512-b8hvkpp9zS0zsfa939b/jXbe64Z2gZv0Ha7FYPNUiDIB1y2AtxcOZdfP8xN8HFjUaqQiT9gRlfjAsoL8vdJ1Iw==}
pkg-conf@2.1.0:
resolution: {integrity: sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==}
@@ -11266,6 +11993,10 @@ packages:
resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.4.47:
+ resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
+ engines: {node: ^10 || ^12 || >=14}
+
preferred-pm@3.1.3:
resolution: {integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==}
engines: {node: '>=10'}
@@ -11319,6 +12050,10 @@ packages:
resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ proc-log@5.0.0:
+ resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
@@ -11600,6 +12335,10 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
+ readdirp@4.0.2:
+ resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
+ engines: {node: '>= 14.16.0'}
+
reading-time@1.5.0:
resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==}
@@ -11638,6 +12377,10 @@ packages:
resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
engines: {node: '>=4'}
+ regenerate-unicode-properties@10.2.0:
+ resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
+ engines: {node: '>=4'}
+
regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
@@ -11657,6 +12400,10 @@ packages:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
+ regexpu-core@6.1.1:
+ resolution: {integrity: sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==}
+ engines: {node: '>=4'}
+
registry-auth-token@5.0.2:
resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==}
engines: {node: '>=14'}
@@ -11665,6 +12412,13 @@ packages:
resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==}
engines: {node: '>=12'}
+ regjsgen@0.8.0:
+ resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
+
+ regjsparser@0.11.2:
+ resolution: {integrity: sha512-3OGZZ4HoLJkkAZx/48mTXJNlmqTGOzc0o9OWQPuWpkOlXXPbyN6OafCcoXUnBqE2D3f/T5L+pWc1kdEmnfnRsA==}
+ hasBin: true
+
regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
@@ -11858,9 +12612,8 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rimraf@5.0.7:
- resolution: {integrity: sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==}
- engines: {node: '>=14.18'}
+ rimraf@5.0.10:
+ resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
hasBin: true
rimraf@6.0.1:
@@ -11906,6 +12659,16 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ rollup@4.24.3:
+ resolution: {integrity: sha512-HBW896xR5HGmoksbi3JBDtmVzWiPAYqp7wip50hjQ67JbDz61nyoMPdqu1DvVW9asYb2M65Z20ZHsyJCMqMyDg==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
+ rollup@4.24.4:
+ resolution: {integrity: sha512-vGorVWIsWfX3xbcyAS+I047kFKapHYivmkaT63Smj77XwvLSJos6M1xGqZnBPFQFBRZDOcG1QnYEIxAvTr/HjA==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
rrweb-cssom@0.6.0:
resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
@@ -11970,8 +12733,8 @@ packages:
sass-embedded:
optional: true
- sass-loader@16.0.0:
- resolution: {integrity: sha512-n13Z+3rU9A177dk4888czcVFiC8CL9dii4qpXWUg3YIIgZEvi9TCFKjOQcbK0kJM7DJu9VucrZFddvNfYCPwtw==}
+ sass-loader@16.0.2:
+ resolution: {integrity: sha512-Ll6iXZ1EYwYT19SqW4mSBb76vSSi8JgzElmzIerhEGgzB5hRjDQIWsPmuk1UrAXkR16KJHqVY0eH+5/uw9Tmfw==}
engines: {node: '>= 18.12.0'}
peerDependencies:
'@rspack/core': 0.x || 1.x
@@ -11991,8 +12754,13 @@ packages:
webpack:
optional: true
- sass@1.77.6:
- resolution: {integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==}
+ sass@1.80.5:
+ resolution: {integrity: sha512-TQd2aoQl/+zsxRMEDSxVdpPIqeq9UFc6pr7PzkugiTx3VYCFPUaa3P4RrBQsqok4PO200Vkz0vXQBNlg7W907g==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+
+ sass@1.80.6:
+ resolution: {integrity: sha512-ccZgdHNiBF1NHBsWvacvT5rju3y1d/Eu+8Ex6c21nHp2lZGLBEtuwc415QfiI1PJa1TpCo3iXwwSRjRpn2Ckjg==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -12006,6 +12774,9 @@ packages:
sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
+ sax@1.4.1:
+ resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
+
saxes@6.0.0:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
@@ -12187,9 +12958,9 @@ packages:
resolution: {integrity: sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==}
engines: {node: '>=6'}
- sigstore@2.2.1:
- resolution: {integrity: sha512-OBBSKvmjr4DCyUb+IC2p7wooOCsCNwaqvCilTJVNPo0y8lJl+LsCrfz4LtMwnw3Gn+8frt816wi1+DWZTUCpBQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ sigstore@3.0.0:
+ resolution: {integrity: sha512-PHMifhh3EN4loMcHCz6l3v/luzgT3za+9f8subGgeMNjbJjzH4Ij/YoX3Gvu+kaouJRIlVdTHHCREADYf+ZteA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
@@ -12255,13 +13026,13 @@ packages:
sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
- socks-proxy-agent@8.0.2:
- resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==}
+ socks-proxy-agent@8.0.4:
+ resolution: {integrity: sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==}
engines: {node: '>= 14'}
- socks@2.7.1:
- resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
- engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
+ socks@2.8.3:
+ resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
sonic-forest@1.0.3:
resolution: {integrity: sha512-dtwajos6IWMEWXdEbW1IkEkyL2gztCAgDplRIX+OT5aRKnEd5e7r7YCxRgXZdhRP1FBdOBf8axeTPhzDv8T4wQ==}
@@ -12288,6 +13059,10 @@ packages:
resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
engines: {node: '>=0.10.0'}
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
+ engines: {node: '>=0.10.0'}
+
source-map-loader@5.0.0:
resolution: {integrity: sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==}
engines: {node: '>= 18.12.0'}
@@ -12355,6 +13130,9 @@ packages:
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+ sprintf-js@1.1.3:
+ resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
+
srcset@4.0.0:
resolution: {integrity: sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw==}
engines: {node: '>=12'}
@@ -12368,6 +13146,10 @@ packages:
resolution: {integrity: sha512-64ghGOpqW0k+jh7m5jndBGdVEoPikWwGQmBNN5ks6jyUSMymzHDTlnNHOvzp+6MmHOljr2MokUzvRksnTwG0Iw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ ssri@12.0.0:
+ resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
stack-utils@2.0.5:
resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==}
engines: {node: '>=10'}
@@ -12506,11 +13288,6 @@ packages:
resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- strong-log-transformer@2.1.0:
- resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==}
- engines: {node: '>=4'}
- hasBin: true
-
strtok3@7.0.0:
resolution: {integrity: sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==}
engines: {node: '>=14.16'}
@@ -12549,8 +13326,9 @@ packages:
stylus: '>=0.52.4'
webpack: ^5.0.0
- stylus@0.59.0:
- resolution: {integrity: sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==}
+ stylus@0.64.0:
+ resolution: {integrity: sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA==}
+ engines: {node: '>=16'}
hasBin: true
sucrase@3.35.0:
@@ -12634,6 +13412,10 @@ packages:
resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
engines: {node: '>=10'}
+ tar@7.4.3:
+ resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
+ engines: {node: '>=18'}
+
temp-dir@2.0.0:
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
engines: {node: '>=8'}
@@ -12671,6 +13453,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ terser@5.36.0:
+ resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==}
+ engines: {node: '>=10'}
+ hasBin: true
+
test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
@@ -12909,19 +13696,19 @@ packages:
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- tslib@2.6.3:
- resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
-
tslib@2.7.0:
resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
+ tslib@2.8.0:
+ resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==}
+
tsscmp@1.0.6:
resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==}
engines: {node: '>=0.6.x'}
- tuf-js@2.2.0:
- resolution: {integrity: sha512-ZSDngmP1z6zw+FIkIBjvOp/II/mIub/O7Pp12j1WNsiCpg5R5wAc//i555bBQsE44O94btLt0xM/Zr2LQjwdCg==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ tuf-js@3.0.1:
+ resolution: {integrity: sha512-+68OP1ZzSF84rTckf3FA95vJ1Zlx/uaXyiiKyPd1pA4rZNkpEvDAKmsu1xUSmbF/chCRYgZ6UZkDwC7PmzmAyA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
tunnel-agent@0.6.0:
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
@@ -13022,9 +13809,6 @@ packages:
undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
- undici-types@6.19.8:
- resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
-
undici@5.28.4:
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
engines: {node: '>=14.0'}
@@ -13082,10 +13866,18 @@ packages:
resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ unique-filename@4.0.0:
+ resolution: {integrity: sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
unique-slug@4.0.0:
resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ unique-slug@5.0.0:
+ resolution: {integrity: sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
unique-string@3.0.0:
resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==}
engines: {node: '>=12'}
@@ -13247,6 +14039,12 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
+ update-browserslist-db@1.1.1:
+ resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
update-notifier@6.0.2:
resolution: {integrity: sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==}
engines: {node: '>=14.16'}
@@ -13326,6 +14124,10 @@ packages:
resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ validate-npm-package-name@6.0.0:
+ resolution: {integrity: sha512-d7KLgL1LD3U3fgnvWEY1cQXoO/q6EQ1BSz48Sa149V/5zVTAbgmZIpyI8TRi6U9/JNyeYLlTKsEMPtLC27RFUg==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
value-equal@1.0.1:
resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==}
@@ -13433,6 +14235,37 @@ packages:
terser:
optional: true
+ vite@5.4.10:
+ resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+
vitefu@0.2.5:
resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
peerDependencies:
@@ -13482,6 +14315,10 @@ packages:
resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
engines: {node: '>=10.13.0'}
+ watchpack@2.4.2:
+ resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
+ engines: {node: '>=10.13.0'}
+
wbuf@1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
@@ -13542,8 +14379,8 @@ packages:
webpack-cli:
optional: true
- webpack-dev-server@5.0.4:
- resolution: {integrity: sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA==}
+ webpack-dev-server@5.1.0:
+ resolution: {integrity: sha512-aQpaN81X6tXie1FoOB7xlMfCsN19pSvRAeYUHOdFWOlhpQ/LlbfTqYwwmEDFV0h8GGuqmCmKmT+pxcUV/Nt2gQ==}
engines: {node: '>= 18.12.0'}
hasBin: true
peerDependencies:
@@ -13597,6 +14434,16 @@ packages:
webpack-cli:
optional: true
+ webpack@5.95.0:
+ resolution: {integrity: sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+
webpackbar@5.0.2:
resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==}
engines: {node: '>=12'}
@@ -13662,6 +14509,11 @@ packages:
engines: {node: ^16.13.0 || >=18.0.0}
hasBin: true
+ which@5.0.0:
+ resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+ hasBin: true
+
why-is-node-running@2.2.2:
resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
engines: {node: '>=8'}
@@ -13761,6 +14613,18 @@ packages:
utf-8-validate:
optional: true
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
xdg-basedir@5.1.0:
resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==}
engines: {node: '>=12'}
@@ -13807,6 +14671,10 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+ yallist@5.0.0:
+ resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
+ engines: {node: '>=18'}
+
yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
@@ -13882,8 +14750,8 @@ packages:
zod@3.23.8:
resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
- zone.js@0.14.10:
- resolution: {integrity: sha512-YGAhaO7J5ywOXW6InXNlLmfU194F8lVgu7bRntUF3TiG8Y3nBK0x1UJJuHUP/e8IyihkjCYqhCScpSwnlaSRkQ==}
+ zone.js@0.15.0:
+ resolution: {integrity: sha512-9oxn0IIjbCZkJ67L+LkhYWRyAy7axphb3VgE2MBDlOqnmHMPWGYMxJxBYFueFq/JGY2GMwS0rU+UCLunEmy5UA==}
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
@@ -13892,7 +14760,7 @@ snapshots:
'@aashutoshrathi/word-wrap@1.2.6': {}
- '@adobe/css-tools@4.3.1': {}
+ '@adobe/css-tools@4.3.3': {}
'@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0)':
dependencies:
@@ -14012,87 +14880,81 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@angular-devkit/architect@0.1802.4(chokidar@3.6.0)':
+ '@angular-devkit/architect@0.1900.0-rc.0':
dependencies:
- '@angular-devkit/core': 18.2.4(chokidar@3.6.0)
+ '@angular-devkit/core': 19.0.0-rc.0
rxjs: 7.8.1
transitivePeerDependencies:
- chokidar
- '@angular-devkit/build-angular@18.2.4(msxzxskjzouwjmooscvhcfgs3u)':
+ '@angular-devkit/build-angular@19.0.0-rc.0(nsmkqsfxcv5d74cmjogqx5r2fe)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1802.4(chokidar@3.6.0)
- '@angular-devkit/build-webpack': 0.1802.4(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- '@angular-devkit/core': 18.2.4(chokidar@3.6.0)
- '@angular/build': 18.2.4(@angular/compiler-cli@18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3))(@angular/platform-server@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))))(@types/node@18.19.15)(chokidar@3.6.0)(less@4.2.0)(postcss@8.4.41)(stylus@0.59.0)(tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)))(terser@5.31.6)(typescript@5.4.3)
- '@angular/compiler-cli': 18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3)
- '@babel/core': 7.25.2
- '@babel/generator': 7.25.0
- '@babel/helper-annotate-as-pure': 7.24.7
+ '@angular-devkit/architect': 0.1900.0-rc.0
+ '@angular-devkit/build-webpack': 0.1900.0-rc.0(webpack-dev-server@5.1.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ '@angular-devkit/core': 19.0.0-rc.0
+ '@angular/build': 19.0.0-rc.0(k6rat3vvws5kbfpqpcsv7kh3c4)
+ '@angular/compiler-cli': 19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4)
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-split-export-declaration': 7.24.7
- '@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-runtime': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
- '@babel/runtime': 7.25.0
- '@discoveryjs/json-ext': 0.6.1
- '@ngtools/webpack': 18.2.4(@angular/compiler-cli@18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3))(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.0(@types/node@18.19.15)(less@4.2.0)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
+ '@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
+ '@discoveryjs/json-ext': 0.6.3
+ '@ngtools/webpack': 19.0.0-rc.0(@angular/compiler-cli@19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))
ansi-colors: 4.1.3
- autoprefixer: 10.4.20(postcss@8.4.41)
- babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ autoprefixer: 10.4.20(postcss@8.4.47)
+ babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
browserslist: 4.23.3
- copy-webpack-plugin: 12.0.2(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- critters: 0.0.24
- css-loader: 7.1.2(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- esbuild-wasm: 0.23.0
+ copy-webpack-plugin: 12.0.2(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ css-loader: 7.1.2(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ esbuild-wasm: 0.24.0
fast-glob: 3.3.2
- http-proxy-middleware: 3.0.0
- https-proxy-agent: 7.0.5
+ http-proxy-middleware: 3.0.3
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(less@4.2.0)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- license-webpack-plugin: 4.0.2(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ less-loader: 12.2.0(less@4.2.0)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ license-webpack-plugin: 4.0.2(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
loader-utils: 3.3.1
- magic-string: 0.30.11
- mini-css-extract-plugin: 2.9.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- mrmime: 2.0.0
+ mini-css-extract-plugin: 2.9.1(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
open: 10.1.0
ora: 5.4.1
- parse5-html-rewriting-stream: 7.0.0
picomatch: 4.0.2
- piscina: 4.6.1
- postcss: 8.4.41
- postcss-loader: 8.1.1(postcss@8.4.41)(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ piscina: 4.7.0
+ postcss: 8.4.47
+ postcss-loader: 8.1.1(postcss@8.4.47)(typescript@5.5.4)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
resolve-url-loader: 5.0.0
rxjs: 7.8.1
- sass: 1.77.6
- sass-loader: 16.0.0(sass@1.77.6)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ sass: 1.80.5
+ sass-loader: 16.0.2(sass@1.80.5)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
semver: 7.6.3
- source-map-loader: 5.0.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ source-map-loader: 5.0.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
source-map-support: 0.5.21
- terser: 5.31.6
+ terser: 5.36.0
tree-kill: 1.2.2
- tslib: 2.6.3
- typescript: 5.4.3
- vite: 5.4.0(@types/node@18.19.15)(less@4.2.0)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
- watchpack: 2.4.1
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.23.0)
- webpack-dev-middleware: 7.4.2(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- webpack-dev-server: 5.0.4(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ tslib: 2.8.0
+ typescript: 5.5.4
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.24.0)
+ webpack-dev-middleware: 7.4.2(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ webpack-dev-server: 5.1.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
optionalDependencies:
- '@angular/platform-server': 18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))
- esbuild: 0.23.0
- jest: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ '@angular/platform-server': 19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))
+ esbuild: 0.24.0
+ jest: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
jest-environment-jsdom: 29.7.0
- ng-packagr: 18.2.1(@angular/compiler-cli@18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3))(tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)))(tslib@2.7.0)(typescript@5.4.3)
- tailwindcss: 3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ ng-packagr: 19.0.0-rc.0(@angular/compiler-cli@19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)))(tslib@2.7.0)(typescript@5.5.4)
+ tailwindcss: 3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
transitivePeerDependencies:
+ - '@angular/compiler'
- '@rspack/core'
- '@swc/core'
- '@types/node'
@@ -14108,18 +14970,19 @@ snapshots:
- supports-color
- uglify-js
- utf-8-validate
+ - vite
- webpack-cli
- '@angular-devkit/build-webpack@0.1802.4(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))':
+ '@angular-devkit/build-webpack@0.1900.0-rc.0(webpack-dev-server@5.1.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))':
dependencies:
- '@angular-devkit/architect': 0.1802.4(chokidar@3.6.0)
+ '@angular-devkit/architect': 0.1900.0-rc.0
rxjs: 7.8.1
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
- webpack-dev-server: 5.0.4(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack-dev-server: 5.1.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
transitivePeerDependencies:
- chokidar
- '@angular-devkit/core@18.2.4(chokidar@3.6.0)':
+ '@angular-devkit/core@19.0.0-rc.0':
dependencies:
ajv: 8.17.1
ajv-formats: 3.0.1(ajv@8.17.1)
@@ -14127,14 +14990,12 @@ snapshots:
picomatch: 4.0.2
rxjs: 7.8.1
source-map: 0.7.4
- optionalDependencies:
- chokidar: 3.6.0
- '@angular-devkit/schematics@18.2.4(chokidar@3.6.0)':
+ '@angular-devkit/schematics@19.0.0-rc.0':
dependencies:
- '@angular-devkit/core': 18.2.4(chokidar@3.6.0)
+ '@angular-devkit/core': 19.0.0-rc.0
jsonc-parser: 3.3.1
- magic-string: 0.30.11
+ magic-string: 0.30.12
ora: 5.4.1
rxjs: 7.8.1
transitivePeerDependencies:
@@ -14142,77 +15003,79 @@ snapshots:
'@angular-eslint/bundled-angular-compiler@18.3.1': {}
- '@angular-eslint/eslint-plugin-template@18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)':
+ '@angular-eslint/eslint-plugin-template@18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 18.3.1
- '@angular-eslint/utils': 18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/utils': 8.5.0(eslint@8.57.0)(typescript@5.4.3)
+ '@angular-eslint/utils': 18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.5.0(eslint@8.57.0)(typescript@5.5.4)
aria-query: 5.3.0
axobject-query: 4.1.0
eslint: 8.57.0
- typescript: 5.4.3
+ typescript: 5.5.4
- '@angular-eslint/eslint-plugin@18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)':
+ '@angular-eslint/eslint-plugin@18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 18.3.1
- '@angular-eslint/utils': 18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/utils': 8.5.0(eslint@8.57.0)(typescript@5.4.3)
+ '@angular-eslint/utils': 18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.5.0(eslint@8.57.0)(typescript@5.5.4)
eslint: 8.57.0
- typescript: 5.4.3
+ typescript: 5.5.4
- '@angular-eslint/template-parser@18.3.1(eslint@8.57.0)(typescript@5.4.3)':
+ '@angular-eslint/template-parser@18.3.1(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 18.3.1
eslint: 8.57.0
eslint-scope: 8.0.2
- typescript: 5.4.3
+ typescript: 5.5.4
- '@angular-eslint/utils@18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)':
+ '@angular-eslint/utils@18.3.1(@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 18.3.1
- '@typescript-eslint/utils': 8.5.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/utils': 8.5.0(eslint@8.57.0)(typescript@5.5.4)
eslint: 8.57.0
- typescript: 5.4.3
+ typescript: 5.5.4
- '@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))':
+ '@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))':
dependencies:
- '@angular/core': 18.2.4(rxjs@7.8.1)(zone.js@0.14.10)
+ '@angular/core': 19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)
tslib: 2.7.0
- '@angular/build@18.2.4(@angular/compiler-cli@18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3))(@angular/platform-server@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))))(@types/node@18.19.15)(chokidar@3.6.0)(less@4.1.3)(postcss@8.4.38)(stylus@0.59.0)(tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)))(terser@5.31.6)(typescript@5.4.3)':
+ '@angular/build@19.0.0-rc.0(k6rat3vvws5kbfpqpcsv7kh3c4)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1802.4(chokidar@3.6.0)
- '@angular/compiler-cli': 18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3)
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
+ '@angular-devkit/architect': 0.1900.0-rc.0
+ '@angular/compiler': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
+ '@angular/compiler-cli': 19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2)
- '@inquirer/confirm': 3.1.22
- '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@inquirer/confirm': 5.0.1(@types/node@18.19.15)
+ '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.10(@types/node@18.19.15)(less@4.2.0)(sass@1.80.5)(stylus@0.64.0)(terser@5.36.0))
+ beasties: 0.1.0
browserslist: 4.23.3
- critters: 0.0.24
- esbuild: 0.23.0
+ esbuild: 0.24.0
fast-glob: 3.3.2
https-proxy-agent: 7.0.5
- listr2: 8.2.4
- lmdb: 3.0.13
- magic-string: 0.30.11
+ 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
picomatch: 4.0.2
- piscina: 4.6.1
- rollup: 4.20.0
- sass: 1.77.6
+ piscina: 4.7.0
+ rollup: 4.24.3
+ sass: 1.80.5
semver: 7.6.3
- typescript: 5.4.3
- vite: 5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
- watchpack: 2.4.1
+ typescript: 5.5.4
+ vite: 5.4.10(@types/node@18.19.15)(less@4.2.0)(sass@1.80.5)(stylus@0.64.0)(terser@5.36.0)
+ watchpack: 2.4.2
optionalDependencies:
- '@angular/platform-server': 18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))
- less: 4.1.3
- postcss: 8.4.38
- tailwindcss: 3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ '@angular/platform-server': 19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))
+ less: 4.2.0
+ lmdb: 3.1.3
+ postcss: 8.4.47
+ tailwindcss: 3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
transitivePeerDependencies:
- '@types/node'
- chokidar
@@ -14223,40 +15086,42 @@ snapshots:
- supports-color
- terser
- '@angular/build@18.2.4(@angular/compiler-cli@18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3))(@angular/platform-server@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))))(@types/node@18.19.15)(chokidar@3.6.0)(less@4.2.0)(postcss@8.4.41)(stylus@0.59.0)(tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)))(terser@5.31.6)(typescript@5.4.3)':
+ '@angular/build@19.0.0-rc.0(lkxsnzd7gbjrgxt3dmtisn4bda)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1802.4(chokidar@3.6.0)
- '@angular/compiler-cli': 18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3)
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
+ '@angular-devkit/architect': 0.1900.0-rc.0
+ '@angular/compiler': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
+ '@angular/compiler-cli': 19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2)
- '@inquirer/confirm': 3.1.22
- '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.0(@types/node@18.19.15)(less@4.2.0)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@inquirer/confirm': 5.0.1(@types/node@18.19.15)
+ '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.10(@types/node@18.19.15)(less@4.1.3)(sass@1.80.5)(stylus@0.64.0)(terser@5.36.0))
+ beasties: 0.1.0
browserslist: 4.23.3
- critters: 0.0.24
- esbuild: 0.23.0
+ esbuild: 0.24.0
fast-glob: 3.3.2
https-proxy-agent: 7.0.5
- listr2: 8.2.4
- lmdb: 3.0.13
- magic-string: 0.30.11
+ 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
picomatch: 4.0.2
- piscina: 4.6.1
- rollup: 4.20.0
- sass: 1.77.6
+ piscina: 4.7.0
+ rollup: 4.24.3
+ sass: 1.80.5
semver: 7.6.3
- typescript: 5.4.3
- vite: 5.4.0(@types/node@18.19.15)(less@4.2.0)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
- watchpack: 2.4.1
+ typescript: 5.5.4
+ vite: 5.4.10(@types/node@18.19.15)(less@4.1.3)(sass@1.80.5)(stylus@0.64.0)(terser@5.36.0)
+ watchpack: 2.4.2
optionalDependencies:
- '@angular/platform-server': 18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))
- less: 4.2.0
- postcss: 8.4.41
- tailwindcss: 3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ '@angular/platform-server': 19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))
+ less: 4.1.3
+ lmdb: 3.1.3
+ postcss: 8.4.38
+ tailwindcss: 3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
transitivePeerDependencies:
- '@types/node'
- chokidar
@@ -14267,124 +15132,125 @@ snapshots:
- supports-color
- terser
- '@angular/cdk@18.2.4(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)':
+ '@angular/cdk@19.0.0-rc.0(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)':
dependencies:
- '@angular/common': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/core': 18.2.4(rxjs@7.8.1)(zone.js@0.14.10)
+ '@angular/common': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ '@angular/core': 19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)
rxjs: 7.8.1
tslib: 2.7.0
optionalDependencies:
parse5: 7.1.2
- '@angular/cli@18.2.4(chokidar@3.6.0)':
+ '@angular/cli@19.0.0-rc.0(@types/node@18.19.15)':
dependencies:
- '@angular-devkit/architect': 0.1802.4(chokidar@3.6.0)
- '@angular-devkit/core': 18.2.4(chokidar@3.6.0)
- '@angular-devkit/schematics': 18.2.4(chokidar@3.6.0)
- '@inquirer/prompts': 5.3.8
- '@listr2/prompt-adapter-inquirer': 2.0.15(@inquirer/prompts@5.3.8)
- '@schematics/angular': 18.2.4(chokidar@3.6.0)
+ '@angular-devkit/architect': 0.1900.0-rc.0
+ '@angular-devkit/core': 19.0.0-rc.0
+ '@angular-devkit/schematics': 19.0.0-rc.0
+ '@inquirer/prompts': 7.0.1(@types/node@18.19.15)
+ '@listr2/prompt-adapter-inquirer': 2.0.17(@inquirer/prompts@7.0.1(@types/node@18.19.15))
+ '@schematics/angular': 19.0.0-rc.0
'@yarnpkg/lockfile': 1.1.0
- ini: 4.1.3
+ ini: 5.0.0
jsonc-parser: 3.3.1
- listr2: 8.2.4
- npm-package-arg: 11.0.3
- npm-pick-manifest: 9.1.0
- pacote: 18.0.6
+ listr2: 8.2.5
+ npm-package-arg: 12.0.0
+ npm-pick-manifest: 10.0.0
+ pacote: 20.0.0
resolve: 1.22.8
semver: 7.6.3
symbol-observable: 4.0.0
yargs: 17.7.2
transitivePeerDependencies:
+ - '@types/node'
- bluebird
- chokidar
- supports-color
- '@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)':
+ '@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)':
dependencies:
- '@angular/core': 18.2.4(rxjs@7.8.1)(zone.js@0.14.10)
+ '@angular/core': 19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)
rxjs: 7.8.1
tslib: 2.7.0
- '@angular/compiler-cli@18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3)':
+ '@angular/compiler-cli@19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4)':
dependencies:
- '@angular/compiler': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
+ '@angular/compiler': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
'@babel/core': 7.25.2
'@jridgewell/sourcemap-codec': 1.5.0
- chokidar: 3.6.0
+ chokidar: 4.0.1
convert-source-map: 1.9.0
reflect-metadata: 0.2.1
semver: 7.6.3
tslib: 2.7.0
- typescript: 5.4.3
+ typescript: 5.5.4
yargs: 17.7.2
transitivePeerDependencies:
- supports-color
- '@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))':
+ '@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))':
dependencies:
tslib: 2.7.0
optionalDependencies:
- '@angular/core': 18.2.4(rxjs@7.8.1)(zone.js@0.14.10)
+ '@angular/core': 19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)':
+ '@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)':
dependencies:
rxjs: 7.8.1
tslib: 2.7.0
- zone.js: 0.14.10
+ zone.js: 0.15.0
- '@angular/forms@18.2.4(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1)':
+ '@angular/forms@19.0.0-rc.0(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)':
dependencies:
- '@angular/common': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/core': 18.2.4(rxjs@7.8.1)(zone.js@0.14.10)
- '@angular/platform-browser': 18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
+ '@angular/common': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ '@angular/core': 19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)
+ '@angular/platform-browser': 19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
rxjs: 7.8.1
tslib: 2.7.0
- '@angular/language-service@18.2.4': {}
+ '@angular/language-service@19.0.0-rc.0': {}
- '@angular/material@18.2.4(pfg3bh4prbfez6sjttu64fyb3u)':
+ '@angular/material@19.0.0-rc.0(hk32twamtskxrqrnsb2jg7u53m)':
dependencies:
- '@angular/animations': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
- '@angular/cdk': 18.2.4(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/common': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/core': 18.2.4(rxjs@7.8.1)(zone.js@0.14.10)
- '@angular/forms': 18.2.4(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1)
- '@angular/platform-browser': 18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
+ '@angular/animations': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
+ '@angular/cdk': 19.0.0-rc.0(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ '@angular/common': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ '@angular/core': 19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)
+ '@angular/forms': 19.0.0-rc.0(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
+ '@angular/platform-browser': 19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
rxjs: 7.8.1
tslib: 2.7.0
- '@angular/platform-browser-dynamic@18.2.4(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))':
+ '@angular/platform-browser-dynamic@19.0.0-rc.0(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))':
dependencies:
- '@angular/common': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/compiler': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
- '@angular/core': 18.2.4(rxjs@7.8.1)(zone.js@0.14.10)
- '@angular/platform-browser': 18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
+ '@angular/common': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ '@angular/compiler': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
+ '@angular/core': 19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)
+ '@angular/platform-browser': 19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
tslib: 2.7.0
- '@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))':
+ '@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))':
dependencies:
- '@angular/common': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/core': 18.2.4(rxjs@7.8.1)(zone.js@0.14.10)
+ '@angular/common': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ '@angular/core': 19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)
tslib: 2.7.0
optionalDependencies:
- '@angular/animations': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
+ '@angular/animations': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
- '@angular/platform-server@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))':
+ '@angular/platform-server@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))':
dependencies:
- '@angular/animations': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
- '@angular/common': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/compiler': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
- '@angular/core': 18.2.4(rxjs@7.8.1)(zone.js@0.14.10)
- '@angular/platform-browser': 18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
+ '@angular/animations': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
+ '@angular/common': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ '@angular/compiler': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
+ '@angular/core': 19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)
+ '@angular/platform-browser': 19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
tslib: 2.7.0
xhr2: 0.2.1
- '@angular/router@18.2.4(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1)':
+ '@angular/router@19.0.0-rc.0(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)':
dependencies:
- '@angular/common': 18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/core': 18.2.4(rxjs@7.8.1)(zone.js@0.14.10)
- '@angular/platform-browser': 18.2.4(@angular/animations@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10))
+ '@angular/common': 19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ '@angular/core': 19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)
+ '@angular/platform-browser': 19.0.0-rc.0(@angular/animations@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0))
rxjs: 7.8.1
tslib: 2.7.0
@@ -14419,12 +15285,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@astrojs/mdx@3.0.1(astro@4.8.7(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)(typescript@5.4.3))':
+ '@astrojs/mdx@3.0.1(astro@4.8.7(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)(typescript@5.5.4))':
dependencies:
'@astrojs/markdown-remark': 5.1.0
'@mdx-js/mdx': 3.0.1
acorn: 8.11.3
- astro: 4.8.7(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)(typescript@5.4.3)
+ astro: 4.8.7(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)(typescript@5.5.4)
es-module-lexer: 1.5.3
estree-util-visit: 2.0.0
github-slugger: 2.0.0
@@ -14444,12 +15310,12 @@ snapshots:
dependencies:
prismjs: 1.29.0
- '@astrojs/react@3.0.0(@types/react-dom@18.0.10)(@types/react@18.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))':
+ '@astrojs/react@3.0.0(@types/react-dom@18.0.10)(@types/react@18.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))':
dependencies:
'@astrojs/internal-helpers': 0.2.0
'@types/react': 18.0.21
'@types/react-dom': 18.0.10
- '@vitejs/plugin-react': 4.0.4(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
+ '@vitejs/plugin-react': 4.0.4(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
ultrahtml: 1.4.0
@@ -14486,17 +15352,25 @@ snapshots:
'@babel/code-frame@7.24.2':
dependencies:
'@babel/highlight': 7.24.2
- picocolors: 1.0.1
+ picocolors: 1.1.1
'@babel/code-frame@7.24.7':
dependencies:
'@babel/highlight': 7.24.7
picocolors: 1.0.1
+ '@babel/code-frame@7.26.2':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.0.1
+
'@babel/compat-data@7.22.9': {}
'@babel/compat-data@7.25.4': {}
+ '@babel/compat-data@7.26.2': {}
+
'@babel/core@7.21.8':
dependencies:
'@ampproject/remapping': 2.2.1
@@ -14557,6 +15431,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/core@7.26.0':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ convert-source-map: 2.0.0
+ debug: 4.3.4(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.22.9':
dependencies:
'@babel/types': 7.22.5
@@ -14571,24 +15465,29 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- '@babel/generator@7.25.0':
+ '@babel/generator@7.25.6':
dependencies:
'@babel/types': 7.25.6
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- '@babel/generator@7.25.6':
+ '@babel/generator@7.26.0':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
+ jsesc: 3.0.2
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
'@babel/types': 7.25.6
+ '@babel/helper-annotate-as-pure@7.25.9':
+ dependencies:
+ '@babel/types': 7.26.0
+
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
dependencies:
'@babel/traverse': 7.25.6
@@ -14596,6 +15495,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-compilation-targets@7.22.10':
dependencies:
'@babel/compat-data': 7.22.9
@@ -14620,6 +15526,14 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
+ '@babel/helper-compilation-targets@7.25.9':
+ dependencies:
+ '@babel/compat-data': 7.26.2
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.2
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
'@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -14635,6 +15549,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.24.5
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -14648,9 +15577,29 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.25.2)':
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.25.9
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+
+ '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
'@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
@@ -14662,6 +15611,13 @@ snapshots:
regexpu-core: 5.3.2
semver: 6.3.1
+ '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ regexpu-core: 6.1.1
+ semver: 6.3.1
+
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -14673,6 +15629,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ debug: 4.3.4(supports-color@8.1.1)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-environment-visitor@7.22.20': {}
'@babel/helper-environment-visitor@7.22.5': {}
@@ -14689,16 +15656,23 @@ snapshots:
'@babel/helper-hoist-variables@7.22.5':
dependencies:
- '@babel/types': 7.22.15
+ '@babel/types': 7.25.6
'@babel/helper-member-expression-to-functions@7.24.5':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
'@babel/helper-member-expression-to-functions@7.24.8':
dependencies:
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
@@ -14717,6 +15691,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-imports@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-transforms@7.22.9(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -14747,20 +15728,43 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-optimise-call-expression@7.22.5':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
'@babel/helper-optimise-call-expression@7.24.7':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
- '@babel/helper-plugin-utils@7.22.5': {}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ dependencies:
+ '@babel/types': 7.26.0
'@babel/helper-plugin-utils@7.24.5': {}
'@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
@@ -14770,6 +15774,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-wrap-function': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -14779,6 +15792,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-replace-supers@7.25.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-simple-access@7.22.5':
dependencies:
'@babel/types': 7.25.6
@@ -14794,9 +15825,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-simple-access@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-skip-transparent-expression-wrappers@7.22.5':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
dependencies:
@@ -14805,6 +15843,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
'@babel/types': 7.25.6
@@ -14819,6 +15864,8 @@ snapshots:
'@babel/helper-string-parser@7.24.8': {}
+ '@babel/helper-string-parser@7.25.9': {}
+
'@babel/helper-validator-identifier@7.19.1': {}
'@babel/helper-validator-identifier@7.22.15': {}
@@ -14833,12 +15880,16 @@ snapshots:
'@babel/helper-validator-identifier@7.24.7': {}
+ '@babel/helper-validator-identifier@7.25.9': {}
+
'@babel/helper-validator-option@7.22.5': {}
'@babel/helper-validator-option@7.23.5': {}
'@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
@@ -14847,6 +15898,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-wrap-function@7.25.9':
+ dependencies:
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helpers@7.22.11':
dependencies:
'@babel/template': 7.22.5
@@ -14868,6 +15927,11 @@ snapshots:
'@babel/template': 7.25.0
'@babel/types': 7.25.6
+ '@babel/helpers@7.26.0':
+ dependencies:
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+
'@babel/highlight@7.22.13':
dependencies:
'@babel/helper-validator-identifier': 7.22.15
@@ -14891,14 +15955,14 @@ snapshots:
'@babel/helper-validator-identifier': 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.1
'@babel/highlight@7.24.7':
dependencies:
'@babel/helper-validator-identifier': 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.1
'@babel/parser@7.21.9':
dependencies:
@@ -14924,6 +15988,10 @@ snapshots:
dependencies:
'@babel/types': 7.25.6
+ '@babel/parser@7.26.2':
+ dependencies:
+ '@babel/types': 7.26.0
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -14932,16 +16000,34 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
dependencies:
'@babel/core': 7.25.2
@@ -14951,6 +16037,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -14959,14 +16054,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.22.10(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.4(@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.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-proposal-decorators@7.22.10(@babel/core@7.26.0)':
+ dependencies:
+ '@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/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.25.2)
+ '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -14974,6 +16077,10 @@ snapshots:
dependencies:
'@babel/core': 7.25.2
+ '@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.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -14985,16 +16092,21 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
optional: true
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-bigint@7.8.3(@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-class-properties@7.12.13(@babel/core@7.21.8)':
dependencies:
@@ -15007,16 +16119,21 @@ snapshots:
'@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/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
- '@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15032,16 +16149,21 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-import-assertions@7.26.0(@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-attributes@7.25.6(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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-meta@7.10.4(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15053,6 +16175,11 @@ snapshots:
'@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
+
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15064,6 +16191,11 @@ snapshots:
'@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
+
'@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
@@ -15074,11 +16206,21 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+
'@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-jsx@7.24.6(@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.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15090,6 +16232,11 @@ snapshots:
'@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
+
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15101,6 +16248,11 @@ snapshots:
'@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
+
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15112,6 +16264,11 @@ snapshots:
'@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
+
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15123,6 +16280,11 @@ snapshots:
'@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
+
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15134,6 +16296,11 @@ snapshots:
'@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
+
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15145,6 +16312,11 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15161,22 +16333,43 @@ snapshots:
'@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
+
'@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2)
'@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.22.15(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.24.8
+
'@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
dependencies:
'@babel/core': 7.25.2
@@ -15187,6 +16380,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15196,16 +16398,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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.25.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15214,6 +16435,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@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
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15223,6 +16452,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@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
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-classes@7.25.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15235,40 +16472,85 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/template': 7.25.0
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
+
'@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
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/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@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)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
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/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@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)':
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/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)':
dependencies:
'@babel/core': 7.25.2
@@ -15277,12 +16559,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-export-namespace-from@7.24.7(@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-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)':
dependencies:
'@babel/core': 7.25.2
@@ -15291,6 +16586,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-function-name@7.25.1(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15300,28 +16603,57 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-json-strings@7.24.7(@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.25.2)
+ '@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)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
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/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)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
dependencies:
'@babel/core': 7.25.2
@@ -15330,6 +16662,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15339,6 +16679,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-simple-access': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15348,6 +16697,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15358,6 +16716,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15366,30 +16734,59 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.25.2)':
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/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@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)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
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/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)':
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/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.2)':
+ '@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)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-compilation-targets': 7.25.2
@@ -15397,6 +16794,13 @@ snapshots:
'@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/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@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)':
dependencies:
'@babel/core': 7.25.2
@@ -15405,12 +16809,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-optional-catch-binding@7.24.7(@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.25.2)
+ '@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)':
dependencies:
'@babel/core': 7.25.2
@@ -15420,11 +16837,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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.25.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15433,6 +16863,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@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
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15443,11 +16881,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@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
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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-react-constant-elements@7.24.6(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15468,12 +16920,12 @@ snapshots:
'@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5)':
dependencies:
@@ -15507,11 +16959,28 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.8
regenerator-transform: 0.15.2
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ regenerator-transform: 0.15.2
+
+ '@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.25.9(@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)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
dependencies:
'@babel/core': 7.25.2
@@ -15524,11 +16993,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
dependencies:
'@babel/core': 7.25.2
@@ -15537,21 +17023,44 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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.22.11(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15562,29 +17071,62 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-typescript@7.22.11(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@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)':
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/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@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)':
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/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.25.2)':
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/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/preset-env@7.25.3(@babel/core@7.25.2)':
dependencies:
'@babel/compat-data': 7.25.4
@@ -15674,6 +17216,81 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
+ '@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-block-scoped-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
+ core-js-compat: 3.38.1
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15681,6 +17298,13 @@ snapshots:
'@babel/types': 7.25.6
esutils: 2.0.3
+ '@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.24.8
+ '@babel/types': 7.25.6
+ esutils: 2.0.3
+
'@babel/preset-react@7.24.6(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -15704,6 +17328,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/preset-typescript@7.22.11(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.22.11(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/regjsgen@0.8.0': {}
'@babel/runtime-corejs3@7.24.6':
@@ -15719,6 +17354,10 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.0
+ '@babel/runtime@7.26.0':
+ dependencies:
+ regenerator-runtime: 0.14.0
+
'@babel/template@7.22.5':
dependencies:
'@babel/code-frame': 7.22.13
@@ -15737,6 +17376,12 @@ snapshots:
'@babel/parser': 7.25.6
'@babel/types': 7.25.6
+ '@babel/template@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+
'@babel/traverse@7.22.11':
dependencies:
'@babel/code-frame': 7.22.13
@@ -15779,6 +17424,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.0
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+ debug: 4.3.4(supports-color@8.1.1)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.21.5':
dependencies:
'@babel/helper-string-parser': 7.21.5
@@ -15827,6 +17484,11 @@ snapshots:
'@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
+ '@babel/types@7.26.0':
+ dependencies:
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+
'@bcoe/v8-coverage@0.2.3': {}
'@braintree/sanitize-url@6.0.2': {}
@@ -15900,7 +17562,7 @@ snapshots:
'@types/node': 18.19.15
chalk: 4.1.2
cosmiconfig: 8.1.3
- cosmiconfig-typescript-loader: 4.3.0(@types/node@18.19.15)(cosmiconfig@8.1.3)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@4.8.4)
+ cosmiconfig-typescript-loader: 4.3.0(@types/node@18.19.15)(cosmiconfig@8.1.3)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))(typescript@4.8.4)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -16120,7 +17782,7 @@ snapshots:
'@discoveryjs/json-ext@0.5.7': {}
- '@discoveryjs/json-ext@0.6.1': {}
+ '@discoveryjs/json-ext@0.6.3': {}
'@docsearch/css@3.6.0': {}
@@ -16717,7 +18379,7 @@ snapshots:
'@docusaurus/theme-translations@3.5.2':
dependencies:
fs-extra: 11.2.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@docusaurus/tsconfig@3.5.2': {}
@@ -16801,15 +18463,15 @@ snapshots:
'@emnapi/core@1.2.0':
dependencies:
'@emnapi/wasi-threads': 1.0.1
- tslib: 2.7.0
+ tslib: 2.8.0
'@emnapi/runtime@1.2.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@emnapi/wasi-threads@1.0.1':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@esbuild/aix-ppc64@0.20.2':
optional: true
@@ -16817,10 +18479,7 @@ snapshots:
'@esbuild/aix-ppc64@0.21.3':
optional: true
- '@esbuild/aix-ppc64@0.23.0':
- optional: true
-
- '@esbuild/aix-ppc64@0.23.1':
+ '@esbuild/aix-ppc64@0.24.0':
optional: true
'@esbuild/android-arm64@0.19.5':
@@ -16832,10 +18491,7 @@ snapshots:
'@esbuild/android-arm64@0.21.3':
optional: true
- '@esbuild/android-arm64@0.23.0':
- optional: true
-
- '@esbuild/android-arm64@0.23.1':
+ '@esbuild/android-arm64@0.24.0':
optional: true
'@esbuild/android-arm@0.19.5':
@@ -16847,10 +18503,7 @@ snapshots:
'@esbuild/android-arm@0.21.3':
optional: true
- '@esbuild/android-arm@0.23.0':
- optional: true
-
- '@esbuild/android-arm@0.23.1':
+ '@esbuild/android-arm@0.24.0':
optional: true
'@esbuild/android-x64@0.19.5':
@@ -16862,10 +18515,7 @@ snapshots:
'@esbuild/android-x64@0.21.3':
optional: true
- '@esbuild/android-x64@0.23.0':
- optional: true
-
- '@esbuild/android-x64@0.23.1':
+ '@esbuild/android-x64@0.24.0':
optional: true
'@esbuild/darwin-arm64@0.19.5':
@@ -16877,10 +18527,7 @@ snapshots:
'@esbuild/darwin-arm64@0.21.3':
optional: true
- '@esbuild/darwin-arm64@0.23.0':
- optional: true
-
- '@esbuild/darwin-arm64@0.23.1':
+ '@esbuild/darwin-arm64@0.24.0':
optional: true
'@esbuild/darwin-x64@0.19.5':
@@ -16892,10 +18539,7 @@ snapshots:
'@esbuild/darwin-x64@0.21.3':
optional: true
- '@esbuild/darwin-x64@0.23.0':
- optional: true
-
- '@esbuild/darwin-x64@0.23.1':
+ '@esbuild/darwin-x64@0.24.0':
optional: true
'@esbuild/freebsd-arm64@0.19.5':
@@ -16907,10 +18551,7 @@ snapshots:
'@esbuild/freebsd-arm64@0.21.3':
optional: true
- '@esbuild/freebsd-arm64@0.23.0':
- optional: true
-
- '@esbuild/freebsd-arm64@0.23.1':
+ '@esbuild/freebsd-arm64@0.24.0':
optional: true
'@esbuild/freebsd-x64@0.19.5':
@@ -16922,10 +18563,7 @@ snapshots:
'@esbuild/freebsd-x64@0.21.3':
optional: true
- '@esbuild/freebsd-x64@0.23.0':
- optional: true
-
- '@esbuild/freebsd-x64@0.23.1':
+ '@esbuild/freebsd-x64@0.24.0':
optional: true
'@esbuild/linux-arm64@0.19.5':
@@ -16937,10 +18575,7 @@ snapshots:
'@esbuild/linux-arm64@0.21.3':
optional: true
- '@esbuild/linux-arm64@0.23.0':
- optional: true
-
- '@esbuild/linux-arm64@0.23.1':
+ '@esbuild/linux-arm64@0.24.0':
optional: true
'@esbuild/linux-arm@0.19.5':
@@ -16952,10 +18587,7 @@ snapshots:
'@esbuild/linux-arm@0.21.3':
optional: true
- '@esbuild/linux-arm@0.23.0':
- optional: true
-
- '@esbuild/linux-arm@0.23.1':
+ '@esbuild/linux-arm@0.24.0':
optional: true
'@esbuild/linux-ia32@0.19.5':
@@ -16967,10 +18599,7 @@ snapshots:
'@esbuild/linux-ia32@0.21.3':
optional: true
- '@esbuild/linux-ia32@0.23.0':
- optional: true
-
- '@esbuild/linux-ia32@0.23.1':
+ '@esbuild/linux-ia32@0.24.0':
optional: true
'@esbuild/linux-loong64@0.19.5':
@@ -16982,10 +18611,7 @@ snapshots:
'@esbuild/linux-loong64@0.21.3':
optional: true
- '@esbuild/linux-loong64@0.23.0':
- optional: true
-
- '@esbuild/linux-loong64@0.23.1':
+ '@esbuild/linux-loong64@0.24.0':
optional: true
'@esbuild/linux-mips64el@0.19.5':
@@ -16997,10 +18623,7 @@ snapshots:
'@esbuild/linux-mips64el@0.21.3':
optional: true
- '@esbuild/linux-mips64el@0.23.0':
- optional: true
-
- '@esbuild/linux-mips64el@0.23.1':
+ '@esbuild/linux-mips64el@0.24.0':
optional: true
'@esbuild/linux-ppc64@0.19.5':
@@ -17012,10 +18635,7 @@ snapshots:
'@esbuild/linux-ppc64@0.21.3':
optional: true
- '@esbuild/linux-ppc64@0.23.0':
- optional: true
-
- '@esbuild/linux-ppc64@0.23.1':
+ '@esbuild/linux-ppc64@0.24.0':
optional: true
'@esbuild/linux-riscv64@0.19.5':
@@ -17027,10 +18647,7 @@ snapshots:
'@esbuild/linux-riscv64@0.21.3':
optional: true
- '@esbuild/linux-riscv64@0.23.0':
- optional: true
-
- '@esbuild/linux-riscv64@0.23.1':
+ '@esbuild/linux-riscv64@0.24.0':
optional: true
'@esbuild/linux-s390x@0.19.5':
@@ -17042,10 +18659,7 @@ snapshots:
'@esbuild/linux-s390x@0.21.3':
optional: true
- '@esbuild/linux-s390x@0.23.0':
- optional: true
-
- '@esbuild/linux-s390x@0.23.1':
+ '@esbuild/linux-s390x@0.24.0':
optional: true
'@esbuild/linux-x64@0.19.5':
@@ -17057,10 +18671,7 @@ snapshots:
'@esbuild/linux-x64@0.21.3':
optional: true
- '@esbuild/linux-x64@0.23.0':
- optional: true
-
- '@esbuild/linux-x64@0.23.1':
+ '@esbuild/linux-x64@0.24.0':
optional: true
'@esbuild/netbsd-x64@0.19.5':
@@ -17072,16 +18683,10 @@ snapshots:
'@esbuild/netbsd-x64@0.21.3':
optional: true
- '@esbuild/netbsd-x64@0.23.0':
- optional: true
-
- '@esbuild/netbsd-x64@0.23.1':
+ '@esbuild/netbsd-x64@0.24.0':
optional: true
- '@esbuild/openbsd-arm64@0.23.0':
- optional: true
-
- '@esbuild/openbsd-arm64@0.23.1':
+ '@esbuild/openbsd-arm64@0.24.0':
optional: true
'@esbuild/openbsd-x64@0.19.5':
@@ -17093,10 +18698,7 @@ snapshots:
'@esbuild/openbsd-x64@0.21.3':
optional: true
- '@esbuild/openbsd-x64@0.23.0':
- optional: true
-
- '@esbuild/openbsd-x64@0.23.1':
+ '@esbuild/openbsd-x64@0.24.0':
optional: true
'@esbuild/sunos-x64@0.19.5':
@@ -17108,10 +18710,7 @@ snapshots:
'@esbuild/sunos-x64@0.21.3':
optional: true
- '@esbuild/sunos-x64@0.23.0':
- optional: true
-
- '@esbuild/sunos-x64@0.23.1':
+ '@esbuild/sunos-x64@0.24.0':
optional: true
'@esbuild/win32-arm64@0.19.5':
@@ -17123,10 +18722,7 @@ snapshots:
'@esbuild/win32-arm64@0.21.3':
optional: true
- '@esbuild/win32-arm64@0.23.0':
- optional: true
-
- '@esbuild/win32-arm64@0.23.1':
+ '@esbuild/win32-arm64@0.24.0':
optional: true
'@esbuild/win32-ia32@0.19.5':
@@ -17138,10 +18734,7 @@ snapshots:
'@esbuild/win32-ia32@0.21.3':
optional: true
- '@esbuild/win32-ia32@0.23.0':
- optional: true
-
- '@esbuild/win32-ia32@0.23.1':
+ '@esbuild/win32-ia32@0.24.0':
optional: true
'@esbuild/win32-x64@0.19.5':
@@ -17153,10 +18746,7 @@ snapshots:
'@esbuild/win32-x64@0.21.3':
optional: true
- '@esbuild/win32-x64@0.23.0':
- optional: true
-
- '@esbuild/win32-x64@0.23.1':
+ '@esbuild/win32-x64@0.24.0':
optional: true
'@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
@@ -17281,103 +18871,116 @@ snapshots:
'@img/sharp-win32-x64@0.33.5':
optional: true
- '@inquirer/checkbox@2.5.0':
+ '@inquirer/checkbox@4.0.1(@types/node@18.19.15)':
dependencies:
- '@inquirer/core': 9.1.0
- '@inquirer/figures': 1.0.5
- '@inquirer/type': 1.5.3
+ '@inquirer/core': 10.0.1(@types/node@18.19.15)
+ '@inquirer/figures': 1.0.7
+ '@inquirer/type': 3.0.0(@types/node@18.19.15)
+ '@types/node': 18.19.15
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
- '@inquirer/confirm@3.1.22':
+ '@inquirer/confirm@5.0.1(@types/node@18.19.15)':
dependencies:
- '@inquirer/core': 9.1.0
- '@inquirer/type': 1.5.3
+ '@inquirer/core': 10.0.1(@types/node@18.19.15)
+ '@inquirer/type': 3.0.0(@types/node@18.19.15)
+ '@types/node': 18.19.15
- '@inquirer/core@9.1.0':
+ '@inquirer/core@10.0.1(@types/node@18.19.15)':
dependencies:
- '@inquirer/figures': 1.0.5
- '@inquirer/type': 1.5.3
- '@types/mute-stream': 0.0.4
- '@types/node': 22.5.5
- '@types/wrap-ansi': 3.0.0
+ '@inquirer/figures': 1.0.7
+ '@inquirer/type': 3.0.0(@types/node@18.19.15)
ansi-escapes: 4.3.2
- cli-spinners: 2.9.2
cli-width: 4.1.0
- mute-stream: 1.0.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'
- '@inquirer/editor@2.2.0':
+ '@inquirer/editor@4.0.1(@types/node@18.19.15)':
dependencies:
- '@inquirer/core': 9.1.0
- '@inquirer/type': 1.5.3
+ '@inquirer/core': 10.0.1(@types/node@18.19.15)
+ '@inquirer/type': 3.0.0(@types/node@18.19.15)
+ '@types/node': 18.19.15
external-editor: 3.1.0
- '@inquirer/expand@2.3.0':
+ '@inquirer/expand@4.0.1(@types/node@18.19.15)':
dependencies:
- '@inquirer/core': 9.1.0
- '@inquirer/type': 1.5.3
+ '@inquirer/core': 10.0.1(@types/node@18.19.15)
+ '@inquirer/type': 3.0.0(@types/node@18.19.15)
+ '@types/node': 18.19.15
yoctocolors-cjs: 2.1.2
- '@inquirer/figures@1.0.5': {}
+ '@inquirer/figures@1.0.7': {}
- '@inquirer/input@2.3.0':
+ '@inquirer/input@4.0.1(@types/node@18.19.15)':
dependencies:
- '@inquirer/core': 9.1.0
- '@inquirer/type': 1.5.3
+ '@inquirer/core': 10.0.1(@types/node@18.19.15)
+ '@inquirer/type': 3.0.0(@types/node@18.19.15)
+ '@types/node': 18.19.15
- '@inquirer/number@1.1.0':
+ '@inquirer/number@3.0.1(@types/node@18.19.15)':
dependencies:
- '@inquirer/core': 9.1.0
- '@inquirer/type': 1.5.3
+ '@inquirer/core': 10.0.1(@types/node@18.19.15)
+ '@inquirer/type': 3.0.0(@types/node@18.19.15)
+ '@types/node': 18.19.15
- '@inquirer/password@2.2.0':
+ '@inquirer/password@4.0.1(@types/node@18.19.15)':
dependencies:
- '@inquirer/core': 9.1.0
- '@inquirer/type': 1.5.3
+ '@inquirer/core': 10.0.1(@types/node@18.19.15)
+ '@inquirer/type': 3.0.0(@types/node@18.19.15)
+ '@types/node': 18.19.15
ansi-escapes: 4.3.2
- '@inquirer/prompts@5.3.8':
- dependencies:
- '@inquirer/checkbox': 2.5.0
- '@inquirer/confirm': 3.1.22
- '@inquirer/editor': 2.2.0
- '@inquirer/expand': 2.3.0
- '@inquirer/input': 2.3.0
- '@inquirer/number': 1.1.0
- '@inquirer/password': 2.2.0
- '@inquirer/rawlist': 2.3.0
- '@inquirer/search': 1.1.0
- '@inquirer/select': 2.5.0
+ '@inquirer/prompts@7.0.1(@types/node@18.19.15)':
+ dependencies:
+ '@inquirer/checkbox': 4.0.1(@types/node@18.19.15)
+ '@inquirer/confirm': 5.0.1(@types/node@18.19.15)
+ '@inquirer/editor': 4.0.1(@types/node@18.19.15)
+ '@inquirer/expand': 4.0.1(@types/node@18.19.15)
+ '@inquirer/input': 4.0.1(@types/node@18.19.15)
+ '@inquirer/number': 3.0.1(@types/node@18.19.15)
+ '@inquirer/password': 4.0.1(@types/node@18.19.15)
+ '@inquirer/rawlist': 4.0.1(@types/node@18.19.15)
+ '@inquirer/search': 3.0.1(@types/node@18.19.15)
+ '@inquirer/select': 4.0.1(@types/node@18.19.15)
+ '@types/node': 18.19.15
- '@inquirer/rawlist@2.3.0':
+ '@inquirer/rawlist@4.0.1(@types/node@18.19.15)':
dependencies:
- '@inquirer/core': 9.1.0
- '@inquirer/type': 1.5.3
+ '@inquirer/core': 10.0.1(@types/node@18.19.15)
+ '@inquirer/type': 3.0.0(@types/node@18.19.15)
+ '@types/node': 18.19.15
yoctocolors-cjs: 2.1.2
- '@inquirer/search@1.1.0':
+ '@inquirer/search@3.0.1(@types/node@18.19.15)':
dependencies:
- '@inquirer/core': 9.1.0
- '@inquirer/figures': 1.0.5
- '@inquirer/type': 1.5.3
+ '@inquirer/core': 10.0.1(@types/node@18.19.15)
+ '@inquirer/figures': 1.0.7
+ '@inquirer/type': 3.0.0(@types/node@18.19.15)
+ '@types/node': 18.19.15
yoctocolors-cjs: 2.1.2
- '@inquirer/select@2.5.0':
+ '@inquirer/select@4.0.1(@types/node@18.19.15)':
dependencies:
- '@inquirer/core': 9.1.0
- '@inquirer/figures': 1.0.5
- '@inquirer/type': 1.5.3
+ '@inquirer/core': 10.0.1(@types/node@18.19.15)
+ '@inquirer/figures': 1.0.7
+ '@inquirer/type': 3.0.0(@types/node@18.19.15)
+ '@types/node': 18.19.15
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
- '@inquirer/type@1.5.3':
+ '@inquirer/type@1.5.5':
dependencies:
mute-stream: 1.0.0
+ '@inquirer/type@3.0.0(@types/node@18.19.15)':
+ dependencies:
+ '@types/node': 18.19.15
+
'@ioredis/commands@1.2.0': {}
'@isaacs/cliui@8.0.2':
@@ -17389,6 +18992,10 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
+ '@isaacs/fs-minipass@4.0.1':
+ dependencies:
+ minipass: 7.1.2
+
'@istanbuljs/load-nyc-config@1.1.0':
dependencies:
camelcase: 5.3.1
@@ -17408,7 +19015,7 @@ snapshots:
jest-util: 29.7.0
slash: 3.0.0
- '@jest/core@29.7.0(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))':
+ '@jest/core@29.7.0(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))':
dependencies:
'@jest/console': 29.7.0
'@jest/reporters': 29.7.0
@@ -17422,7 +19029,7 @@ snapshots:
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ jest-config: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -17434,7 +19041,7 @@ snapshots:
jest-util: 29.7.0
jest-validate: 29.7.0
jest-watcher: 29.7.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
strip-ansi: 6.0.1
@@ -17538,7 +19145,7 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -17549,7 +19156,7 @@ snapshots:
jest-haste-map: 29.7.0
jest-regex-util: 29.6.3
jest-util: 29.7.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
pirates: 4.0.6
slash: 3.0.0
write-file-atomic: 4.0.2
@@ -17618,45 +19225,45 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.5.0
- '@jsonjoy.com/base64@1.1.2(tslib@2.7.0)':
+ '@jsonjoy.com/base64@1.1.2(tslib@2.8.0)':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@jsonjoy.com/json-pack@1.0.4(tslib@2.7.0)':
+ '@jsonjoy.com/json-pack@1.0.4(tslib@2.8.0)':
dependencies:
- '@jsonjoy.com/base64': 1.1.2(tslib@2.7.0)
- '@jsonjoy.com/util': 1.1.3(tslib@2.7.0)
+ '@jsonjoy.com/base64': 1.1.2(tslib@2.8.0)
+ '@jsonjoy.com/util': 1.1.3(tslib@2.8.0)
hyperdyperid: 1.2.0
- thingies: 1.21.0(tslib@2.7.0)
- tslib: 2.7.0
+ thingies: 1.21.0(tslib@2.8.0)
+ tslib: 2.8.0
- '@jsonjoy.com/util@1.1.3(tslib@2.7.0)':
+ '@jsonjoy.com/util@1.1.3(tslib@2.8.0)':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@leichtgewicht/ip-codec@2.0.4': {}
- '@listr2/prompt-adapter-inquirer@2.0.15(@inquirer/prompts@5.3.8)':
+ '@listr2/prompt-adapter-inquirer@2.0.17(@inquirer/prompts@7.0.1(@types/node@18.19.15))':
dependencies:
- '@inquirer/prompts': 5.3.8
- '@inquirer/type': 1.5.3
+ '@inquirer/prompts': 7.0.1(@types/node@18.19.15)
+ '@inquirer/type': 1.5.5
- '@lmdb/lmdb-darwin-arm64@3.0.13':
+ '@lmdb/lmdb-darwin-arm64@3.1.3':
optional: true
- '@lmdb/lmdb-darwin-x64@3.0.13':
+ '@lmdb/lmdb-darwin-x64@3.1.3':
optional: true
- '@lmdb/lmdb-linux-arm64@3.0.13':
+ '@lmdb/lmdb-linux-arm64@3.1.3':
optional: true
- '@lmdb/lmdb-linux-arm@3.0.13':
+ '@lmdb/lmdb-linux-arm@3.1.3':
optional: true
- '@lmdb/lmdb-linux-x64@3.0.13':
+ '@lmdb/lmdb-linux-x64@3.1.3':
optional: true
- '@lmdb/lmdb-win32-x64@3.0.13':
+ '@lmdb/lmdb-win32-x64@3.1.3':
optional: true
'@mapbox/node-pre-gyp@1.0.10(encoding@0.1.13)':
@@ -17714,27 +19321,37 @@ snapshots:
'@types/react': 18.0.27
react: 18.3.1
- '@module-federation/bridge-react-webpack-plugin@0.2.8':
+ '@module-federation/bridge-react-webpack-plugin@0.6.6':
+ dependencies:
+ '@module-federation/sdk': 0.6.6
+ '@types/semver': 7.5.8
+ semver: 7.6.3
+
+ '@module-federation/data-prefetch@0.6.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@module-federation/sdk': 0.2.8
+ '@module-federation/runtime': 0.6.6
+ '@module-federation/sdk': 0.6.6
+ fs-extra: 9.1.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- '@module-federation/dts-plugin@0.2.8(typescript@5.4.3)':
+ '@module-federation/dts-plugin@0.6.6(typescript@5.5.4)':
dependencies:
- '@module-federation/managers': 0.2.8
- '@module-federation/sdk': 0.2.8
- '@module-federation/third-party-dts-extractor': 0.2.8
+ '@module-federation/managers': 0.6.6
+ '@module-federation/sdk': 0.6.6
+ '@module-federation/third-party-dts-extractor': 0.6.6
adm-zip: 0.5.16
ansi-colors: 4.1.3
axios: 1.7.7
chalk: 3.0.0
fs-extra: 9.1.0
isomorphic-ws: 5.0.0(ws@8.17.1)
- koa: 2.11.0
+ koa: 2.15.3
lodash.clonedeepwith: 4.5.0
log4js: 6.9.1
node-schedule: 2.1.1
rambda: 9.3.0
- typescript: 5.4.3
+ typescript: 5.5.4
ws: 8.17.1
transitivePeerDependencies:
- bufferutil
@@ -17742,37 +19359,40 @@ snapshots:
- supports-color
- utf-8-validate
- '@module-federation/enhanced@0.2.8(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))':
+ '@module-federation/enhanced@0.6.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.4)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))':
dependencies:
- '@module-federation/bridge-react-webpack-plugin': 0.2.8
- '@module-federation/dts-plugin': 0.2.8(typescript@5.4.3)
- '@module-federation/managers': 0.2.8
- '@module-federation/manifest': 0.2.8(typescript@5.4.3)
- '@module-federation/rspack': 0.2.8(typescript@5.4.3)
- '@module-federation/runtime-tools': 0.2.8
- '@module-federation/sdk': 0.2.8
+ '@module-federation/bridge-react-webpack-plugin': 0.6.6
+ '@module-federation/data-prefetch': 0.6.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@module-federation/dts-plugin': 0.6.6(typescript@5.5.4)
+ '@module-federation/managers': 0.6.6
+ '@module-federation/manifest': 0.6.6(typescript@5.5.4)
+ '@module-federation/rspack': 0.6.6(typescript@5.5.4)
+ '@module-federation/runtime-tools': 0.6.6
+ '@module-federation/sdk': 0.6.6
btoa: 1.2.1
upath: 2.0.1
optionalDependencies:
- typescript: 5.4.3
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ typescript: 5.5.4
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
transitivePeerDependencies:
- bufferutil
- debug
+ - react
+ - react-dom
- supports-color
- utf-8-validate
- '@module-federation/managers@0.2.8':
+ '@module-federation/managers@0.6.6':
dependencies:
- '@module-federation/sdk': 0.2.8
+ '@module-federation/sdk': 0.6.6
find-pkg: 2.0.0
fs-extra: 9.1.0
- '@module-federation/manifest@0.2.8(typescript@5.4.3)':
+ '@module-federation/manifest@0.6.6(typescript@5.5.4)':
dependencies:
- '@module-federation/dts-plugin': 0.2.8(typescript@5.4.3)
- '@module-federation/managers': 0.2.8
- '@module-federation/sdk': 0.2.8
+ '@module-federation/dts-plugin': 0.6.6(typescript@5.5.4)
+ '@module-federation/managers': 0.6.6
+ '@module-federation/sdk': 0.6.6
chalk: 3.0.0
find-pkg: 2.0.0
transitivePeerDependencies:
@@ -17783,43 +19403,47 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/rspack@0.2.8(typescript@5.4.3)':
+ '@module-federation/rspack@0.6.6(typescript@5.5.4)':
dependencies:
- '@module-federation/bridge-react-webpack-plugin': 0.2.8
- '@module-federation/dts-plugin': 0.2.8(typescript@5.4.3)
- '@module-federation/managers': 0.2.8
- '@module-federation/manifest': 0.2.8(typescript@5.4.3)
- '@module-federation/runtime-tools': 0.2.8
- '@module-federation/sdk': 0.2.8
+ '@module-federation/bridge-react-webpack-plugin': 0.6.6
+ '@module-federation/dts-plugin': 0.6.6(typescript@5.5.4)
+ '@module-federation/managers': 0.6.6
+ '@module-federation/manifest': 0.6.6(typescript@5.5.4)
+ '@module-federation/runtime-tools': 0.6.6
+ '@module-federation/sdk': 0.6.6
optionalDependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
transitivePeerDependencies:
- bufferutil
- debug
- supports-color
- utf-8-validate
- '@module-federation/runtime-tools@0.2.8':
+ '@module-federation/runtime-tools@0.6.6':
dependencies:
- '@module-federation/runtime': 0.2.8
- '@module-federation/webpack-bundler-runtime': 0.2.8
+ '@module-federation/runtime': 0.6.6
+ '@module-federation/webpack-bundler-runtime': 0.6.6
- '@module-federation/runtime@0.2.8':
+ '@module-federation/runtime@0.6.6':
dependencies:
- '@module-federation/sdk': 0.2.8
+ '@module-federation/sdk': 0.6.6
- '@module-federation/sdk@0.2.8': {}
+ '@module-federation/sdk@0.6.16':
+ dependencies:
+ isomorphic-rslog: 0.0.5
- '@module-federation/third-party-dts-extractor@0.2.8':
+ '@module-federation/sdk@0.6.6': {}
+
+ '@module-federation/third-party-dts-extractor@0.6.6':
dependencies:
find-pkg: 2.0.0
fs-extra: 9.1.0
resolve: 1.22.8
- '@module-federation/webpack-bundler-runtime@0.2.8':
+ '@module-federation/webpack-bundler-runtime@0.6.6':
dependencies:
- '@module-federation/runtime': 0.2.8
- '@module-federation/sdk': 0.2.8
+ '@module-federation/runtime': 0.6.6
+ '@module-federation/sdk': 0.6.6
'@mole-inc/bin-wrapper@8.0.1':
dependencies:
@@ -17850,6 +19474,74 @@ snapshots:
'@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2':
optional: true
+ '@napi-rs/nice-android-arm-eabi@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-android-arm64@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-darwin-arm64@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-darwin-x64@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-freebsd-x64@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-linux-arm-gnueabihf@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-linux-arm64-gnu@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-linux-arm64-musl@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-linux-ppc64-gnu@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-linux-riscv64-gnu@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-linux-s390x-gnu@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-linux-x64-gnu@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-linux-x64-musl@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-win32-arm64-msvc@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-win32-ia32-msvc@1.0.1':
+ optional: true
+
+ '@napi-rs/nice-win32-x64-msvc@1.0.1':
+ optional: true
+
+ '@napi-rs/nice@1.0.1':
+ optionalDependencies:
+ '@napi-rs/nice-android-arm-eabi': 1.0.1
+ '@napi-rs/nice-android-arm64': 1.0.1
+ '@napi-rs/nice-darwin-arm64': 1.0.1
+ '@napi-rs/nice-darwin-x64': 1.0.1
+ '@napi-rs/nice-freebsd-x64': 1.0.1
+ '@napi-rs/nice-linux-arm-gnueabihf': 1.0.1
+ '@napi-rs/nice-linux-arm64-gnu': 1.0.1
+ '@napi-rs/nice-linux-arm64-musl': 1.0.1
+ '@napi-rs/nice-linux-ppc64-gnu': 1.0.1
+ '@napi-rs/nice-linux-riscv64-gnu': 1.0.1
+ '@napi-rs/nice-linux-s390x-gnu': 1.0.1
+ '@napi-rs/nice-linux-x64-gnu': 1.0.1
+ '@napi-rs/nice-linux-x64-musl': 1.0.1
+ '@napi-rs/nice-win32-arm64-msvc': 1.0.1
+ '@napi-rs/nice-win32-ia32-msvc': 1.0.1
+ '@napi-rs/nice-win32-x64-msvc': 1.0.1
+ optional: true
+
'@napi-rs/wasm-runtime@0.2.4':
dependencies:
'@emnapi/core': 1.2.0
@@ -17877,11 +19569,11 @@ snapshots:
'@netlify/node-cookies': 0.1.0
urlpattern-polyfill: 8.0.2
- '@ngtools/webpack@18.2.4(@angular/compiler-cli@18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3))(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))':
+ '@ngtools/webpack@19.0.0-rc.0(@angular/compiler-cli@19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))':
dependencies:
- '@angular/compiler-cli': 18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3)
- typescript: 5.4.3
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ '@angular/compiler-cli': 19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4)
+ typescript: 5.5.4
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -17897,310 +19589,107 @@ snapshots:
'@npmcli/agent@2.2.0':
dependencies:
- agent-base: 7.1.0
+ agent-base: 7.1.1
http-proxy-agent: 7.0.0
https-proxy-agent: 7.0.5
lru-cache: 10.2.0
- socks-proxy-agent: 8.0.2
+ socks-proxy-agent: 8.0.4
transitivePeerDependencies:
- supports-color
- '@npmcli/fs@3.1.0':
- dependencies:
- semver: 7.6.3
-
- '@npmcli/git@5.0.3':
+ '@npmcli/agent@3.0.0':
dependencies:
- '@npmcli/promise-spawn': 7.0.0
+ agent-base: 7.1.1
+ http-proxy-agent: 7.0.0
+ https-proxy-agent: 7.0.5
lru-cache: 10.2.0
- npm-pick-manifest: 9.1.0
- proc-log: 3.0.0
- promise-inflight: 1.0.1
- promise-retry: 2.0.1
- semver: 7.6.3
- which: 4.0.0
- transitivePeerDependencies:
- - bluebird
-
- '@npmcli/installed-package-contents@2.0.1':
- dependencies:
- npm-bundled: 3.0.0
- npm-normalize-package-bin: 3.0.0
-
- '@npmcli/node-gyp@3.0.0': {}
-
- '@npmcli/package-json@5.1.0':
- dependencies:
- '@npmcli/git': 5.0.3
- glob: 10.3.15
- hosted-git-info: 7.0.1
- json-parse-even-better-errors: 3.0.0
- normalize-package-data: 6.0.0
- proc-log: 4.2.0
- semver: 7.6.3
- transitivePeerDependencies:
- - bluebird
-
- '@npmcli/promise-spawn@7.0.0':
- dependencies:
- which: 4.0.0
-
- '@npmcli/redact@2.0.0': {}
-
- '@npmcli/run-script@8.1.0':
- dependencies:
- '@npmcli/node-gyp': 3.0.0
- '@npmcli/package-json': 5.1.0
- '@npmcli/promise-spawn': 7.0.0
- node-gyp: 10.1.0
- proc-log: 4.2.0
- which: 4.0.0
+ socks-proxy-agent: 8.0.4
transitivePeerDependencies:
- - bluebird
- supports-color
- '@nrwl/angular@19.5.3(@angular-devkit/build-angular@18.2.4(msxzxskjzouwjmooscvhcfgs3u))(@angular-devkit/core@18.2.4(chokidar@3.6.0))(@angular-devkit/schematics@18.2.4(chokidar@3.6.0))(@babel/traverse@7.25.6)(@schematics/angular@18.2.4(chokidar@3.6.0))(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(esbuild@0.19.5)(eslint@8.57.0)(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(rxjs@7.8.1)(typescript@5.4.3)':
- dependencies:
- '@nx/angular': 19.5.3(@angular-devkit/build-angular@18.2.4(msxzxskjzouwjmooscvhcfgs3u))(@angular-devkit/core@18.2.4(chokidar@3.6.0))(@angular-devkit/schematics@18.2.4(chokidar@3.6.0))(@babel/traverse@7.25.6)(@schematics/angular@18.2.4(chokidar@3.6.0))(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(esbuild@0.19.5)(eslint@8.57.0)(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(rxjs@7.8.1)(typescript@5.4.3)
- tslib: 2.7.0
- transitivePeerDependencies:
- - '@angular-devkit/build-angular'
- - '@angular-devkit/core'
- - '@angular-devkit/schematics'
- - '@babel/traverse'
- - '@parcel/css'
- - '@rspack/core'
- - '@schematics/angular'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/css'
- - '@swc/wasm'
- - '@types/node'
- - '@zkochan/js-yaml'
- - bufferutil
- - clean-css
- - csso
- - debug
- - esbuild
- - eslint
- - fibers
- - html-webpack-plugin
- - lightningcss
- - node-sass
- - nx
- - rxjs
- - sass-embedded
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - verdaccio
- - vue-template-compiler
- - vue-tsc
- - webpack-cli
-
- '@nrwl/cypress@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(cypress@13.14.2)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)':
- dependencies:
- '@nx/cypress': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(cypress@13.14.2)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - '@zkochan/js-yaml'
- - cypress
- - debug
- - eslint
- - nx
- - supports-color
- - typescript
- - verdaccio
-
- '@nrwl/devkit@19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))':
- dependencies:
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- transitivePeerDependencies:
- - nx
-
- '@nrwl/eslint-plugin-nx@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.4.3))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)':
- dependencies:
- '@nx/eslint-plugin': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.4.3))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - '@typescript-eslint/parser'
- - debug
- - eslint
- - eslint-config-prettier
- - nx
- - supports-color
- - typescript
- - verdaccio
-
- '@nrwl/jest@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@5.4.3)':
- dependencies:
- '@nx/jest': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@5.4.3)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - babel-plugin-macros
- - debug
- - node-notifier
- - nx
- - supports-color
- - ts-node
- - typescript
- - verdaccio
-
- '@nrwl/js@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)':
- dependencies:
- '@nx/js': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - debug
- - nx
- - supports-color
- - typescript
- - verdaccio
-
- '@nrwl/nx-plugin@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@5.4.3)':
- dependencies:
- '@nx/plugin': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@5.4.3)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - '@zkochan/js-yaml'
- - babel-plugin-macros
- - debug
- - eslint
- - node-notifier
- - nx
- - supports-color
- - ts-node
- - typescript
- - verdaccio
-
- '@nrwl/tao@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))':
- dependencies:
- nx: 19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))
- tslib: 2.7.0
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
-
- '@nrwl/vite@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))(vitest@1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))':
+ '@npmcli/fs@3.1.0':
dependencies:
- '@nx/vite': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))(vitest@1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - debug
- - nx
- - supports-color
- - typescript
- - verdaccio
- - vite
- - vitest
+ semver: 7.6.3
- '@nrwl/web@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)':
+ '@npmcli/fs@4.0.0':
dependencies:
- '@nx/web': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - debug
- - nx
- - supports-color
- - typescript
- - verdaccio
+ semver: 7.6.3
- '@nrwl/webpack@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(esbuild@0.19.5)(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)':
+ '@npmcli/git@6.0.1':
dependencies:
- '@nx/webpack': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(esbuild@0.19.5)(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@parcel/css'
- - '@rspack/core'
- - '@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
- - utf-8-validate
- - verdaccio
- - vue-template-compiler
- - vue-tsc
- - webpack-cli
+ '@npmcli/promise-spawn': 8.0.2
+ ini: 5.0.0
+ lru-cache: 10.2.0
+ npm-pick-manifest: 10.0.0
+ proc-log: 5.0.0
+ promise-inflight: 1.0.1
+ promise-retry: 2.0.1
+ semver: 7.6.3
+ which: 5.0.0
+ transitivePeerDependencies:
+ - bluebird
- '@nrwl/workspace@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))':
+ '@npmcli/installed-package-contents@3.0.0':
dependencies:
- '@nx/workspace': 19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))
+ npm-bundled: 4.0.0
+ npm-normalize-package-bin: 4.0.0
+
+ '@npmcli/node-gyp@4.0.0': {}
+
+ '@npmcli/package-json@6.0.1':
+ dependencies:
+ '@npmcli/git': 6.0.1
+ glob: 10.4.5
+ hosted-git-info: 8.0.0
+ json-parse-even-better-errors: 4.0.0
+ normalize-package-data: 7.0.0
+ proc-log: 5.0.0
+ semver: 7.6.3
transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
+ - bluebird
+
+ '@npmcli/promise-spawn@8.0.2':
+ dependencies:
+ which: 5.0.0
+
+ '@npmcli/redact@3.0.0': {}
+
+ '@npmcli/run-script@9.0.1':
+ dependencies:
+ '@npmcli/node-gyp': 4.0.0
+ '@npmcli/package-json': 6.0.1
+ '@npmcli/promise-spawn': 8.0.2
+ node-gyp: 10.1.0
+ proc-log: 5.0.0
+ which: 5.0.0
+ transitivePeerDependencies:
+ - bluebird
+ - supports-color
- '@nx/angular@19.5.3(@angular-devkit/build-angular@18.2.4(msxzxskjzouwjmooscvhcfgs3u))(@angular-devkit/core@18.2.4(chokidar@3.6.0))(@angular-devkit/schematics@18.2.4(chokidar@3.6.0))(@babel/traverse@7.25.6)(@schematics/angular@18.2.4(chokidar@3.6.0))(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(esbuild@0.19.5)(eslint@8.57.0)(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(rxjs@7.8.1)(typescript@5.4.3)':
- dependencies:
- '@angular-devkit/build-angular': 18.2.4(msxzxskjzouwjmooscvhcfgs3u)
- '@angular-devkit/core': 18.2.4(chokidar@3.6.0)
- '@angular-devkit/schematics': 18.2.4(chokidar@3.6.0)
- '@module-federation/enhanced': 0.2.8(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- '@nrwl/angular': 19.5.3(@angular-devkit/build-angular@18.2.4(msxzxskjzouwjmooscvhcfgs3u))(@angular-devkit/core@18.2.4(chokidar@3.6.0))(@angular-devkit/schematics@18.2.4(chokidar@3.6.0))(@babel/traverse@7.25.6)(@schematics/angular@18.2.4(chokidar@3.6.0))(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(esbuild@0.19.5)(eslint@8.57.0)(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(rxjs@7.8.1)(typescript@5.4.3)
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/eslint': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/js': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@nx/web': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@nx/webpack': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(esbuild@0.19.5)(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@nx/workspace': 19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.3)
- '@schematics/angular': 18.2.4(chokidar@3.6.0)
- '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.0)(typescript@5.4.3)
+ '@nx/angular@20.0.8(@angular-devkit/build-angular@19.0.0-rc.0(nsmkqsfxcv5d74cmjogqx5r2fe))(@angular-devkit/core@19.0.0-rc.0)(@angular-devkit/schematics@19.0.0-rc.0)(@babel/traverse@7.25.9)(@schematics/angular@19.0.0-rc.0)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(esbuild@0.19.5)(eslint@8.57.0)(html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rxjs@7.8.1)(typescript@5.5.4)':
+ dependencies:
+ '@angular-devkit/build-angular': 19.0.0-rc.0(nsmkqsfxcv5d74cmjogqx5r2fe)
+ '@angular-devkit/core': 19.0.0-rc.0
+ '@angular-devkit/schematics': 19.0.0-rc.0
+ '@module-federation/enhanced': 0.6.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.4)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/eslint': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/js': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
+ '@nx/web': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
+ '@nx/webpack': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(esbuild@0.19.5)(html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.4)
+ '@nx/workspace': 20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.5.4)
+ '@schematics/angular': 19.0.0-rc.0
+ '@typescript-eslint/type-utils': 8.13.0(eslint@8.57.0)(typescript@5.5.4)
chalk: 4.1.2
find-cache-dir: 3.3.2
- ignore: 5.3.2
- magic-string: 0.30.11
+ magic-string: 0.30.12
minimatch: 9.0.3
- piscina: 4.6.1
+ piscina: 4.7.0
rxjs: 7.8.1
semver: 7.6.3
- tslib: 2.7.0
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ tslib: 2.8.0
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
webpack-merge: 5.10.0
transitivePeerDependencies:
- '@babel/traverse'
@@ -18223,6 +19712,8 @@ snapshots:
- lightningcss
- node-sass
- nx
+ - react
+ - react-dom
- sass-embedded
- supports-color
- typescript
@@ -18233,15 +19724,14 @@ snapshots:
- vue-tsc
- webpack-cli
- '@nx/cypress@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(cypress@13.14.2)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)':
+ '@nx/cypress@20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(cypress@13.14.2)(eslint@8.57.0)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)':
dependencies:
- '@nrwl/cypress': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(cypress@13.14.2)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/eslint': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/js': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.3)
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/eslint': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/js': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.5.4)
detect-port: 1.5.1
- tslib: 2.7.0
+ tslib: 2.8.0
optionalDependencies:
cypress: 13.14.2
transitivePeerDependencies:
@@ -18258,32 +19748,31 @@ snapshots:
- typescript
- verdaccio
- '@nx/devkit@19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))':
+ '@nx/devkit@20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))':
dependencies:
- '@nrwl/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
ejs: 3.1.9
enquirer: 2.3.6
ignore: 5.3.2
minimatch: 9.0.3
- nx: 19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))
+ nx: 20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))
semver: 7.6.3
tmp: 0.2.3
- tslib: 2.7.0
+ tslib: 2.8.0
yargs-parser: 21.1.1
- '@nx/eslint-plugin@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.4.3))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)':
+ '@nx/eslint-plugin@20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.5.4))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)':
dependencies:
- '@nrwl/eslint-plugin-nx': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.4.3))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/js': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@typescript-eslint/parser': 7.4.0(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.4.3)
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/js': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
+ '@typescript-eslint/parser': 7.4.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/type-utils': 8.13.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.5.0(eslint@8.57.0)(typescript@5.5.4)
chalk: 4.1.2
confusing-browser-globals: 1.0.11
+ globals: 15.12.0
jsonc-eslint-parser: 2.2.0
semver: 7.6.3
- tslib: 2.7.0
+ tslib: 2.8.0
optionalDependencies:
eslint-config-prettier: 9.0.0(eslint@8.57.0)
transitivePeerDependencies:
@@ -18299,14 +19788,13 @@ snapshots:
- typescript
- verdaccio
- '@nx/eslint@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))':
+ '@nx/eslint@20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))':
dependencies:
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/js': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@nx/linter': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/js': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
eslint: 8.57.0
semver: 7.6.3
- tslib: 2.7.0
+ tslib: 2.8.0
typescript: 5.4.3
optionalDependencies:
'@zkochan/js-yaml': 0.0.7
@@ -18321,22 +19809,22 @@ snapshots:
- supports-color
- verdaccio
- '@nx/jest@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@5.4.3)':
+ '@nx/jest@20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))(typescript@5.5.4)':
dependencies:
'@jest/reporters': 29.7.0
'@jest/test-result': 29.7.0
- '@nrwl/jest': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@5.4.3)
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/js': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.3)
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/js': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.5.4)
chalk: 4.1.2
identity-obj-proxy: 3.0.0
- jest-config: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ jest-config: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
jest-resolve: 29.7.0
jest-util: 29.7.0
minimatch: 9.0.3
resolve.exports: 1.1.0
- tslib: 2.7.0
+ semver: 7.6.3
+ tslib: 2.8.0
yargs-parser: 21.1.1
transitivePeerDependencies:
- '@babel/traverse'
@@ -18353,28 +19841,29 @@ snapshots:
- typescript
- verdaccio
- '@nx/js@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-proposal-decorators': 7.22.10(@babel/core@7.25.2)
- '@babel/plugin-transform-class-properties': 7.25.4(@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.22.11(@babel/core@7.25.2)
- '@babel/runtime': 7.25.0
- '@nrwl/js': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/workspace': 19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))
- babel-plugin-const-enum: 1.2.0(@babel/core@7.25.2)
+ '@nx/js@20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-proposal-decorators': 7.22.10(@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.22.11(@babel/core@7.26.0)
+ '@babel/runtime': 7.26.0
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/workspace': 20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))
+ '@zkochan/js-yaml': 0.0.7
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.26.0)
babel-plugin-macros: 2.8.0
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.25.2)(@babel/traverse@7.25.6)
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.0)(@babel/traverse@7.25.9)
chalk: 4.1.2
columnify: 1.6.0
detect-port: 1.5.1
+ enquirer: 2.3.6
fast-glob: 3.2.7
- fs-extra: 11.2.0
ignore: 5.3.2
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
@@ -18383,7 +19872,7 @@ snapshots:
source-map-support: 0.5.19
ts-node: 10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)
tsconfig-paths: 4.2.0
- tslib: 2.7.0
+ tslib: 2.8.0
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -18395,61 +19884,86 @@ snapshots:
- supports-color
- typescript
- '@nx/linter@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))':
- dependencies:
- '@nx/eslint': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/js@20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-proposal-decorators': 7.22.10(@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.22.11(@babel/core@7.26.0)
+ '@babel/runtime': 7.26.0
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/workspace': 20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))
+ '@zkochan/js-yaml': 0.0.7
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.26.0)
+ babel-plugin-macros: 2.8.0
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.0)(@babel/traverse@7.25.9)
+ chalk: 4.1.2
+ columnify: 1.6.0
+ detect-port: 1.5.1
+ enquirer: 2.3.6
+ fast-glob: 3.2.7
+ ignore: 5.3.2
+ 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
+ semver: 7.6.3
+ source-map-support: 0.5.19
+ ts-node: 10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)
+ tsconfig-paths: 4.2.0
+ tslib: 2.8.0
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- '@swc/wasm'
- '@types/node'
- - '@zkochan/js-yaml'
- debug
- - eslint
- nx
- supports-color
- - verdaccio
+ - typescript
- '@nx/nx-darwin-arm64@19.5.3':
+ '@nx/nx-darwin-arm64@20.0.8':
optional: true
- '@nx/nx-darwin-x64@19.5.3':
+ '@nx/nx-darwin-x64@20.0.8':
optional: true
- '@nx/nx-freebsd-x64@19.5.3':
+ '@nx/nx-freebsd-x64@20.0.8':
optional: true
- '@nx/nx-linux-arm-gnueabihf@19.5.3':
+ '@nx/nx-linux-arm-gnueabihf@20.0.8':
optional: true
- '@nx/nx-linux-arm64-gnu@19.5.3':
+ '@nx/nx-linux-arm64-gnu@20.0.8':
optional: true
- '@nx/nx-linux-arm64-musl@19.5.3':
+ '@nx/nx-linux-arm64-musl@20.0.8':
optional: true
- '@nx/nx-linux-x64-gnu@19.5.3':
+ '@nx/nx-linux-x64-gnu@20.0.8':
optional: true
- '@nx/nx-linux-x64-musl@19.5.3':
+ '@nx/nx-linux-x64-musl@20.0.8':
optional: true
- '@nx/nx-win32-arm64-msvc@19.5.3':
+ '@nx/nx-win32-arm64-msvc@20.0.8':
optional: true
- '@nx/nx-win32-x64-msvc@19.5.3':
+ '@nx/nx-win32-x64-msvc@20.0.8':
optional: true
- '@nx/plugin@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@5.4.3)':
+ '@nx/plugin@20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))(typescript@5.5.4)':
dependencies:
- '@nrwl/nx-plugin': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@5.4.3)
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/eslint': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/jest': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@5.4.3)
- '@nx/js': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- fs-extra: 11.2.0
- tslib: 2.7.0
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/eslint': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/jest': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))(typescript@5.5.4)
+ '@nx/js': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
+ tslib: 2.8.0
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -18467,17 +19981,17 @@ snapshots:
- typescript
- verdaccio
- '@nx/vite@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))(vitest@1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))':
+ '@nx/vite@20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))(vitest@1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))':
dependencies:
- '@nrwl/vite': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))(vitest@1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/js': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.3)
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/js': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.5.4)
'@swc/helpers': 0.5.11
enquirer: 2.3.6
+ minimatch: 9.0.3
tsconfig-paths: 4.2.0
- vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
- vitest: 1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
+ vitest: 1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -18490,15 +20004,14 @@ snapshots:
- typescript
- verdaccio
- '@nx/web@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)':
+ '@nx/web@20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)':
dependencies:
- '@nrwl/web': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/js': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- chalk: 4.1.2
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/js': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
detect-port: 1.5.1
http-server: 14.1.1
- tslib: 2.7.0
+ picocolors: 1.1.1
+ tslib: 2.8.0
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -18511,50 +20024,49 @@ snapshots:
- typescript
- verdaccio
- '@nx/webpack@19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(esbuild@0.19.5)(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)':
+ '@nx/webpack@20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(esbuild@0.19.5)(html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.4)':
dependencies:
- '@babel/core': 7.25.2
- '@module-federation/enhanced': 0.2.8(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- '@module-federation/sdk': 0.2.8
- '@nrwl/webpack': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(esbuild@0.19.5)(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
- '@nx/js': 19.5.3(@babel/traverse@7.25.6)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.3)
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.3)
+ '@babel/core': 7.26.0
+ '@module-federation/enhanced': 0.6.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.4)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ '@module-federation/sdk': 0.6.16
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/js': 20.0.8(@babel/traverse@7.25.9)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.5.4)
ajv: 8.17.1
- autoprefixer: 10.4.20(postcss@8.4.41)
- babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- browserslist: 4.23.3
+ autoprefixer: 10.4.20(postcss@8.4.47)
+ babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ browserslist: 4.24.2
chalk: 4.1.2
- copy-webpack-plugin: 10.2.4(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- css-loader: 6.10.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(esbuild@0.19.5)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ copy-webpack-plugin: 10.2.4(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ css-loader: 6.10.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ css-minimizer-webpack-plugin: 5.0.1(esbuild@0.19.5)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
express: 4.21.0
- fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- http-proxy-middleware: 3.0.0
+ fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.5.4)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ http-proxy-middleware: 3.0.3
less: 4.1.3
- less-loader: 11.1.0(less@4.1.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- license-webpack-plugin: 4.0.2(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ less-loader: 11.1.0(less@4.1.3)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ license-webpack-plugin: 4.0.2(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
loader-utils: 2.0.4
- mini-css-extract-plugin: 2.4.7(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ mini-css-extract-plugin: 2.4.7(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
parse5: 4.0.0
- postcss: 8.4.41
- postcss-import: 14.1.0(postcss@8.4.41)
- postcss-loader: 6.2.1(postcss@8.4.41)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ postcss: 8.4.47
+ postcss-import: 14.1.0(postcss@8.4.47)
+ postcss-loader: 6.2.1(postcss@8.4.47)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
rxjs: 7.8.1
- sass: 1.77.6
- sass-loader: 12.6.0(sass@1.77.6)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- source-map-loader: 5.0.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- style-loader: 3.3.1(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- stylus: 0.59.0
- stylus-loader: 7.1.3(stylus@0.59.0)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- terser-webpack-plugin: 5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- ts-loader: 9.4.1(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ sass: 1.80.6
+ sass-loader: 12.6.0(sass@1.80.6)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ source-map-loader: 5.0.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ style-loader: 3.3.1(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ stylus: 0.64.0
+ stylus-loader: 7.1.3(stylus@0.64.0)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ ts-loader: 9.4.1(typescript@5.5.4)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
tsconfig-paths-webpack-plugin: 4.0.0
- tslib: 2.7.0
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
- webpack-dev-server: 4.15.1(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ tslib: 2.8.0
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack-dev-server: 5.1.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
webpack-node-externals: 3.0.0
- webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
transitivePeerDependencies:
- '@babel/traverse'
- '@parcel/css'
@@ -18574,6 +20086,8 @@ snapshots:
- lightningcss
- node-sass
- nx
+ - react
+ - react-dom
- sass-embedded
- supports-color
- typescript
@@ -18584,14 +20098,13 @@ snapshots:
- vue-tsc
- webpack-cli
- '@nx/workspace@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))':
+ '@nx/workspace@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))':
dependencies:
- '@nrwl/workspace': 19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))
- '@nx/devkit': 19.5.3(nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
+ '@nx/devkit': 20.0.8(nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
chalk: 4.1.2
enquirer: 2.3.6
- nx: 19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))
- tslib: 2.7.0
+ nx: 20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))
+ tslib: 2.8.0
yargs-parser: 21.1.1
transitivePeerDependencies:
- '@swc-node/register'
@@ -18736,10 +20249,10 @@ snapshots:
'@parcel/watcher-win32-ia32': 2.4.1
'@parcel/watcher-win32-x64': 2.4.1
- '@phenomnomnominal/tsquery@5.0.1(typescript@5.4.3)':
+ '@phenomnomnominal/tsquery@5.0.1(typescript@5.5.4)':
dependencies:
esquery: 1.5.0
- typescript: 5.4.3
+ typescript: 5.5.4
'@pkgjs/parseargs@0.11.0':
optional: true
@@ -18791,6 +20304,12 @@ snapshots:
optionalDependencies:
rollup: 4.20.0
+ '@rollup/plugin-json@6.1.0(rollup@4.24.4)':
+ dependencies:
+ '@rollup/pluginutils': 5.1.0(rollup@4.24.4)
+ optionalDependencies:
+ rollup: 4.24.4
+
'@rollup/plugin-node-resolve@15.2.3(rollup@4.20.0)':
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.20.0)
@@ -18830,125 +20349,241 @@ snapshots:
optionalDependencies:
rollup: 4.20.0
+ '@rollup/pluginutils@5.1.0(rollup@4.24.4)':
+ dependencies:
+ '@types/estree': 1.0.5
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ optionalDependencies:
+ rollup: 4.24.4
+
'@rollup/rollup-android-arm-eabi@4.18.0':
optional: true
'@rollup/rollup-android-arm-eabi@4.20.0':
optional: true
+ '@rollup/rollup-android-arm-eabi@4.24.3':
+ optional: true
+
+ '@rollup/rollup-android-arm-eabi@4.24.4':
+ optional: true
+
'@rollup/rollup-android-arm64@4.18.0':
optional: true
'@rollup/rollup-android-arm64@4.20.0':
optional: true
+ '@rollup/rollup-android-arm64@4.24.3':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.24.4':
+ optional: true
+
'@rollup/rollup-darwin-arm64@4.18.0':
optional: true
'@rollup/rollup-darwin-arm64@4.20.0':
optional: true
+ '@rollup/rollup-darwin-arm64@4.24.3':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.24.4':
+ optional: true
+
'@rollup/rollup-darwin-x64@4.18.0':
optional: true
'@rollup/rollup-darwin-x64@4.20.0':
optional: true
+ '@rollup/rollup-darwin-x64@4.24.3':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.24.4':
+ optional: true
+
+ '@rollup/rollup-freebsd-arm64@4.24.3':
+ optional: true
+
+ '@rollup/rollup-freebsd-arm64@4.24.4':
+ optional: true
+
+ '@rollup/rollup-freebsd-x64@4.24.3':
+ optional: true
+
+ '@rollup/rollup-freebsd-x64@4.24.4':
+ optional: true
+
'@rollup/rollup-linux-arm-gnueabihf@4.18.0':
optional: true
'@rollup/rollup-linux-arm-gnueabihf@4.20.0':
optional: true
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.4':
+ optional: true
+
'@rollup/rollup-linux-arm-musleabihf@4.18.0':
optional: true
'@rollup/rollup-linux-arm-musleabihf@4.20.0':
optional: true
+ '@rollup/rollup-linux-arm-musleabihf@4.24.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm-musleabihf@4.24.4':
+ optional: true
+
'@rollup/rollup-linux-arm64-gnu@4.18.0':
optional: true
'@rollup/rollup-linux-arm64-gnu@4.20.0':
optional: true
+ '@rollup/rollup-linux-arm64-gnu@4.24.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-gnu@4.24.4':
+ optional: true
+
'@rollup/rollup-linux-arm64-musl@4.18.0':
optional: true
'@rollup/rollup-linux-arm64-musl@4.20.0':
optional: true
+ '@rollup/rollup-linux-arm64-musl@4.24.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-musl@4.24.4':
+ optional: true
+
'@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
optional: true
'@rollup/rollup-linux-powerpc64le-gnu@4.20.0':
optional: true
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.3':
+ optional: true
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.4':
+ optional: true
+
'@rollup/rollup-linux-riscv64-gnu@4.18.0':
optional: true
'@rollup/rollup-linux-riscv64-gnu@4.20.0':
optional: true
+ '@rollup/rollup-linux-riscv64-gnu@4.24.3':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-gnu@4.24.4':
+ optional: true
+
'@rollup/rollup-linux-s390x-gnu@4.18.0':
optional: true
'@rollup/rollup-linux-s390x-gnu@4.20.0':
optional: true
+ '@rollup/rollup-linux-s390x-gnu@4.24.3':
+ optional: true
+
+ '@rollup/rollup-linux-s390x-gnu@4.24.4':
+ optional: true
+
'@rollup/rollup-linux-x64-gnu@4.18.0':
optional: true
'@rollup/rollup-linux-x64-gnu@4.20.0':
optional: true
+ '@rollup/rollup-linux-x64-gnu@4.24.3':
+ optional: true
+
+ '@rollup/rollup-linux-x64-gnu@4.24.4':
+ optional: true
+
'@rollup/rollup-linux-x64-musl@4.18.0':
optional: true
'@rollup/rollup-linux-x64-musl@4.20.0':
optional: true
+ '@rollup/rollup-linux-x64-musl@4.24.3':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.24.4':
+ optional: true
+
'@rollup/rollup-win32-arm64-msvc@4.18.0':
optional: true
'@rollup/rollup-win32-arm64-msvc@4.20.0':
optional: true
+ '@rollup/rollup-win32-arm64-msvc@4.24.3':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.24.4':
+ optional: true
+
'@rollup/rollup-win32-ia32-msvc@4.18.0':
optional: true
'@rollup/rollup-win32-ia32-msvc@4.20.0':
optional: true
+ '@rollup/rollup-win32-ia32-msvc@4.24.3':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.24.4':
+ optional: true
+
'@rollup/rollup-win32-x64-msvc@4.18.0':
optional: true
'@rollup/rollup-win32-x64-msvc@4.20.0':
optional: true
- '@rollup/wasm-node@4.18.0':
+ '@rollup/rollup-win32-x64-msvc@4.24.3':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.24.4':
+ optional: true
+
+ '@rollup/wasm-node@4.24.4':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
optionalDependencies:
fsevents: 2.3.3
- '@schematics/angular@18.2.4(chokidar@3.6.0)':
+ '@schematics/angular@19.0.0-rc.0':
dependencies:
- '@angular-devkit/core': 18.2.4(chokidar@3.6.0)
- '@angular-devkit/schematics': 18.2.4(chokidar@3.6.0)
+ '@angular-devkit/core': 19.0.0-rc.0
+ '@angular-devkit/schematics': 19.0.0-rc.0
jsonc-parser: 3.3.1
transitivePeerDependencies:
- chokidar
- '@semantic-release/changelog@6.0.3(semantic-release@22.0.12(typescript@5.4.3))':
+ '@semantic-release/changelog@6.0.3(semantic-release@22.0.12(typescript@5.5.4))':
dependencies:
'@semantic-release/error': 3.0.0
aggregate-error: 3.1.0
fs-extra: 11.1.1
lodash: 4.17.21
- semantic-release: 22.0.12(typescript@5.4.3)
+ semantic-release: 22.0.12(typescript@5.5.4)
- '@semantic-release/commit-analyzer@11.1.0(semantic-release@22.0.12(typescript@5.4.3))':
+ '@semantic-release/commit-analyzer@11.1.0(semantic-release@22.0.12(typescript@5.5.4))':
dependencies:
conventional-changelog-angular: 7.0.0
conventional-commits-filter: 4.0.0
@@ -18957,7 +20592,7 @@ snapshots:
import-from-esm: 1.3.3
lodash-es: 4.17.21
micromatch: 4.0.5
- semantic-release: 22.0.12(typescript@5.4.3)
+ semantic-release: 22.0.12(typescript@5.5.4)
transitivePeerDependencies:
- supports-color
@@ -18965,7 +20600,7 @@ snapshots:
'@semantic-release/error@4.0.0': {}
- '@semantic-release/exec@6.0.3(semantic-release@22.0.12(typescript@5.4.3))':
+ '@semantic-release/exec@6.0.3(semantic-release@22.0.12(typescript@5.5.4))':
dependencies:
'@semantic-release/error': 3.0.0
aggregate-error: 3.1.0
@@ -18973,11 +20608,11 @@ snapshots:
execa: 5.1.1
lodash: 4.17.21
parse-json: 5.2.0
- semantic-release: 22.0.12(typescript@5.4.3)
+ semantic-release: 22.0.12(typescript@5.5.4)
transitivePeerDependencies:
- supports-color
- '@semantic-release/git@10.0.1(semantic-release@22.0.12(typescript@5.4.3))':
+ '@semantic-release/git@10.0.1(semantic-release@22.0.12(typescript@5.5.4))':
dependencies:
'@semantic-release/error': 3.0.0
aggregate-error: 3.1.0
@@ -18987,11 +20622,11 @@ snapshots:
lodash: 4.17.21
micromatch: 4.0.5
p-reduce: 2.1.0
- semantic-release: 22.0.12(typescript@5.4.3)
+ semantic-release: 22.0.12(typescript@5.5.4)
transitivePeerDependencies:
- supports-color
- '@semantic-release/github@9.2.6(semantic-release@22.0.12(typescript@5.4.3))':
+ '@semantic-release/github@9.2.6(semantic-release@22.0.12(typescript@5.5.4))':
dependencies:
'@octokit/core': 5.1.0
'@octokit/plugin-paginate-rest': 9.1.5(@octokit/core@5.1.0)
@@ -19008,12 +20643,12 @@ snapshots:
lodash-es: 4.17.21
mime: 4.0.1
p-filter: 4.1.0
- semantic-release: 22.0.12(typescript@5.4.3)
+ semantic-release: 22.0.12(typescript@5.5.4)
url-join: 5.0.0
transitivePeerDependencies:
- supports-color
- '@semantic-release/npm@11.0.2(semantic-release@22.0.12(typescript@5.4.3))':
+ '@semantic-release/npm@11.0.2(semantic-release@22.0.12(typescript@5.5.4))':
dependencies:
'@semantic-release/error': 4.0.0
aggregate-error: 5.0.0
@@ -19026,11 +20661,11 @@ snapshots:
rc: 1.2.8
read-pkg: 9.0.1
registry-auth-token: 5.0.2
- semantic-release: 22.0.12(typescript@5.4.3)
+ semantic-release: 22.0.12(typescript@5.5.4)
semver: 7.6.3
tempy: 3.1.0
- '@semantic-release/release-notes-generator@12.1.0(semantic-release@22.0.12(typescript@5.4.3))':
+ '@semantic-release/release-notes-generator@12.1.0(semantic-release@22.0.12(typescript@5.5.4))':
dependencies:
conventional-changelog-angular: 7.0.0
conventional-changelog-writer: 7.0.1
@@ -19042,7 +20677,7 @@ snapshots:
into-stream: 7.0.0
lodash-es: 4.17.21
read-pkg-up: 11.0.0
- semantic-release: 22.0.12(typescript@5.4.3)
+ semantic-release: 22.0.12(typescript@5.5.4)
transitivePeerDependencies:
- supports-color
@@ -19067,35 +20702,37 @@ snapshots:
'@sideway/pinpoint@2.0.0': {}
- '@sigstore/bundle@2.1.1':
+ '@sigstore/bundle@3.0.0':
dependencies:
- '@sigstore/protobuf-specs': 0.2.1
+ '@sigstore/protobuf-specs': 0.3.2
- '@sigstore/core@1.0.0': {}
+ '@sigstore/core@2.0.0': {}
- '@sigstore/protobuf-specs@0.2.1': {}
+ '@sigstore/protobuf-specs@0.3.2': {}
- '@sigstore/sign@2.2.2':
+ '@sigstore/sign@3.0.0':
dependencies:
- '@sigstore/bundle': 2.1.1
- '@sigstore/core': 1.0.0
- '@sigstore/protobuf-specs': 0.2.1
- make-fetch-happen: 13.0.0
+ '@sigstore/bundle': 3.0.0
+ '@sigstore/core': 2.0.0
+ '@sigstore/protobuf-specs': 0.3.2
+ make-fetch-happen: 14.0.3
+ proc-log: 5.0.0
+ promise-retry: 2.0.1
transitivePeerDependencies:
- supports-color
- '@sigstore/tuf@2.3.0':
+ '@sigstore/tuf@3.0.0':
dependencies:
- '@sigstore/protobuf-specs': 0.2.1
- tuf-js: 2.2.0
+ '@sigstore/protobuf-specs': 0.3.2
+ tuf-js: 3.0.1
transitivePeerDependencies:
- supports-color
- '@sigstore/verify@1.0.0':
+ '@sigstore/verify@2.0.0':
dependencies:
- '@sigstore/bundle': 2.1.1
- '@sigstore/core': 1.0.0
- '@sigstore/protobuf-specs': 0.2.1
+ '@sigstore/bundle': 3.0.0
+ '@sigstore/core': 2.0.0
+ '@sigstore/protobuf-specs': 0.3.2
'@sinclair/typebox@0.25.21': {}
@@ -19123,54 +20760,54 @@ snapshots:
micromark-util-character: 1.1.0
micromark-util-symbol: 1.0.1
- '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-preset@8.1.0(@babel/core@7.25.2)':
+ '@svgr/babel-preset@8.1.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.26.0)
'@svgr/core@8.1.0(typescript@5.5.4)':
dependencies:
- '@babel/core': 7.25.2
- '@svgr/babel-preset': 8.1.0(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.26.0)
camelcase: 6.3.0
cosmiconfig: 8.3.6(typescript@5.5.4)
snake-case: 3.0.4
@@ -19180,13 +20817,13 @@ snapshots:
'@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
entities: 4.5.0
'@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.5.4))':
dependencies:
- '@babel/core': 7.25.2
- '@svgr/babel-preset': 8.1.0(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.26.0)
'@svgr/core': 8.1.0(typescript@5.5.4)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
@@ -19221,7 +20858,7 @@ snapshots:
'@swc/core': 1.5.7(@swc/helpers@0.5.11)
'@swc/types': 0.1.7
- '@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3)':
+ '@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4)':
dependencies:
'@swc-node/core': 1.13.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)
'@swc-node/sourcemap-support': 0.5.0
@@ -19230,7 +20867,7 @@ snapshots:
debug: 4.3.4(supports-color@8.1.1)
pirates: 4.0.6
tslib: 2.7.0
- typescript: 5.4.3
+ typescript: 5.5.4
transitivePeerDependencies:
- '@swc/types'
- supports-color
@@ -19240,7 +20877,7 @@ snapshots:
source-map-support: 0.5.21
tslib: 2.7.0
- '@swc/cli@0.3.12(@swc/core@1.5.7(@swc/helpers@0.5.11))(chokidar@3.6.0)':
+ '@swc/cli@0.3.12(@swc/core@1.5.7(@swc/helpers@0.5.11))':
dependencies:
'@mole-inc/bin-wrapper': 8.0.1
'@swc/core': 1.5.7(@swc/helpers@0.5.11)
@@ -19252,8 +20889,6 @@ snapshots:
semver: 7.6.3
slash: 3.0.0
source-map: 0.7.4
- optionalDependencies:
- chokidar: 3.6.0
'@swc/core-darwin-arm64@1.5.7':
optional: true
@@ -19349,14 +20984,14 @@ snapshots:
'@tufjs/canonical-json@2.0.0': {}
- '@tufjs/models@2.0.0':
+ '@tufjs/models@3.0.1':
dependencies:
'@tufjs/canonical-json': 2.0.0
- minimatch: 9.0.4
+ minimatch: 9.0.5
'@tybys/wasm-util@0.9.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@types/acorn@4.0.6':
dependencies:
@@ -19437,6 +21072,8 @@ snapshots:
'@types/estree@1.0.5': {}
+ '@types/estree@1.0.6': {}
+
'@types/express-serve-static-core@4.19.0':
dependencies:
'@types/node': 18.19.15
@@ -19473,6 +21110,10 @@ snapshots:
dependencies:
'@types/node': 18.19.15
+ '@types/http-proxy@1.17.15':
+ dependencies:
+ '@types/node': 18.19.15
+
'@types/istanbul-lib-coverage@2.0.4': {}
'@types/istanbul-lib-report@3.0.0':
@@ -19483,7 +21124,7 @@ snapshots:
dependencies:
'@types/istanbul-lib-report': 3.0.0
- '@types/jest@29.4.4':
+ '@types/jest@29.5.14':
dependencies:
expect: 29.7.0
pretty-format: 29.7.0
@@ -19524,10 +21165,6 @@ snapshots:
'@types/ms@0.7.31': {}
- '@types/mute-stream@0.0.4':
- dependencies:
- '@types/node': 18.19.15
-
'@types/nlcst@1.0.0':
dependencies:
'@types/unist': 3.0.0
@@ -19546,10 +21183,6 @@ snapshots:
dependencies:
undici-types: 5.26.5
- '@types/node@22.5.5':
- dependencies:
- undici-types: 6.19.8
-
'@types/normalize-package-data@2.4.1': {}
'@types/normalize-package-data@2.4.4': {}
@@ -19646,8 +21279,6 @@ snapshots:
'@types/unist@3.0.0': {}
- '@types/wrap-ansi@3.0.0': {}
-
'@types/ws@8.5.10':
dependencies:
'@types/node': 18.19.15
@@ -19663,13 +21294,13 @@ snapshots:
'@types/node': 18.19.15
optional: true
- '@typescript-eslint/eslint-plugin@7.4.0(@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)':
+ '@typescript-eslint/eslint-plugin@7.4.0(@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.11.1
- '@typescript-eslint/parser': 7.4.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/parser': 7.4.0(eslint@8.57.0)(typescript@5.5.4)
'@typescript-eslint/scope-manager': 7.4.0
- '@typescript-eslint/type-utils': 7.4.0(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/utils': 7.4.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/type-utils': 7.4.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.4.0(eslint@8.57.0)(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.4.0
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.57.0
@@ -19677,101 +21308,101 @@ snapshots:
ignore: 5.3.2
natural-compare: 1.4.0
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.4.3)
+ ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.4.3)':
+ '@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@typescript-eslint/scope-manager': 7.4.0
'@typescript-eslint/types': 7.4.0
- '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.4.3)
+ '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.4.0
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.57.0
optionalDependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@7.18.0':
- dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
-
'@typescript-eslint/scope-manager@7.4.0':
dependencies:
'@typescript-eslint/types': 7.4.0
'@typescript-eslint/visitor-keys': 7.4.0
+ '@typescript-eslint/scope-manager@8.13.0':
+ dependencies:
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/visitor-keys': 8.13.0
+
'@typescript-eslint/scope-manager@8.5.0':
dependencies:
'@typescript-eslint/types': 8.5.0
'@typescript-eslint/visitor-keys': 8.5.0
- '@typescript-eslint/type-utils@7.18.0(eslint@8.57.0)(typescript@5.4.3)':
+ '@typescript-eslint/type-utils@7.4.0(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.4.3)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.4.0(eslint@8.57.0)(typescript@5.5.4)
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.4.3)
+ ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.4.0(eslint@8.57.0)(typescript@5.4.3)':
+ '@typescript-eslint/type-utils@8.13.0(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.4.3)
- '@typescript-eslint/utils': 7.4.0(eslint@8.57.0)(typescript@5.4.3)
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.4.3)
+ '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.13.0(eslint@8.57.0)(typescript@5.5.4)
+ debug: 4.3.7
+ ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
transitivePeerDependencies:
+ - eslint
- supports-color
- '@typescript-eslint/types@7.18.0': {}
-
'@typescript-eslint/types@7.4.0': {}
+ '@typescript-eslint/types@8.13.0': {}
+
'@typescript-eslint/types@8.5.0': {}
- '@typescript-eslint/typescript-estree@7.18.0(typescript@5.4.3)':
+ '@typescript-eslint/typescript-estree@7.4.0(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
+ '@typescript-eslint/types': 7.4.0
+ '@typescript-eslint/visitor-keys': 7.4.0
debug: 4.3.4(supports-color@8.1.1)
globby: 11.1.0
is-glob: 4.0.3
- minimatch: 9.0.4
+ minimatch: 9.0.3
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.4.3)
+ ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@7.4.0(typescript@5.4.3)':
+ '@typescript-eslint/typescript-estree@8.13.0(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/types': 7.4.0
- '@typescript-eslint/visitor-keys': 7.4.0
- debug: 4.3.4(supports-color@8.1.1)
- globby: 11.1.0
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/visitor-keys': 8.13.0
+ debug: 4.3.7
+ fast-glob: 3.3.2
is-glob: 4.0.3
- minimatch: 9.0.3
+ minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.4.3)
+ ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.5.0(typescript@5.4.3)':
+ '@typescript-eslint/typescript-estree@8.5.0(typescript@5.5.4)':
dependencies:
'@typescript-eslint/types': 8.5.0
'@typescript-eslint/visitor-keys': 8.5.0
@@ -19780,56 +21411,56 @@ snapshots:
is-glob: 4.0.3
minimatch: 9.0.4
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.4.3)
+ ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.4.3)':
+ '@typescript-eslint/utils@7.4.0(eslint@8.57.0)(typescript@5.5.4)':
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.4.3)
+ '@types/json-schema': 7.0.12
+ '@types/semver': 7.5.8
+ '@typescript-eslint/scope-manager': 7.4.0
+ '@typescript-eslint/types': 7.4.0
+ '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.5.4)
eslint: 8.57.0
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@7.4.0(eslint@8.57.0)(typescript@5.4.3)':
+ '@typescript-eslint/utils@8.13.0(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@types/json-schema': 7.0.12
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 7.4.0
- '@typescript-eslint/types': 7.4.0
- '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.4.3)
+ '@typescript-eslint/scope-manager': 8.13.0
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.5.4)
eslint: 8.57.0
- semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.4.3)':
+ '@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@typescript-eslint/scope-manager': 8.5.0
'@typescript-eslint/types': 8.5.0
- '@typescript-eslint/typescript-estree': 8.5.0(typescript@5.4.3)
+ '@typescript-eslint/typescript-estree': 8.5.0(typescript@5.5.4)
eslint: 8.57.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@7.18.0':
+ '@typescript-eslint/visitor-keys@7.4.0':
dependencies:
- '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/types': 7.4.0
eslint-visitor-keys: 3.4.3
- '@typescript-eslint/visitor-keys@7.4.0':
+ '@typescript-eslint/visitor-keys@8.13.0':
dependencies:
- '@typescript-eslint/types': 7.4.0
+ '@typescript-eslint/types': 8.13.0
eslint-visitor-keys: 3.4.3
'@typescript-eslint/visitor-keys@8.5.0':
@@ -19857,21 +21488,25 @@ snapshots:
- encoding
- supports-color
- '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))':
+ '@vitejs/plugin-basic-ssl@1.1.0(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))':
+ dependencies:
+ vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
+
+ '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.10(@types/node@18.19.15)(less@4.1.3)(sass@1.80.5)(stylus@0.64.0)(terser@5.36.0))':
dependencies:
- vite: 5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ vite: 5.4.10(@types/node@18.19.15)(less@4.1.3)(sass@1.80.5)(stylus@0.64.0)(terser@5.36.0)
- '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.0(@types/node@18.19.15)(less@4.2.0)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))':
+ '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.10(@types/node@18.19.15)(less@4.2.0)(sass@1.80.5)(stylus@0.64.0)(terser@5.36.0))':
dependencies:
- vite: 5.4.0(@types/node@18.19.15)(less@4.2.0)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ vite: 5.4.10(@types/node@18.19.15)(less@4.2.0)(sass@1.80.5)(stylus@0.64.0)(terser@5.36.0)
- '@vitejs/plugin-react@4.0.4(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))':
+ '@vitejs/plugin-react@4.0.4(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))':
dependencies:
'@babel/core': 7.25.2
'@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.25.2)
'@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.25.2)
react-refresh: 0.14.0
- vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
transitivePeerDependencies:
- supports-color
@@ -19989,7 +21624,7 @@ snapshots:
'@yarnpkg/parsers@3.0.0-rc.46':
dependencies:
js-yaml: 3.14.1
- tslib: 2.7.0
+ tslib: 2.8.0
'@zkochan/js-yaml@0.0.7':
dependencies:
@@ -20017,13 +21652,17 @@ snapshots:
acorn-globals@7.0.1:
dependencies:
- acorn: 8.11.3
+ acorn: 8.12.1
acorn-walk: 8.3.2
acorn-import-attributes@1.9.5(acorn@8.11.3):
dependencies:
acorn: 8.11.3
+ acorn-import-attributes@1.9.5(acorn@8.12.1):
+ dependencies:
+ acorn: 8.12.1
+
acorn-jsx@5.3.2(acorn@8.10.0):
dependencies:
acorn: 8.10.0
@@ -20061,9 +21700,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- agent-base@7.1.0:
+ agent-base@7.1.0:
+ dependencies:
+ debug: 4.3.4(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ agent-base@7.1.1:
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -20271,7 +21916,7 @@ snapshots:
astring@1.8.6: {}
- astro@4.8.7(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)(typescript@5.4.3):
+ astro@4.8.7(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)(typescript@5.5.4):
dependencies:
'@astrojs/compiler': 2.8.0
'@astrojs/internal-helpers': 0.4.0
@@ -20327,11 +21972,11 @@ snapshots:
shiki: 1.6.1
string-width: 7.1.0
strip-ansi: 7.1.0
- tsconfck: 3.0.3(typescript@5.4.3)
+ tsconfck: 3.0.3(typescript@5.5.4)
unist-util-visit: 5.0.0
vfile: 6.0.3
- vite: 5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
- vitefu: 0.2.5(vite@5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6))
+ vite: 5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
+ vitefu: 0.2.5(vite@5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0))
which-pm: 2.1.1
yargs-parser: 21.1.1
zod: 3.23.8
@@ -20382,6 +22027,16 @@ snapshots:
postcss: 8.4.41
postcss-value-parser: 4.2.0
+ autoprefixer@10.4.20(postcss@8.4.47):
+ dependencies:
+ browserslist: 4.23.3
+ caniuse-lite: 1.0.30001660
+ fraction.js: 4.3.7
+ normalize-range: 0.1.2
+ picocolors: 1.0.1
+ postcss: 8.4.47
+ postcss-value-parser: 4.2.0
+
aws-sign2@0.7.0: {}
aws4@1.11.0: {}
@@ -20395,7 +22050,7 @@ snapshots:
axios@1.7.7:
dependencies:
- follow-redirects: 1.15.9(debug@4.3.4)
+ follow-redirects: 1.15.9(debug@4.3.7)
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -20423,13 +22078,13 @@ snapshots:
- supports-color
optional: true
- babel-jest@29.7.0(@babel/core@7.25.2):
+ babel-jest@29.7.0(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
+ '@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.25.2)
+ babel-preset-jest: 29.6.3(@babel/core@7.26.0)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -20443,12 +22098,19 @@ snapshots:
schema-utils: 4.2.0
webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
- babel-plugin-const-enum@1.2.0(@babel/core@7.25.2):
+ babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.25.2)
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ find-cache-dir: 4.0.0
+ schema-utils: 4.2.0
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+
+ babel-plugin-const-enum@1.2.0(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -20458,7 +22120,7 @@ snapshots:
babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -20468,14 +22130,14 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.6
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.18.2
babel-plugin-macros@2.8.0:
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.26.0
cosmiconfig: 6.0.0
resolve: 1.22.8
@@ -20488,6 +22150,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.0):
+ dependencies:
+ '@babel/compat-data': 7.25.4
+ '@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.4(@babel/core@7.25.2):
dependencies:
'@babel/core': 7.25.2
@@ -20496,6 +22167,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
+ core-js-compat: 3.38.1
+ transitivePeerDependencies:
+ - supports-color
+
babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.2):
dependencies:
'@babel/core': 7.25.2
@@ -20503,12 +22182,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.25.2)(@babel/traverse@7.25.6):
+ babel-plugin-polyfill-regenerator@0.6.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-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.26.0)(@babel/traverse@7.25.9):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
optionalDependencies:
- '@babel/traverse': 7.25.6
+ '@babel/traverse': 7.25.9
babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.8):
dependencies:
@@ -20527,21 +22213,21 @@ snapshots:
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.8)
optional: true
- babel-preset-current-node-syntax@1.0.1(@babel/core@7.25.2):
- dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@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-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)
babel-preset-jest@29.6.3(@babel/core@7.21.8):
dependencies:
@@ -20550,11 +22236,11 @@ snapshots:
babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.8)
optional: true
- babel-preset-jest@29.6.3(@babel/core@7.25.2):
+ babel-preset-jest@29.6.3(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.2)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.26.0)
bail@2.0.2: {}
@@ -20576,6 +22262,17 @@ snapshots:
dependencies:
tweetnacl: 0.14.5
+ beasties@0.1.0:
+ dependencies:
+ css-select: 5.1.0
+ css-what: 6.1.0
+ dom-serializer: 2.0.0
+ domhandler: 5.0.3
+ htmlparser2: 9.1.0
+ picocolors: 1.1.1
+ postcss: 8.4.47
+ postcss-media-query-parser: 0.2.3
+
before-after-hook@2.2.3: {}
big.js@5.2.2: {}
@@ -20690,6 +22387,10 @@ snapshots:
dependencies:
fill-range: 7.0.1
+ braces@3.0.3:
+ dependencies:
+ fill-range: 7.1.1
+
browserslist@4.21.5:
dependencies:
caniuse-lite: 1.0.30001474
@@ -20711,6 +22412,13 @@ snapshots:
node-releases: 2.0.18
update-browserslist-db: 1.1.0(browserslist@4.23.3)
+ browserslist@4.24.2:
+ dependencies:
+ caniuse-lite: 1.0.30001677
+ electron-to-chromium: 1.5.50
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
+
bs-logger@0.2.6:
dependencies:
fast-json-stable-stringify: 2.1.0
@@ -20772,7 +22480,7 @@ snapshots:
dependencies:
'@npmcli/fs': 3.1.0
fs-minipass: 3.0.0
- glob: 10.3.15
+ glob: 10.4.5
lru-cache: 10.2.0
minipass: 7.1.2
minipass-collect: 1.0.2
@@ -20783,6 +22491,21 @@ snapshots:
tar: 6.2.0
unique-filename: 3.0.0
+ cacache@19.0.1:
+ dependencies:
+ '@npmcli/fs': 4.0.0
+ fs-minipass: 3.0.0
+ glob: 10.4.5
+ lru-cache: 10.2.0
+ minipass: 7.1.2
+ minipass-collect: 2.0.1
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ p-map: 7.0.2
+ ssri: 12.0.0
+ tar: 7.4.3
+ unique-filename: 4.0.0
+
cache-content-type@1.0.1:
dependencies:
mime-types: 2.1.35
@@ -20827,7 +22550,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.7.0
+ tslib: 2.8.0
camelcase-css@2.0.1: {}
@@ -20865,6 +22588,8 @@ snapshots:
caniuse-lite@1.0.30001660: {}
+ caniuse-lite@1.0.30001677: {}
+
cardinal@2.1.1:
dependencies:
ansicolors: 0.3.2
@@ -20951,8 +22676,14 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ chokidar@4.0.1:
+ dependencies:
+ readdirp: 4.0.2
+
chownr@2.0.0: {}
+ chownr@3.0.0: {}
+
chrome-trace-event@1.0.3: {}
ci-info@3.8.0: {}
@@ -21115,7 +22846,7 @@ snapshots:
commander@10.0.1: {}
- commander@12.0.0: {}
+ commander@12.1.0: {}
commander@2.20.3: {}
@@ -21354,7 +23085,7 @@ snapshots:
cookie@0.6.0: {}
- cookies@0.8.0:
+ cookies@0.9.1:
dependencies:
depd: 2.0.0
keygrip: 1.1.0
@@ -21369,7 +23100,7 @@ snapshots:
copy-text-to-clipboard@3.2.0: {}
- copy-webpack-plugin@10.2.4(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ copy-webpack-plugin@10.2.4(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
fast-glob: 3.3.2
glob-parent: 6.0.2
@@ -21377,7 +23108,7 @@ snapshots:
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
copy-webpack-plugin@11.0.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
@@ -21389,7 +23120,7 @@ snapshots:
serialize-javascript: 6.0.2
webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
- copy-webpack-plugin@12.0.2(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ copy-webpack-plugin@12.0.2(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
fast-glob: 3.3.2
glob-parent: 6.0.2
@@ -21397,7 +23128,7 @@ snapshots:
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
core-js-compat@3.38.1:
dependencies:
@@ -21421,11 +23152,11 @@ snapshots:
dependencies:
layout-base: 2.0.1
- cosmiconfig-typescript-loader@4.3.0(@types/node@18.19.15)(cosmiconfig@8.1.3)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))(typescript@4.8.4):
+ cosmiconfig-typescript-loader@4.3.0(@types/node@18.19.15)(cosmiconfig@8.1.3)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))(typescript@4.8.4):
dependencies:
'@types/node': 18.19.15
cosmiconfig: 8.1.3
- ts-node: 10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)
+ ts-node: 10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)
typescript: 4.8.4
cosmiconfig@6.0.0:
@@ -21451,15 +23182,6 @@ snapshots:
parse-json: 5.2.0
path-type: 4.0.0
- cosmiconfig@8.3.6(typescript@5.4.3):
- dependencies:
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- parse-json: 5.2.0
- path-type: 4.0.0
- optionalDependencies:
- typescript: 5.4.3
-
cosmiconfig@8.3.6(typescript@5.5.4):
dependencies:
import-fresh: 3.3.0
@@ -21469,14 +23191,14 @@ snapshots:
optionalDependencies:
typescript: 5.5.4
- cosmiconfig@9.0.0(typescript@5.4.3):
+ cosmiconfig@9.0.0(typescript@5.5.4):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
cp-file@9.1.0:
dependencies:
@@ -21508,13 +23230,13 @@ snapshots:
crc-32: 1.2.2
readable-stream: 4.5.2
- create-jest@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)):
+ create-jest@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)):
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@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ jest-config: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -21525,16 +23247,6 @@ snapshots:
create-require@1.1.1: {}
- critters@0.0.24:
- dependencies:
- chalk: 4.1.2
- css-select: 5.1.0
- dom-serializer: 2.0.0
- domhandler: 5.0.3
- htmlparser2: 8.0.2
- postcss: 8.4.41
- postcss-media-query-parser: 0.2.3
-
cron-parser@4.9.0:
dependencies:
luxon: 3.5.0
@@ -21598,7 +23310,7 @@ snapshots:
optionalDependencies:
webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
- css-loader@7.1.2(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ css-loader@6.10.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
icss-utils: 5.1.0(postcss@8.4.41)
postcss: 8.4.41
@@ -21609,7 +23321,20 @@ snapshots:
postcss-value-parser: 4.2.0
semver: 7.6.3
optionalDependencies:
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+
+ css-loader@7.1.2(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.47)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.47)
+ postcss-modules-scope: 3.2.0(postcss@8.4.47)
+ postcss-modules-values: 4.0.0(postcss@8.4.47)
+ postcss-value-parser: 4.2.0
+ semver: 7.6.3
+ optionalDependencies:
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
css-minimizer-webpack-plugin@5.0.1(clean-css@5.3.3)(esbuild@0.19.5)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
@@ -21624,6 +23349,18 @@ snapshots:
clean-css: 5.3.3
esbuild: 0.19.5
+ css-minimizer-webpack-plugin@5.0.1(esbuild@0.19.5)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ cssnano: 6.0.1(postcss@8.4.41)
+ jest-worker: 29.5.0
+ postcss: 8.4.41
+ schema-utils: 4.2.0
+ serialize-javascript: 6.0.1
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ optionalDependencies:
+ esbuild: 0.19.5
+
css-prefers-color-scheme@8.0.0(postcss@8.4.38):
dependencies:
postcss: 8.4.38
@@ -22035,10 +23772,6 @@ snapshots:
dependencies:
ms: 2.0.0
- debug@3.1.0:
- dependencies:
- ms: 2.0.0
-
debug@3.2.7(supports-color@8.1.1):
dependencies:
ms: 2.1.3
@@ -22051,6 +23784,10 @@ snapshots:
optionalDependencies:
supports-color: 8.1.1
+ debug@4.3.7:
+ dependencies:
+ ms: 2.1.3
+
decamelize-keys@1.1.0:
dependencies:
decamelize: 1.2.0
@@ -22258,10 +23995,16 @@ snapshots:
domelementtype: 2.3.0
domhandler: 5.0.3
+ domutils@3.1.0:
+ dependencies:
+ dom-serializer: 2.0.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.0
dot-prop@5.3.0:
dependencies:
@@ -22308,6 +24051,8 @@ snapshots:
electron-to-chromium@1.5.23: {}
+ electron-to-chromium@1.5.50: {}
+
elkjs@0.8.2: {}
emittery@0.13.1: {}
@@ -22370,8 +24115,6 @@ snapshots:
dependencies:
is-arrayish: 0.2.1
- error-inject@1.0.0: {}
-
es-define-property@1.0.0:
dependencies:
get-intrinsic: 1.2.4
@@ -22380,7 +24123,7 @@ snapshots:
es-module-lexer@1.5.3: {}
- esbuild-wasm@0.23.0: {}
+ esbuild-wasm@0.24.0: {}
esbuild@0.19.5:
optionalDependencies:
@@ -22459,61 +24202,32 @@ snapshots:
'@esbuild/win32-ia32': 0.21.3
'@esbuild/win32-x64': 0.21.3
- esbuild@0.23.0:
+ esbuild@0.24.0:
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
-
- esbuild@0.23.1:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.23.1
- '@esbuild/android-arm': 0.23.1
- '@esbuild/android-arm64': 0.23.1
- '@esbuild/android-x64': 0.23.1
- '@esbuild/darwin-arm64': 0.23.1
- '@esbuild/darwin-x64': 0.23.1
- '@esbuild/freebsd-arm64': 0.23.1
- '@esbuild/freebsd-x64': 0.23.1
- '@esbuild/linux-arm': 0.23.1
- '@esbuild/linux-arm64': 0.23.1
- '@esbuild/linux-ia32': 0.23.1
- '@esbuild/linux-loong64': 0.23.1
- '@esbuild/linux-mips64el': 0.23.1
- '@esbuild/linux-ppc64': 0.23.1
- '@esbuild/linux-riscv64': 0.23.1
- '@esbuild/linux-s390x': 0.23.1
- '@esbuild/linux-x64': 0.23.1
- '@esbuild/netbsd-x64': 0.23.1
- '@esbuild/openbsd-arm64': 0.23.1
- '@esbuild/openbsd-x64': 0.23.1
- '@esbuild/sunos-x64': 0.23.1
- '@esbuild/win32-arm64': 0.23.1
- '@esbuild/win32-ia32': 0.23.1
- '@esbuild/win32-x64': 0.23.1
-
- escalade@3.1.1: {}
+ '@esbuild/aix-ppc64': 0.24.0
+ '@esbuild/android-arm': 0.24.0
+ '@esbuild/android-arm64': 0.24.0
+ '@esbuild/android-x64': 0.24.0
+ '@esbuild/darwin-arm64': 0.24.0
+ '@esbuild/darwin-x64': 0.24.0
+ '@esbuild/freebsd-arm64': 0.24.0
+ '@esbuild/freebsd-x64': 0.24.0
+ '@esbuild/linux-arm': 0.24.0
+ '@esbuild/linux-arm64': 0.24.0
+ '@esbuild/linux-ia32': 0.24.0
+ '@esbuild/linux-loong64': 0.24.0
+ '@esbuild/linux-mips64el': 0.24.0
+ '@esbuild/linux-ppc64': 0.24.0
+ '@esbuild/linux-riscv64': 0.24.0
+ '@esbuild/linux-s390x': 0.24.0
+ '@esbuild/linux-x64': 0.24.0
+ '@esbuild/netbsd-x64': 0.24.0
+ '@esbuild/openbsd-arm64': 0.24.0
+ '@esbuild/openbsd-x64': 0.24.0
+ '@esbuild/sunos-x64': 0.24.0
+ '@esbuild/win32-arm64': 0.24.0
+ '@esbuild/win32-ia32': 0.24.0
+ '@esbuild/win32-x64': 0.24.0
escalade@3.2.0: {}
@@ -22916,7 +24630,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
fast-glob@3.3.2:
dependencies:
@@ -23010,6 +24724,10 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
+ fill-range@7.1.1:
+ dependencies:
+ to-regex-range: 5.0.1
+
finalhandler@1.2.0:
dependencies:
debug: 2.6.9
@@ -23102,9 +24820,9 @@ snapshots:
optionalDependencies:
debug: 4.3.4(supports-color@8.1.1)
- follow-redirects@1.15.9(debug@4.3.4):
+ follow-redirects@1.15.9(debug@4.3.7):
optionalDependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7
foreground-child@3.1.1:
dependencies:
@@ -23133,9 +24851,9 @@ snapshots:
optionalDependencies:
eslint: 8.57.0
- fork-ts-checker-webpack-plugin@7.2.13(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ fork-ts-checker-webpack-plugin@7.2.13(typescript@5.5.4)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
chalk: 4.1.2
chokidar: 3.6.0
cosmiconfig: 7.0.1
@@ -23147,8 +24865,8 @@ snapshots:
schema-utils: 3.3.0
semver: 7.6.3
tapable: 2.2.1
- typescript: 5.4.3
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ typescript: 5.5.4
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
form-data-encoder@2.1.4: {}
@@ -23354,8 +25072,17 @@ snapshots:
dependencies:
foreground-child: 3.1.1
jackspeak: 2.3.6
- minimatch: 9.0.4
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ path-scurry: 1.11.1
+
+ glob@10.4.5:
+ dependencies:
+ foreground-child: 3.1.1
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
minipass: 7.1.2
+ package-json-from-dist: 1.0.0
path-scurry: 1.11.1
glob@11.0.0:
@@ -23422,6 +25149,8 @@ snapshots:
dependencies:
type-fest: 0.20.2
+ globals@15.12.0: {}
+
globby@11.1.0:
dependencies:
array-union: 2.1.0
@@ -23460,7 +25189,7 @@ snapshots:
dependencies:
'@sindresorhus/merge-streams': 1.0.0
fast-glob: 3.3.2
- ignore: 5.2.4
+ ignore: 5.3.2
path-type: 5.0.0
slash: 5.1.0
unicorn-magic: 0.1.0
@@ -23773,6 +25502,10 @@ snapshots:
dependencies:
lru-cache: 10.0.1
+ hosted-git-info@8.0.0:
+ dependencies:
+ lru-cache: 10.2.0
+
hpack.js@2.1.6:
dependencies:
inherits: 2.0.4
@@ -23824,6 +25557,17 @@ snapshots:
optionalDependencies:
webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ dependencies:
+ '@types/html-minifier-terser': 6.1.0
+ html-minifier-terser: 6.1.0
+ lodash: 4.17.21
+ pretty-error: 4.0.0
+ tapable: 2.2.1
+ optionalDependencies:
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ optional: true
+
htmlparser2@6.1.0:
dependencies:
domelementtype: 2.3.0
@@ -23838,6 +25582,13 @@ snapshots:
domutils: 3.0.1
entities: 4.5.0
+ htmlparser2@9.1.0:
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ domutils: 3.1.0
+ entities: 4.5.0
+
http-assert@1.5.0:
dependencies:
deep-equal: 1.0.1
@@ -23890,7 +25641,7 @@ snapshots:
http-proxy-middleware@2.0.6(@types/express@4.17.21):
dependencies:
'@types/http-proxy': 1.17.14
- http-proxy: 1.18.1(debug@4.3.4)
+ http-proxy: 1.18.1(debug@4.3.7)
is-glob: 4.0.3
is-plain-obj: 3.0.0
micromatch: 4.0.5
@@ -23899,21 +25650,21 @@ snapshots:
transitivePeerDependencies:
- debug
- http-proxy-middleware@3.0.0:
+ http-proxy-middleware@3.0.3:
dependencies:
- '@types/http-proxy': 1.17.14
- debug: 4.3.4(supports-color@8.1.1)
- http-proxy: 1.18.1(debug@4.3.4)
+ '@types/http-proxy': 1.17.15
+ debug: 4.3.7
+ http-proxy: 1.18.1(debug@4.3.7)
is-glob: 4.0.3
- is-plain-obj: 3.0.0
- micromatch: 4.0.5
+ is-plain-object: 5.0.0
+ micromatch: 4.0.8
transitivePeerDependencies:
- supports-color
- http-proxy@1.18.1(debug@4.3.4):
+ http-proxy@1.18.1(debug@4.3.7):
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.9(debug@4.3.4)
+ follow-redirects: 1.15.9(debug@4.3.7)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -23925,7 +25676,7 @@ snapshots:
corser: 2.0.1
he: 1.2.0
html-encoding-sniffer: 3.0.0
- http-proxy: 1.18.1(debug@4.3.4)
+ http-proxy: 1.18.1(debug@4.3.7)
mime: 1.6.0
minimist: 1.2.8
opener: 1.5.2
@@ -23995,15 +25746,19 @@ snapshots:
dependencies:
postcss: 8.4.41
+ icss-utils@5.1.0(postcss@8.4.47):
+ dependencies:
+ postcss: 8.4.47
+
identity-obj-proxy@3.0.0:
dependencies:
harmony-reflect: 1.6.2
ieee754@1.2.1: {}
- ignore-walk@6.0.0:
+ ignore-walk@7.0.0:
dependencies:
- minimatch: 5.1.0
+ minimatch: 9.0.5
ignore@5.2.4: {}
@@ -24064,11 +25819,11 @@ snapshots:
ini@2.0.0: {}
- ini@4.1.3: {}
+ ini@5.0.0: {}
injection-js@2.4.0:
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
inline-style-parser@0.1.1: {}
@@ -24117,7 +25872,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ip@2.0.0: {}
+ ip-address@9.0.5:
+ dependencies:
+ jsbn: 1.1.0
+ sprintf-js: 1.1.3
ipaddr.js@1.9.1: {}
@@ -24231,6 +25989,8 @@ snapshots:
dependencies:
isobject: 3.0.1
+ is-plain-object@5.0.0: {}
+
is-potential-custom-element-name@1.0.1: {}
is-promise@4.0.0: {}
@@ -24306,6 +26066,8 @@ snapshots:
transitivePeerDependencies:
- encoding
+ isomorphic-rslog@0.0.5: {}
+
isomorphic-ws@5.0.0(ws@8.17.1):
dependencies:
ws: 8.17.1
@@ -24324,8 +26086,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.25.2
- '@babel/parser': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.1
@@ -24334,7 +26096,7 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/parser': 7.25.6
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
@@ -24350,7 +26112,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.0
source-map: 0.6.1
transitivePeerDependencies:
@@ -24367,6 +26129,12 @@ snapshots:
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
+ jackspeak@3.4.3:
+ dependencies:
+ '@isaacs/cliui': 8.0.2
+ optionalDependencies:
+ '@pkgjs/parseargs': 0.11.0
+
jackspeak@4.0.1:
dependencies:
'@isaacs/cliui': 8.0.2
@@ -24414,16 +26182,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)):
+ jest-cli@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ '@jest/core': 29.7.0(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ create-jest: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ jest-config: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -24433,12 +26201,12 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)):
+ jest-config@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.25.2)
+ babel-jest: 29.7.0(@babel/core@7.26.0)
chalk: 4.1.2
ci-info: 3.8.0
deepmerge: 4.3.1
@@ -24452,14 +26220,14 @@ snapshots:
jest-runner: 29.7.0
jest-util: 29.7.0
jest-validate: 29.7.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
'@types/node': 18.19.15
- ts-node: 10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)
+ ts-node: 10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -24520,7 +26288,7 @@ snapshots:
jest-regex-util: 29.6.3
jest-util: 29.7.0
jest-worker: 29.7.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
@@ -24539,12 +26307,12 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.1
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.5
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
stack-utils: 2.0.5
@@ -24635,15 +26403,15 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.25.2
- '@babel/generator': 7.25.6
- '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.25.2)
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.25.2)
- '@babel/types': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.0
+ '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.2)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.26.0)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -24716,20 +26484,18 @@ snapshots:
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)):
+ jest@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ '@jest/core': 29.7.0(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ jest-cli: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
- jiti@1.21.0: {}
-
jiti@1.21.6: {}
joi@17.13.1:
@@ -24770,10 +26536,12 @@ snapshots:
jsbn@0.1.1: {}
+ jsbn@1.1.0: {}
+
jsdom@20.0.3:
dependencies:
abab: 2.0.6
- acorn: 8.11.3
+ acorn: 8.12.1
acorn-globals: 7.0.1
cssom: 0.5.0
cssstyle: 2.3.0
@@ -24796,7 +26564,7 @@ snapshots:
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- ws: 8.17.1
+ ws: 8.18.0
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
@@ -24837,6 +26605,8 @@ snapshots:
jsesc@2.5.2: {}
+ jsesc@3.0.2: {}
+
json-buffer@3.0.1: {}
json-fixer@1.6.15:
@@ -24849,7 +26619,7 @@ snapshots:
json-parse-even-better-errors@2.3.1: {}
- json-parse-even-better-errors@3.0.0: {}
+ json-parse-even-better-errors@4.0.0: {}
json-schema-traverse@0.4.1: {}
@@ -24919,37 +26689,32 @@ snapshots:
knitwork@1.1.0: {}
- koa-compose@3.2.1:
- dependencies:
- any-promise: 1.3.0
-
koa-compose@4.1.0: {}
- koa-convert@1.2.0:
+ koa-convert@2.0.0:
dependencies:
co: 4.6.0
- koa-compose: 3.2.1
+ koa-compose: 4.1.0
- koa@2.11.0:
+ koa@2.15.3:
dependencies:
accepts: 1.3.8
cache-content-type: 1.0.1
content-disposition: 0.5.4
content-type: 1.0.5
- cookies: 0.8.0
- debug: 3.1.0
+ cookies: 0.9.1
+ debug: 4.3.7
delegates: 1.0.0
- depd: 1.1.2
+ depd: 2.0.0
destroy: 1.2.0
encodeurl: 1.0.2
- error-inject: 1.0.0
escape-html: 1.0.3
fresh: 0.5.2
http-assert: 1.5.0
http-errors: 1.8.1
is-generator-function: 1.0.10
koa-compose: 4.1.0
- koa-convert: 1.2.0
+ koa-convert: 2.0.0
on-finished: 2.4.1
only: 0.0.2
parseurl: 1.3.3
@@ -24980,23 +26745,23 @@ snapshots:
dependencies:
readable-stream: 2.3.7
- less-loader@11.1.0(less@4.1.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ less-loader@11.1.0(less@4.1.3)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
klona: 2.0.6
less: 4.1.3
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
- less-loader@12.2.0(less@4.2.0)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ less-loader@12.2.0(less@4.2.0)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
less: 4.2.0
optionalDependencies:
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
less@4.1.3:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.7.0
+ tslib: 2.8.0
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -25012,7 +26777,7 @@ snapshots:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.7.0
+ tslib: 2.8.0
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -25036,11 +26801,11 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- license-webpack-plugin@4.0.2(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ license-webpack-plugin@4.0.2(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
webpack-sources: 3.2.3
optionalDependencies:
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
lilconfig@2.0.6: {}
@@ -25125,7 +26890,7 @@ snapshots:
optionalDependencies:
enquirer: 2.3.6
- listr2@8.2.4:
+ listr2@8.2.5:
dependencies:
cli-truncate: 4.0.0
colorette: 2.0.20
@@ -25134,7 +26899,7 @@ snapshots:
rfdc: 1.4.1
wrap-ansi: 9.0.0
- lmdb@3.0.13:
+ lmdb@3.1.3:
dependencies:
msgpackr: 1.10.2
node-addon-api: 6.1.0
@@ -25142,12 +26907,13 @@ snapshots:
ordered-binary: 1.5.1
weak-lru-cache: 1.2.2
optionalDependencies:
- '@lmdb/lmdb-darwin-arm64': 3.0.13
- '@lmdb/lmdb-darwin-x64': 3.0.13
- '@lmdb/lmdb-linux-arm': 3.0.13
- '@lmdb/lmdb-linux-arm64': 3.0.13
- '@lmdb/lmdb-linux-x64': 3.0.13
- '@lmdb/lmdb-win32-x64': 3.0.13
+ '@lmdb/lmdb-darwin-arm64': 3.1.3
+ '@lmdb/lmdb-darwin-x64': 3.1.3
+ '@lmdb/lmdb-linux-arm': 3.1.3
+ '@lmdb/lmdb-linux-arm64': 3.1.3
+ '@lmdb/lmdb-linux-x64': 3.1.3
+ '@lmdb/lmdb-win32-x64': 3.1.3
+ optional: true
load-json-file@4.0.0:
dependencies:
@@ -25274,7 +27040,7 @@ snapshots:
log4js@6.9.1:
dependencies:
date-format: 4.0.14
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7
flatted: 3.2.7
rfdc: 1.4.1
streamroller: 3.1.5
@@ -25295,7 +27061,7 @@ snapshots:
lower-case@2.0.2:
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
lowercase-keys@2.0.0: {}
@@ -25330,6 +27096,10 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
+ magic-string@0.30.12:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+
magic-string@0.30.8:
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
@@ -25346,7 +27116,7 @@ snapshots:
make-error@1.3.6: {}
- make-fetch-happen@13.0.0:
+ make-fetch-happen@13.0.1:
dependencies:
'@npmcli/agent': 2.2.0
cacache: 18.0.0
@@ -25357,11 +27127,28 @@ snapshots:
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
negotiator: 0.6.3
+ proc-log: 4.2.0
promise-retry: 2.0.1
ssri: 10.0.0
transitivePeerDependencies:
- supports-color
+ make-fetch-happen@14.0.3:
+ dependencies:
+ '@npmcli/agent': 3.0.0
+ cacache: 19.0.1
+ http-cache-semantics: 4.1.1
+ minipass: 7.1.2
+ minipass-fetch: 4.0.0
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ negotiator: 1.0.0
+ proc-log: 5.0.0
+ promise-retry: 2.0.1
+ ssri: 12.0.0
+ transitivePeerDependencies:
+ - supports-color
+
makeerror@1.0.12:
dependencies:
tmpl: 1.0.5
@@ -25632,10 +27419,10 @@ snapshots:
memfs@4.9.2:
dependencies:
- '@jsonjoy.com/json-pack': 1.0.4(tslib@2.7.0)
- '@jsonjoy.com/util': 1.1.3(tslib@2.7.0)
- sonic-forest: 1.0.3(tslib@2.7.0)
- tslib: 2.7.0
+ '@jsonjoy.com/json-pack': 1.0.4(tslib@2.8.0)
+ '@jsonjoy.com/util': 1.1.3(tslib@2.8.0)
+ sonic-forest: 1.0.3(tslib@2.8.0)
+ tslib: 2.8.0
meow@10.1.5:
dependencies:
@@ -26120,6 +27907,11 @@ snapshots:
braces: 3.0.2
picomatch: 2.3.1
+ micromatch@4.0.8:
+ dependencies:
+ braces: 3.0.3
+ picomatch: 2.3.1
+
mime-db@1.33.0: {}
mime-db@1.52.0: {}
@@ -26156,10 +27948,10 @@ snapshots:
min-indent@1.0.1: {}
- mini-css-extract-plugin@2.4.7(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ mini-css-extract-plugin@2.4.7(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
schema-utils: 4.2.0
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
mini-css-extract-plugin@2.9.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
@@ -26167,6 +27959,12 @@ snapshots:
tapable: 2.2.1
webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ mini-css-extract-plugin@2.9.1(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ dependencies:
+ schema-utils: 4.2.0
+ tapable: 2.2.1
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+
minimalistic-assert@1.0.1: {}
minimatch@10.0.1:
@@ -26193,6 +27991,10 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
+ minimatch@9.0.5:
+ dependencies:
+ brace-expansion: 2.0.1
+
minimist-options@4.1.0:
dependencies:
arrify: 1.0.1
@@ -26207,6 +28009,10 @@ snapshots:
dependencies:
minipass: 3.3.4
+ minipass-collect@2.0.1:
+ dependencies:
+ minipass: 7.1.2
+
minipass-fetch@3.0.0:
dependencies:
minipass: 3.3.4
@@ -26215,13 +28021,16 @@ snapshots:
optionalDependencies:
encoding: 0.1.13
- minipass-flush@1.0.5:
+ minipass-fetch@4.0.0:
dependencies:
- minipass: 3.3.4
+ minipass: 7.1.2
+ minipass-sized: 1.0.3
+ minizlib: 3.0.1
+ optionalDependencies:
+ encoding: 0.1.13
- minipass-json-stream@1.0.1:
+ minipass-flush@1.0.5:
dependencies:
- jsonparse: 1.3.1
minipass: 3.3.4
minipass-pipeline@1.2.4:
@@ -26249,6 +28058,11 @@ snapshots:
minipass: 3.3.4
yallist: 4.0.0
+ minizlib@3.0.1:
+ dependencies:
+ minipass: 7.1.2
+ rimraf: 5.0.10
+
mkdirp@0.5.6:
dependencies:
minimist: 1.2.8
@@ -26266,7 +28080,7 @@ snapshots:
mlly@1.6.1:
dependencies:
- acorn: 8.11.3
+ acorn: 8.12.1
pathe: 1.1.2
pkg-types: 1.0.3
ufo: 1.5.4
@@ -26307,6 +28121,7 @@ snapshots:
msgpackr@1.10.2:
optionalDependencies:
msgpackr-extract: 3.0.2
+ optional: true
multicast-dns@7.2.5:
dependencies:
@@ -26317,6 +28132,8 @@ snapshots:
mute-stream@1.0.0: {}
+ mute-stream@2.0.0: {}
+
mz@2.7.0:
dependencies:
any-promise: 1.3.0
@@ -26338,42 +28155,42 @@ snapshots:
negotiator@0.6.3: {}
+ negotiator@1.0.0: {}
+
neo-async@2.6.2: {}
nerf-dart@1.0.0: {}
nested-error-stacks@2.1.1: {}
- ng-packagr@18.2.1(@angular/compiler-cli@18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3))(tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)))(tslib@2.7.0)(typescript@5.4.3):
+ ng-packagr@19.0.0-rc.0(@angular/compiler-cli@19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)))(tslib@2.7.0)(typescript@5.5.4):
dependencies:
- '@angular/compiler-cli': 18.2.4(@angular/compiler@18.2.4(@angular/core@18.2.4(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.3)
- '@rollup/plugin-json': 6.1.0(rollup@4.20.0)
- '@rollup/plugin-node-resolve': 15.2.3(rollup@4.20.0)
- '@rollup/wasm-node': 4.18.0
+ '@angular/compiler-cli': 19.0.0-rc.0(@angular/compiler@19.0.0-rc.0(@angular/core@19.0.0-rc.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4)
+ '@rollup/plugin-json': 6.1.0(rollup@4.24.4)
+ '@rollup/wasm-node': 4.24.4
ajv: 8.17.1
ansi-colors: 4.1.3
browserslist: 4.23.3
- cacache: 18.0.0
- chokidar: 3.6.0
- commander: 12.0.0
+ chokidar: 4.0.1
+ commander: 12.1.0
convert-source-map: 2.0.0
dependency-graph: 1.0.0
- esbuild: 0.23.1
+ esbuild: 0.24.0
fast-glob: 3.3.2
find-cache-dir: 3.3.2
injection-js: 2.4.0
jsonc-parser: 3.3.1
less: 4.2.0
ora: 5.4.1
- piscina: 4.6.1
- postcss: 8.4.41
+ piscina: 4.7.0
+ postcss: 8.4.47
rxjs: 7.8.1
- sass: 1.77.6
+ sass: 1.80.6
tslib: 2.7.0
- typescript: 5.4.3
+ typescript: 5.5.4
optionalDependencies:
- rollup: 4.20.0
- tailwindcss: 3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ rollup: 4.24.4
+ tailwindcss: 3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
transitivePeerDependencies:
- supports-color
@@ -26486,14 +28303,15 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.7.0
+ tslib: 2.8.0
node-abort-controller@3.0.1: {}
node-addon-api@3.2.1:
optional: true
- node-addon-api@6.1.0: {}
+ node-addon-api@6.1.0:
+ optional: true
node-addon-api@7.0.0: {}
@@ -26522,6 +28340,7 @@ snapshots:
node-gyp-build-optional-packages@5.2.2:
dependencies:
detect-libc: 2.0.3
+ optional: true
node-gyp-build@4.5.0: {}
@@ -26529,9 +28348,9 @@ snapshots:
dependencies:
env-paths: 2.2.1
exponential-backoff: 3.1.1
- glob: 10.3.15
+ glob: 10.4.5
graceful-fs: 4.2.11
- make-fetch-happen: 13.0.0
+ make-fetch-happen: 13.0.1
nopt: 7.2.1
proc-log: 3.0.0
semver: 7.6.3
@@ -26587,6 +28406,12 @@ snapshots:
semver: 7.6.3
validate-npm-package-license: 3.0.4
+ normalize-package-data@7.0.0:
+ dependencies:
+ hosted-git-info: 8.0.0
+ semver: 7.6.3
+ validate-npm-package-license: 3.0.4
+
normalize-path@3.0.0: {}
normalize-range@0.1.2: {}
@@ -26595,15 +28420,15 @@ snapshots:
normalize-url@8.0.0: {}
- npm-bundled@3.0.0:
+ npm-bundled@4.0.0:
dependencies:
- npm-normalize-package-bin: 3.0.0
+ npm-normalize-package-bin: 4.0.0
- npm-install-checks@6.0.0:
+ npm-install-checks@7.1.0:
dependencies:
semver: 7.6.3
- npm-normalize-package-bin@3.0.0: {}
+ npm-normalize-package-bin@4.0.0: {}
npm-package-arg@11.0.1:
dependencies:
@@ -26612,34 +28437,34 @@ snapshots:
semver: 7.6.3
validate-npm-package-name: 5.0.0
- npm-package-arg@11.0.3:
+ npm-package-arg@12.0.0:
dependencies:
- hosted-git-info: 7.0.1
- proc-log: 4.2.0
+ hosted-git-info: 8.0.0
+ proc-log: 5.0.0
semver: 7.6.3
- validate-npm-package-name: 5.0.0
+ validate-npm-package-name: 6.0.0
- npm-packlist@8.0.0:
+ npm-packlist@9.0.0:
dependencies:
- ignore-walk: 6.0.0
+ ignore-walk: 7.0.0
- npm-pick-manifest@9.1.0:
+ npm-pick-manifest@10.0.0:
dependencies:
- npm-install-checks: 6.0.0
- npm-normalize-package-bin: 3.0.0
- npm-package-arg: 11.0.3
+ npm-install-checks: 7.1.0
+ npm-normalize-package-bin: 4.0.0
+ npm-package-arg: 12.0.0
semver: 7.6.3
- npm-registry-fetch@17.0.1:
+ npm-registry-fetch@18.0.2:
dependencies:
- '@npmcli/redact': 2.0.0
- make-fetch-happen: 13.0.0
+ '@npmcli/redact': 3.0.0
+ jsonparse: 1.3.1
+ make-fetch-happen: 14.0.3
minipass: 7.1.2
- minipass-fetch: 3.0.0
- minipass-json-stream: 1.0.1
- minizlib: 2.1.2
- npm-package-arg: 11.0.3
- proc-log: 4.2.0
+ minipass-fetch: 4.0.0
+ minizlib: 3.0.1
+ npm-package-arg: 12.0.0
+ proc-log: 5.0.0
transitivePeerDependencies:
- supports-color
@@ -26672,10 +28497,9 @@ snapshots:
nwsapi@2.2.5: {}
- nx@19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11)):
+ nx@20.0.8(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)):
dependencies:
'@napi-rs/wasm-runtime': 0.2.4
- '@nrwl/tao': 19.5.3(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3))(@swc/core@1.5.7(@swc/helpers@0.5.11))
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.0-rc.46
'@zkochan/js-yaml': 0.0.7
@@ -26690,7 +28514,6 @@ snapshots:
figures: 3.2.0
flat: 5.0.2
front-matter: 4.0.2
- fs-extra: 11.2.0
ignore: 5.3.2
jest-diff: 29.7.0
jsonc-parser: 3.2.0
@@ -26702,25 +28525,24 @@ snapshots:
ora: 5.3.0
semver: 7.6.3
string-width: 4.2.3
- strong-log-transformer: 2.1.0
tar-stream: 2.2.0
tmp: 0.2.3
tsconfig-paths: 4.2.0
- tslib: 2.7.0
+ tslib: 2.8.0
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- '@nx/nx-darwin-arm64': 19.5.3
- '@nx/nx-darwin-x64': 19.5.3
- '@nx/nx-freebsd-x64': 19.5.3
- '@nx/nx-linux-arm-gnueabihf': 19.5.3
- '@nx/nx-linux-arm64-gnu': 19.5.3
- '@nx/nx-linux-arm64-musl': 19.5.3
- '@nx/nx-linux-x64-gnu': 19.5.3
- '@nx/nx-linux-x64-musl': 19.5.3
- '@nx/nx-win32-arm64-msvc': 19.5.3
- '@nx/nx-win32-x64-msvc': 19.5.3
- '@swc-node/register': 1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.3)
+ '@nx/nx-darwin-arm64': 20.0.8
+ '@nx/nx-darwin-x64': 20.0.8
+ '@nx/nx-freebsd-x64': 20.0.8
+ '@nx/nx-linux-arm-gnueabihf': 20.0.8
+ '@nx/nx-linux-arm64-gnu': 20.0.8
+ '@nx/nx-linux-arm64-musl': 20.0.8
+ '@nx/nx-linux-x64-gnu': 20.0.8
+ '@nx/nx-linux-x64-musl': 20.0.8
+ '@nx/nx-win32-arm64-msvc': 20.0.8
+ '@nx/nx-win32-x64-msvc': 20.0.8
+ '@swc-node/register': 1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4)
'@swc/core': 1.5.7(@swc/helpers@0.5.11)
transitivePeerDependencies:
- debug
@@ -26861,7 +28683,8 @@ snapshots:
string-width: 7.1.0
strip-ansi: 7.1.0
- ordered-binary@1.5.1: {}
+ ordered-binary@1.5.1:
+ optional: true
os-filter-obj@2.0.0:
dependencies:
@@ -26943,6 +28766,8 @@ snapshots:
p-map@7.0.1: {}
+ p-map@7.0.2: {}
+
p-queue@8.0.1:
dependencies:
eventemitter3: 5.0.1
@@ -26982,24 +28807,24 @@ snapshots:
registry-url: 6.0.1
semver: 7.6.3
- pacote@18.0.6:
+ pacote@20.0.0:
dependencies:
- '@npmcli/git': 5.0.3
- '@npmcli/installed-package-contents': 2.0.1
- '@npmcli/package-json': 5.1.0
- '@npmcli/promise-spawn': 7.0.0
- '@npmcli/run-script': 8.1.0
- cacache: 18.0.0
+ '@npmcli/git': 6.0.1
+ '@npmcli/installed-package-contents': 3.0.0
+ '@npmcli/package-json': 6.0.1
+ '@npmcli/promise-spawn': 8.0.2
+ '@npmcli/run-script': 9.0.1
+ cacache: 19.0.1
fs-minipass: 3.0.0
minipass: 7.1.2
- npm-package-arg: 11.0.3
- npm-packlist: 8.0.0
- npm-pick-manifest: 9.1.0
- npm-registry-fetch: 17.0.1
- proc-log: 4.2.0
+ npm-package-arg: 12.0.0
+ npm-packlist: 9.0.0
+ npm-pick-manifest: 10.0.0
+ npm-registry-fetch: 18.0.2
+ proc-log: 5.0.0
promise-retry: 2.0.1
- sigstore: 2.2.1
- ssri: 10.0.0
+ sigstore: 3.0.0
+ ssri: 12.0.0
tar: 6.2.0
transitivePeerDependencies:
- bluebird
@@ -27010,7 +28835,7 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.0
parent-module@1.0.1:
dependencies:
@@ -27097,7 +28922,7 @@ snapshots:
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.0
path-browserify@1.0.1: {}
@@ -27177,6 +29002,8 @@ snapshots:
picocolors@1.0.1: {}
+ picocolors@1.1.1: {}
+
picomatch@2.3.1: {}
picomatch@4.0.2: {}
@@ -27197,9 +29024,9 @@ snapshots:
optionalDependencies:
nice-napi: 1.0.2
- piscina@4.6.1:
+ piscina@4.7.0:
optionalDependencies:
- nice-napi: 1.0.2
+ '@napi-rs/nice': 1.0.1
pkg-conf@2.1.0:
dependencies:
@@ -27398,9 +29225,9 @@ snapshots:
postcss: 8.4.38
postcss-value-parser: 4.2.0
- postcss-import@14.1.0(postcss@8.4.41):
+ postcss-import@14.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.41
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
@@ -27434,21 +29261,21 @@ snapshots:
postcss: 8.4.38
postcss-value-parser: 4.2.0
- postcss-load-config@4.0.2(postcss@8.4.41)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)):
+ postcss-load-config@4.0.2(postcss@8.4.41)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)):
dependencies:
lilconfig: 3.1.2
yaml: 2.5.1
optionalDependencies:
postcss: 8.4.41
- ts-node: 10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)
+ ts-node: 10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)
- postcss-loader@6.2.1(postcss@8.4.41)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ postcss-loader@6.2.1(postcss@8.4.47)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
cosmiconfig: 7.0.1
klona: 2.0.6
- postcss: 8.4.41
+ postcss: 8.4.47
semver: 7.6.3
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
postcss-loader@7.3.4(postcss@8.4.41)(typescript@5.5.4)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
@@ -27460,14 +29287,14 @@ snapshots:
transitivePeerDependencies:
- typescript
- postcss-loader@8.1.1(postcss@8.4.41)(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.5.4)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
- cosmiconfig: 9.0.0(typescript@5.4.3)
- jiti: 1.21.0
- postcss: 8.4.41
+ cosmiconfig: 9.0.0(typescript@5.5.4)
+ jiti: 1.21.6
+ postcss: 8.4.47
semver: 7.6.3
optionalDependencies:
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
transitivePeerDependencies:
- typescript
@@ -27568,6 +29395,10 @@ snapshots:
dependencies:
postcss: 8.4.41
+ postcss-modules-extract-imports@3.1.0(postcss@8.4.47):
+ dependencies:
+ postcss: 8.4.47
+
postcss-modules-local-by-default@4.0.5(postcss@8.4.41):
dependencies:
icss-utils: 5.1.0(postcss@8.4.41)
@@ -27575,16 +29406,33 @@ snapshots:
postcss-selector-parser: 6.1.1
postcss-value-parser: 4.2.0
+ postcss-modules-local-by-default@4.0.5(postcss@8.4.47):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.1
+ postcss-value-parser: 4.2.0
+
postcss-modules-scope@3.2.0(postcss@8.4.41):
dependencies:
postcss: 8.4.41
postcss-selector-parser: 6.1.1
+ postcss-modules-scope@3.2.0(postcss@8.4.47):
+ dependencies:
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.1
+
postcss-modules-values@4.0.0(postcss@8.4.41):
dependencies:
icss-utils: 5.1.0(postcss@8.4.41)
postcss: 8.4.41
+ postcss-modules-values@4.0.0(postcss@8.4.47):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+
postcss-nested@6.2.0(postcss@8.4.41):
dependencies:
postcss: 8.4.41
@@ -27874,7 +29722,7 @@ snapshots:
postcss@8.4.39:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.1
+ picocolors: 1.1.1
source-map-js: 1.2.0
postcss@8.4.41:
@@ -27883,6 +29731,12 @@ snapshots:
picocolors: 1.0.1
source-map-js: 1.2.0
+ postcss@8.4.47:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
preferred-pm@3.1.3:
dependencies:
find-up: 5.0.0
@@ -27925,6 +29779,8 @@ snapshots:
proc-log@4.2.0: {}
+ proc-log@5.0.0: {}
+
process-nextick-args@2.0.1: {}
process@0.11.10: {}
@@ -28256,6 +30112,8 @@ snapshots:
dependencies:
picomatch: 2.3.1
+ readdirp@4.0.2: {}
+
reading-time@1.5.0: {}
rechoir@0.6.2:
@@ -28292,6 +30150,10 @@ snapshots:
dependencies:
regenerate: 1.4.2
+ regenerate-unicode-properties@10.2.0:
+ dependencies:
+ regenerate: 1.4.2
+
regenerate@1.4.2: {}
regenerator-runtime@0.13.11: {}
@@ -28300,7 +30162,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.26.0
regex-parser@2.2.11: {}
@@ -28313,6 +30175,15 @@ snapshots:
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
+ regexpu-core@6.1.1:
+ dependencies:
+ regenerate: 1.4.2
+ regenerate-unicode-properties: 10.2.0
+ regjsgen: 0.8.0
+ regjsparser: 0.11.2
+ unicode-match-property-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.1.0
+
registry-auth-token@5.0.2:
dependencies:
'@pnpm/npm-conf': 2.2.2
@@ -28321,6 +30192,12 @@ snapshots:
dependencies:
rc: 1.2.8
+ regjsgen@0.8.0: {}
+
+ regjsparser@0.11.2:
+ dependencies:
+ jsesc: 3.0.2
+
regjsparser@0.9.1:
dependencies:
jsesc: 0.5.0
@@ -28486,7 +30363,7 @@ snapshots:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.4
- postcss: 8.4.41
+ postcss: 8.4.47
source-map: 0.6.1
resolve.exports@1.1.0: {}
@@ -28594,9 +30471,9 @@ snapshots:
dependencies:
glob: 7.2.3
- rimraf@5.0.7:
+ rimraf@5.0.10:
dependencies:
- glob: 10.3.15
+ glob: 10.4.5
rimraf@6.0.1:
dependencies:
@@ -28671,6 +30548,55 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.20.0
fsevents: 2.3.3
+ rollup@4.24.3:
+ dependencies:
+ '@types/estree': 1.0.6
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.24.3
+ '@rollup/rollup-android-arm64': 4.24.3
+ '@rollup/rollup-darwin-arm64': 4.24.3
+ '@rollup/rollup-darwin-x64': 4.24.3
+ '@rollup/rollup-freebsd-arm64': 4.24.3
+ '@rollup/rollup-freebsd-x64': 4.24.3
+ '@rollup/rollup-linux-arm-gnueabihf': 4.24.3
+ '@rollup/rollup-linux-arm-musleabihf': 4.24.3
+ '@rollup/rollup-linux-arm64-gnu': 4.24.3
+ '@rollup/rollup-linux-arm64-musl': 4.24.3
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.24.3
+ '@rollup/rollup-linux-riscv64-gnu': 4.24.3
+ '@rollup/rollup-linux-s390x-gnu': 4.24.3
+ '@rollup/rollup-linux-x64-gnu': 4.24.3
+ '@rollup/rollup-linux-x64-musl': 4.24.3
+ '@rollup/rollup-win32-arm64-msvc': 4.24.3
+ '@rollup/rollup-win32-ia32-msvc': 4.24.3
+ '@rollup/rollup-win32-x64-msvc': 4.24.3
+ fsevents: 2.3.3
+
+ rollup@4.24.4:
+ dependencies:
+ '@types/estree': 1.0.6
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.24.4
+ '@rollup/rollup-android-arm64': 4.24.4
+ '@rollup/rollup-darwin-arm64': 4.24.4
+ '@rollup/rollup-darwin-x64': 4.24.4
+ '@rollup/rollup-freebsd-arm64': 4.24.4
+ '@rollup/rollup-freebsd-x64': 4.24.4
+ '@rollup/rollup-linux-arm-gnueabihf': 4.24.4
+ '@rollup/rollup-linux-arm-musleabihf': 4.24.4
+ '@rollup/rollup-linux-arm64-gnu': 4.24.4
+ '@rollup/rollup-linux-arm64-musl': 4.24.4
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.24.4
+ '@rollup/rollup-linux-riscv64-gnu': 4.24.4
+ '@rollup/rollup-linux-s390x-gnu': 4.24.4
+ '@rollup/rollup-linux-x64-gnu': 4.24.4
+ '@rollup/rollup-linux-x64-musl': 4.24.4
+ '@rollup/rollup-win32-arm64-msvc': 4.24.4
+ '@rollup/rollup-win32-ia32-msvc': 4.24.4
+ '@rollup/rollup-win32-x64-msvc': 4.24.4
+ fsevents: 2.3.3
+ optional: true
+
rrweb-cssom@0.6.0: {}
rtl-detect@1.1.2: {}
@@ -28710,26 +30636,35 @@ snapshots:
safer-buffer@2.1.2: {}
- sass-loader@12.6.0(sass@1.77.6)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ sass-loader@12.6.0(sass@1.80.6)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
klona: 2.0.6
neo-async: 2.6.2
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
optionalDependencies:
- sass: 1.77.6
+ sass: 1.80.6
- sass-loader@16.0.0(sass@1.77.6)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ sass-loader@16.0.2(sass@1.80.5)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
neo-async: 2.6.2
optionalDependencies:
- sass: 1.77.6
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ sass: 1.80.5
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
- sass@1.77.6:
+ sass@1.80.5:
dependencies:
- chokidar: 3.6.0
+ '@parcel/watcher': 2.4.1
+ chokidar: 4.0.1
+ immutable: 4.1.0
+ source-map-js: 1.2.0
+
+ sass@1.80.6:
+ dependencies:
+ chokidar: 4.0.1
immutable: 4.1.0
source-map-js: 1.2.0
+ optionalDependencies:
+ '@parcel/watcher': 2.4.1
satori-html@0.3.2:
dependencies:
@@ -28750,6 +30685,8 @@ snapshots:
sax@1.2.4: {}
+ sax@1.4.1: {}
+
saxes@6.0.0:
dependencies:
xmlchars: 2.2.0
@@ -28795,22 +30732,22 @@ snapshots:
'@types/node-forge': 1.3.11
node-forge: 1.3.1
- semantic-release-replace-plugin@1.2.7(semantic-release@22.0.12(typescript@5.4.3)):
+ semantic-release-replace-plugin@1.2.7(semantic-release@22.0.12(typescript@5.5.4)):
dependencies:
jest-diff: 29.7.0
lodash-es: 4.17.21
replace-in-file: 7.1.0
- semantic-release: 22.0.12(typescript@5.4.3)
+ semantic-release: 22.0.12(typescript@5.5.4)
- semantic-release@22.0.12(typescript@5.4.3):
+ semantic-release@22.0.12(typescript@5.5.4):
dependencies:
- '@semantic-release/commit-analyzer': 11.1.0(semantic-release@22.0.12(typescript@5.4.3))
+ '@semantic-release/commit-analyzer': 11.1.0(semantic-release@22.0.12(typescript@5.5.4))
'@semantic-release/error': 4.0.0
- '@semantic-release/github': 9.2.6(semantic-release@22.0.12(typescript@5.4.3))
- '@semantic-release/npm': 11.0.2(semantic-release@22.0.12(typescript@5.4.3))
- '@semantic-release/release-notes-generator': 12.1.0(semantic-release@22.0.12(typescript@5.4.3))
+ '@semantic-release/github': 9.2.6(semantic-release@22.0.12(typescript@5.5.4))
+ '@semantic-release/npm': 11.0.2(semantic-release@22.0.12(typescript@5.5.4))
+ '@semantic-release/release-notes-generator': 12.1.0(semantic-release@22.0.12(typescript@5.5.4))
aggregate-error: 5.0.0
- cosmiconfig: 8.3.6(typescript@5.4.3)
+ cosmiconfig: 8.3.6(typescript@5.5.4)
debug: 4.3.4(supports-color@8.1.1)
env-ci: 10.0.0
execa: 8.0.1
@@ -29036,14 +30973,14 @@ snapshots:
figures: 2.0.0
pkg-conf: 2.1.0
- sigstore@2.2.1:
+ sigstore@3.0.0:
dependencies:
- '@sigstore/bundle': 2.1.1
- '@sigstore/core': 1.0.0
- '@sigstore/protobuf-specs': 0.2.1
- '@sigstore/sign': 2.2.2
- '@sigstore/tuf': 2.3.0
- '@sigstore/verify': 1.0.0
+ '@sigstore/bundle': 3.0.0
+ '@sigstore/core': 2.0.0
+ '@sigstore/protobuf-specs': 0.3.2
+ '@sigstore/sign': 3.0.0
+ '@sigstore/tuf': 3.0.0
+ '@sigstore/verify': 2.0.0
transitivePeerDependencies:
- supports-color
@@ -29111,7 +31048,7 @@ snapshots:
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.0
sockjs@0.3.24:
dependencies:
@@ -29119,23 +31056,23 @@ snapshots:
uuid: 8.3.2
websocket-driver: 0.7.4
- socks-proxy-agent@8.0.2:
+ socks-proxy-agent@8.0.4:
dependencies:
- agent-base: 7.1.0
- debug: 4.3.4(supports-color@8.1.1)
- socks: 2.7.1
+ agent-base: 7.1.1
+ debug: 4.3.7
+ socks: 2.8.3
transitivePeerDependencies:
- supports-color
- socks@2.7.1:
+ socks@2.8.3:
dependencies:
- ip: 2.0.0
+ ip-address: 9.0.5
smart-buffer: 4.2.0
- sonic-forest@1.0.3(tslib@2.7.0):
+ sonic-forest@1.0.3(tslib@2.8.0):
dependencies:
- tree-dump: 1.0.1(tslib@2.7.0)
- tslib: 2.7.0
+ tree-dump: 1.0.1(tslib@2.8.0)
+ tslib: 2.8.0
sort-css-media-queries@2.2.0: {}
@@ -29151,11 +31088,13 @@ snapshots:
source-map-js@1.2.0: {}
- source-map-loader@5.0.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ source-map-js@1.2.1: {}
+
+ source-map-loader@5.0.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.0
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
source-map-support@0.5.13:
dependencies:
@@ -29235,6 +31174,8 @@ snapshots:
sprintf-js@1.0.3: {}
+ sprintf-js@1.1.3: {}
+
srcset@4.0.0: {}
sshpk@1.17.0:
@@ -29253,6 +31194,10 @@ snapshots:
dependencies:
minipass: 3.3.4
+ ssri@12.0.0:
+ dependencies:
+ minipass: 7.1.2
+
stack-utils@2.0.5:
dependencies:
escape-string-regexp: 2.0.0
@@ -29294,7 +31239,7 @@ snapshots:
streamroller@3.1.5:
dependencies:
date-format: 4.0.14
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7
fs-extra: 8.1.0
transitivePeerDependencies:
- supports-color
@@ -29392,20 +31337,14 @@ snapshots:
strip-outer@2.0.0: {}
- strong-log-transformer@2.1.0:
- dependencies:
- duplexer: 0.1.2
- minimist: 1.2.8
- through: 2.3.8
-
strtok3@7.0.0:
dependencies:
'@tokenizer/token': 0.3.0
peek-readable: 5.0.0
- style-loader@3.3.1(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ style-loader@3.3.1(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
style-to-object@0.4.2:
dependencies:
@@ -29429,19 +31368,19 @@ snapshots:
stylis@4.3.0: {}
- stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ stylus-loader@7.1.3(stylus@0.64.0)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
fast-glob: 3.3.2
normalize-path: 3.0.0
- stylus: 0.59.0
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ stylus: 0.64.0
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
- stylus@0.59.0:
+ stylus@0.64.0:
dependencies:
- '@adobe/css-tools': 4.3.1
- debug: 4.3.4(supports-color@8.1.1)
- glob: 7.2.3
- sax: 1.2.4
+ '@adobe/css-tools': 4.3.3
+ debug: 4.3.7
+ glob: 10.4.5
+ sax: 1.4.1
source-map: 0.7.4
transitivePeerDependencies:
- supports-color
@@ -29490,7 +31429,7 @@ snapshots:
css-select: 5.1.0
css-tree: 2.3.1
csso: 5.0.5
- picocolors: 1.0.1
+ picocolors: 1.1.1
svgo@3.3.2:
dependencies:
@@ -29500,7 +31439,7 @@ snapshots:
css-tree: 2.3.1
css-what: 6.1.0
csso: 5.0.5
- picocolors: 1.0.1
+ picocolors: 1.1.1
symbol-observable@4.0.0: {}
@@ -29508,7 +31447,7 @@ snapshots:
system-architecture@0.1.0: {}
- tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)):
+ tailwindcss@3.4.13(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -29527,7 +31466,7 @@ snapshots:
postcss: 8.4.41
postcss-import: 15.1.0(postcss@8.4.41)
postcss-js: 4.0.1(postcss@8.4.41)
- postcss-load-config: 4.0.2(postcss@8.4.41)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ postcss-load-config: 4.0.2(postcss@8.4.41)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
postcss-nested: 6.2.0(postcss@8.4.41)
postcss-selector-parser: 6.1.1
resolve: 1.22.8
@@ -29562,6 +31501,15 @@ snapshots:
mkdirp: 1.0.4
yallist: 4.0.0
+ tar@7.4.3:
+ dependencies:
+ '@isaacs/fs-minipass': 4.0.1
+ chownr: 3.0.0
+ minipass: 7.1.2
+ minizlib: 3.0.1
+ mkdirp: 3.0.1
+ yallist: 5.0.0
+
temp-dir@2.0.0: {}
temp-dir@3.0.0: {}
@@ -29590,17 +31538,29 @@ snapshots:
'@swc/core': 1.5.7(@swc/helpers@0.5.11)
esbuild: 0.19.5
- terser-webpack-plugin@5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.23.0)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ terser-webpack-plugin@5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.1
terser: 5.31.6
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ optionalDependencies:
+ '@swc/core': 1.5.7(@swc/helpers@0.5.11)
+ esbuild: 0.19.5
+
+ terser-webpack-plugin@5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.24.0)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ jest-worker: 27.5.1
+ schema-utils: 3.3.0
+ serialize-javascript: 6.0.1
+ terser: 5.31.6
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
optionalDependencies:
'@swc/core': 1.5.7(@swc/helpers@0.5.11)
- esbuild: 0.23.0
+ esbuild: 0.24.0
terser@5.31.6:
dependencies:
@@ -29609,6 +31569,13 @@ snapshots:
commander: 2.20.3
source-map-support: 0.5.21
+ terser@5.36.0:
+ dependencies:
+ '@jridgewell/source-map': 0.3.5
+ acorn: 8.12.1
+ commander: 2.20.3
+ source-map-support: 0.5.21
+
test-exclude@6.0.0:
dependencies:
'@istanbuljs/schema': 0.1.3
@@ -29629,9 +31596,9 @@ snapshots:
dependencies:
any-promise: 1.3.0
- thingies@1.21.0(tslib@2.7.0):
+ thingies@1.21.0(tslib@2.8.0):
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
throttleit@1.0.0: {}
@@ -29711,9 +31678,9 @@ snapshots:
traverse@0.6.8: {}
- tree-dump@1.0.1(tslib@2.7.0):
+ tree-dump@1.0.1(tslib@2.8.0):
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
tree-kill@1.2.2: {}
@@ -29729,25 +31696,25 @@ snapshots:
trough@2.1.0: {}
- ts-api-utils@1.3.0(typescript@5.4.3):
+ ts-api-utils@1.3.0(typescript@5.5.4):
dependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
ts-dedent@2.2.0: {}
ts-interface-checker@0.1.13: {}
- ts-jest@29.1.0(@babel/core@7.21.8)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.21.8))(esbuild@0.19.5)(jest@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3)))(typescript@5.4.3):
+ ts-jest@29.1.0(@babel/core@7.21.8)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.21.8))(esbuild@0.19.5)(jest@29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.4.3))
+ jest: 29.7.0(@types/node@18.19.15)(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4))
jest-util: 29.5.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.6.3
- typescript: 5.4.3
+ typescript: 5.5.4
yargs-parser: 21.1.1
optionalDependencies:
'@babel/core': 7.21.8
@@ -29755,14 +31722,14 @@ snapshots:
babel-jest: 29.7.0(@babel/core@7.21.8)
esbuild: 0.19.5
- ts-loader@9.4.1(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ ts-loader@9.4.1(typescript@5.5.4)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
chalk: 4.1.2
enhanced-resolve: 5.17.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
semver: 7.6.3
- typescript: 5.4.3
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ typescript: 5.5.4
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
ts-morph@21.0.1:
dependencies:
@@ -29809,13 +31776,33 @@ snapshots:
optionalDependencies:
'@swc/core': 1.5.7(@swc/helpers@0.5.11)
- tsconfck@2.1.1(typescript@5.4.3):
+ ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.15)(typescript@5.5.4):
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.9
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.3
+ '@types/node': 18.19.15
+ acorn: 8.8.2
+ acorn-walk: 8.2.0
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 5.5.4
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ optionalDependencies:
+ '@swc/core': 1.5.7(@swc/helpers@0.5.11)
+
+ tsconfck@2.1.1(typescript@5.5.4):
optionalDependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
- tsconfck@3.0.3(typescript@5.4.3):
+ tsconfck@3.0.3(typescript@5.5.4):
optionalDependencies:
- typescript: 5.4.3
+ typescript: 5.5.4
tsconfig-paths-webpack-plugin@4.0.0:
dependencies:
@@ -29831,17 +31818,17 @@ snapshots:
tslib@1.14.1: {}
- tslib@2.6.3: {}
-
tslib@2.7.0: {}
+ tslib@2.8.0: {}
+
tsscmp@1.0.6: {}
- tuf-js@2.2.0:
+ tuf-js@3.0.1:
dependencies:
- '@tufjs/models': 2.0.0
- debug: 4.3.4(supports-color@8.1.1)
- make-fetch-happen: 13.0.0
+ '@tufjs/models': 3.0.1
+ debug: 4.3.7
+ make-fetch-happen: 14.0.3
transitivePeerDependencies:
- supports-color
@@ -29914,8 +31901,6 @@ snapshots:
undici-types@5.26.5: {}
- undici-types@6.19.8: {}
-
undici@5.28.4:
dependencies:
'@fastify/busboy': 2.0.0
@@ -30005,10 +31990,18 @@ snapshots:
dependencies:
unique-slug: 4.0.0
+ unique-filename@4.0.0:
+ dependencies:
+ unique-slug: 5.0.0
+
unique-slug@4.0.0:
dependencies:
imurmurhash: 0.1.4
+ unique-slug@5.0.0:
+ dependencies:
+ imurmurhash: 0.1.4
+
unique-string@3.0.0:
dependencies:
crypto-random-string: 4.0.0
@@ -30145,14 +32138,14 @@ snapshots:
update-browserslist-db@1.0.10(browserslist@4.21.5):
dependencies:
browserslist: 4.21.5
- escalade: 3.1.1
- picocolors: 1.0.1
+ escalade: 3.2.0
+ picocolors: 1.1.1
update-browserslist-db@1.0.13(browserslist@4.23.0):
dependencies:
browserslist: 4.23.0
- escalade: 3.1.1
- picocolors: 1.0.1
+ escalade: 3.2.0
+ picocolors: 1.1.1
update-browserslist-db@1.1.0(browserslist@4.23.3):
dependencies:
@@ -30160,6 +32153,12 @@ snapshots:
escalade: 3.2.0
picocolors: 1.0.1
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
+ dependencies:
+ browserslist: 4.24.2
+ escalade: 3.2.0
+ picocolors: 1.1.1
+
update-notifier@6.0.2:
dependencies:
boxen: 7.1.1
@@ -30241,6 +32240,8 @@ snapshots:
dependencies:
builtins: 5.0.1
+ validate-npm-package-name@6.0.0: {}
+
value-equal@1.0.1: {}
vary@1.1.2: {}
@@ -30284,13 +32285,13 @@ snapshots:
'@types/unist': 3.0.0
vfile-message: 4.0.2
- vite-node@1.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6):
+ vite-node@1.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0):
dependencies:
cac: 6.7.14
debug: 4.3.4(supports-color@8.1.1)
pathe: 1.1.2
picocolors: 1.0.1
- vite: 5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ vite: 5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -30302,26 +32303,26 @@ snapshots:
- supports-color
- terser
- vite-plugin-eslint@1.8.1(eslint@8.57.0)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)):
+ vite-plugin-eslint@1.8.1(eslint@8.57.0)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)):
dependencies:
'@rollup/pluginutils': 4.2.1
'@types/eslint': 8.37.0
eslint: 8.57.0
rollup: 2.79.1
- vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
- vite-tsconfig-paths@4.2.0(typescript@5.4.3)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)):
+ vite-tsconfig-paths@4.2.0(typescript@5.5.4)(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)):
dependencies:
debug: 4.3.4(supports-color@8.1.1)
globrex: 0.1.2
- tsconfck: 2.1.1(typescript@5.4.3)
+ tsconfck: 2.1.1(typescript@5.5.4)
optionalDependencies:
- vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
transitivePeerDependencies:
- supports-color
- typescript
- vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6):
+ vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0):
dependencies:
esbuild: 0.21.3
postcss: 8.4.39
@@ -30330,11 +32331,11 @@ snapshots:
'@types/node': 18.19.15
fsevents: 2.3.3
less: 4.1.3
- sass: 1.77.6
- stylus: 0.59.0
- terser: 5.31.6
+ sass: 1.80.6
+ stylus: 0.64.0
+ terser: 5.36.0
- vite@5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6):
+ vite@5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0):
dependencies:
esbuild: 0.21.3
postcss: 8.4.41
@@ -30343,32 +32344,45 @@ snapshots:
'@types/node': 18.19.15
fsevents: 2.3.3
less: 4.1.3
- sass: 1.77.6
- stylus: 0.59.0
- terser: 5.31.6
+ sass: 1.80.6
+ stylus: 0.64.0
+ terser: 5.36.0
- vite@5.4.0(@types/node@18.19.15)(less@4.2.0)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6):
+ vite@5.4.10(@types/node@18.19.15)(less@4.1.3)(sass@1.80.5)(stylus@0.64.0)(terser@5.36.0):
dependencies:
esbuild: 0.21.3
- postcss: 8.4.41
- rollup: 4.20.0
+ postcss: 8.4.47
+ rollup: 4.24.3
+ optionalDependencies:
+ '@types/node': 18.19.15
+ fsevents: 2.3.3
+ less: 4.1.3
+ sass: 1.80.5
+ stylus: 0.64.0
+ terser: 5.36.0
+
+ vite@5.4.10(@types/node@18.19.15)(less@4.2.0)(sass@1.80.5)(stylus@0.64.0)(terser@5.36.0):
+ dependencies:
+ esbuild: 0.21.3
+ postcss: 8.4.47
+ rollup: 4.24.3
optionalDependencies:
'@types/node': 18.19.15
fsevents: 2.3.3
less: 4.2.0
- sass: 1.77.6
- stylus: 0.59.0
- terser: 5.31.6
+ sass: 1.80.5
+ stylus: 0.64.0
+ terser: 5.36.0
- vitefu@0.2.5(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)):
+ vitefu@0.2.5(vite@5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)):
optionalDependencies:
- vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
- vitefu@0.2.5(vite@5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)):
+ vitefu@0.2.5(vite@5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)):
optionalDependencies:
- vite: 5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ vite: 5.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
- vitest@1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6):
+ vitest@1.4.0(@types/node@18.19.15)(happy-dom@12.10.3)(jsdom@22.1.0)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0):
dependencies:
'@vitest/expect': 1.4.0
'@vitest/runner': 1.4.0
@@ -30387,8 +32401,8 @@ snapshots:
strip-literal: 2.0.0
tinybench: 2.5.1
tinypool: 0.8.2
- vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
- vite-node: 1.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.77.6)(stylus@0.59.0)(terser@5.31.6)
+ vite: 5.3.4(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
+ vite-node: 1.4.0(@types/node@18.19.15)(less@4.1.3)(sass@1.80.6)(stylus@0.64.0)(terser@5.36.0)
why-is-node-running: 2.2.2
optionalDependencies:
'@types/node': 18.19.15
@@ -30427,6 +32441,11 @@ snapshots:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
+ watchpack@2.4.2:
+ dependencies:
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+
wbuf@1.7.3:
dependencies:
minimalistic-assert: 1.0.1
@@ -30435,7 +32454,8 @@ snapshots:
dependencies:
defaults: 1.0.4
- weak-lru-cache@1.2.2: {}
+ weak-lru-cache@1.2.2:
+ optional: true
web-namespaces@2.0.1: {}
@@ -30487,7 +32507,7 @@ snapshots:
schema-utils: 4.2.0
webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
- webpack-dev-middleware@7.4.2(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ webpack-dev-middleware@7.4.2(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
colorette: 2.0.20
memfs: 4.9.2
@@ -30496,7 +32516,7 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.2.0
optionalDependencies:
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
webpack-dev-server@4.15.1(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
@@ -30538,7 +32558,7 @@ snapshots:
- supports-color
- utf-8-validate
- webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ webpack-dev-server@5.1.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -30553,7 +32573,6 @@ snapshots:
colorette: 2.0.20
compression: 1.7.4
connect-history-api-fallback: 2.0.0
- default-gateway: 6.0.3
express: 4.21.0
graceful-fs: 4.2.11
html-entities: 2.5.2
@@ -30562,16 +32581,15 @@ snapshots:
launch-editor: 2.6.1
open: 10.1.0
p-retry: 6.2.0
- rimraf: 5.0.7
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(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
- ws: 8.17.1
+ webpack-dev-middleware: 7.4.2(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ ws: 8.18.0
optionalDependencies:
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
transitivePeerDependencies:
- bufferutil
- debug
@@ -30594,12 +32612,12 @@ snapshots:
webpack-sources@3.2.3: {}
- webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
+ webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)))(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)):
dependencies:
typed-assert: 1.0.9
- webpack: 5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
+ webpack: 5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)
optionalDependencies:
- html-webpack-plugin: 5.6.0(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ html-webpack-plugin: 5.6.0(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
webpack-virtual-modules@0.6.1: {}
@@ -30635,14 +32653,14 @@ snapshots:
- esbuild
- uglify-js
- webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.23.0):
+ webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.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.11.3
- acorn-import-attributes: 1.9.5(acorn@8.11.3)
+ acorn: 8.12.1
+ acorn-import-attributes: 1.9.5(acorn@8.12.1)
browserslist: 4.23.3
chrome-trace-event: 1.0.3
enhanced-resolve: 5.17.1
@@ -30657,7 +32675,37 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.23.0)(webpack@5.94.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
+ watchpack: 2.4.1
+ webpack-sources: 3.2.3
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
+
+ webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.24.0):
+ 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
+ chrome-trace-event: 1.0.3
+ enhanced-resolve: 5.17.1
+ es-module-lexer: 1.5.3
+ eslint-scope: 5.1.1
+ events: 3.3.0
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ json-parse-even-better-errors: 2.3.1
+ loader-runner: 4.3.0
+ mime-types: 2.1.35
+ neo-async: 2.6.2
+ schema-utils: 3.3.0
+ tapable: 2.2.1
+ terser-webpack-plugin: 5.3.10(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.24.0)(webpack@5.95.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.5))
watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -30730,6 +32778,10 @@ snapshots:
dependencies:
isexe: 3.1.1
+ which@5.0.0:
+ dependencies:
+ isexe: 3.1.1
+
why-is-node-running@2.2.2:
dependencies:
siginfo: 2.0.0
@@ -30797,6 +32849,8 @@ snapshots:
ws@8.17.1: {}
+ ws@8.18.0: {}
+
xdg-basedir@5.1.0: {}
xhr2@0.2.1: {}
@@ -30833,6 +32887,8 @@ snapshots:
yallist@4.0.0: {}
+ yallist@5.0.0: {}
+
yaml@1.10.2: {}
yaml@2.2.2: {}
@@ -30911,6 +32967,6 @@ snapshots:
zod@3.23.8: {}
- zone.js@0.14.10: {}
+ zone.js@0.15.0: {}
zwitch@2.0.4: {}
diff --git a/tsconfig.base.json b/tsconfig.base.json
index 08f686944..5d4577615 100644
--- a/tsconfig.base.json
+++ b/tsconfig.base.json
@@ -17,7 +17,10 @@
"baseUrl": ".",
"paths": {
"@analogjs/astro-angular": ["packages/astro-angular/src/index.ts"],
- "@analogjs/content": ["packages/content/src/index.ts"],
+ "@analogjs/content": [
+ "./node_modules/@analogjs/content",
+ "packages/content/src/index.ts"
+ ],
"@analogjs/content-plugin": ["packages/content-plugin/src/index.ts"],
"@analogjs/content/prism-highlighter": [
"packages/content/prism-highlighter/src/index.ts"
@@ -30,9 +33,18 @@
"./node_modules/@analogjs/platform",
"packages/platform/src/index.ts"
],
- "@analogjs/router": ["packages/router/src/index.ts"],
- "@analogjs/router/server": ["packages/router/server/src/index.ts"],
- "@analogjs/router/tokens": ["packages/router/tokens/src/index.ts"],
+ "@analogjs/router": [
+ "./node_modules/@analogjs/router",
+ "packages/router/src/index.ts"
+ ],
+ "@analogjs/router/server": [
+ "./node_modules/@analogjs/router/server",
+ "packages/router/server/src/index.ts"
+ ],
+ "@analogjs/router/tokens": [
+ "./node_modules/@analogjs/router/tokens",
+ "packages/router/tokens/src/index.ts"
+ ],
"@analogjs/top-bar": ["libs/top-bar/src/index.ts"],
"@analogjs/trpc": ["packages/trpc/src/index.ts"],
"@analogjs/vite-plugin-angular": [