[2],
- string | undefined
- >;
+ resultMap = JSON.parse(result.map) as SourceMap;
resultMap.sources = resultMap.sources.map((source: string) =>
path.join(path.dirname(this.resourcePath), source),
);
diff --git a/packages/schematics/angular/BUILD.bazel b/packages/schematics/angular/BUILD.bazel
index 0e5ba72fed90..57887c2cf63d 100644
--- a/packages/schematics/angular/BUILD.bazel
+++ b/packages/schematics/angular/BUILD.bazel
@@ -138,7 +138,7 @@ ts_project(
)
jasmine_test(
- name = "angular_test",
+ name = "test",
data = [":angular_test_lib"],
)
diff --git a/packages/schematics/angular/application/files/common-files/src/app/app.html.template b/packages/schematics/angular/application/files/common-files/src/app/app.html.template
index 235056e117fa..648d1b97051e 100644
--- a/packages/schematics/angular/application/files/common-files/src/app/app.html.template
+++ b/packages/schematics/angular/application/files/common-files/src/app/app.html.template
@@ -225,7 +225,7 @@
- Hello, {{ title }}
+ Hello, {{ title() }}
Congratulations! Your app is running. 🎉
diff --git a/packages/schematics/angular/application/files/module-files/src/app/app.spec.ts.template b/packages/schematics/angular/application/files/module-files/src/app/app.spec.ts.template
index e3f5c5fff092..43a982f1f3b1 100644
--- a/packages/schematics/angular/application/files/module-files/src/app/app.spec.ts.template
+++ b/packages/schematics/angular/application/files/module-files/src/app/app.spec.ts.template
@@ -22,12 +22,6 @@ describe('App', () => {
expect(app).toBeTruthy();
});
- it(`should have as title '<%= name %>'`, () => {
- const fixture = TestBed.createComponent(App);
- const app = fixture.componentInstance;
- expect(app.title).toEqual('<%= name %>');
- });
-
it('should render title', () => {
const fixture = TestBed.createComponent(App);
fixture.detectChanges();
diff --git a/packages/schematics/angular/application/files/module-files/src/app/app.ts.template b/packages/schematics/angular/application/files/module-files/src/app/app.ts.template
index ca94fc7bb99a..2bb65ba29ba7 100644
--- a/packages/schematics/angular/application/files/module-files/src/app/app.ts.template
+++ b/packages/schematics/angular/application/files/module-files/src/app/app.ts.template
@@ -1,9 +1,9 @@
-import { Component } from '@angular/core';
+import { Component, signal } from '@angular/core';
@Component({
selector: '<%= selector %>',<% if(inlineTemplate) { %>
template: `
- Welcome to {{title}}!
+ Welcome to {{ title() }}!
<% if (routing) {
%><%
@@ -15,5 +15,5 @@ import { Component } from '@angular/core';
styleUrl: './app.<%= style %>'<% } %>
})
export class App {
- title = '<%= name %>';
+ protected readonly title = signal('<%= name %>');
}
diff --git a/packages/schematics/angular/application/files/standalone-files/src/app/app.spec.ts.template b/packages/schematics/angular/application/files/standalone-files/src/app/app.spec.ts.template
index eb529a1df3c7..808723635d96 100644
--- a/packages/schematics/angular/application/files/standalone-files/src/app/app.spec.ts.template
+++ b/packages/schematics/angular/application/files/standalone-files/src/app/app.spec.ts.template
@@ -16,12 +16,6 @@ describe('App', () => {
expect(app).toBeTruthy();
});
- it(`should have the '<%= name %>' title`, () => {
- const fixture = TestBed.createComponent(App);
- const app = fixture.componentInstance;
- expect(app.title).toEqual('<%= name %>');
- });
-
it('should render title', () => {
const fixture = TestBed.createComponent(App);
fixture.detectChanges();
diff --git a/packages/schematics/angular/application/files/standalone-files/src/app/app.ts.template b/packages/schematics/angular/application/files/standalone-files/src/app/app.ts.template
index 74ea464e5d04..71e7e0bffc24 100644
--- a/packages/schematics/angular/application/files/standalone-files/src/app/app.ts.template
+++ b/packages/schematics/angular/application/files/standalone-files/src/app/app.ts.template
@@ -1,11 +1,11 @@
-import { Component } from '@angular/core';<% if(routing) { %>
+import { Component, signal } from '@angular/core';<% if(routing) { %>
import { RouterOutlet } from '@angular/router';<% } %>
@Component({
selector: '<%= selector %>',
imports: [<% if(routing) { %>RouterOutlet<% } %>],<% if(inlineTemplate) { %>
template: `
- Welcome to {{title}}!
+ Welcome to {{ title() }}!
<% if (routing) {
%><%
@@ -16,5 +16,5 @@ import { RouterOutlet } from '@angular/router';<% } %>
styleUrl: './app.<%= style %>'<% } %>
})
export class App {
- title = '<%= name %>';
+ protected readonly title = signal('<%= name %>');
}
diff --git a/packages/schematics/angular/application/index.ts b/packages/schematics/angular/application/index.ts
index 5e9f379aed5e..14c0688cf334 100644
--- a/packages/schematics/angular/application/index.ts
+++ b/packages/schematics/angular/application/index.ts
@@ -149,6 +149,14 @@ function addDependenciesToPackageJson(options: ApplicationOptions) {
},
].forEach((dependency) => addPackageJsonDependency(host, dependency));
+ if (!options.zoneless) {
+ addPackageJsonDependency(host, {
+ type: NodeDependencyType.Default,
+ name: 'zone.js',
+ version: latestVersions['zone.js'],
+ });
+ }
+
if (!options.skipInstall) {
context.addTask(new NodePackageInstallTask());
}
@@ -256,7 +264,6 @@ function addAppToWorkspaceFile(
builder: Builders.BuildApplication,
defaultConfiguration: 'production',
options: {
- index: `${sourceRoot}/index.html`,
browser: `${sourceRoot}/main.ts`,
polyfills: options.zoneless ? undefined : ['zone.js'],
tsConfig: `${projectRoot}tsconfig.app.json`,
diff --git a/packages/schematics/angular/application/index_spec.ts b/packages/schematics/angular/application/index_spec.ts
index 0607a20b766e..60700c9f45ff 100644
--- a/packages/schematics/angular/application/index_spec.ts
+++ b/packages/schematics/angular/application/index_spec.ts
@@ -268,6 +268,48 @@ describe('Application Schematic', () => {
expect(pkg.devDependencies['typescript']).toEqual(latestVersions['typescript']);
});
+ it('should include zone.js if "zoneless" option is false', async () => {
+ const tree = await schematicRunner.runSchematic(
+ 'application',
+ {
+ ...defaultOptions,
+ zoneless: false,
+ },
+ workspaceTree,
+ );
+
+ const pkg = JSON.parse(tree.readContent('/package.json'));
+ expect(pkg.dependencies['zone.js']).toEqual(latestVersions['zone.js']);
+ });
+
+ it('should include zone.js if "zoneless" option is not present', async () => {
+ const tree = await schematicRunner.runSchematic(
+ 'application',
+ {
+ ...defaultOptions,
+ zoneless: undefined,
+ },
+ workspaceTree,
+ );
+
+ const pkg = JSON.parse(tree.readContent('/package.json'));
+ expect(pkg.dependencies['zone.js']).toEqual(latestVersions['zone.js']);
+ });
+
+ it('should not include zone.js if "zoneless" option is true', async () => {
+ const tree = await schematicRunner.runSchematic(
+ 'application',
+ {
+ ...defaultOptions,
+ zoneless: true,
+ },
+ workspaceTree,
+ );
+
+ const pkg = JSON.parse(tree.readContent('/package.json'));
+ expect(pkg.dependencies['zone.js']).toBeUndefined();
+ });
+
it(`should not override existing users dependencies`, async () => {
const oldPackageJson = workspaceTree.readContent('package.json');
workspaceTree.overwrite(
@@ -330,7 +372,7 @@ describe('Application Schematic', () => {
const prj = config.projects.foo;
expect(prj.root).toEqual('');
const buildOpt = prj.architect.build.options;
- expect(buildOpt.index).toEqual('src/index.html');
+ expect(buildOpt.index).toBeUndefined();
expect(buildOpt.browser).toEqual('src/main.ts');
expect(buildOpt.assets).toEqual([{ 'glob': '**/*', 'input': 'public' }]);
expect(buildOpt.polyfills).toEqual(['zone.js']);
@@ -421,7 +463,6 @@ describe('Application Schematic', () => {
const project = config.projects.foo;
expect(project.root).toEqual('foo');
const buildOpt = project.architect.build.options;
- expect(buildOpt.index).toEqual('foo/src/index.html');
expect(buildOpt.browser).toEqual('foo/src/main.ts');
expect(buildOpt.polyfills).toEqual(['zone.js']);
expect(buildOpt.tsConfig).toEqual('foo/tsconfig.app.json');
diff --git a/packages/schematics/angular/component/index.ts b/packages/schematics/angular/component/index.ts
index acbb82fadca6..359aa28fa94e 100644
--- a/packages/schematics/angular/component/index.ts
+++ b/packages/schematics/angular/component/index.ts
@@ -53,16 +53,7 @@ export default function (options: ComponentOptions): Rule {
options.path = buildDefaultPath(project);
}
- try {
- options.module = findModuleFromOptions(host, options);
- } catch {
- options.module = findModuleFromOptions(host, {
- ...options,
- moduleExt: '-module.ts',
- routingModuleExt: '-routing-module.ts',
- });
- }
-
+ options.module = findModuleFromOptions(host, options);
// Schematic templates require a defined type value
options.type ??= '';
diff --git a/packages/schematics/angular/directive/index.ts b/packages/schematics/angular/directive/index.ts
index e05c64ca9e5b..77d68d2e3073 100644
--- a/packages/schematics/angular/directive/index.ts
+++ b/packages/schematics/angular/directive/index.ts
@@ -38,15 +38,7 @@ export default function (options: DirectiveOptions): Rule {
options.path = buildDefaultPath(project);
}
- try {
- options.module = findModuleFromOptions(host, options);
- } catch {
- options.module = findModuleFromOptions(host, {
- ...options,
- moduleExt: '-module.ts',
- routingModuleExt: '-routing-module.ts',
- });
- }
+ options.module = findModuleFromOptions(host, options);
const parsedPath = parseName(options.path, options.name);
options.name = parsedPath.name;
options.path = parsedPath.path;
diff --git a/packages/schematics/angular/environments/index_spec.ts b/packages/schematics/angular/environments/index_spec.ts
index 3db69c5d866c..d53026a28a4d 100644
--- a/packages/schematics/angular/environments/index_spec.ts
+++ b/packages/schematics/angular/environments/index_spec.ts
@@ -50,7 +50,7 @@ describe('Environments Schematic', () => {
build.builder = Builders.Browser;
build.options = {
...build.options,
- main: build.options.browser,
+ main: 'projects/foo/src/main.ts',
browser: undefined,
};
diff --git a/packages/schematics/angular/library/index.ts b/packages/schematics/angular/library/index.ts
index b409d986dd57..d96cc8b505a8 100644
--- a/packages/schematics/angular/library/index.ts
+++ b/packages/schematics/angular/library/index.ts
@@ -22,7 +22,11 @@ import {
} from '@angular-devkit/schematics';
import { NodePackageInstallTask } from '@angular-devkit/schematics/tasks';
import { join } from 'node:path/posix';
-import { NodeDependencyType, addPackageJsonDependency } from '../utility/dependencies';
+import {
+ NodeDependencyType,
+ addPackageJsonDependency,
+ getPackageJsonDependency,
+} from '../utility/dependencies';
import { JSONFile } from '../utility/json-file';
import { latestVersions } from '../utility/latest-versions';
import { relativePathToWorkspaceRoot } from '../utility/paths';
@@ -96,6 +100,7 @@ function addLibToWorkspaceFile(
options: LibraryOptions,
projectRoot: string,
projectName: string,
+ hasZoneDependency: boolean,
): Rule {
return updateWorkspace((workspace) => {
workspace.projects.add({
@@ -121,7 +126,7 @@ function addLibToWorkspaceFile(
builder: Builders.BuildKarma,
options: {
tsConfig: `${projectRoot}/tsconfig.spec.json`,
- polyfills: ['zone.js', 'zone.js/testing'],
+ polyfills: hasZoneDependency ? ['zone.js', 'zone.js/testing'] : undefined,
},
},
},
@@ -172,9 +177,11 @@ export default function (options: LibraryOptions): Rule {
move(libDir),
]);
+ const hasZoneDependency = getPackageJsonDependency(host, 'zone.js') !== null;
+
return chain([
mergeWith(templateSource),
- addLibToWorkspaceFile(options, libDir, packageName),
+ addLibToWorkspaceFile(options, libDir, packageName, hasZoneDependency),
options.skipPackageJson ? noop() : addDependenciesToPackageJson(),
options.skipTsConfig ? noop() : updateTsConfig(packageName, './' + distRoot),
options.skipTsConfig
diff --git a/packages/schematics/angular/library/index_spec.ts b/packages/schematics/angular/library/index_spec.ts
index 1d5503d70b38..97e517767f1f 100644
--- a/packages/schematics/angular/library/index_spec.ts
+++ b/packages/schematics/angular/library/index_spec.ts
@@ -195,6 +195,13 @@ describe('Library Schematic', () => {
expect(workspace.projects.foo.prefix).toEqual('pre');
});
+ it(`should not add zone.js to test polyfills when no zone.js dependency`, async () => {
+ const tree = await schematicRunner.runSchematic('library', defaultOptions, workspaceTree);
+
+ const workspace = getJsonFileContent(tree, '/angular.json');
+ expect(workspace.projects.foo.architect.test.options.polyfills).toBeUndefined();
+ });
+
it('should handle a pascalCasedName', async () => {
const options = { ...defaultOptions, name: 'pascalCasedName' };
const tree = await schematicRunner.runSchematic('library', options, workspaceTree);
diff --git a/packages/schematics/angular/migrations/migration-collection.json b/packages/schematics/angular/migrations/migration-collection.json
index 659dd48728cd..1de0910aa50a 100644
--- a/packages/schematics/angular/migrations/migration-collection.json
+++ b/packages/schematics/angular/migrations/migration-collection.json
@@ -8,7 +8,7 @@
"replace-provide-server-routing": {
"version": "20.0.0",
"factory": "./replace-provide-server-routing/migration",
- "description": "Migrate 'provideServerRendering' to use 'withRoutes' and remove 'provideServerRouting' from '@angular/ssr'."
+ "description": "Migrate 'provideServerRendering' to use 'withRoutes', and remove 'provideServerRouting' and 'provideServerRoutesConfig' from '@angular/ssr'."
},
"update-module-resolution": {
"version": "20.0.0",
diff --git a/packages/schematics/angular/migrations/replace-provide-server-routing/migration.ts b/packages/schematics/angular/migrations/replace-provide-server-routing/migration.ts
index 8fc662b6b69a..8b0510aee62b 100644
--- a/packages/schematics/angular/migrations/replace-provide-server-routing/migration.ts
+++ b/packages/schematics/angular/migrations/replace-provide-server-routing/migration.ts
@@ -16,7 +16,11 @@ function* visit(directory: DirEntry): IterableIterator<[fileName: string, conten
const entry = directory.file(path);
if (entry) {
const content = entry.content;
- if (content.includes('provideServerRouting') && content.includes('@angular/ssr')) {
+ if (
+ (content.includes('provideServerRouting') ||
+ content.includes('provideServerRoutesConfig')) &&
+ content.includes('@angular/ssr')
+ ) {
// Only need to rename the import so we can just string replacements.
yield [entry.path, content.toString()];
}
@@ -63,7 +67,8 @@ export default function (): Rule {
if (
ts.isCallExpression(el) &&
ts.isIdentifier(el.expression) &&
- el.expression.text === 'provideServerRouting'
+ (el.expression.text === 'provideServerRouting' ||
+ el.expression.text === 'provideServerRoutesConfig')
) {
const [withRouteVal, ...others] = el.arguments.map((arg) => arg.getText());
@@ -99,7 +104,7 @@ export default function (): Rule {
const elements = namedBindings.elements;
const updatedElements = elements
.map((el) => el.getText())
- .filter((x) => x !== 'provideServerRouting');
+ .filter((x) => x !== 'provideServerRouting' && x !== 'provideServerRoutesConfig');
updatedElements.push('withRoutes');
diff --git a/packages/schematics/angular/migrations/replace-provide-server-routing/migration_spec.ts b/packages/schematics/angular/migrations/replace-provide-server-routing/migration_spec.ts
index a0ab33aa15f1..c570ea81c077 100644
--- a/packages/schematics/angular/migrations/replace-provide-server-routing/migration_spec.ts
+++ b/packages/schematics/angular/migrations/replace-provide-server-routing/migration_spec.ts
@@ -61,6 +61,30 @@ describe(`Migration to replace 'provideServerRouting' with 'provideServerRenderi
expect(content).not.toContain(`provideServerRouting(serverRoutes)`);
});
+ it('should remove "provideServerRoutesConfig" and update "provideServerRendering"', async () => {
+ tree.overwrite(
+ 'src/app/app.config.ts',
+ `
+ import { ApplicationConfig } from '@angular/core';
+ import { provideServerRendering, provideServerRoutesConfig } from '@angular/ssr';
+ import { serverRoutes } from './app.routes';
+
+ const serverConfig: ApplicationConfig = {
+ providers: [
+ provideServerRendering(),
+ provideServerRoutesConfig(serverRoutes)
+ ]
+ };
+ `,
+ );
+
+ const newTree = await schematicRunner.runSchematic(schematicName, {}, tree);
+ const content = newTree.readContent('src/app/app.config.ts');
+
+ expect(content).toContain(`providers: [provideServerRendering(withRoutes(serverRoutes))]`);
+ expect(content).not.toContain(`provideServerRoutesConfig(serverRoutes)`);
+ });
+
it('should correctly handle provideServerRouting with extra arguments', async () => {
tree.overwrite(
'src/app/app.config.ts',
diff --git a/packages/schematics/angular/migrations/use-application-builder/migration.ts b/packages/schematics/angular/migrations/use-application-builder/migration.ts
index 396ba48430d2..6a59c212fa21 100644
--- a/packages/schematics/angular/migrations/use-application-builder/migration.ts
+++ b/packages/schematics/angular/migrations/use-application-builder/migration.ts
@@ -232,6 +232,8 @@ function updateProjects(tree: Tree, context: SchematicContext) {
// Use @angular/build directly if there is no devkit package usage
if (!hasAngularDevkitUsage) {
+ const karmaConfigFiles = new Set();
+
for (const [, target] of allWorkspaceTargets(workspace)) {
switch (target.builder) {
case Builders.Application:
@@ -245,9 +247,15 @@ function updateProjects(tree: Tree, context: SchematicContext) {
break;
case Builders.Karma:
target.builder = '@angular/build:karma';
- // Remove "builderMode" option since the builder will always use "application"
for (const [, karmaOptions] of allTargetOptions(target)) {
+ // Remove "builderMode" option since the builder will always use "application"
delete karmaOptions['builderMode'];
+
+ // Collect custom karma configurations for @angular-devkit/build-angular plugin removal
+ const karmaConfig = karmaOptions['karmaConfig'];
+ if (karmaConfig && typeof karmaConfig === 'string') {
+ karmaConfigFiles.add(karmaConfig);
+ }
}
break;
case Builders.NgPackagr:
@@ -292,6 +300,34 @@ function updateProjects(tree: Tree, context: SchematicContext) {
}),
);
}
+
+ for (const karmaConfigFile of karmaConfigFiles) {
+ if (!tree.exists(karmaConfigFile)) {
+ continue;
+ }
+
+ try {
+ const originalKarmaConfigText = tree.readText(karmaConfigFile);
+ const updatedKarmaConfigText = originalKarmaConfigText
+ .replaceAll(`require('@angular-devkit/build-angular/plugins/karma'),`, '')
+ .replaceAll(`require('@angular-devkit/build-angular/plugins/karma')`, '');
+
+ if (updatedKarmaConfigText.includes('@angular-devkit/build-angular/plugins')) {
+ throw new Error(
+ 'Migration does not support found usage of "@angular-devkit/build-angular".',
+ );
+ } else {
+ tree.overwrite(karmaConfigFile, updatedKarmaConfigText);
+ }
+ } catch (error) {
+ const reason = error instanceof Error ? `Reason: ${error.message}` : '';
+ context.logger.warn(
+ `Unable to update custom karma configuration file ("${karmaConfigFile}"). ` +
+ reason +
+ '\nReferences to the "@angular-devkit/build-angular" package within the file may need to be removed manually.',
+ );
+ }
+ }
}
return chain(rules);
diff --git a/packages/schematics/angular/migrations/use-application-builder/migration_spec.ts b/packages/schematics/angular/migrations/use-application-builder/migration_spec.ts
index 3adef7d419eb..a8d50193958e 100644
--- a/packages/schematics/angular/migrations/use-application-builder/migration_spec.ts
+++ b/packages/schematics/angular/migrations/use-application-builder/migration_spec.ts
@@ -130,6 +130,103 @@ describe(`Migration to use the application builder`, () => {
expect(builderMode).toBeUndefined();
});
+ it(`should update file for 'karmaConfig' karma option (no require trailing comma)`, async () => {
+ addWorkspaceTarget(tree, 'test', {
+ 'builder': Builders.Karma,
+ 'options': {
+ 'karmaConfig': './karma.conf.js',
+ 'polyfills': ['zone.js', 'zone.js/testing'],
+ 'tsConfig': 'projects/app-a/tsconfig.spec.json',
+ },
+ });
+ tree.create(
+ './karma.conf.js',
+ `
+ module.exports = function (config) {
+ config.set({
+ basePath: '',
+ frameworks: ['jasmine', '@angular-devkit/build-angular'],
+ plugins: [
+ require('karma-jasmine'),
+ require('karma-chrome-launcher'),
+ require('karma-jasmine-html-reporter'),
+ require('karma-coverage'),
+ require('@angular-devkit/build-angular/plugins/karma')
+ ]
+ });
+ };`,
+ );
+
+ const newTree = await schematicRunner.runSchematic(schematicName, {}, tree);
+ const {
+ projects: { app },
+ } = JSON.parse(newTree.readContent('/angular.json'));
+
+ const { karmaConfig } = app.architect['test'].options;
+ expect(karmaConfig).toBe('./karma.conf.js');
+
+ const karmaConfigText = newTree.readText('./karma.conf.js');
+ expect(karmaConfigText).not.toContain(`require('@angular-devkit/build-angular/plugins/karma')`);
+ });
+
+ it(`should update file for 'karmaConfig' karma option (require trailing comma)`, async () => {
+ addWorkspaceTarget(tree, 'test', {
+ 'builder': Builders.Karma,
+ 'options': {
+ 'karmaConfig': './karma.conf.js',
+ 'polyfills': ['zone.js', 'zone.js/testing'],
+ 'tsConfig': 'projects/app-a/tsconfig.spec.json',
+ },
+ });
+ tree.create(
+ './karma.conf.js',
+ `
+ module.exports = function (config) {
+ config.set({
+ basePath: '',
+ frameworks: ['jasmine', '@angular-devkit/build-angular'],
+ plugins: [
+ require('karma-jasmine'),
+ require('karma-chrome-launcher'),
+ require('karma-jasmine-html-reporter'),
+ require('karma-coverage'),
+ require('@angular-devkit/build-angular/plugins/karma'),
+ ]
+ });
+ };`,
+ );
+
+ const newTree = await schematicRunner.runSchematic(schematicName, {}, tree);
+ const {
+ projects: { app },
+ } = JSON.parse(newTree.readContent('/angular.json'));
+
+ const { karmaConfig } = app.architect['test'].options;
+ expect(karmaConfig).toBe('./karma.conf.js');
+
+ const karmaConfigText = newTree.readText('./karma.conf.js');
+ expect(karmaConfigText).not.toContain(`require('@angular-devkit/build-angular/plugins/karma')`);
+ });
+
+ it(`should ignore missing file for 'karmaConfig' karma option`, async () => {
+ addWorkspaceTarget(tree, 'test', {
+ 'builder': Builders.Karma,
+ 'options': {
+ 'karmaConfig': './karma.conf.js',
+ 'polyfills': ['zone.js', 'zone.js/testing'],
+ 'tsConfig': 'projects/app-a/tsconfig.spec.json',
+ },
+ });
+
+ const newTree = await schematicRunner.runSchematic(schematicName, {}, tree);
+ const {
+ projects: { app },
+ } = JSON.parse(newTree.readContent('/angular.json'));
+
+ const { karmaConfig } = app.architect['test'].options;
+ expect(karmaConfig).toBe('./karma.conf.js');
+ });
+
it('should remove tilde prefix from CSS @import specifiers', async () => {
// Replace outputPath
tree.create(
diff --git a/packages/schematics/angular/module/index.ts b/packages/schematics/angular/module/index.ts
index f7657783d866..1a6065fedf95 100644
--- a/packages/schematics/angular/module/index.ts
+++ b/packages/schematics/angular/module/index.ts
@@ -27,7 +27,9 @@ import { addImportToModule, addRouteDeclarationToModule } from '../utility/ast-u
import { InsertChange } from '../utility/change';
import {
MODULE_EXT,
+ MODULE_EXT_LEGACY,
ROUTING_MODULE_EXT,
+ ROUTING_MODULE_EXT_LEGACY,
buildRelativePath,
findModuleFromOptions,
} from '../utility/find-module';
@@ -114,11 +116,11 @@ function addRouteDeclarationToNgModule(
function getRoutingModulePath(host: Tree, modulePath: string): string | undefined {
const routingModulePath =
- modulePath.endsWith(ROUTING_MODULE_EXT) || modulePath.endsWith('-routing-module.ts')
+ modulePath.endsWith(ROUTING_MODULE_EXT_LEGACY) || modulePath.endsWith(ROUTING_MODULE_EXT)
? modulePath
: modulePath
- .replace(MODULE_EXT, ROUTING_MODULE_EXT)
- .replace('-module.ts', '-routing-module.ts');
+ .replace(MODULE_EXT_LEGACY, ROUTING_MODULE_EXT_LEGACY)
+ .replace(MODULE_EXT, ROUTING_MODULE_EXT);
return host.exists(routingModulePath) ? routingModulePath : undefined;
}
@@ -138,15 +140,7 @@ export default function (options: ModuleOptions): Rule {
}
if (options.module) {
- try {
- options.module = findModuleFromOptions(host, options);
- } catch {
- options.module = findModuleFromOptions(host, {
- ...options,
- moduleExt: '-module.ts',
- routingModuleExt: '-routing-module.ts',
- });
- }
+ options.module = findModuleFromOptions(host, options);
}
let routingModulePath;
diff --git a/packages/schematics/angular/pipe/index.ts b/packages/schematics/angular/pipe/index.ts
index 150b0bc20c57..e266839cbcc2 100644
--- a/packages/schematics/angular/pipe/index.ts
+++ b/packages/schematics/angular/pipe/index.ts
@@ -18,16 +18,7 @@ import { Schema as PipeOptions } from './schema';
export default function (options: PipeOptions): Rule {
return async (host: Tree) => {
options.path ??= await createDefaultPath(host, options.project);
- try {
- options.module = findModuleFromOptions(host, options);
- } catch {
- options.module = findModuleFromOptions(host, {
- ...options,
- moduleExt: '-module.ts',
- routingModuleExt: '-routing-module.ts',
- });
- }
-
+ options.module = findModuleFromOptions(host, options);
const parsedPath = parseName(options.path, options.name);
options.name = parsedPath.name;
options.path = parsedPath.path;
diff --git a/packages/schematics/angular/server/index_spec.ts b/packages/schematics/angular/server/index_spec.ts
index f3e5e277d8ef..de6046e38c00 100644
--- a/packages/schematics/angular/server/index_spec.ts
+++ b/packages/schematics/angular/server/index_spec.ts
@@ -269,7 +269,7 @@ describe('Server Schematic', () => {
build.builder = Builders.Browser;
build.options = {
...build.options,
- main: build.options.browser,
+ main: 'projects/bar/src/main.ts',
browser: undefined,
};
diff --git a/packages/schematics/angular/service-worker/index.ts b/packages/schematics/angular/service-worker/index.ts
index e32969d9d0c6..0f794981faa0 100644
--- a/packages/schematics/angular/service-worker/index.ts
+++ b/packages/schematics/angular/service-worker/index.ts
@@ -28,7 +28,7 @@ import { getAppModulePath, isStandaloneApp } from '../utility/ng-ast-utils';
import { relativePathToWorkspaceRoot } from '../utility/paths';
import { targetBuildNotFoundError } from '../utility/project-targets';
import { findAppConfig } from '../utility/standalone/app_config';
-import { findBootstrapApplicationCall } from '../utility/standalone/util';
+import { findBootstrapApplicationCall, getMainFilePath } from '../utility/standalone/util';
import { Builders } from '../utility/workspace-models';
import { Schema as ServiceWorkerOptions } from './schema';
@@ -119,20 +119,18 @@ export default function (options: ServiceWorkerOptions): Rule {
}
const buildOptions = buildTarget.options as Record;
- let browserEntryPoint: string | undefined;
+ const browserEntryPoint = await getMainFilePath(host, options.project);
const ngswConfigPath = join(normalize(project.root), 'ngsw-config.json');
if (
buildTarget.builder === Builders.Application ||
buildTarget.builder === Builders.BuildApplication
) {
- browserEntryPoint = buildOptions.browser as string;
const productionConf = buildTarget.configurations?.production;
if (productionConf) {
productionConf.serviceWorker = ngswConfigPath;
}
} else {
- browserEntryPoint = buildOptions.main as string;
buildOptions.serviceWorker = true;
buildOptions.ngswConfigPath = ngswConfigPath;
}
diff --git a/packages/schematics/angular/service-worker/index_spec.ts b/packages/schematics/angular/service-worker/index_spec.ts
index e9ec677f44ba..fbd976e48960 100644
--- a/packages/schematics/angular/service-worker/index_spec.ts
+++ b/packages/schematics/angular/service-worker/index_spec.ts
@@ -203,7 +203,7 @@ describe('Service Worker Schematic', () => {
build.builder = Builders.Browser;
build.options = {
...build.options,
- main: build.options.browser,
+ main: 'projects/bar/src/main.ts',
browser: undefined,
};
diff --git a/packages/schematics/angular/ssr/index_spec.ts b/packages/schematics/angular/ssr/index_spec.ts
index 97b534aba8e1..4c70e971e54b 100644
--- a/packages/schematics/angular/ssr/index_spec.ts
+++ b/packages/schematics/angular/ssr/index_spec.ts
@@ -182,7 +182,7 @@ describe('SSR Schematic', () => {
build.builder = '@angular-devkit/build-angular:browser';
build.options = {
...build.options,
- main: build.options.browser,
+ main: 'projects/test-app/src/main.ts',
browser: undefined,
};
diff --git a/packages/schematics/angular/utility/find-module.ts b/packages/schematics/angular/utility/find-module.ts
index 69e10dc1368e..c98b52a0cbe2 100644
--- a/packages/schematics/angular/utility/find-module.ts
+++ b/packages/schematics/angular/utility/find-module.ts
@@ -20,8 +20,10 @@ export interface ModuleOptions {
standalone?: boolean;
}
-export const MODULE_EXT = '.module.ts';
-export const ROUTING_MODULE_EXT = '-routing.module.ts';
+export const MODULE_EXT = '-module.ts';
+export const ROUTING_MODULE_EXT = '-routing-module.ts';
+export const MODULE_EXT_LEGACY = '.module.ts';
+export const ROUTING_MODULE_EXT_LEGACY = '-routing.module.ts';
/**
* Find the module referred by a set of options passed to the schematics.
@@ -31,13 +33,10 @@ export function findModuleFromOptions(host: Tree, options: ModuleOptions): Path
return undefined;
}
- const moduleExt = options.moduleExt || MODULE_EXT;
- const routingModuleExt = options.routingModuleExt || ROUTING_MODULE_EXT;
-
if (!options.module) {
const pathToCheck = (options.path || '') + '/' + options.name;
- return normalize(findModule(host, pathToCheck, moduleExt, routingModuleExt));
+ return normalize(findModule(host, pathToCheck, options.moduleExt, options.routingModuleExt));
} else {
const modulePath = normalize(`/${options.path}/${options.module}`);
const componentPath = normalize(`/${options.path}/${options.name}`);
@@ -53,14 +52,21 @@ export function findModuleFromOptions(host: Tree, options: ModuleOptions): Path
}
const candidatesDirs = [...candidateSet].sort((a, b) => b.length - a.length);
- for (const c of candidatesDirs) {
- const candidateFiles = ['', `${moduleBaseName}.ts`, `${moduleBaseName}${moduleExt}`].map(
- (x) => join(c, x),
+ const candidateFiles: string[] = ['', `${moduleBaseName}.ts`];
+ if (options.moduleExt) {
+ candidateFiles.push(`${moduleBaseName}${options.moduleExt}`);
+ } else {
+ candidateFiles.push(
+ `${moduleBaseName}${MODULE_EXT}`,
+ `${moduleBaseName}${MODULE_EXT_LEGACY}`,
);
+ }
+ for (const c of candidatesDirs) {
for (const sc of candidateFiles) {
- if (host.exists(sc) && host.readText(sc).includes('@NgModule')) {
- return normalize(sc);
+ const scPath = join(c, sc);
+ if (host.exists(scPath) && host.readText(scPath).includes('@NgModule')) {
+ return normalize(scPath);
}
}
}
@@ -78,15 +84,22 @@ export function findModuleFromOptions(host: Tree, options: ModuleOptions): Path
export function findModule(
host: Tree,
generateDir: string,
- moduleExt = MODULE_EXT,
- routingModuleExt = ROUTING_MODULE_EXT,
+ moduleExt?: string,
+ routingModuleExt?: string,
): Path {
let dir: DirEntry | null = host.getDir('/' + generateDir);
let foundRoutingModule = false;
+ const moduleExtensions: string[] = moduleExt ? [moduleExt] : [MODULE_EXT, MODULE_EXT_LEGACY];
+ const routingModuleExtensions: string[] = routingModuleExt
+ ? [routingModuleExt]
+ : [ROUTING_MODULE_EXT, ROUTING_MODULE_EXT_LEGACY];
+
while (dir) {
- const allMatches = dir.subfiles.filter((p) => p.endsWith(moduleExt));
- const filteredMatches = allMatches.filter((p) => !p.endsWith(routingModuleExt));
+ const allMatches = dir.subfiles.filter((p) => moduleExtensions.some((m) => p.endsWith(m)));
+ const filteredMatches = allMatches.filter(
+ (p) => !routingModuleExtensions.some((m) => p.endsWith(m)),
+ );
foundRoutingModule = foundRoutingModule || allMatches.length !== filteredMatches.length;
diff --git a/packages/schematics/angular/utility/find-module_spec.ts b/packages/schematics/angular/utility/find-module_spec.ts
index 9680f15949c8..0db295ae384f 100644
--- a/packages/schematics/angular/utility/find-module_spec.ts
+++ b/packages/schematics/angular/utility/find-module_spec.ts
@@ -143,6 +143,15 @@ describe('find-module', () => {
expect(modPath).toEqual('/projects/my-proj/src/admin/foo.module.ts');
});
+ it('should find a module in a sub dir when using the `-module` suffix', () => {
+ tree.create('/projects/my-proj/src/admin/foo-module.ts', '@NgModule');
+ options.name = 'other/test';
+ options.module = 'admin/foo';
+ options.path = '/projects/my-proj/src';
+ const modPath = findModuleFromOptions(tree, options) as string;
+ expect(modPath).toEqual('/projects/my-proj/src/admin/foo-module.ts');
+ });
+
it('should find a module in a sub dir (2)', () => {
tree.create('/projects/my-proj/src/admin/foo.module.ts', '@NgModule');
options.name = 'admin/hello';
diff --git a/packages/schematics/angular/utility/json-file.ts b/packages/schematics/angular/utility/json-file.ts
index dffb7a94f997..e7c767745b90 100644
--- a/packages/schematics/angular/utility/json-file.ts
+++ b/packages/schematics/angular/utility/json-file.ts
@@ -95,9 +95,16 @@ export class JSONFile {
},
});
- this.content = applyEdits(this.content, edits);
- this.host.overwrite(this.path, this.content);
- this._jsonAst = undefined;
+ if (edits.length > 0) {
+ const editedContent = applyEdits(this.content, edits);
+
+ // Update the file content if it changed
+ if (editedContent !== this.content) {
+ this.content = editedContent;
+ this.host.overwrite(this.path, editedContent);
+ this._jsonAst = undefined;
+ }
+ }
}
remove(jsonPath: JSONPath): void {
diff --git a/packages/schematics/angular/utility/standalone/util.ts b/packages/schematics/angular/utility/standalone/util.ts
index 6d5648b68fd6..4c64e68ad559 100644
--- a/packages/schematics/angular/utility/standalone/util.ts
+++ b/packages/schematics/angular/utility/standalone/util.ts
@@ -7,6 +7,7 @@
*/
import { SchematicsException, Tree } from '@angular-devkit/schematics';
+import { join } from 'node:path/posix';
import ts from '../../third_party/github.com/Microsoft/TypeScript/lib/typescript';
import { Change, applyToUpdateRecorder } from '../change';
import { targetBuildNotFoundError } from '../project-targets';
@@ -23,16 +24,23 @@ export async function getMainFilePath(tree: Tree, projectName: string): Promise<
const project = workspace.projects.get(projectName);
const buildTarget = project?.targets.get('build');
- if (!buildTarget) {
+ if (!project || !buildTarget) {
throw targetBuildNotFoundError();
}
const options = buildTarget.options as Record;
- return buildTarget.builder === Builders.Application ||
+ if (
+ buildTarget.builder === Builders.Application ||
buildTarget.builder === Builders.BuildApplication
- ? options.browser
- : options.main;
+ ) {
+ // These builders support a default of `/main.ts`
+ const projectSourceRoot = project.sourceRoot ?? join(project.root, 'src');
+
+ return options.browser ?? join(projectSourceRoot, 'main.ts');
+ }
+
+ return options.main;
}
/**
diff --git a/packages/schematics/angular/workspace/files/package.json.template b/packages/schematics/angular/workspace/files/package.json.template
index 4ee0cdd9ab73..dcbe6939829d 100644
--- a/packages/schematics/angular/workspace/files/package.json.template
+++ b/packages/schematics/angular/workspace/files/package.json.template
@@ -17,8 +17,7 @@
"@angular/platform-browser": "<%= latestVersions.Angular %>",
"@angular/router": "<%= latestVersions.Angular %>",
"rxjs": "<%= latestVersions['rxjs'] %>",
- "tslib": "<%= latestVersions['tslib'] %>",
- "zone.js": "<%= latestVersions['zone.js'] %>"
+ "tslib": "<%= latestVersions['tslib'] %>"
},
"devDependencies": {
"@angular/cli": "<%= '^' + version %>",
diff --git a/packages/schematics/angular/workspace/index_spec.ts b/packages/schematics/angular/workspace/index_spec.ts
index 520452e71b89..21efd7275b82 100644
--- a/packages/schematics/angular/workspace/index_spec.ts
+++ b/packages/schematics/angular/workspace/index_spec.ts
@@ -58,7 +58,6 @@ describe('Workspace Schematic', () => {
const pkg = JSON.parse(tree.readContent('/package.json'));
expect(pkg.dependencies['@angular/core']).toEqual(latestVersions.Angular);
expect(pkg.dependencies['rxjs']).toEqual(latestVersions['rxjs']);
- expect(pkg.dependencies['zone.js']).toEqual(latestVersions['zone.js']);
expect(pkg.devDependencies['typescript']).toEqual(latestVersions['typescript']);
});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 189d5f9a97bd..df0037b89549 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -15,77 +15,77 @@ importers:
.:
devDependencies:
'@angular/animations':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/cdk':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/common':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0
'@angular/compiler-cli':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(typescript@5.8.3)
'@angular/core':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/forms':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/localize':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3))(@angular/compiler@20.0.0-next.9)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/compiler-cli@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(typescript@5.8.3))(@angular/compiler@20.1.0-next.0)
'@angular/material':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(toykhwqb6vnza6rhnhkooutfpa)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(4wux34b4hvvx5bs377ruhvyphy)
'@angular/ng-dev':
- specifier: https://github.com/angular/dev-infra-private-ng-dev-builds.git#1a12d97905f4af88ccc0b582864907729d23e23e
- version: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/1a12d97905f4af88ccc0b582864907729d23e23e(encoding@0.1.13)
+ specifier: https://github.com/angular/dev-infra-private-ng-dev-builds.git#03896acc53dcd538c4b3b71240af9e344ba3cfec
+ version: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/03896acc53dcd538c4b3b71240af9e344ba3cfec
'@angular/platform-browser':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/platform-server':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.9)(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.1.0-next.0)(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/router':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/service-worker':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@bazel/bazelisk':
specifier: 1.26.0
version: 1.26.0
'@bazel/buildifier':
- specifier: 8.0.3
- version: 8.0.3
+ specifier: 8.2.0
+ version: 8.2.0
'@eslint/compat':
- specifier: 1.2.8
- version: 1.2.8(eslint@9.25.1(jiti@1.21.7))
+ specifier: 1.2.9
+ version: 1.2.9(eslint@9.28.0(jiti@1.21.7))
'@eslint/eslintrc':
specifier: 3.3.1
version: 3.3.1
'@eslint/js':
- specifier: 9.25.1
- version: 9.25.1
+ specifier: 9.28.0
+ version: 9.28.0
'@rollup/plugin-alias':
specifier: ^5.1.1
- version: 5.1.1(rollup@4.40.1)
+ version: 5.1.1(rollup@4.41.1)
'@rollup/plugin-commonjs':
specifier: ^28.0.0
- version: 28.0.3(rollup@4.40.1)
+ version: 28.0.3(rollup@4.41.1)
'@rollup/plugin-json':
specifier: ^6.1.0
- version: 6.1.0(rollup@4.40.1)
+ version: 6.1.0(rollup@4.41.1)
'@rollup/plugin-node-resolve':
specifier: 16.0.1
- version: 16.0.1(rollup@4.40.1)
+ version: 16.0.1(rollup@4.41.1)
'@stylistic/eslint-plugin':
specifier: ^4.0.0
- version: 4.2.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ version: 4.4.0(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)
'@types/babel__core':
specifier: 7.20.5
version: 7.20.5
@@ -97,7 +97,7 @@ importers:
version: 2.29.0
'@types/express':
specifier: ~5.0.1
- version: 5.0.1
+ version: 5.0.2
'@types/http-proxy':
specifier: ^1.17.4
version: 1.17.16
@@ -106,7 +106,7 @@ importers:
version: 4.1.1
'@types/jasmine':
specifier: ~5.1.0
- version: 5.1.7
+ version: 5.1.8
'@types/jasmine-reporters':
specifier: ^2
version: 2.5.3
@@ -121,10 +121,10 @@ importers:
version: 2.0.6
'@types/lodash':
specifier: ^4.17.0
- version: 4.17.16
+ version: 4.17.17
'@types/node':
specifier: ^20.17.19
- version: 20.17.32
+ version: 20.17.57
'@types/npm-package-arg':
specifier: ^6.1.0
version: 6.1.4
@@ -145,7 +145,7 @@ importers:
version: 7.7.0
'@types/shelljs':
specifier: ^0.8.11
- version: 0.8.15
+ version: 0.8.16
'@types/watchpack':
specifier: ^2.4.4
version: 2.4.4
@@ -159,11 +159,11 @@ importers:
specifier: ^1.1.5
version: 1.1.9
'@typescript-eslint/eslint-plugin':
- specifier: 8.31.1
- version: 8.31.1(@typescript-eslint/parser@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ specifier: 8.33.1
+ version: 8.33.1(@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)
'@typescript-eslint/parser':
- specifier: 8.31.1
- version: 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ specifier: 8.33.1
+ version: 8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)
ajv:
specifier: 8.17.1
version: 8.17.1
@@ -171,29 +171,29 @@ importers:
specifier: 4.1.3
version: 4.1.3
beasties:
- specifier: 0.3.3
- version: 0.3.3
+ specifier: 0.3.4
+ version: 0.3.4
buffer:
specifier: 6.0.3
version: 6.0.3
esbuild:
- specifier: 0.25.3
- version: 0.25.3
+ specifier: 0.25.5
+ version: 0.25.5
esbuild-wasm:
- specifier: 0.25.3
- version: 0.25.3
+ specifier: 0.25.5
+ version: 0.25.5
eslint:
- specifier: 9.25.1
- version: 9.25.1(jiti@1.21.7)
+ specifier: 9.28.0
+ version: 9.28.0(jiti@1.21.7)
eslint-config-prettier:
- specifier: 10.1.2
- version: 10.1.2(eslint@9.25.1(jiti@1.21.7))
+ specifier: 10.1.5
+ version: 10.1.5(eslint@9.28.0(jiti@1.21.7))
eslint-plugin-header:
specifier: 3.1.1
- version: 3.1.1(eslint@9.25.1(jiti@1.21.7))
+ version: 3.1.1(eslint@9.28.0(jiti@1.21.7))
eslint-plugin-import:
specifier: 2.31.0
- version: 2.31.0(@typescript-eslint/parser@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))
+ version: 2.31.0(@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.28.0(jiti@1.21.7))
express:
specifier: 5.1.0
version: 5.1.0
@@ -201,11 +201,11 @@ importers:
specifier: 3.3.3
version: 3.3.3
globals:
- specifier: 16.0.0
- version: 16.0.0
+ specifier: 16.2.0
+ version: 16.2.0
http-proxy:
specifier: ^1.18.1
- version: 1.18.1(debug@4.4.0)
+ version: 1.18.1(debug@4.4.1)
http-proxy-middleware:
specifier: 3.0.5
version: 3.0.5
@@ -214,10 +214,10 @@ importers:
version: 9.1.7
jasmine:
specifier: ~5.7.0
- version: 5.7.0
+ version: 5.7.1
jasmine-core:
specifier: ~5.7.0
- version: 5.7.0
+ version: 5.7.1
jasmine-reporters:
specifier: ^2.5.2
version: 2.5.2
@@ -238,13 +238,13 @@ importers:
version: 5.1.0(karma@6.4.4)
karma-jasmine-html-reporter:
specifier: ~2.1.0
- version: 2.1.0(jasmine-core@5.7.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4)
+ version: 2.1.0(jasmine-core@5.7.1)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4)
karma-source-map-support:
specifier: 1.4.0
version: 1.4.0
listr2:
- specifier: 8.3.2
- version: 8.3.2
+ specifier: 8.3.3
+ version: 8.3.3
lodash:
specifier: ^4.17.21
version: 4.17.21
@@ -253,7 +253,7 @@ importers:
version: 0.30.17
npm:
specifier: ^11.0.0
- version: 11.3.0
+ version: 11.4.1
prettier:
specifier: ^3.0.0
version: 3.5.3
@@ -264,26 +264,26 @@ importers:
specifier: 18.2.1
version: 18.2.1(encoding@0.1.13)
quicktype-core:
- specifier: 23.1.1
- version: 23.1.1(encoding@0.1.13)
+ specifier: 23.2.6
+ version: 23.2.6(encoding@0.1.13)
rollup:
- specifier: 4.40.1
- version: 4.40.1
+ specifier: 4.41.1
+ version: 4.41.1
rollup-license-plugin:
specifier: ~3.0.1
version: 3.0.2
rollup-plugin-dts:
specifier: 6.2.1
- version: 6.2.1(rollup@4.40.1)(typescript@5.8.3)
+ version: 6.2.1(rollup@4.41.1)(typescript@5.8.3)
rollup-plugin-sourcemaps2:
- specifier: 0.5.1
- version: 0.5.1(@types/node@20.17.32)(rollup@4.40.1)
+ specifier: 0.5.2
+ version: 0.5.2(@types/node@20.17.57)(rollup@4.41.1)
semver:
- specifier: 7.7.1
- version: 7.7.1
+ specifier: 7.7.2
+ version: 7.7.2
shelljs:
- specifier: ^0.9.0
- version: 0.9.2
+ specifier: ^0.10.0
+ version: 0.10.0
source-map-support:
specifier: 0.5.21
version: 0.5.21
@@ -292,7 +292,7 @@ importers:
version: 7.4.3
ts-node:
specifier: ^10.9.1
- version: 10.9.2(@types/node@20.17.32)(typescript@5.8.3)
+ version: 10.9.2(@types/node@20.17.57)(typescript@5.8.3)
tslib:
specifier: 2.8.1
version: 2.8.1
@@ -300,8 +300,8 @@ importers:
specifier: 5.8.3
version: 5.8.3
undici:
- specifier: 7.8.0
- version: 7.8.0
+ specifier: 7.10.0
+ version: 7.10.0
unenv:
specifier: ^1.10.0
version: 1.10.0
@@ -312,11 +312,11 @@ importers:
specifier: ^10.0.0
version: 10.2.2
yargs-parser:
- specifier: 21.1.1
- version: 21.1.1
+ specifier: 22.0.0
+ version: 22.0.0
zone.js:
specifier: ^0.15.0
- version: 0.15.0
+ version: 0.15.1
dependenciesMeta:
esbuild:
built: true
@@ -341,8 +341,8 @@ importers:
specifier: 7.8.2
version: 7.8.2
vitest:
- specifier: 3.1.2
- version: 3.1.2(@types/node@20.17.32)(jiti@1.21.7)(jsdom@26.1.0)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1)
+ specifier: 3.2.2
+ version: 3.2.2(@types/node@20.17.57)(jiti@1.21.7)(jsdom@26.1.0)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0)
packages/angular/build:
dependencies:
@@ -353,29 +353,29 @@ importers:
specifier: workspace:0.0.0-EXPERIMENTAL-PLACEHOLDER
version: link:../../angular_devkit/architect
'@babel/core':
- specifier: 7.26.10
- version: 7.26.10
+ specifier: 7.27.4
+ version: 7.27.4
'@babel/helper-annotate-as-pure':
- specifier: 7.25.9
- version: 7.25.9
+ specifier: 7.27.3
+ version: 7.27.3
'@babel/helper-split-export-declaration':
specifier: 7.24.7
version: 7.24.7
'@inquirer/confirm':
- specifier: 5.1.9
- version: 5.1.9(@types/node@20.17.32)
+ specifier: 5.1.12
+ version: 5.1.12(@types/node@20.17.57)
'@vitejs/plugin-basic-ssl':
specifier: 2.0.0
- version: 2.0.0(vite@6.3.4(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1))
+ version: 2.0.0(vite@6.3.5(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0))
beasties:
- specifier: 0.3.3
- version: 0.3.3
+ specifier: 0.3.4
+ version: 0.3.4
browserslist:
specifier: ^4.23.0
- version: 4.24.4
+ version: 4.25.0
esbuild:
- specifier: 0.25.3
- version: 0.25.3
+ specifier: 0.25.5
+ version: 0.25.5
https-proxy-agent:
specifier: 7.0.6
version: 7.0.6(supports-color@10.0.0)
@@ -386,8 +386,8 @@ importers:
specifier: 3.3.1
version: 3.3.1
listr2:
- specifier: 8.3.2
- version: 8.3.2
+ specifier: 8.3.3
+ version: 8.3.3
magic-string:
specifier: 0.30.17
version: 0.30.17
@@ -401,33 +401,33 @@ importers:
specifier: 4.0.2
version: 4.0.2
piscina:
- specifier: 4.9.2
- version: 4.9.2
+ specifier: 5.0.0
+ version: 5.0.0
rollup:
- specifier: 4.40.1
- version: 4.40.1
+ specifier: 4.41.1
+ version: 4.41.1
sass:
- specifier: 1.87.0
- version: 1.87.0
+ specifier: 1.89.1
+ version: 1.89.1
semver:
- specifier: 7.7.1
- version: 7.7.1
+ specifier: 7.7.2
+ version: 7.7.2
source-map-support:
specifier: 0.5.21
version: 0.5.21
tinyglobby:
- specifier: 0.2.13
- version: 0.2.13
+ specifier: 0.2.14
+ version: 0.2.14
vite:
- specifier: 6.3.4
- version: 6.3.4(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1)
+ specifier: 6.3.5
+ version: 6.3.5(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0)
watchpack:
- specifier: 2.4.2
- version: 2.4.2
+ specifier: 2.4.4
+ version: 2.4.4
optionalDependencies:
lmdb:
- specifier: 3.2.6
- version: 3.2.6
+ specifier: 3.4.0
+ version: 3.4.0
devDependencies:
'@angular-devkit/core':
specifier: workspace:*
@@ -442,17 +442,17 @@ importers:
specifier: 4.3.0
version: 4.3.0
ng-packagr:
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/compiler-cli@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3)
postcss:
- specifier: 8.5.3
- version: 8.5.3
+ specifier: 8.5.4
+ version: 8.5.4
rxjs:
specifier: 7.8.2
version: 7.8.2
vitest:
- specifier: 3.1.2
- version: 3.1.2(@types/node@20.17.32)(jiti@1.21.7)(jsdom@26.1.0)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1)
+ specifier: 3.2.2
+ version: 3.2.2(@types/node@20.17.57)(jiti@1.21.7)(jsdom@26.1.0)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0)
packages/angular/cli:
dependencies:
@@ -466,11 +466,11 @@ importers:
specifier: workspace:0.0.0-PLACEHOLDER
version: link:../../angular_devkit/schematics
'@inquirer/prompts':
- specifier: 7.5.0
- version: 7.5.0(@types/node@20.17.32)
+ specifier: 7.5.3
+ version: 7.5.3(@types/node@20.17.57)
'@listr2/prompt-adapter-inquirer':
- specifier: 2.0.21
- version: 2.0.21(@inquirer/prompts@7.5.0(@types/node@20.17.32))
+ specifier: 2.0.22
+ version: 2.0.22(@inquirer/prompts@7.5.3(@types/node@20.17.57))
'@schematics/angular':
specifier: workspace:0.0.0-PLACEHOLDER
version: link:../../schematics/angular
@@ -484,8 +484,8 @@ importers:
specifier: 3.3.1
version: 3.3.1
listr2:
- specifier: 8.3.2
- version: 8.3.2
+ specifier: 8.3.3
+ version: 8.3.3
npm-package-arg:
specifier: 12.0.2
version: 12.0.2
@@ -493,17 +493,17 @@ importers:
specifier: 10.0.0
version: 10.0.0
pacote:
- specifier: 20.0.0
- version: 20.0.0
+ specifier: 21.0.0
+ version: 21.0.0
resolve:
specifier: 1.22.10
version: 1.22.10
semver:
- specifier: 7.7.1
- version: 7.7.1
+ specifier: 7.7.2
+ version: 7.7.2
yargs:
- specifier: 17.7.2
- version: 17.7.2
+ specifier: 18.0.0
+ version: 18.0.0
packages/angular/pwa:
dependencies:
@@ -527,23 +527,23 @@ importers:
specifier: workspace:*
version: link:../../angular_devkit/schematics
'@angular/common':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0
'@angular/core':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/platform-browser':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/platform-server':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.9)(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.1.0-next.0)(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/router':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@schematics/angular':
specifier: workspace:*
version: link:../../schematics/angular
@@ -572,8 +572,8 @@ importers:
specifier: 2.0.3
version: 2.0.3
yargs-parser:
- specifier: 21.1.1
- version: 21.1.1
+ specifier: 22.0.0
+ version: 22.0.0
devDependencies:
'@types/progress':
specifier: 2.0.7
@@ -597,32 +597,32 @@ importers:
specifier: workspace:*
version: link:../../angular/build
'@babel/core':
- specifier: 7.26.10
- version: 7.26.10
+ specifier: 7.27.4
+ version: 7.27.4
'@babel/generator':
- specifier: 7.27.0
- version: 7.27.0
+ specifier: 7.27.5
+ version: 7.27.5
'@babel/helper-annotate-as-pure':
- specifier: 7.25.9
- version: 7.25.9
+ specifier: 7.27.3
+ version: 7.27.3
'@babel/helper-split-export-declaration':
specifier: 7.24.7
version: 7.24.7
'@babel/plugin-transform-async-generator-functions':
- specifier: 7.26.8
- version: 7.26.8(@babel/core@7.26.10)
+ specifier: 7.27.1
+ version: 7.27.1(@babel/core@7.27.4)
'@babel/plugin-transform-async-to-generator':
- specifier: 7.25.9
- version: 7.25.9(@babel/core@7.26.10)
+ specifier: 7.27.1
+ version: 7.27.1(@babel/core@7.27.4)
'@babel/plugin-transform-runtime':
- specifier: 7.26.10
- version: 7.26.10(@babel/core@7.26.10)
+ specifier: 7.27.4
+ version: 7.27.4(@babel/core@7.27.4)
'@babel/preset-env':
- specifier: 7.26.9
- version: 7.26.9(@babel/core@7.26.10)
+ specifier: 7.27.2
+ version: 7.27.2(@babel/core@7.27.4)
'@babel/runtime':
- specifier: 7.27.0
- version: 7.27.0
+ specifier: 7.27.6
+ version: 7.27.6
'@discoveryjs/json-ext':
specifier: 0.6.3
version: 0.6.3
@@ -631,28 +631,28 @@ importers:
version: link:../../ngtools/webpack
'@vitejs/plugin-basic-ssl':
specifier: 2.0.0
- version: 2.0.0(vite@6.3.4(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1))
+ version: 2.0.0(vite@6.3.5(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0))
ansi-colors:
specifier: 4.1.3
version: 4.1.3
autoprefixer:
specifier: 10.4.21
- version: 10.4.21(postcss@8.5.3)
+ version: 10.4.21(postcss@8.5.4)
babel-loader:
specifier: 10.0.0
- version: 10.0.0(@babel/core@7.26.10)(webpack@5.99.7(esbuild@0.25.3))
+ version: 10.0.0(@babel/core@7.27.4)(webpack@5.99.9(esbuild@0.25.5))
browserslist:
specifier: ^4.21.5
- version: 4.24.4
+ version: 4.25.0
copy-webpack-plugin:
specifier: 13.0.0
- version: 13.0.0(webpack@5.99.7(esbuild@0.25.3))
+ version: 13.0.0(webpack@5.99.9(esbuild@0.25.5))
css-loader:
specifier: 7.1.2
- version: 7.1.2(webpack@5.99.7(esbuild@0.25.3))
+ version: 7.1.2(webpack@5.99.9(esbuild@0.25.5))
esbuild-wasm:
- specifier: 0.25.3
- version: 0.25.3
+ specifier: 0.25.5
+ version: 0.25.5
fast-glob:
specifier: 3.3.3
version: 3.3.3
@@ -672,35 +672,35 @@ importers:
specifier: 4.3.0
version: 4.3.0
less-loader:
- specifier: 12.2.0
- version: 12.2.0(less@4.3.0)(webpack@5.99.7(esbuild@0.25.3))
+ specifier: 12.3.0
+ version: 12.3.0(less@4.3.0)(webpack@5.99.9(esbuild@0.25.5))
license-webpack-plugin:
specifier: 4.0.2
- version: 4.0.2(webpack@5.99.7(esbuild@0.25.3))
+ version: 4.0.2(webpack@5.99.9(esbuild@0.25.5))
loader-utils:
specifier: 3.3.1
version: 3.3.1
mini-css-extract-plugin:
specifier: 2.9.2
- version: 2.9.2(webpack@5.99.7(esbuild@0.25.3))
+ version: 2.9.2(webpack@5.99.9(esbuild@0.25.5))
open:
- specifier: 10.1.1
- version: 10.1.1
+ specifier: 10.1.2
+ version: 10.1.2
ora:
- specifier: 5.4.1
- version: 5.4.1
+ specifier: 8.2.0
+ version: 8.2.0
picomatch:
specifier: 4.0.2
version: 4.0.2
piscina:
- specifier: 4.9.2
- version: 4.9.2
+ specifier: 5.0.0
+ version: 5.0.0
postcss:
- specifier: 8.5.3
- version: 8.5.3
+ specifier: 8.5.4
+ version: 8.5.4
postcss-loader:
specifier: 8.1.1
- version: 8.1.1(postcss@8.5.3)(typescript@5.8.3)(webpack@5.99.7(esbuild@0.25.3))
+ version: 8.1.1(postcss@8.5.4)(typescript@5.8.3)(webpack@5.99.9(esbuild@0.25.5))
resolve-url-loader:
specifier: 5.0.0
version: 5.0.0
@@ -708,23 +708,23 @@ importers:
specifier: 7.8.2
version: 7.8.2
sass:
- specifier: 1.87.0
- version: 1.87.0
+ specifier: 1.89.1
+ version: 1.89.1
sass-loader:
specifier: 16.0.5
- version: 16.0.5(sass@1.87.0)(webpack@5.99.7(esbuild@0.25.3))
+ version: 16.0.5(sass@1.89.1)(webpack@5.99.9(esbuild@0.25.5))
semver:
- specifier: 7.7.1
- version: 7.7.1
+ specifier: 7.7.2
+ version: 7.7.2
source-map-loader:
specifier: 5.0.0
- version: 5.0.0(webpack@5.99.7(esbuild@0.25.3))
+ version: 5.0.0(webpack@5.99.9(esbuild@0.25.5))
source-map-support:
specifier: 0.5.21
version: 0.5.21
terser:
- specifier: 5.39.0
- version: 5.39.0
+ specifier: 5.41.0
+ version: 5.41.0
tree-kill:
specifier: 1.2.2
version: 1.2.2
@@ -732,40 +732,40 @@ importers:
specifier: 2.8.1
version: 2.8.1
webpack:
- specifier: 5.99.7
- version: 5.99.7(esbuild@0.25.3)
+ specifier: 5.99.9
+ version: 5.99.9(esbuild@0.25.5)
webpack-dev-middleware:
specifier: 7.4.2
- version: 7.4.2(webpack@5.99.7(esbuild@0.25.3))
+ version: 7.4.2(webpack@5.99.9(esbuild@0.25.5))
webpack-dev-server:
- specifier: 5.2.1
- version: 5.2.1(webpack@5.99.7(esbuild@0.25.3))
+ specifier: 5.2.2
+ version: 5.2.2(webpack@5.99.9(esbuild@0.25.5))
webpack-merge:
specifier: 6.0.1
version: 6.0.1
webpack-subresource-integrity:
specifier: 5.1.0
- version: 5.1.0(webpack@5.99.7(esbuild@0.25.3))
+ version: 5.1.0(webpack@5.99.9(esbuild@0.25.5))
optionalDependencies:
esbuild:
- specifier: 0.25.3
- version: 0.25.3
+ specifier: 0.25.5
+ version: 0.25.5
devDependencies:
'@angular/ssr':
specifier: workspace:*
version: link:../../angular/ssr
'@web/test-runner':
- specifier: 0.20.1
- version: 0.20.1
+ specifier: 0.20.2
+ version: 0.20.2
browser-sync:
specifier: 3.0.4
version: 3.0.4
ng-packagr:
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/compiler-cli@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3)
undici:
- specifier: 7.8.0
- version: 7.8.0
+ specifier: 7.10.0
+ version: 7.10.0
packages/angular_devkit/build_webpack:
dependencies:
@@ -783,11 +783,11 @@ importers:
specifier: workspace:0.0.0-PLACEHOLDER
version: link:../../ngtools/webpack
webpack:
- specifier: 5.99.7
- version: 5.99.7(esbuild@0.25.3)
+ specifier: 5.99.9
+ version: 5.99.9(esbuild@0.25.5)
webpack-dev-server:
- specifier: 5.2.1
- version: 5.2.1(webpack@5.99.7(esbuild@0.25.3))
+ specifier: 5.2.2
+ version: 5.2.2(webpack@5.99.9(esbuild@0.25.5))
packages/angular_devkit/core:
dependencies:
@@ -826,8 +826,8 @@ importers:
specifier: 0.30.17
version: 0.30.17
ora:
- specifier: 5.4.1
- version: 5.4.1
+ specifier: 8.2.0
+ version: 8.2.0
rxjs:
specifier: 7.8.2
version: 7.8.2
@@ -841,14 +841,14 @@ importers:
specifier: workspace:0.0.0-PLACEHOLDER
version: link:../schematics
'@inquirer/prompts':
- specifier: 7.5.0
- version: 7.5.0(@types/node@20.17.32)
+ specifier: 7.5.3
+ version: 7.5.3(@types/node@20.17.57)
ansi-colors:
specifier: 4.1.3
version: 4.1.3
yargs-parser:
- specifier: 21.1.1
- version: 21.1.1
+ specifier: 22.0.0
+ version: 22.0.0
packages/ngtools/webpack:
devDependencies:
@@ -856,17 +856,17 @@ importers:
specifier: workspace:0.0.0-PLACEHOLDER
version: link:../../angular_devkit/core
'@angular/compiler':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0
'@angular/compiler-cli':
- specifier: 20.0.0-next.9
- version: 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3)
+ specifier: 20.1.0-next.0
+ version: 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(typescript@5.8.3)
typescript:
specifier: 5.8.3
version: 5.8.3
webpack:
- specifier: 5.99.7
- version: 5.99.7(esbuild@0.25.3)
+ specifier: 5.99.9
+ version: 5.99.9(esbuild@0.25.5)
packages/schematics/angular:
dependencies:
@@ -895,8 +895,8 @@ importers:
tools/baseline_browserslist:
devDependencies:
baseline-browser-mapping:
- specifier: 2.3.0
- version: 2.3.0
+ specifier: 2.4.4
+ version: 2.4.4
packages:
@@ -904,155 +904,168 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@angular/animations@20.0.0-next.9':
- resolution: {integrity: sha512-lO0KPbUiCTE/ODvYZMVms+2tu0yWbBB4ryI4HyFDVlMIIx7a/4jhQVoXQHuLseuw9Z8e9StO3RB7zbEsZjtT5g==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ '@angular/animations@20.1.0-next.0':
+ resolution: {integrity: sha512-iuz3oXDKjRJJVlNriEVc4TbSrPQevY+s/Cu0ju0BRLLvLxqf1fJlDB7zt4Lw+pc0rH8u1FyxdveyZS/IpS/USA==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 20.0.0-next.9
- '@angular/core': 20.0.0-next.9
+ '@angular/common': 20.1.0-next.0
+ '@angular/core': 20.1.0-next.0
- '@angular/cdk@20.0.0-next.8':
- resolution: {integrity: sha512-QDI5TOdnfzBXrhbmv68NV0PqqikpEDHaiVkt742XB3XY9MjgVNH0D9fdQucn+vzfEhWs9lABuxXY/IBdI7iqaQ==}
+ '@angular/cdk@20.1.0-next.0':
+ resolution: {integrity: sha512-dWmBPX8J5kP0ZnsLAnE5mt3TDMvs7m0TR1577yyCRSNzdxNP9164qwBP7lkdZKSRdx+BViH9isfbv4m959ecoQ==}
peerDependencies:
'@angular/common': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0
'@angular/core': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/common@20.0.0-next.9':
- resolution: {integrity: sha512-+V9Rbp6rbkJ7qx/ZGxrIdFb36X1TZSik9eXHVpcUncojdsg+je2mG7fvuCcuktkc2JRhv08TQnhOWi/BNuHQGA==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ '@angular/common@20.1.0-next.0':
+ resolution: {integrity: sha512-zOTqGVEO949N2pNR1aJ9+lmZAy7yImXcLxMWRAN3RRZ6V2saT75v1fqN3MqxEpZB4IZx84DAaZqlGnI1Zy/rTg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/core': 20.0.0-next.9
+ '@angular/core': 20.1.0-next.0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/compiler-cli@20.0.0-next.9':
- resolution: {integrity: sha512-M0kAujqufiNnPt/PJoNj8c7to6epjPfwBYsUf0M6xi1jqjhXYqOJr4FUnatV5WkzjCdfVVf1YrwnGtZnKeUdDg==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ '@angular/compiler-cli@20.1.0-next.0':
+ resolution: {integrity: sha512-NMzDX2rnRFZ9QNpG10hfETFMjl3K7j8AmL1v7uuWDQ4E+Sqs0dOmQMl/jQMSr96nax/SC+rLr4mNK6RNIQchjQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
hasBin: true
peerDependencies:
- '@angular/compiler': 20.0.0-next.9
+ '@angular/compiler': 20.1.0-next.0
typescript: 5.8.3
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@angular/compiler@20.0.0-next.9':
- resolution: {integrity: sha512-5f0fEokhjE4JU/d/I7dB1t/TOoGWOGftdqjswfniHij2s/UMdgXNSr7HcTk+AibZ3pT142PDSqtWDuYaG4zAtA==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ '@angular/compiler@20.1.0-next.0':
+ resolution: {integrity: sha512-E+gvYtiZdFGqfQkMKO8PdkdNKIBWMldeX0lTf/rNPplnQ/Zfsc6ch/bFq2D9kBmgAwXBYTLxcTqAoUjngbEMBw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
- '@angular/core@20.0.0-next.9':
- resolution: {integrity: sha512-dTcDo1mp3A0hsAAajgMHjb8DX/MweUrPqJH660iXSCZVSM5MqFUBhazrJgySt31CKCPE5F3W+ZeISN8QCi9pcQ==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ '@angular/core@20.1.0-next.0':
+ resolution: {integrity: sha512-vMGiayjIXvWf5eCqDteRAVbSOyr1MbMBgyg/aEeyUno9xJmwWU2V53wuR3Mz+XkKXVbqgT8o21r3yRAGQu829w==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/compiler': 20.0.0-next.9
+ '@angular/compiler': 20.1.0-next.0
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
peerDependenciesMeta:
'@angular/compiler':
optional: true
+ zone.js:
+ optional: true
- '@angular/forms@20.0.0-next.9':
- resolution: {integrity: sha512-ne7hBsqpyfpkSgkC7JRBrY5pnPEE+uIm9xYaDjsBzJHaJYGWkkF9eHdPmW7X13Lok8LRG7z24wxZlTeY/UNn0g==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ '@angular/forms@20.1.0-next.0':
+ resolution: {integrity: sha512-qIwpm2NCbBR7YlAekpeBbUBqjkMeYzMWNL4MGKJIhf3SV+fKo2XAmfCg1cAhTMqQ+EAwjPoewLCcywb9tRsGcQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 20.0.0-next.9
- '@angular/core': 20.0.0-next.9
- '@angular/platform-browser': 20.0.0-next.9
+ '@angular/common': 20.1.0-next.0
+ '@angular/core': 20.1.0-next.0
+ '@angular/platform-browser': 20.1.0-next.0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/localize@20.0.0-next.9':
- resolution: {integrity: sha512-B3IS4i1ez4vpVe1VD9Gl/v0XXOvyNOhuXanGKGLCYfepBiDMy4YwMh7t5WfwYrGAPYO5kCaNFyEYot4p4tK8cw==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ '@angular/localize@20.1.0-next.0':
+ resolution: {integrity: sha512-6MrQHUpPhHRzGrQfPGijzrLovgc6+7o5g4RhfFufpn9zWGH7iLr0oBo9GGMlRVv2bAEgWoaCrQUCovZRf54rlg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
hasBin: true
peerDependencies:
- '@angular/compiler': 20.0.0-next.9
- '@angular/compiler-cli': 20.0.0-next.9
+ '@angular/compiler': 20.1.0-next.0
+ '@angular/compiler-cli': 20.1.0-next.0
- '@angular/material@20.0.0-next.8':
- resolution: {integrity: sha512-KNUTlYILituqHptwgWn7YVzWJ26LybJF48XfJKEb2EhMIyz1Hkw9LkE8AZTvspCqaX3nJSqURcN5vmeXfWy9tw==}
+ '@angular/material@20.1.0-next.0':
+ resolution: {integrity: sha512-oVg2lwlWTgVqiX+UUTCBDpuMkz8I313fk+VIHAP+fh6kiaBbxuueyrp/NvSo7LkQRCpncm1F546mw36odqm2yQ==}
peerDependencies:
- '@angular/cdk': 20.0.0-next.8
+ '@angular/cdk': 20.1.0-next.0
'@angular/common': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0
'@angular/core': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0
'@angular/forms': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0
'@angular/platform-browser': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/1a12d97905f4af88ccc0b582864907729d23e23e':
- resolution: {tarball: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/1a12d97905f4af88ccc0b582864907729d23e23e}
- version: 0.0.0-a4538b2474d3c551f0217c3d1f5f3a99cf4f8eb7
+ '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/03896acc53dcd538c4b3b71240af9e344ba3cfec':
+ resolution: {tarball: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/03896acc53dcd538c4b3b71240af9e344ba3cfec}
+ version: 0.0.0-f072244090ead81c3fc2446317a1d4d7a6727537
hasBin: true
- '@angular/platform-browser@20.0.0-next.9':
- resolution: {integrity: sha512-gvyrm4o4UWn/VSiaJirI4hOf50bD6wF3QwpoP9NOG4YQyo5GjFQf6QPGVAfPgKjrp3eyTemVMhFq2yoVj9elNg==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ '@angular/platform-browser@20.1.0-next.0':
+ resolution: {integrity: sha512-PRFMUwV77ZV1/j+LDsS+qK0SWK3jCStPwhBt9VInsgaiHNtmo6Vo2x43H3iVudHEyHRpnyeHz27Im1ISkQ/h5Q==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/animations': 20.0.0-next.9
- '@angular/common': 20.0.0-next.9
- '@angular/core': 20.0.0-next.9
+ '@angular/animations': 20.1.0-next.0
+ '@angular/common': 20.1.0-next.0
+ '@angular/core': 20.1.0-next.0
peerDependenciesMeta:
'@angular/animations':
optional: true
- '@angular/platform-server@20.0.0-next.9':
- resolution: {integrity: sha512-+CxoXX5rh497SYwhCzCYV2OKboZ3iyHJgWDQTQ2PhdKrPb6iKRsTw7IcNj5CYKAPb/iFpQ4lBUNfYwRwirmoRg==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ '@angular/platform-server@20.1.0-next.0':
+ resolution: {integrity: sha512-7OBfo97q73lb2ldFtw5dEs+zBz+C8sZ2cliF3fRg/UI0OHQT6gb91z8aTTnPeHiKezhka6ZS91QIZSniiFuSQg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 20.0.0-next.9
- '@angular/compiler': 20.0.0-next.9
- '@angular/core': 20.0.0-next.9
- '@angular/platform-browser': 20.0.0-next.9
+ '@angular/common': 20.1.0-next.0
+ '@angular/compiler': 20.1.0-next.0
+ '@angular/core': 20.1.0-next.0
+ '@angular/platform-browser': 20.1.0-next.0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/router@20.0.0-next.9':
- resolution: {integrity: sha512-pkgcyBTfO1LIUHBfmnxQNDhWN6Gr7S4RNkvms9n/fj/athKEvAxSjwcqkrIFADkqOw0t2zRjdqEPIoHAouImHw==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ '@angular/router@20.1.0-next.0':
+ resolution: {integrity: sha512-kslvzaWPRzRUm0Z8fTkFcovGE/YQ3G3KSUIbx3L2CQuKBwinHk2aH4i+w6zKGietXMxBRg4hXRlpw9CSg/4LPA==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 20.0.0-next.9
- '@angular/core': 20.0.0-next.9
- '@angular/platform-browser': 20.0.0-next.9
+ '@angular/common': 20.1.0-next.0
+ '@angular/core': 20.1.0-next.0
+ '@angular/platform-browser': 20.1.0-next.0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/service-worker@20.0.0-next.9':
- resolution: {integrity: sha512-HCm5LaCp0C9fS9RsCCWcntNzVOyiE2WEbeyuDbAkrOJOahtPC1cgkixGgipOCc95ib6d3W8yIS7gwvH8tFt4qg==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ '@angular/service-worker@20.1.0-next.0':
+ resolution: {integrity: sha512-F3URivrAKcWwPupNuWdmNuTH1a8x3BHsEfkKhWzeww+ijBvzUkgRUNo2ELAZXSg7VIJ3YuLJ/ZGcUs6fptHTgg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
hasBin: true
peerDependencies:
- '@angular/core': 20.0.0-next.9
+ '@angular/core': 20.1.0-next.0
rxjs: ^6.5.3 || ^7.4.0
- '@asamuzakjp/css-color@3.1.5':
- resolution: {integrity: sha512-w7AmVyTTiU41fNLsFDf+gA2Dwtbx2EJtn2pbJNAGSRAg50loXy1uLXA3hEpD8+eydcomTurw09tq5/AyceCaGg==}
+ '@asamuzakjp/css-color@3.2.0':
+ resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
+
+ '@babel/code-frame@7.27.1':
+ resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.27.3':
+ resolution: {integrity: sha512-V42wFfx1ymFte+ecf6iXghnnP8kWTO+ZLXIyZq+1LAXHHvTZdVxicn4yiVYdYMGaCO3tmqub11AorKkv+iodqw==}
+ engines: {node: '>=6.9.0'}
- '@babel/code-frame@7.26.2':
- resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
+ '@babel/core@7.27.1':
+ resolution: {integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.8':
- resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
+ '@babel/core@7.27.4':
+ resolution: {integrity: sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.10':
- resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
+ '@babel/generator@7.27.3':
+ resolution: {integrity: sha512-xnlJYj5zepml8NXtjkG0WquFUv8RskFqyFcVgTBp5k+NaA/8uw/K+OSVf8AMGw5e9HKP2ETd5xpK5MLZQD6b4Q==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.27.0':
- resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
+ '@babel/generator@7.27.5':
+ resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.25.9':
- resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
+ '@babel/helper-annotate-as-pure@7.27.3':
+ resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.27.0':
- resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
+ '@babel/helper-compilation-targets@7.27.2':
+ resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.27.0':
- resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==}
+ '@babel/helper-create-class-features-plugin@7.27.1':
+ resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.27.0':
- resolution: {integrity: sha512-fO8l08T76v48BhpNRW/nQ0MxfnSdoSKUJBMjubOAYffsVuGG5qOfMq7N6Es7UJvi7Y8goXXo07EfcHZXDPuELQ==}
+ '@babel/helper-create-regexp-features-plugin@7.27.1':
+ resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1062,99 +1075,104 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-member-expression-to-functions@7.25.9':
- resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
+ '@babel/helper-member-expression-to-functions@7.27.1':
+ resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.25.9':
- resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
+ '@babel/helper-module-imports@7.27.1':
+ resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.26.0':
- resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
+ '@babel/helper-module-transforms@7.27.3':
+ resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.25.9':
- resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
+ '@babel/helper-optimise-call-expression@7.27.1':
+ resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.26.5':
- resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
+ '@babel/helper-plugin-utils@7.27.1':
+ resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.25.9':
- resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
+ '@babel/helper-remap-async-to-generator@7.27.1':
+ resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.26.5':
- resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
+ '@babel/helper-replace-supers@7.27.1':
+ resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
- resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
+ resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
'@babel/helper-split-export-declaration@7.24.7':
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.25.9':
- resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
+ '@babel/helper-string-parser@7.27.1':
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.25.9':
- resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
+ '@babel/helper-validator-identifier@7.27.1':
+ resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.9':
- resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
+ '@babel/helper-validator-option@7.27.1':
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.25.9':
- resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
+ '@babel/helper-wrap-function@7.27.1':
+ resolution: {integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.27.0':
- resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
+ '@babel/helpers@7.27.4':
+ resolution: {integrity: sha512-Y+bO6U+I7ZKaM5G5rDUZiYfUvQPUibYmAFe7EnKdnKBbVXDZxvp+MWOH5gYciY0EPk4EScsuFMQBbEfpdRKSCQ==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.27.0':
- resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
+ '@babel/parser@7.27.4':
+ resolution: {integrity: sha512-BRmLHGwpUqLFR2jzx9orBuX/ABDkj2jLKOXrHDTN2aOKL+jFDDKaRNo9nyYsIl9h/UE/7lMKdDjKQQyxKKDZ7g==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/parser@7.27.5':
+ resolution: {integrity: sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
- resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1':
+ resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
- resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1':
+ resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
- resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1':
+ resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
- resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1':
+ resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
- resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1':
+ resolution: {integrity: sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1165,14 +1183,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.26.0':
- resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
+ '@babel/plugin-syntax-import-assertions@7.27.1':
+ resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.26.0':
- resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
+ '@babel/plugin-syntax-import-attributes@7.27.1':
+ resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1183,314 +1201,314 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.25.9':
- resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
+ '@babel/plugin-transform-arrow-functions@7.27.1':
+ resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.26.8':
- resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==}
+ '@babel/plugin-transform-async-generator-functions@7.27.1':
+ resolution: {integrity: sha512-eST9RrwlpaoJBDHShc+DS2SG4ATTi2MYNb4OxYkf3n+7eb49LWpnS+HSpVfW4x927qQwgk8A2hGNVaajAEw0EA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.25.9':
- resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
+ '@babel/plugin-transform-async-to-generator@7.27.1':
+ resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.26.5':
- resolution: {integrity: sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==}
+ '@babel/plugin-transform-block-scoped-functions@7.27.1':
+ resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.27.0':
- resolution: {integrity: sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==}
+ '@babel/plugin-transform-block-scoping@7.27.3':
+ resolution: {integrity: sha512-+F8CnfhuLhwUACIJMLWnjz6zvzYM2r0yeIHKlbgfw7ml8rOMJsXNXV/hyRcb3nb493gRs4WvYpQAndWj/qQmkQ==}
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==}
+ '@babel/plugin-transform-class-properties@7.27.1':
+ resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.26.0':
- resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
+ '@babel/plugin-transform-class-static-block@7.27.1':
+ resolution: {integrity: sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.25.9':
- resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
+ '@babel/plugin-transform-classes@7.27.1':
+ resolution: {integrity: sha512-7iLhfFAubmpeJe/Wo2TVuDrykh/zlWXLzPNdL0Jqn/Xu8R3QQ8h9ff8FQoISZOsw74/HFqFI7NX63HN7QFIHKA==}
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==}
+ '@babel/plugin-transform-computed-properties@7.27.1':
+ resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.25.9':
- resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
+ '@babel/plugin-transform-destructuring@7.27.3':
+ resolution: {integrity: sha512-s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA==}
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==}
+ '@babel/plugin-transform-dotall-regex@7.27.1':
+ resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.25.9':
- resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
+ '@babel/plugin-transform-duplicate-keys@7.27.1':
+ resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
- resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1':
+ resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-dynamic-import@7.25.9':
- resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
+ '@babel/plugin-transform-dynamic-import@7.27.1':
+ resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.26.3':
- resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==}
+ '@babel/plugin-transform-exponentiation-operator@7.27.1':
+ resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.25.9':
- resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
+ '@babel/plugin-transform-export-namespace-from@7.27.1':
+ resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.26.9':
- resolution: {integrity: sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==}
+ '@babel/plugin-transform-for-of@7.27.1':
+ resolution: {integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.25.9':
- resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
+ '@babel/plugin-transform-function-name@7.27.1':
+ resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.25.9':
- resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
+ '@babel/plugin-transform-json-strings@7.27.1':
+ resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.25.9':
- resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
+ '@babel/plugin-transform-literals@7.27.1':
+ resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.25.9':
- resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1':
+ resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.25.9':
- resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
+ '@babel/plugin-transform-member-expression-literals@7.27.1':
+ resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.25.9':
- resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
+ '@babel/plugin-transform-modules-amd@7.27.1':
+ resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.26.3':
- resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
+ '@babel/plugin-transform-modules-commonjs@7.27.1':
+ resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==}
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==}
+ '@babel/plugin-transform-modules-systemjs@7.27.1':
+ resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.25.9':
- resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
+ '@babel/plugin-transform-modules-umd@7.27.1':
+ resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
- resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1':
+ resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.25.9':
- resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
+ '@babel/plugin-transform-new-target@7.27.1':
+ resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.26.6':
- resolution: {integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1':
+ resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.25.9':
- resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
+ '@babel/plugin-transform-numeric-separator@7.27.1':
+ resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.25.9':
- resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
+ '@babel/plugin-transform-object-rest-spread@7.27.3':
+ resolution: {integrity: sha512-7ZZtznF9g4l2JCImCo5LNKFHB5eXnN39lLtLY5Tg+VkR0jwOt7TBciMckuiQIOIW7L5tkQOCh3bVGYeXgMx52Q==}
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==}
+ '@babel/plugin-transform-object-super@7.27.1':
+ resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.25.9':
- resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
+ '@babel/plugin-transform-optional-catch-binding@7.27.1':
+ resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.25.9':
- resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
+ '@babel/plugin-transform-optional-chaining@7.27.1':
+ resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.25.9':
- resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
+ '@babel/plugin-transform-parameters@7.27.1':
+ resolution: {integrity: sha512-018KRk76HWKeZ5l4oTj2zPpSh+NbGdt0st5S6x0pga6HgrjBOJb24mMDHorFopOOd6YHkLgOZ+zaCjZGPO4aKg==}
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==}
+ '@babel/plugin-transform-private-methods@7.27.1':
+ resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.25.9':
- resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
+ '@babel/plugin-transform-private-property-in-object@7.27.1':
+ resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.25.9':
- resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
+ '@babel/plugin-transform-property-literals@7.27.1':
+ resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.27.0':
- resolution: {integrity: sha512-LX/vCajUJQDqE7Aum/ELUMZAY19+cDpghxrnyt5I1tV6X5PyC86AOoWXWFYFeIvauyeSA6/ktn4tQVn/3ZifsA==}
+ '@babel/plugin-transform-regenerator@7.27.4':
+ resolution: {integrity: sha512-Glp/0n8xuj+E1588otw5rjJkTXfzW7FjH3IIUrfqiZOPQCd2vbg8e+DQE8jK9g4V5/zrxFW+D9WM9gboRPELpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regexp-modifiers@7.26.0':
- resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
+ '@babel/plugin-transform-regexp-modifiers@7.27.1':
+ resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-reserved-words@7.25.9':
- resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
+ '@babel/plugin-transform-reserved-words@7.27.1':
+ resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.26.10':
- resolution: {integrity: sha512-NWaL2qG6HRpONTnj4JvDU6th4jYeZOJgu3QhmFTCihib0ermtOJqktA5BduGm3suhhVe9EMP9c9+mfJ/I9slqw==}
+ '@babel/plugin-transform-runtime@7.27.4':
+ resolution: {integrity: sha512-D68nR5zxU64EUzV8i7T3R5XP0Xhrou/amNnddsRQssx6GrTLdZl1rLxyjtVZBd+v/NVX4AbTPOB5aU8thAZV1A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.25.9':
- resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
+ '@babel/plugin-transform-shorthand-properties@7.27.1':
+ resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.25.9':
- resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
+ '@babel/plugin-transform-spread@7.27.1':
+ resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.25.9':
- resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
+ '@babel/plugin-transform-sticky-regex@7.27.1':
+ resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.26.8':
- resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==}
+ '@babel/plugin-transform-template-literals@7.27.1':
+ resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.27.0':
- resolution: {integrity: sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w==}
+ '@babel/plugin-transform-typeof-symbol@7.27.1':
+ resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.25.9':
- resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
+ '@babel/plugin-transform-unicode-escapes@7.27.1':
+ resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.25.9':
- resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
+ '@babel/plugin-transform-unicode-property-regex@7.27.1':
+ resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.25.9':
- resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
+ '@babel/plugin-transform-unicode-regex@7.27.1':
+ resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.25.9':
- resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1':
+ resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.26.9':
- resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==}
+ '@babel/preset-env@7.27.2':
+ resolution: {integrity: sha512-Ma4zSuYSlGNRlCLO+EAzLnCmJK2vdstgv+n7aUP+/IKZrOfWHOJVdSJtuub8RzHTj3ahD37k5OKJWvzf16TQyQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1500,28 +1518,28 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/runtime@7.27.0':
- resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
+ '@babel/runtime@7.27.6':
+ resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.27.0':
- resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
+ '@babel/template@7.27.2':
+ resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.27.0':
- resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
+ '@babel/traverse@7.27.4':
+ resolution: {integrity: sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.27.0':
- resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
+ '@babel/types@7.27.3':
+ resolution: {integrity: sha512-Y1GkI4ktrtvmawoSq+4FCVHNryea6uR+qUQy0AGxLSsjCX0nVmkYQMBLHDkXZuo5hGx7eYdnIaslsdBFm7zbUw==}
engines: {node: '>=6.9.0'}
'@bazel/bazelisk@1.26.0':
resolution: {integrity: sha512-bTNcHdGyEQ9r7SczEYUa0gkEQhJo1ld2BjXI8fWBvsUeoHi03QpUs2HZgDbjjrpQFQqG2ZbO7ihZvH8MjhUTHw==}
hasBin: true
- '@bazel/buildifier@8.0.3':
- resolution: {integrity: sha512-X4BbSHDZrvXaldGKW0AkBMC0HPOosJyPykE8Z5LpGBCmCdgIhRJHtAjBOG21NRmZpwI8fc7A1rhhSOJ7UGmbFg==}
+ '@bazel/buildifier@8.2.0':
+ resolution: {integrity: sha512-GKiCBXi8RcOH8Gc2zkeHJl30GGayplWVW/eMx9v1M2g53Iz2+CmacVW+LB5rIrZsLWiolaK9BFVWXRQol4Wt0Q==}
hasBin: true
'@colors/colors@1.5.0':
@@ -1536,28 +1554,28 @@ packages:
resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==}
engines: {node: '>=18'}
- '@csstools/css-calc@2.1.3':
- resolution: {integrity: sha512-XBG3talrhid44BY1x3MHzUx/aTG8+x/Zi57M4aTKK9RFB4aLlF3TTSzfzn8nWVHWL3FgAXAxmupmDd6VWww+pw==}
+ '@csstools/css-calc@2.1.4':
+ resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.4
- '@csstools/css-tokenizer': ^3.0.3
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/css-color-parser@3.0.9':
- resolution: {integrity: sha512-wILs5Zk7BU86UArYBJTPy/FMPPKVKHMj1ycCEyf3VUptol0JNRLFU/BZsJ4aiIHJEbSLiizzRrw8Pc1uAEDrXw==}
+ '@csstools/css-color-parser@3.0.10':
+ resolution: {integrity: sha512-TiJ5Ajr6WRd1r8HSiwJvZBiJOqtH86aHpUjq5aEKWHiII2Qfjqd/HCWKPOW8EP4vcspXbHnXrwIDlu5savQipg==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.4
- '@csstools/css-tokenizer': ^3.0.3
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/css-parser-algorithms@3.0.4':
- resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
+ '@csstools/css-parser-algorithms@3.0.5':
+ resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-tokenizer': ^3.0.3
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/css-tokenizer@3.0.3':
- resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
+ '@csstools/css-tokenizer@3.0.4':
+ resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
engines: {node: '>=18'}
'@cypress/request@3.0.8':
@@ -1568,158 +1586,158 @@ packages:
resolution: {integrity: sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==}
engines: {node: '>=14.17.0'}
- '@esbuild/aix-ppc64@0.25.3':
- resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==}
+ '@esbuild/aix-ppc64@0.25.5':
+ resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.25.3':
- resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==}
+ '@esbuild/android-arm64@0.25.5':
+ resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.25.3':
- resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==}
+ '@esbuild/android-arm@0.25.5':
+ resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.25.3':
- resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==}
+ '@esbuild/android-x64@0.25.5':
+ resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.25.3':
- resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==}
+ '@esbuild/darwin-arm64@0.25.5':
+ resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.3':
- resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==}
+ '@esbuild/darwin-x64@0.25.5':
+ resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.25.3':
- resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==}
+ '@esbuild/freebsd-arm64@0.25.5':
+ resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.3':
- resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==}
+ '@esbuild/freebsd-x64@0.25.5':
+ resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.25.3':
- resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==}
+ '@esbuild/linux-arm64@0.25.5':
+ resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.25.3':
- resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==}
+ '@esbuild/linux-arm@0.25.5':
+ resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.25.3':
- resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==}
+ '@esbuild/linux-ia32@0.25.5':
+ resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.25.3':
- resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==}
+ '@esbuild/linux-loong64@0.25.5':
+ resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.25.3':
- resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==}
+ '@esbuild/linux-mips64el@0.25.5':
+ resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.25.3':
- resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==}
+ '@esbuild/linux-ppc64@0.25.5':
+ resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.3':
- resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==}
+ '@esbuild/linux-riscv64@0.25.5':
+ resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.25.3':
- resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==}
+ '@esbuild/linux-s390x@0.25.5':
+ resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.25.3':
- resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==}
+ '@esbuild/linux-x64@0.25.5':
+ resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.3':
- resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==}
+ '@esbuild/netbsd-arm64@0.25.5':
+ resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.3':
- resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==}
+ '@esbuild/netbsd-x64@0.25.5':
+ resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.3':
- resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==}
+ '@esbuild/openbsd-arm64@0.25.5':
+ resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.3':
- resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==}
+ '@esbuild/openbsd-x64@0.25.5':
+ resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.25.3':
- resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==}
+ '@esbuild/sunos-x64@0.25.5':
+ resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.25.3':
- resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==}
+ '@esbuild/win32-arm64@0.25.5':
+ resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.25.3':
- resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==}
+ '@esbuild/win32-ia32@0.25.5':
+ resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.25.3':
- resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==}
+ '@esbuild/win32-x64@0.25.5':
+ resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.6.1':
- resolution: {integrity: sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==}
+ '@eslint-community/eslint-utils@4.7.0':
+ resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
@@ -1728,8 +1746,8 @@ packages:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/compat@1.2.8':
- resolution: {integrity: sha512-LqCYHdWL/QqKIJuZ/ucMAv8d4luKGs4oCPgpt8mWztQAtPrHfXKQ/XAUc8ljCHAfJCn6SvkpTcGt5Tsh8saowA==}
+ '@eslint/compat@1.2.9':
+ resolution: {integrity: sha512-gCdSY54n7k+driCadyMNv8JSPzYLeDVM/ikZRtvtROBpRdFSkS8W9A82MqsaY7lZuwL0wiapgD0NT1xT0hyJsA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^9.10.0
@@ -1741,55 +1759,63 @@ packages:
resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-helpers@0.2.1':
- resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==}
+ '@eslint/config-helpers@0.2.2':
+ resolution: {integrity: sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.13.0':
- resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==}
+ '@eslint/core@0.14.0':
+ resolution: {integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.3.1':
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.25.1':
- resolution: {integrity: sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==}
+ '@eslint/js@9.28.0':
+ resolution: {integrity: sha512-fnqSjGWd/CoIp4EXIxWVK/sHA6DOHN4+8Ix2cX5ycOY7LG0UY8nHCU5pIp2eaE1Mc7Qd8kHspYNzYXT2ojPLzg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.6':
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.2.8':
- resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==}
+ '@eslint/plugin-kit@0.3.1':
+ resolution: {integrity: sha512-0J+zgWxHN+xXONWIyPWKFMgVuJoZuGiIFu8yxk7RJjxkzpGmyja5wRFqZIVtjDVOQpV+Rw0iOAjYPE2eQyjr0w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@glideapps/ts-necessities@2.2.3':
resolution: {integrity: sha512-gXi0awOZLHk3TbW55GZLCPP6O+y/b5X1pBXKBVckFONSwF1z1E5ND2BGJsghQFah+pW7pkkyFb2VhUQI2qhL5w==}
- '@google-cloud/common@5.0.2':
- resolution: {integrity: sha512-V7bmBKYQyu0eVG2BFejuUjlBt+zrya6vtsKdY+JxMM/dNntPF41vZ9+LhOshEUH01zOHEqBSvI7Dad7ZS6aUeA==}
- engines: {node: '>=14.0.0'}
+ '@google-cloud/common@6.0.0':
+ resolution: {integrity: sha512-IXh04DlkLMxWgYLIUYuHHKXKOUwPDzDgke1ykkkJPe48cGIS9kkL2U/o0pm4ankHLlvzLF/ma1eO86n/bkumIA==}
+ engines: {node: '>=18'}
- '@google-cloud/precise-date@4.0.0':
- resolution: {integrity: sha512-1TUx3KdaU3cN7nfCdNf+UVqA/PSX29Cjcox3fZZBtINlRrXVTmUkQnCKv2MbBUbCopbK4olAT1IHl76uZyCiVA==}
- engines: {node: '>=14.0.0'}
+ '@google-cloud/precise-date@5.0.0':
+ resolution: {integrity: sha512-9h0Gvw92EvPdE8AK8AgZPbMnH5ftDyPtKm7/KUfcJVaPEPjwGDsJd1QV0H8esBDV4II41R/2lDWH1epBqIoKUw==}
+ engines: {node: '>=18'}
'@google-cloud/projectify@4.0.0':
resolution: {integrity: sha512-MmaX6HeSvyPbWGwFq7mXdo0uQZLGBYCwziiLIGq5JVX+/bdI3SAq6bP98trV5eTWfLuvsMcIC1YJOF2vfteLFA==}
engines: {node: '>=14.0.0'}
+ '@google-cloud/projectify@5.0.0':
+ resolution: {integrity: sha512-XXQLaIcLrOAMWvRrzz+mlUGtN6vlVNja3XQbMqRi/V7XJTAVwib3VcKd7oRwyZPkp7rBVlHGcaqdyGRrcnkhlA==}
+ engines: {node: '>=18'}
+
'@google-cloud/promisify@4.0.0':
resolution: {integrity: sha512-Orxzlfb9c67A15cq2JQEyVc7wEsmFBmHjZWZYQMUyJ1qivXyMwdyNOs9odi79hze+2zqdTtu1E19IM/FtqZ10g==}
engines: {node: '>=14'}
- '@google-cloud/spanner@7.19.1':
- resolution: {integrity: sha512-a7WlM4T3g5hslSBxQpsCxlH2IGgeVVEnDP5/v51kNlKv/W5PhBMqaHanodkUjbjegsQNlWAkqLClzIwtldfSXg==}
- engines: {node: '>=14.0.0'}
+ '@google-cloud/promisify@5.0.0':
+ resolution: {integrity: sha512-N8qS6dlORGHwk7WjGXKOSsLjIjNINCPicsOX6gyyLiYk7mq3MtII96NZ9N2ahwA2vnkLmZODOIH9rlNniYWvCQ==}
+ engines: {node: '>=18'}
+
+ '@google-cloud/spanner@8.0.0':
+ resolution: {integrity: sha512-IJn+8A3QZJfe7FUtWqHVNo3xJs7KFpurCWGWCiCz3oEh+BkRymKZ1QxfAbU2yGMDzTytLGQ2IV6T2r3cuo75/w==}
+ engines: {node: '>=18'}
- '@grpc/grpc-js@1.13.3':
- resolution: {integrity: sha512-FTXHdOoPbZrBjlVLHuKbDZnsTxXv2BlHF57xw6LuThXacXvtkahEPED0CKMk6obZDf65Hv4k3z62eyPNpvinIg==}
+ '@grpc/grpc-js@1.13.4':
+ resolution: {integrity: sha512-GsFaMXCkMqkKIvwCQjCrwH+GHbPKBjhwo/8ZuUkWHqbI73Kky9I+pQltrlT0+MWpedCoosda53lgjYfyEPgxBg==}
engines: {node: '>=12.10.0'}
'@grpc/proto-loader@0.7.15':
@@ -1816,12 +1842,12 @@ packages:
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
engines: {node: '>=18.18'}
- '@humanwhocodes/retry@0.4.2':
- resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
+ '@humanwhocodes/retry@0.4.3':
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
- '@inquirer/checkbox@4.1.5':
- resolution: {integrity: sha512-swPczVU+at65xa5uPfNP9u3qx/alNwiaykiI/ExpsmMSQW55trmZcwhYWzw/7fj+n6Q8z1eENvR7vFfq9oPSAQ==}
+ '@inquirer/checkbox@4.1.8':
+ resolution: {integrity: sha512-d/QAsnwuHX2OPolxvYcgSj7A9DO9H6gVOy2DvBTx+P2LH2iRTo/RSGV3iwCzW024nP9hw98KIuDmdyhZQj1UQg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1829,8 +1855,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/confirm@5.1.9':
- resolution: {integrity: sha512-NgQCnHqFTjF7Ys2fsqK2WtnA8X1kHyInyG+nMIuHowVTIgIuS10T4AznI/PvbqSpJqjCUqNBlKGh1v3bwLFL4w==}
+ '@inquirer/confirm@5.1.12':
+ resolution: {integrity: sha512-dpq+ielV9/bqgXRUbNH//KsY6WEw9DrGPmipkpmgC1Y46cwuBTNx7PXFWTjc3MQ+urcc0QxoVHcMI0FW4Ok0hg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1838,8 +1864,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/core@10.1.10':
- resolution: {integrity: sha512-roDaKeY1PYY0aCqhRmXihrHjoSW2A00pV3Ke5fTpMCkzcGF64R8e0lw3dK+eLEHwS4vB5RnW1wuQmvzoRul8Mw==}
+ '@inquirer/core@10.1.13':
+ resolution: {integrity: sha512-1viSxebkYN2nJULlzCxES6G9/stgHSepZ9LqqfdIGPHj5OHhiBUXVS0a6R0bEC2A+VL4D9w6QB66ebCr6HGllA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1847,8 +1873,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/editor@4.2.10':
- resolution: {integrity: sha512-5GVWJ+qeI6BzR6TIInLP9SXhWCEcvgFQYmcRG6d6RIlhFjM5TyG18paTGBgRYyEouvCmzeco47x9zX9tQEofkw==}
+ '@inquirer/editor@4.2.13':
+ resolution: {integrity: sha512-WbicD9SUQt/K8O5Vyk9iC2ojq5RHoCLK6itpp2fHsWe44VxxcA9z3GTWlvjSTGmMQpZr+lbVmrxdHcumJoLbMA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1856,8 +1882,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/expand@4.0.12':
- resolution: {integrity: sha512-jV8QoZE1fC0vPe6TnsOfig+qwu7Iza1pkXoUJ3SroRagrt2hxiL+RbM432YAihNR7m7XnU0HWl/WQ35RIGmXHw==}
+ '@inquirer/expand@4.0.15':
+ resolution: {integrity: sha512-4Y+pbr/U9Qcvf+N/goHzPEXiHH8680lM3Dr3Y9h9FFw4gHS+zVpbj8LfbKWIb/jayIB4aSO4pWiBTrBYWkvi5A==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1865,12 +1891,12 @@ packages:
'@types/node':
optional: true
- '@inquirer/figures@1.0.11':
- resolution: {integrity: sha512-eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw==}
+ '@inquirer/figures@1.0.12':
+ resolution: {integrity: sha512-MJttijd8rMFcKJC8NYmprWr6hD3r9Gd9qUC0XwPNwoEPWSMVJwA2MlXxF+nhZZNMY+HXsWa+o7KY2emWYIn0jQ==}
engines: {node: '>=18'}
- '@inquirer/input@4.1.9':
- resolution: {integrity: sha512-mshNG24Ij5KqsQtOZMgj5TwEjIf+F2HOESk6bjMwGWgcH5UBe8UoljwzNFHqdMbGYbgAf6v2wU/X9CAdKJzgOA==}
+ '@inquirer/input@4.1.12':
+ resolution: {integrity: sha512-xJ6PFZpDjC+tC1P8ImGprgcsrzQRsUh9aH3IZixm1lAZFK49UGHxM3ltFfuInN2kPYNfyoPRh+tU4ftsjPLKqQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1878,8 +1904,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/number@3.0.12':
- resolution: {integrity: sha512-7HRFHxbPCA4e4jMxTQglHJwP+v/kpFsCf2szzfBHy98Wlc3L08HL76UDiA87TOdX5fwj2HMOLWqRWv9Pnn+Z5Q==}
+ '@inquirer/number@3.0.15':
+ resolution: {integrity: sha512-xWg+iYfqdhRiM55MvqiTCleHzszpoigUpN5+t1OMcRkJrUrw7va3AzXaxvS+Ak7Gny0j2mFSTv2JJj8sMtbV2g==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1887,8 +1913,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/password@4.0.12':
- resolution: {integrity: sha512-FlOB0zvuELPEbnBYiPaOdJIaDzb2PmJ7ghi/SVwIHDDSQ2K4opGBkF+5kXOg6ucrtSUQdLhVVY5tycH0j0l+0g==}
+ '@inquirer/password@4.0.15':
+ resolution: {integrity: sha512-75CT2p43DGEnfGTaqFpbDC2p2EEMrq0S+IRrf9iJvYreMy5mAWj087+mdKyLHapUEPLjN10mNvABpGbk8Wdraw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1896,8 +1922,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/prompts@7.5.0':
- resolution: {integrity: sha512-tk8Bx7l5AX/CR0sVfGj3Xg6v7cYlFBkEahH+EgBB+cZib6Fc83dwerTbzj7f2+qKckjIUGsviWRI1d7lx6nqQA==}
+ '@inquirer/prompts@7.5.3':
+ resolution: {integrity: sha512-8YL0WiV7J86hVAxrh3fE5mDCzcTDe1670unmJRz6ArDgN+DBK1a0+rbnNWp4DUB5rPMwqD5ZP6YHl9KK1mbZRg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1905,8 +1931,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/rawlist@4.1.0':
- resolution: {integrity: sha512-6ob45Oh9pXmfprKqUiEeMz/tjtVTFQTgDDz1xAMKMrIvyrYjAmRbQZjMJfsictlL4phgjLhdLu27IkHNnNjB7g==}
+ '@inquirer/rawlist@4.1.3':
+ resolution: {integrity: sha512-7XrV//6kwYumNDSsvJIPeAqa8+p7GJh7H5kRuxirct2cgOcSWwwNGoXDRgpNFbY/MG2vQ4ccIWCi8+IXXyFMZA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1914,8 +1940,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/search@3.0.12':
- resolution: {integrity: sha512-H/kDJA3kNlnNIjB8YsaXoQI0Qccgf0Na14K1h8ExWhNmUg2E941dyFPrZeugihEa9AZNW5NdsD/NcvUME83OPQ==}
+ '@inquirer/search@3.0.15':
+ resolution: {integrity: sha512-YBMwPxYBrADqyvP4nNItpwkBnGGglAvCLVW8u4pRmmvOsHUtCAUIMbUrLX5B3tFL1/WsLGdQ2HNzkqswMs5Uaw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1923,8 +1949,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/select@4.2.0':
- resolution: {integrity: sha512-KkXQ4aSySWimpV4V/TUJWdB3tdfENZUU765GjOIZ0uPwdbGIG6jrxD4dDf1w68uP+DVtfNhr1A92B+0mbTZ8FA==}
+ '@inquirer/select@4.2.3':
+ resolution: {integrity: sha512-OAGhXU0Cvh0PhLz9xTF/kx6g6x+sP+PcyTiLvCrewI99P3BBeexD+VbuwkNDvqGkk3y2h5ZiWLeRP7BFlhkUDg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1936,8 +1962,8 @@ packages:
resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==}
engines: {node: '>=18'}
- '@inquirer/type@3.0.6':
- resolution: {integrity: sha512-/mKVCtVpyBu3IDarv0G+59KC4stsD5mDsGpYh+GKs1NZT88Jh52+cuoA1AtLk2Q0r/quNl+1cSUyLRHBFeD0XA==}
+ '@inquirer/type@3.0.7':
+ resolution: {integrity: sha512-PfunHQcjwnju84L+ycmcMKB/pTPIngjUJvfnRhKY6FKPuYXlM4aQCb/nIdTFR6BEhMjFvngzvng/vBAJMZpLSA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1996,8 +2022,8 @@ packages:
peerDependencies:
tslib: '2'
- '@jsonjoy.com/util@1.5.0':
- resolution: {integrity: sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==}
+ '@jsonjoy.com/util@1.6.0':
+ resolution: {integrity: sha512-sw/RMbehRhN68WRtcKCpQOPfnH6lLP4GJfqzi3iYej8tnzpZUDr6UkZYJjcjjC0FWEJOJbyM3PTIwxucUmDG2A==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
@@ -2005,44 +2031,49 @@ packages:
'@leichtgewicht/ip-codec@2.0.5':
resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
- '@listr2/prompt-adapter-inquirer@2.0.21':
- resolution: {integrity: sha512-can62OlOPusZwYfKfd0SV6znsSFbiuJw/lvvRSAAdzqUCTE/Vn8FydLGAfEvGbDALdfqvazSj6tnVJKQxj9iXw==}
+ '@listr2/prompt-adapter-inquirer@2.0.22':
+ resolution: {integrity: sha512-hV36ZoY+xKL6pYOt1nPNnkciFkn89KZwqLhAFzJvYysAvL5uBQdiADZx/8bIDXIukzzwG0QlPYolgMzQUtKgpQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@inquirer/prompts': '>= 3 < 8'
- '@lmdb/lmdb-darwin-arm64@3.2.6':
- resolution: {integrity: sha512-yF/ih9EJJZc72psFQbwnn8mExIWfTnzWJg+N02hnpXtDPETYLmQswIMBn7+V88lfCaFrMozJsUvcEQIkEPU0Gg==}
+ '@lmdb/lmdb-darwin-arm64@3.4.0':
+ resolution: {integrity: sha512-VP7cMUlyXvmClX33iM21tKRyTZFCJGZg1YSQIcAXwWxnj7J50+Tqs9KhDjCSuMu4WHLWF59ATIlLD1MKgogYDw==}
cpu: [arm64]
os: [darwin]
- '@lmdb/lmdb-darwin-x64@3.2.6':
- resolution: {integrity: sha512-5BbCumsFLbCi586Bb1lTWQFkekdQUw8/t8cy++Uq251cl3hbDIGEwD9HAwh8H6IS2F6QA9KdKmO136LmipRNkg==}
+ '@lmdb/lmdb-darwin-x64@3.4.0':
+ resolution: {integrity: sha512-h97XIhEwO1uczrX4rLDo0QEgyB8MmawEjvLqjXucDRlpvOGGQALlNYf9DedMdoofLNnMK+mboWvYEcL/Y5Kk6Q==}
cpu: [x64]
os: [darwin]
- '@lmdb/lmdb-linux-arm64@3.2.6':
- resolution: {integrity: sha512-l5VmJamJ3nyMmeD1ANBQCQqy7do1ESaJQfKPSm2IG9/ADZryptTyCj8N6QaYgIWewqNUrcbdMkJajRQAt5Qjfg==}
+ '@lmdb/lmdb-linux-arm64@3.4.0':
+ resolution: {integrity: sha512-3tlodxrfszxOX0M1gkx2pucb++5LfdiHLA2uCLld+UJy6S0oPvqiWgAxUT4CyAX7X0Gy+JT8h0Nv6yDlwnC5EA==}
cpu: [arm64]
os: [linux]
- '@lmdb/lmdb-linux-arm@3.2.6':
- resolution: {integrity: sha512-+6XgLpMb7HBoWxXj+bLbiiB4s0mRRcDPElnRS3LpWRzdYSe+gFk5MT/4RrVNqd2MESUDmb53NUXw1+BP69bjiQ==}
+ '@lmdb/lmdb-linux-arm@3.4.0':
+ resolution: {integrity: sha512-2LP+By96O1PG9o1on+3RJlUwD31xMi1VaWlDx8Y7fI6KYeXt89ZkJivDZEWd6KG9D8fNbAcrdkt+9rwFoeNMvg==}
cpu: [arm]
os: [linux]
- '@lmdb/lmdb-linux-x64@3.2.6':
- resolution: {integrity: sha512-nDYT8qN9si5+onHYYaI4DiauDMx24OAiuZAUsEqrDy+ja/3EbpXPX/VAkMV8AEaQhy3xc4dRC+KcYIvOFefJ4Q==}
+ '@lmdb/lmdb-linux-x64@3.4.0':
+ resolution: {integrity: sha512-VnpUdqJggi8fc9sI1H50Bsd00ywL0O1OtaNkBYVwhmHlD7elaTElpbLo6FDEyCND3u4zxw061WPWpdgf5TZcuQ==}
cpu: [x64]
os: [linux]
- '@lmdb/lmdb-win32-x64@3.2.6':
- resolution: {integrity: sha512-XlqVtILonQnG+9fH2N3Aytria7P/1fwDgDhl29rde96uH2sLB8CHORIf2PfuLVzFQJ7Uqp8py9AYwr3ZUCFfWg==}
+ '@lmdb/lmdb-win32-arm64@3.4.0':
+ resolution: {integrity: sha512-/17y6BqO09MbhmwPsg+5yN8GlGb3rv7Vt644lhhascLbVYJdmwSdpss0vNqFYwPdVEkmhvwmbXWLeXFaDxSJQw==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@lmdb/lmdb-win32-x64@3.4.0':
+ resolution: {integrity: sha512-x3LZ2Zq/lIZLEc3Fv54/6CQg9w/CWGc1cz0p4QFQei/1OmrOB4sZEHgD/miAp8eDAHe0g+KqW13k7S9C0TBFmA==}
cpu: [x64]
os: [win32]
- '@mdn/browser-compat-data@6.0.9':
- resolution: {integrity: sha512-IA/ER+n8ugvJakp4WRdTXVSvtU+QJEQbfdgLVbLcL6AaFDOeuAXUR1AzS7YsgZ7AZsfUVfYLhXJX8ubGJQ+SFA==}
+ '@mdn/browser-compat-data@6.0.19':
+ resolution: {integrity: sha512-P7e+M/HI9LKUEWIMkBzHY9RzsghjfLvz7an7maknAoaDlAjxj1Hnw8uTRyP5b5YAOMWZRaBDYJLDlsyfllP22A==}
'@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==}
@@ -2207,102 +2238,92 @@ packages:
resolution: {integrity: sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@npmcli/package-json@6.1.1':
- resolution: {integrity: sha512-d5qimadRAUCO4A/Txw71VM7UrRZzV+NPclxz/dc+M6B2oYwjWTjqh8HA/sGQgs9VZuJ6I/P7XIAlJvgrl27ZOw==}
+ '@npmcli/package-json@6.2.0':
+ resolution: {integrity: sha512-rCNLSB/JzNvot0SEyXqWZ7tX2B5dD2a1br2Dp0vSYVo5jh8Z0EZ7lS9TsZ1UtziddB1UfNUaMCc538/HztnJGA==}
engines: {node: ^18.17.0 || >=20.5.0}
'@npmcli/promise-spawn@8.0.2':
resolution: {integrity: sha512-/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@npmcli/redact@3.2.0':
- resolution: {integrity: sha512-NyJXHoZwJE0iUsCDTclXf1bWHJTsshtnp5xUN6F2vY+OLJv6d2cNc4Do6fKNkmPToB0GzoffxRh405ibTwG+Og==}
+ '@npmcli/redact@3.2.2':
+ resolution: {integrity: sha512-7VmYAmk4csGv08QzrDKScdzn11jHPFGyqJW39FyPgPuAp3zIaUmuCo1yxw9aGs+NEJuTGQ9Gwqpt93vtJubucg==}
engines: {node: ^18.17.0 || >=20.5.0}
'@npmcli/run-script@9.1.0':
resolution: {integrity: sha512-aoNSbxtkePXUlbZB+anS1LqsJdctG5n3UVhfU47+CDdwMi6uNTBMF9gPcQRnqghQd2FGzcwwIFBruFMxjhBewg==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@octokit/auth-token@5.1.2':
- resolution: {integrity: sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==}
- engines: {node: '>= 18'}
-
- '@octokit/core@6.1.5':
- resolution: {integrity: sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==}
- engines: {node: '>= 18'}
+ '@octokit/auth-token@6.0.0':
+ resolution: {integrity: sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w==}
+ engines: {node: '>= 20'}
- '@octokit/endpoint@10.1.4':
- resolution: {integrity: sha512-OlYOlZIsfEVZm5HCSR8aSg02T2lbUWOsCQoPKfTXJwDzcHQBrVBGdGXb89dv2Kw2ToZaRtudp8O3ZIYoaOjKlA==}
- engines: {node: '>= 18'}
+ '@octokit/core@7.0.2':
+ resolution: {integrity: sha512-ODsoD39Lq6vR6aBgvjTnA3nZGliknKboc9Gtxr7E4WDNqY24MxANKcuDQSF0jzapvGb3KWOEDrKfve4HoWGK+g==}
+ engines: {node: '>= 20'}
- '@octokit/graphql@8.2.2':
- resolution: {integrity: sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==}
- engines: {node: '>= 18'}
+ '@octokit/endpoint@11.0.0':
+ resolution: {integrity: sha512-hoYicJZaqISMAI3JfaDr1qMNi48OctWuOih1m80bkYow/ayPw6Jj52tqWJ6GEoFTk1gBqfanSoI1iY99Z5+ekQ==}
+ engines: {node: '>= 20'}
- '@octokit/openapi-types@24.2.0':
- resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==}
+ '@octokit/graphql@9.0.1':
+ resolution: {integrity: sha512-j1nQNU1ZxNFx2ZtKmL4sMrs4egy5h65OMDmSbVyuCzjOcwsHq6EaYjOTGXPQxgfiN8dJ4CriYHk6zF050WEULg==}
+ engines: {node: '>= 20'}
- '@octokit/openapi-types@25.0.0':
- resolution: {integrity: sha512-FZvktFu7HfOIJf2BScLKIEYjDsw6RKc7rBJCdvCTfKsVnx2GEB/Nbzjr29DUdb7vQhlzS/j8qDzdditP0OC6aw==}
+ '@octokit/openapi-types@25.1.0':
+ resolution: {integrity: sha512-idsIggNXUKkk0+BExUn1dQ92sfysJrje03Q0bv0e+KPLrvyqZF8MnBpFz8UNfYDwB3Ie7Z0TByjWfzxt7vseaA==}
- '@octokit/plugin-paginate-rest@11.6.0':
- resolution: {integrity: sha512-n5KPteiF7pWKgBIBJSk8qzoZWcUkza2O6A0za97pMGVrGfPdltxrfmfF5GucHYvHGZD8BdaZmmHGz5cX/3gdpw==}
- engines: {node: '>= 18'}
+ '@octokit/plugin-paginate-rest@13.0.1':
+ resolution: {integrity: sha512-m1KvHlueScy4mQJWvFDCxFBTIdXS0K1SgFGLmqHyX90mZdCIv6gWBbKRhatxRjhGlONuTK/hztYdaqrTXcFZdQ==}
+ engines: {node: '>= 20'}
peerDependencies:
'@octokit/core': '>=6'
- '@octokit/plugin-request-log@5.3.1':
- resolution: {integrity: sha512-n/lNeCtq+9ofhC15xzmJCNKP2BWTv8Ih2TTy+jatNCCq/gQP/V7rK3fjIfuz0pDWDALO/o/4QY4hyOF6TQQFUw==}
- engines: {node: '>= 18'}
+ '@octokit/plugin-request-log@6.0.0':
+ resolution: {integrity: sha512-UkOzeEN3W91/eBq9sPZNQ7sUBvYCqYbrrD8gTbBuGtHEuycE4/awMXcYvx6sVYo7LypPhmQwwpUe4Yyu4QZN5Q==}
+ engines: {node: '>= 20'}
peerDependencies:
'@octokit/core': '>=6'
- '@octokit/plugin-rest-endpoint-methods@13.5.0':
- resolution: {integrity: sha512-9Pas60Iv9ejO3WlAX3maE1+38c5nqbJXV5GrncEfkndIpZrJ/WPMRd2xYDcPPEt5yzpxcjw9fWNoPhsSGzqKqw==}
- engines: {node: '>= 18'}
+ '@octokit/plugin-rest-endpoint-methods@16.0.0':
+ resolution: {integrity: sha512-kJVUQk6/dx/gRNLWUnAWKFs1kVPn5O5CYZyssyEoNYaFedqZxsfYs7DwI3d67hGz4qOwaJ1dpm07hOAD1BXx6g==}
+ engines: {node: '>= 20'}
peerDependencies:
'@octokit/core': '>=6'
- '@octokit/request-error@6.1.8':
- resolution: {integrity: sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==}
- engines: {node: '>= 18'}
-
- '@octokit/request@9.2.3':
- resolution: {integrity: sha512-Ma+pZU8PXLOEYzsWf0cn/gY+ME57Wq8f49WTXA8FMHp2Ps9djKw//xYJ1je8Hm0pR2lU9FUGeJRWOtxq6olt4w==}
- engines: {node: '>= 18'}
+ '@octokit/request-error@7.0.0':
+ resolution: {integrity: sha512-KRA7VTGdVyJlh0cP5Tf94hTiYVVqmt2f3I6mnimmaVz4UG3gQV/k4mDJlJv3X67iX6rmN7gSHCF8ssqeMnmhZg==}
+ engines: {node: '>= 20'}
- '@octokit/rest@21.1.1':
- resolution: {integrity: sha512-sTQV7va0IUVZcntzy1q3QqPm/r8rWtDCqpRAmb8eXXnKkjoQEtFe3Nt5GTVsHft+R6jJoHeSiVLcgcvhtue/rg==}
- engines: {node: '>= 18'}
+ '@octokit/request@10.0.2':
+ resolution: {integrity: sha512-iYj4SJG/2bbhh+iIpFmG5u49DtJ4lipQ+aPakjL9OKpsGY93wM8w06gvFbEQxcMsZcCvk5th5KkIm2m8o14aWA==}
+ engines: {node: '>= 20'}
- '@octokit/types@13.10.0':
- resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==}
+ '@octokit/rest@22.0.0':
+ resolution: {integrity: sha512-z6tmTu9BTnw51jYGulxrlernpsQYXpui1RK21vmXn8yF5bp6iX16yfTtJYGK5Mh1qDkvDOmp2n8sRMcQmR8jiA==}
+ engines: {node: '>= 20'}
- '@octokit/types@14.0.0':
- resolution: {integrity: sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==}
+ '@octokit/types@14.1.0':
+ resolution: {integrity: sha512-1y6DgTy8Jomcpu33N+p5w58l6xyt55Ar2I91RPiIA0xCJBXyUAhXCcmZaDWSANiha7R9a6qJJ2CRomGPZ6f46g==}
'@opentelemetry/api@1.9.0':
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
engines: {node: '>=8.0.0'}
- '@opentelemetry/context-async-hooks@1.30.1':
- resolution: {integrity: sha512-s5vvxXPVdjqS3kTLKMeBMvop9hbWkwzBpu+mUO2M7sZtlkyDJGwFe33wRKnbaYDo8ExRVBIIdwIGrqpxHuKttA==}
- engines: {node: '>=14'}
+ '@opentelemetry/context-async-hooks@2.0.1':
+ resolution: {integrity: sha512-XuY23lSI3d4PEqKA+7SLtAgwqIfc6E/E9eAQWLN1vlpC53ybO3o6jW4BsXo1xvz9lYyyWItfQDDLzezER01mCw==}
+ engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
- '@opentelemetry/core@1.30.1':
- resolution: {integrity: sha512-OOCM2C/QIURhJMuKaekP3TRBxBKxG/TWWA0TL2J6nXUtDnuCtccy49LUJF8xPFXMX+0LMcxFpCo8M9cGY1W6rQ==}
- engines: {node: '>=14'}
+ '@opentelemetry/core@2.0.1':
+ resolution: {integrity: sha512-MaZk9SJIDgo1peKevlbhP6+IwIiNPNmswNL4AF0WaQJLbHXjr9SrZMgS12+iqr9ToV4ZVosCcc0f8Rg67LXjxw==}
+ engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
- '@opentelemetry/semantic-conventions@1.28.0':
- resolution: {integrity: sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA==}
- engines: {node: '>=14'}
-
- '@opentelemetry/semantic-conventions@1.32.0':
- resolution: {integrity: sha512-s0OpmpQFSfMrmedAn9Lhg4KWJELHCU6uU9dtIJ28N8UGhf9Y55im5X8fEzwhwDwiSqN+ZPSNrDJF7ivf/AuRPQ==}
+ '@opentelemetry/semantic-conventions@1.34.0':
+ resolution: {integrity: sha512-aKcOkyrorBGlajjRdVoJWHTxfxO1vCNHLJVlSDaRHDIdjU+pX8IYQPvPDkYiujKLbRnWU+1TBwEt0QRgSm4SGA==}
engines: {node: '>=14'}
'@parcel/watcher-android-arm64@2.5.1':
@@ -2421,8 +2442,8 @@ packages:
'@protobufjs/utf8@1.1.0':
resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
- '@puppeteer/browsers@2.10.2':
- resolution: {integrity: sha512-i4Ez+s9oRWQbNjtI/3+jxr7OH508mjAKvza0ekPJem0ZtmsYHP3B5dq62+IaBHKaGCOuqJxXzvFLUhJvQ6jtsQ==}
+ '@puppeteer/browsers@2.10.5':
+ resolution: {integrity: sha512-eifa0o+i8dERnngJwKrfp3dEq7ia5XFyoqB17S4gK8GhsQE4/P8nxOfQSE0zQHxzzLo/cmF+7+ywEQ7wK7Fb+w==}
engines: {node: '>=18'}
hasBin: true
@@ -2480,108 +2501,108 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.40.1':
- resolution: {integrity: sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==}
+ '@rollup/rollup-android-arm-eabi@4.41.1':
+ resolution: {integrity: sha512-NELNvyEWZ6R9QMkiytB4/L4zSEaBC03KIXEghptLGLZWJ6VPrL63ooZQCOnlx36aQPGhzuOMwDerC1Eb2VmrLw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.40.1':
- resolution: {integrity: sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==}
+ '@rollup/rollup-android-arm64@4.41.1':
+ resolution: {integrity: sha512-DXdQe1BJ6TK47ukAoZLehRHhfKnKg9BjnQYUu9gzhI8Mwa1d2fzxA1aw2JixHVl403bwp1+/o/NhhHtxWJBgEA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.40.1':
- resolution: {integrity: sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==}
+ '@rollup/rollup-darwin-arm64@4.41.1':
+ resolution: {integrity: sha512-5afxvwszzdulsU2w8JKWwY8/sJOLPzf0e1bFuvcW5h9zsEg+RQAojdW0ux2zyYAz7R8HvvzKCjLNJhVq965U7w==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.40.1':
- resolution: {integrity: sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==}
+ '@rollup/rollup-darwin-x64@4.41.1':
+ resolution: {integrity: sha512-egpJACny8QOdHNNMZKf8xY0Is6gIMz+tuqXlusxquWu3F833DcMwmGM7WlvCO9sB3OsPjdC4U0wHw5FabzCGZg==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.40.1':
- resolution: {integrity: sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==}
+ '@rollup/rollup-freebsd-arm64@4.41.1':
+ resolution: {integrity: sha512-DBVMZH5vbjgRk3r0OzgjS38z+atlupJ7xfKIDJdZZL6sM6wjfDNo64aowcLPKIx7LMQi8vybB56uh1Ftck/Atg==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.40.1':
- resolution: {integrity: sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==}
+ '@rollup/rollup-freebsd-x64@4.41.1':
+ resolution: {integrity: sha512-3FkydeohozEskBxNWEIbPfOE0aqQgB6ttTkJ159uWOFn42VLyfAiyD9UK5mhu+ItWzft60DycIN1Xdgiy8o/SA==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
- resolution: {integrity: sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.41.1':
+ resolution: {integrity: sha512-wC53ZNDgt0pqx5xCAgNunkTzFE8GTgdZ9EwYGVcg+jEjJdZGtq9xPjDnFgfFozQI/Xm1mh+D9YlYtl+ueswNEg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.40.1':
- resolution: {integrity: sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.41.1':
+ resolution: {integrity: sha512-jwKCca1gbZkZLhLRtsrka5N8sFAaxrGz/7wRJ8Wwvq3jug7toO21vWlViihG85ei7uJTpzbXZRcORotE+xyrLA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.40.1':
- resolution: {integrity: sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==}
+ '@rollup/rollup-linux-arm64-gnu@4.41.1':
+ resolution: {integrity: sha512-g0UBcNknsmmNQ8V2d/zD2P7WWfJKU0F1nu0k5pW4rvdb+BIqMm8ToluW/eeRmxCared5dD76lS04uL4UaNgpNA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.40.1':
- resolution: {integrity: sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==}
+ '@rollup/rollup-linux-arm64-musl@4.41.1':
+ resolution: {integrity: sha512-XZpeGB5TKEZWzIrj7sXr+BEaSgo/ma/kCgrZgL0oo5qdB1JlTzIYQKel/RmhT6vMAvOdM2teYlAaOGJpJ9lahg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
- resolution: {integrity: sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.41.1':
+ resolution: {integrity: sha512-bkCfDJ4qzWfFRCNt5RVV4DOw6KEgFTUZi2r2RuYhGWC8WhCA8lCAJhDeAmrM/fdiAH54m0mA0Vk2FGRPyzI+tw==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
- resolution: {integrity: sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.41.1':
+ resolution: {integrity: sha512-3mr3Xm+gvMX+/8EKogIZSIEF0WUu0HL9di+YWlJpO8CQBnoLAEL/roTCxuLncEdgcfJcvA4UMOf+2dnjl4Ut1A==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.40.1':
- resolution: {integrity: sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==}
+ '@rollup/rollup-linux-riscv64-gnu@4.41.1':
+ resolution: {integrity: sha512-3rwCIh6MQ1LGrvKJitQjZFuQnT2wxfU+ivhNBzmxXTXPllewOF7JR1s2vMX/tWtUYFgphygxjqMl76q4aMotGw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.40.1':
- resolution: {integrity: sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==}
+ '@rollup/rollup-linux-riscv64-musl@4.41.1':
+ resolution: {integrity: sha512-LdIUOb3gvfmpkgFZuccNa2uYiqtgZAz3PTzjuM5bH3nvuy9ty6RGc/Q0+HDFrHrizJGVpjnTZ1yS5TNNjFlklw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.40.1':
- resolution: {integrity: sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==}
+ '@rollup/rollup-linux-s390x-gnu@4.41.1':
+ resolution: {integrity: sha512-oIE6M8WC9ma6xYqjvPhzZYk6NbobIURvP/lEbh7FWplcMO6gn7MM2yHKA1eC/GvYwzNKK/1LYgqzdkZ8YFxR8g==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.40.1':
- resolution: {integrity: sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==}
+ '@rollup/rollup-linux-x64-gnu@4.41.1':
+ resolution: {integrity: sha512-cWBOvayNvA+SyeQMp79BHPK8ws6sHSsYnK5zDcsC3Hsxr1dgTABKjMnMslPq1DvZIp6uO7kIWhiGwaTdR4Og9A==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.40.1':
- resolution: {integrity: sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==}
+ '@rollup/rollup-linux-x64-musl@4.41.1':
+ resolution: {integrity: sha512-y5CbN44M+pUCdGDlZFzGGBSKCA4A/J2ZH4edTYSSxFg7ce1Xt3GtydbVKWLlzL+INfFIZAEg1ZV6hh9+QQf9YQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.40.1':
- resolution: {integrity: sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==}
+ '@rollup/rollup-win32-arm64-msvc@4.41.1':
+ resolution: {integrity: sha512-lZkCxIrjlJlMt1dLO/FbpZbzt6J/A8p4DnqzSa4PWqPEUUUnzXLeki/iyPLfV0BmHItlYgHUqJe+3KiyydmiNQ==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.40.1':
- resolution: {integrity: sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==}
+ '@rollup/rollup-win32-ia32-msvc@4.41.1':
+ resolution: {integrity: sha512-+psFT9+pIh2iuGsxFYYa/LhS5MFKmuivRsx9iPJWNSGbh2XVEjk90fmpUEjCnILPEPJnikAU6SFDiEUyOv90Pg==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.40.1':
- resolution: {integrity: sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==}
+ '@rollup/rollup-win32-x64-msvc@4.41.1':
+ resolution: {integrity: sha512-Wq2zpapRYLfi4aKxf2Xff0tN+7slj2d4R87WEzqw7ZLsVvO5zwYCIuEGSZYiK41+GlwUo1HiR+GdkLEJnCKTCw==}
cpu: [x64]
os: [win32]
- '@rollup/wasm-node@4.40.1':
- resolution: {integrity: sha512-3nXUKfAq1nD/vgQi7ncLNyn8jx1PAsN6njSS9baCpI9JHk92Y/JOWZib7HvLJ5BBZ4MC5NSeqkpUKnmceXyzXA==}
+ '@rollup/wasm-node@4.41.1':
+ resolution: {integrity: sha512-70qfem+U3hAgwNgOlnUQiIdfKHLELUxsEWbFWg3aErPUvsyXYF1HALJBwoDgMUhRWyn+SqWVneDTnO/Kbey9hg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -2596,8 +2617,8 @@ packages:
resolution: {integrity: sha512-nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@sigstore/protobuf-specs@0.4.1':
- resolution: {integrity: sha512-7MJXQhIm7dWF9zo7rRtMYh8d2gSnc3+JddeQOTIg6gUN7FjcuckZ9EwGq+ReeQtbbl3Tbf5YqRrWxA1DMfIn+w==}
+ '@sigstore/protobuf-specs@0.4.2':
+ resolution: {integrity: sha512-F2ye+n1INNhqT0MW+LfUEvTUPc/nS70vICJcxorKl7/gV9CO39+EDCw+qHNKEqvsDWk++yGVKCbzK1qLPvmC8g==}
engines: {node: ^18.17.0 || >=20.5.0}
'@sigstore/sign@3.1.0':
@@ -2615,8 +2636,8 @@ packages:
'@socket.io/component-emitter@3.1.2':
resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
- '@stylistic/eslint-plugin@4.2.0':
- resolution: {integrity: sha512-8hXezgz7jexGHdo5WN6JBEIPHCSFyyU4vgbxevu4YLVS5vl+sxqAAGyXSzfNDyR6xMNSH5H1x67nsXcYMOHtZA==}
+ '@stylistic/eslint-plugin@4.4.0':
+ resolution: {integrity: sha512-bIh/d9X+OQLCAMdhHtps+frvyjvAM4B1YlSJzcEEhl7wXLIqPar3ngn9DrHhkBOrTA/z9J0bUMtctAspe0dxdQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=9.0.0'
@@ -2681,6 +2702,9 @@ packages:
'@types/caseless@0.12.5':
resolution: {integrity: sha512-hWtVTC2q7hc7xZ/RLbxapMvDMgUnDvKvMOpKal4DrMyfGBUfB1oKaZlIRr6mJL+If3bAP6sV/QneGzF6tJjZDg==}
+ '@types/chai@5.2.2':
+ resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==}
+
'@types/co-body@6.1.3':
resolution: {integrity: sha512-UhuhrQ5hclX6UJctv5m4Rfp52AfG9o9+d9/HwjxhVB5NjXxr5t9oKgJxN8xRHgr35oo8meUEHUPFWiKg6y71aA==}
@@ -2702,12 +2726,15 @@ packages:
'@types/cookies@0.9.0':
resolution: {integrity: sha512-40Zk8qR147RABiQ7NQnBzWzDcjKzNrntB5BAmeGCb2p/MIyOE+4BVvc17wumsUqUw00bJYqoXFHYygQnEFh4/Q==}
- '@types/cors@2.8.17':
- resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
+ '@types/cors@2.8.18':
+ resolution: {integrity: sha512-nX3d0sxJW41CqQvfOzVG1NCTXfFDrDWIghCZncpHeWlVFd81zxB/DLhg7avFg6eHLCRX7ckBmoIIcqa++upvJA==}
'@types/debounce@1.2.4':
resolution: {integrity: sha512-jBqiORIzKDOToaF63Fm//haOCHuwQuLa2202RK4MozpA6lh93eCBc+/8+wZn5OzjJt3ySdc+74SXWXB55Ewtyw==}
+ '@types/deep-eql@4.0.2':
+ resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
+
'@types/duplexify@3.6.4':
resolution: {integrity: sha512-2eahVPsd+dy3CL6FugAzJcxoraWhUghZGEQJns1kTKfCXWKJ5iG/VkaB05wRVrDKHfOFKqb0X0kXh91eE99RZg==}
@@ -2726,11 +2753,11 @@ packages:
'@types/express-serve-static-core@5.0.6':
resolution: {integrity: sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==}
- '@types/express@4.17.21':
- resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
+ '@types/express@4.17.22':
+ resolution: {integrity: sha512-eZUmSnhRX9YRSkplpz0N+k6NljUUn5l3EWZIKZvYzhvMphEuNiyyy1viH/ejgt66JWgALwC/gtSUAeQKtSwW/w==}
- '@types/express@5.0.1':
- resolution: {integrity: sha512-UZUw8vjpWFXuDnjFTh7/5c2TWDlQqeXHi6hcN7F2XSVT5P+WmUnnbFS3KA6Jnc6IsEqI2qCVu2bK0R0J4A8ZQQ==}
+ '@types/express@5.0.2':
+ resolution: {integrity: sha512-BtjL3ZwbCQriyb0DGw+Rt12qAXPiBTPs815lsUvtt1Grk0vLRMZNMUZ741d5rjk+UQOxfDiBZ3dxpX00vSkK3g==}
'@types/glob@7.2.0':
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
@@ -2762,8 +2789,8 @@ packages:
'@types/jasmine-reporters@2.5.3':
resolution: {integrity: sha512-8aojAUdgdiD9VQbllBJb/9gny3lOjz9T5gyMcbYlKe6npwGVsarbr8v2JYSFJSZSuFYXcPVzFG2lLX3ib0j/DA==}
- '@types/jasmine@5.1.7':
- resolution: {integrity: sha512-DVOfk9FaClQfNFpSfaML15jjB5cjffDMvjtph525sroR5BEAW2uKnTOYUTqTFuZFjNvH0T5XMIydvIctnUKufw==}
+ '@types/jasmine@5.1.8':
+ resolution: {integrity: sha512-u7/CnvRdh6AaaIzYjCgUuVbREFgulhX05Qtf6ZtW+aOcjCKKVvKgpkPYJBFTZSHtFBYimzU4zP0V2vrEsq9Wcg==}
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -2789,11 +2816,12 @@ packages:
'@types/loader-utils@2.0.6':
resolution: {integrity: sha512-cgu0Xefgq9O5FjFR78jgI6X31aPjDWCaJ6LCfRtlj6BtyVVWiXagysSYlPACwGKAzRwsFLjKXcj4iGfcVt6cLw==}
- '@types/lodash@4.17.16':
- resolution: {integrity: sha512-HX7Em5NYQAXKW+1T+FiuG27NGwzJfCX3s1GjOa7ujxZa52kjJLOr4FUxT+giF6Tgxv1e+/czV/iTtBw27WTU9g==}
+ '@types/lodash@4.17.17':
+ resolution: {integrity: sha512-RRVJ+J3J+WmyOTqnz3PiBLA501eKwXl2noseKOrNo/6+XEHjTAxO4xHvxQB6QuNm+s4WRbn6rSiap8+EA+ykFQ==}
- '@types/long@4.0.2':
- resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==}
+ '@types/long@5.0.0':
+ resolution: {integrity: sha512-eQs9RsucA/LNjnMoJvWG/nXa7Pot/RbBzilF/QRIU/xRl+0ApxrSUFsV5lmf01SvSlqMzJ7Zwxe440wmz2SJGA==}
+ deprecated: This is a stub types definition. long provides its own type definitions, so you do not need this installed.
'@types/micromatch@2.3.35':
resolution: {integrity: sha512-J749bHo/Zu56w0G0NI/IGHLQPiSsjx//0zJhfEVAN95K/xM5C8ZDmhkXtU3qns0sBOao7HuQzr8XV1/2o5LbXA==}
@@ -2810,14 +2838,14 @@ packages:
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
- '@types/node@20.17.32':
- resolution: {integrity: sha512-zeMXFn8zQ+UkjK4ws0RiOC9EWByyW1CcVmLe+2rQocXRsGEDxUCwPEIVgpsGcLHS/P8JkT0oa3839BRABS0oPw==}
+ '@types/node@20.17.57':
+ resolution: {integrity: sha512-f3T4y6VU4fVQDKVqJV4Uppy8c1p/sVvS3peyqxyWnzkqXFJLRU7Y1Bl7rMS1Qe9z0v4M6McY0Fp9yBsgHJUsWQ==}
'@types/npm-package-arg@6.1.4':
resolution: {integrity: sha512-vDgdbMy2QXHnAruzlv68pUtXCjmqUk3WrBAsRboRovsOmxbfn/WiYCjmecyKjGztnMps5dWp4Uq2prp+Ilo17Q==}
- '@types/npm-registry-fetch@8.0.7':
- resolution: {integrity: sha512-db9iBh7kDDg4lRT4k4XZ6IiecTEgFCID4qk+VDVPbtzU855q3KZLCn08ATr4H27ntRJVhulQ7GWjl24H42x96w==}
+ '@types/npm-registry-fetch@8.0.8':
+ resolution: {integrity: sha512-VL/chssZawBkaQ5gFD5njblJce/ny9OICBlWAG9X6/m/ypPNJMWYiM22SY2mhLIGoknd4AyEJyi+FGyrBnsr+A==}
'@types/npmlog@7.0.0':
resolution: {integrity: sha512-hJWbrKFvxKyWwSUXjZMYTINsSOY6IclhvGOZ97M8ac2tmR9hMwmTnYaMdpGhvju9ctWLTPhCS+eLfQNluiEjQQ==}
@@ -2843,8 +2871,8 @@ packages:
'@types/q@0.0.32':
resolution: {integrity: sha512-qYi3YV9inU/REEfxwVcGZzbS3KG/Xs90lv0Pr+lDtuVjBPGd1A+eciXzVSaRvLify132BfcvhvEjeVahrUl0Ug==}
- '@types/qs@6.9.18':
- resolution: {integrity: sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==}
+ '@types/qs@6.14.0':
+ resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
@@ -2876,8 +2904,8 @@ packages:
'@types/serve-static@1.15.7':
resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
- '@types/shelljs@0.8.15':
- resolution: {integrity: sha512-vzmnCHl6hViPu9GNLQJ+DZFd6BQI2DBTUeOvYHqkWQLMfKAAQYMb/xAmZkTogZI/vqXHCWkqDRymDI5p0QTi5Q==}
+ '@types/shelljs@0.8.16':
+ resolution: {integrity: sha512-40SUXiH0tZfAg/oKkkGF1kdHPAmE4slv2xAmbfa8VtE6ztHYwdpW2phlzHTVdJh5JOGqA3Cx1Hzp7kxFalKHYA==}
'@types/sockjs@0.3.36':
resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
@@ -2931,76 +2959,63 @@ packages:
'@types/yauzl@2.10.3':
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
- '@typescript-eslint/eslint-plugin@8.31.1':
- resolution: {integrity: sha512-oUlH4h1ABavI4F0Xnl8/fOtML/eu8nI2A1nYd+f+55XI0BLu+RIqKoCiZKNo6DtqZBEQm5aNKA20G3Z5w3R6GQ==}
+ '@typescript-eslint/eslint-plugin@8.33.1':
+ resolution: {integrity: sha512-TDCXj+YxLgtvxvFlAvpoRv9MAncDLBV2oT9Bd7YBGC/b/sEURoOYuIwLI99rjWOfY3QtDzO+mk0n4AmdFExW8A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ '@typescript-eslint/parser': ^8.33.1
eslint: ^8.57.0 || ^9.0.0
typescript: 5.8.3
- '@typescript-eslint/parser@8.31.1':
- resolution: {integrity: sha512-oU/OtYVydhXnumd0BobL9rkJg7wFJ9bFFPmSmB/bf/XWN85hlViji59ko6bSKBXyseT9V8l+CN1nwmlbiN0G7Q==}
+ '@typescript-eslint/parser@8.33.1':
+ resolution: {integrity: sha512-qwxv6dq682yVvgKKp2qWwLgRbscDAYktPptK4JPojCwwi3R9cwrvIxS4lvBpzmcqzR4bdn54Z0IG1uHFskW4dA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: 5.8.3
- '@typescript-eslint/scope-manager@8.31.0':
- resolution: {integrity: sha512-knO8UyF78Nt8O/B64i7TlGXod69ko7z6vJD9uhSlm0qkAbGeRUSudcm0+K/4CrRjrpiHfBCjMWlc08Vav1xwcw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- '@typescript-eslint/scope-manager@8.31.1':
- resolution: {integrity: sha512-BMNLOElPxrtNQMIsFHE+3P0Yf1z0dJqV9zLdDxN/xLlWMlXK/ApEsVEKzpizg9oal8bAT5Sc7+ocal7AC1HCVw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- '@typescript-eslint/type-utils@8.31.1':
- resolution: {integrity: sha512-fNaT/m9n0+dpSp8G/iOQ05GoHYXbxw81x+yvr7TArTuZuCA6VVKbqWYVZrV5dVagpDTtj/O8k5HBEE/p/HM5LA==}
+ '@typescript-eslint/project-service@8.33.1':
+ resolution: {integrity: sha512-DZR0efeNklDIHHGRpMpR5gJITQpu6tLr9lDJnKdONTC7vvzOlLAG/wcfxcdxEWrbiZApcoBCzXqU/Z458Za5Iw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
typescript: 5.8.3
- '@typescript-eslint/types@8.31.0':
- resolution: {integrity: sha512-Ch8oSjVyYyJxPQk8pMiP2FFGYatqXQfQIaMp+TpuuLlDachRWpUAeEu1u9B/v/8LToehUIWyiKcA/w5hUFRKuQ==}
+ '@typescript-eslint/scope-manager@8.33.1':
+ resolution: {integrity: sha512-dM4UBtgmzHR9bS0Rv09JST0RcHYearoEoo3pG5B6GoTR9XcyeqX87FEhPo+5kTvVfKCvfHaHrcgeJQc6mrDKrA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/types@8.31.1':
- resolution: {integrity: sha512-SfepaEFUDQYRoA70DD9GtytljBePSj17qPxFHA/h3eg6lPTqGJ5mWOtbXCk1YrVU1cTJRd14nhaXWFu0l2troQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- '@typescript-eslint/typescript-estree@8.31.0':
- resolution: {integrity: sha512-xLmgn4Yl46xi6aDSZ9KkyfhhtnYI15/CvHbpOy/eR5NWhK/BK8wc709KKwhAR0m4ZKRP7h07bm4BWUYOCuRpQQ==}
+ '@typescript-eslint/tsconfig-utils@8.33.1':
+ resolution: {integrity: sha512-STAQsGYbHCF0/e+ShUQ4EatXQ7ceh3fBCXkNU7/MZVKulrlq1usH7t2FhxvCpuCi5O5oi1vmVaAjrGeL71OK1g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: 5.8.3
- '@typescript-eslint/typescript-estree@8.31.1':
- resolution: {integrity: sha512-kaA0ueLe2v7KunYOyWYtlf/QhhZb7+qh4Yw6Ni5kgukMIG+iP773tjgBiLWIXYumWCwEq3nLW+TUywEp8uEeag==}
+ '@typescript-eslint/type-utils@8.33.1':
+ resolution: {integrity: sha512-1cG37d9xOkhlykom55WVwG2QRNC7YXlxMaMzqw2uPeJixBFfKWZgaP/hjAObqMN/u3fr5BrTwTnc31/L9jQ2ww==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
typescript: 5.8.3
- '@typescript-eslint/utils@8.31.0':
- resolution: {integrity: sha512-qi6uPLt9cjTFxAb1zGNgTob4x9ur7xC6mHQJ8GwEzGMGE9tYniublmJaowOJ9V2jUzxrltTPfdG2nKlWsq0+Ww==}
+ '@typescript-eslint/types@8.33.1':
+ resolution: {integrity: sha512-xid1WfizGhy/TKMTwhtVOgalHwPtV8T32MS9MaH50Cwvz6x6YqRIPdD2WvW0XaqOzTV9p5xdLY0h/ZusU5Lokg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/typescript-estree@8.33.1':
+ resolution: {integrity: sha512-+s9LYcT8LWjdYWu7IWs7FvUxpQ/DGkdjZeE/GGulHvv8rvYwQvVaUZ6DE+j5x/prADUgSbbCWZ2nPI3usuVeOA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
typescript: 5.8.3
- '@typescript-eslint/utils@8.31.1':
- resolution: {integrity: sha512-2DSI4SNfF5T4oRveQ4nUrSjUqjMND0nLq9rEkz0gfGr3tg0S5KB6DhwR+WZPCjzkZl3cH+4x2ce3EsL50FubjQ==}
+ '@typescript-eslint/utils@8.33.1':
+ resolution: {integrity: sha512-52HaBiEQUaRYqAXpfzWSR2U3gxk92Kw006+xZpElaPMg3C4PgM+A5LqwoQI1f9E5aZ/qlxAZxzm42WX+vn92SQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: 5.8.3
- '@typescript-eslint/visitor-keys@8.31.0':
- resolution: {integrity: sha512-QcGHmlRHWOl93o64ZUMNewCdwKGU6WItOU52H0djgNmn1EOrhVudrDzXz4OycCRSCPwFCDrE2iIt5vmuUdHxuQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- '@typescript-eslint/visitor-keys@8.31.1':
- resolution: {integrity: sha512-I+/rgqOVBn6f0o7NDTmAPWWC6NuqhV174lfYvAm9fUaWeiefLdux9/YI3/nLugEn9L8fcSi0XmpKi/r5u0nmpw==}
+ '@typescript-eslint/visitor-keys@8.33.1':
+ resolution: {integrity: sha512-3i8NrFcZeeDHJ+7ZUuDkGT+UHq+XoFGsymNK2jZCOHcfEzRQ0BdpRtdpSx/Iyf3MHLWIcLS0COuOPibKQboIiQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@verdaccio/auth@8.0.0-next-8.15':
@@ -3084,34 +3099,34 @@ packages:
peerDependencies:
vite: ^6.0.0
- '@vitest/expect@3.1.2':
- resolution: {integrity: sha512-O8hJgr+zREopCAqWl3uCVaOdqJwZ9qaDwUP7vy3Xigad0phZe9APxKhPcDNqYYi0rX5oMvwJMSCAXY2afqeTSA==}
+ '@vitest/expect@3.2.2':
+ resolution: {integrity: sha512-ipHw0z669vEMjzz3xQE8nJX1s0rQIb7oEl4jjl35qWTwm/KIHERIg/p/zORrjAaZKXfsv7IybcNGHwhOOAPMwQ==}
- '@vitest/mocker@3.1.2':
- resolution: {integrity: sha512-kOtd6K2lc7SQ0mBqYv/wdGedlqPdM/B38paPY+OwJ1XiNi44w3Fpog82UfOibmHaV9Wod18A09I9SCKLyDMqgw==}
+ '@vitest/mocker@3.2.2':
+ resolution: {integrity: sha512-jKojcaRyIYpDEf+s7/dD3LJt53c0dPfp5zCPXz9H/kcGrSlovU/t1yEaNzM9oFME3dcd4ULwRI/x0Po1Zf+LTw==}
peerDependencies:
msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- '@vitest/pretty-format@3.1.2':
- resolution: {integrity: sha512-R0xAiHuWeDjTSB3kQ3OQpT8Rx3yhdOAIm/JM4axXxnG7Q/fS8XUwggv/A4xzbQA+drYRjzkMnpYnOGAc4oeq8w==}
+ '@vitest/pretty-format@3.2.2':
+ resolution: {integrity: sha512-FY4o4U1UDhO9KMd2Wee5vumwcaHw7Vg4V7yR4Oq6uK34nhEJOmdRYrk3ClburPRUA09lXD/oXWZ8y/Sdma0aUQ==}
- '@vitest/runner@3.1.2':
- resolution: {integrity: sha512-bhLib9l4xb4sUMPXnThbnhX2Yi8OutBMA8Yahxa7yavQsFDtwY/jrUZwpKp2XH9DhRFJIeytlyGpXCqZ65nR+g==}
+ '@vitest/runner@3.2.2':
+ resolution: {integrity: sha512-GYcHcaS3ejGRZYed2GAkvsjBeXIEerDKdX3orQrBJqLRiea4NSS9qvn9Nxmuy1IwIB+EjFOaxXnX79l8HFaBwg==}
- '@vitest/snapshot@3.1.2':
- resolution: {integrity: sha512-Q1qkpazSF/p4ApZg1vfZSQ5Yw6OCQxVMVrLjslbLFA1hMDrT2uxtqMaw8Tc/jy5DLka1sNs1Y7rBcftMiaSH/Q==}
+ '@vitest/snapshot@3.2.2':
+ resolution: {integrity: sha512-aMEI2XFlR1aNECbBs5C5IZopfi5Lb8QJZGGpzS8ZUHML5La5wCbrbhLOVSME68qwpT05ROEEOAZPRXFpxZV2wA==}
- '@vitest/spy@3.1.2':
- resolution: {integrity: sha512-OEc5fSXMws6sHVe4kOFyDSj/+4MSwst0ib4un0DlcYgQvRuYQ0+M2HyqGaauUMnjq87tmUaMNDxKQx7wNfVqPA==}
+ '@vitest/spy@3.2.2':
+ resolution: {integrity: sha512-6Utxlx3o7pcTxvp0u8kUiXtRFScMrUg28KjB3R2hon7w4YqOFAEA9QwzPVVS1QNL3smo4xRNOpNZClRVfpMcYg==}
- '@vitest/utils@3.1.2':
- resolution: {integrity: sha512-5GGd0ytZ7BH3H6JTj9Kw7Prn1Nbg0wZVrIvou+UWxm54d+WoXXgAgjFJ8wn3LdagWLFSEfpPeyYrByZaGEZHLg==}
+ '@vitest/utils@3.2.2':
+ resolution: {integrity: sha512-qJYMllrWpF/OYfWHP32T31QCaLa3BAzT/n/8mNGhPdVcjY+JYazQFO1nsJvXU12Kp1xMpNY4AGuljPTNjQve6A==}
'@web/browser-logs@0.4.1':
resolution: {integrity: sha512-ypmMG+72ERm+LvP+loj9A64MTXvWMXHUOu773cPO4L1SV/VWg6xA9Pv7vkvkXQX+ItJtCJt+KQ+U6ui2HhSFUw==}
@@ -3158,8 +3173,8 @@ packages:
resolution: {integrity: sha512-ZL9F6FXd0DBQvo/h/+mSfzFTSRVxzV9st/AHhpgABtUtV/AIpVE9to6+xdkpu6827kwjezdpuadPfg+PlrBWqQ==}
engines: {node: '>=18.0.0'}
- '@web/test-runner@0.20.1':
- resolution: {integrity: sha512-MTN8D1WCeCdkUWJIeG9yauUbRkk9g0zGFnBbI5smtPE91NpXFMfRd8nShIvxQnHx9fNTmK+OCYKnOSlq5DLLVA==}
+ '@web/test-runner@0.20.2':
+ resolution: {integrity: sha512-zfEGYEDnS0EI8qgoWFjmtkIXhqP15W40NW3dCaKtbxj5eU0a7E53f3GV/tZGD0GlZKF8d4Fyw+AFrwOJU9Z4GA==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -3367,8 +3382,8 @@ packages:
array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- array-includes@3.1.8:
- resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
+ array-includes@3.1.9:
+ resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==}
engines: {node: '>= 0.4'}
array-union@1.0.2:
@@ -3498,8 +3513,8 @@ packages:
bare-events@2.5.4:
resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==}
- bare-fs@4.1.3:
- resolution: {integrity: sha512-OeEZYIg+2qepaWLyphaOXHAHKo3xkM8y3BeGAvHdMN8GNWvEAU1Yw6rYpGzu/wDDbKxgEjVeVDpgGhDzaeMpjg==}
+ bare-fs@4.1.5:
+ resolution: {integrity: sha512-1zccWBMypln0jEE05LzZt+V/8y8AQsQQqxtklqaIyg5nu6OAYFhZxPXinJTSG+kU5qyNmeLgcn9AW7eHiCHVLA==}
engines: {bare: '>=1.16.0'}
peerDependencies:
bare-buffer: '*'
@@ -3532,8 +3547,8 @@ packages:
resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
engines: {node: ^4.5.0 || >= 5.9}
- baseline-browser-mapping@2.3.0:
- resolution: {integrity: sha512-K6nnZh0g0B/ZxbHSjZfKuJK7q1wto+RBqmVk9u/G+/YSOVlVXls71j2Jbl25Dos6j4HPAtne0MYdXdNOOSJm5g==}
+ baseline-browser-mapping@2.4.4:
+ resolution: {integrity: sha512-+kFK5pRzOn5a1gHdVmM2xo5j/XVsrJdWpy3SSwe463xraxzy3ZPQOwOzB6/MfsaWf72vRnbIBubiT28E94GkAA==}
basic-ftp@5.0.5:
resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==}
@@ -3548,18 +3563,18 @@ packages:
bcryptjs@2.4.3:
resolution: {integrity: sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==}
- beasties@0.3.3:
- resolution: {integrity: sha512-Mba3V4hTPrM7P2CSidueg71JZ0G+DyK7maBqp4/uax/PQznwdFti9cOW6Z3lTxBRH84kRICN0TyQ0MSSmufaAw==}
+ beasties@0.3.4:
+ resolution: {integrity: sha512-NmzN1zN1cvGccXFyZ73335+ASXwBlVWcUPssiUDIlFdfyatHPRRufjCd5w8oPaQPvVnf9ELklaCGb1gi9FBwIw==}
engines: {node: '>=14.0.0'}
- before-after-hook@3.0.2:
- resolution: {integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==}
+ before-after-hook@4.0.0:
+ resolution: {integrity: sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ==}
big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- big.js@6.2.2:
- resolution: {integrity: sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==}
+ big.js@7.0.1:
+ resolution: {integrity: sha512-iFgV784tD8kq4ccF1xtNMZnXeZzVuXWWM+ERFzKQjv+A5G9HC8CY3DuV45vgzFFcW+u2tIvmF95+AzWgs6BjCg==}
bignumber.js@9.3.0:
resolution: {integrity: sha512-EM7aMFTXbptt/wZdMlBv2t8IViwQL+h6SLHosp8Yf0dqJMTnY6iL32opnAB6kAdL0SZPuvcAzFr31o0c/R3/RA==}
@@ -3618,8 +3633,8 @@ packages:
browserify-zlib@0.1.4:
resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==}
- browserslist@4.24.4:
- resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
+ browserslist@4.25.0:
+ resolution: {integrity: sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -3688,8 +3703,8 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- caniuse-lite@1.0.30001715:
- resolution: {integrity: sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==}
+ caniuse-lite@1.0.30001720:
+ resolution: {integrity: sha512-Ec/2yV2nNPwb4DnTANEV99ZWwm3ZWfdlfkQbWSDDt+PsXEVYwlhPH8tdMaPunYTKKmz7AnHi2oNEi1GcmKCD8g==}
caseless@0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
@@ -3752,8 +3767,8 @@ packages:
resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
- chromium-bidi@4.1.1:
- resolution: {integrity: sha512-biR7t4vF3YluE6RlMSk9IWk+b9U+WWyzHp+N2pL9vRTk+UXHYRTVp7jTK58ZNzMLBgoLMHY4QyJMbeuw3eKxqg==}
+ chromium-bidi@5.1.0:
+ resolution: {integrity: sha512-9MSRhWRVoRPDG0TgzkHrshFSJJNZzfY5UFqUMuksg7zL1yoZIZ3jLB0YAgHclbiAxPI86pBnwDX1tbzoiV8aFw==}
peerDependencies:
devtools-protocol: '*'
@@ -3790,14 +3805,14 @@ packages:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
+ cliui@9.0.1:
+ resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==}
+ engines: {node: '>=20'}
+
clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
- clone@1.0.4:
- resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
- engines: {node: '>=0.8'}
-
clone@2.1.2:
resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
engines: {node: '>=0.8'}
@@ -3839,13 +3854,16 @@ packages:
resolution: {integrity: sha512-PqMLy5+YGwhMh1wS04mVG44oqDsgyLRSKJBdOo1bnYhMKBW65gZF1dRp2OZRhiTjgUHljy99qkO7bsctLaw35Q==}
engines: {node: '>=12.20.0'}
- commander@13.1.0:
- resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==}
- engines: {node: '>=18'}
+ commander@14.0.0:
+ resolution: {integrity: sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA==}
+ engines: {node: '>=20'}
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+ common-path-prefix@3.0.0:
+ resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
+
commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
@@ -3926,8 +3944,8 @@ packages:
peerDependencies:
webpack: ^5.1.0
- core-js-compat@3.41.0:
- resolution: {integrity: sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==}
+ core-js-compat@3.42.0:
+ resolution: {integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==}
core-js@3.40.0:
resolution: {integrity: sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ==}
@@ -3960,10 +3978,6 @@ packages:
cross-fetch@4.1.0:
resolution: {integrity: sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==}
- cross-spawn@6.0.6:
- resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
- engines: {node: '>=4.8'}
-
cross-spawn@7.0.6:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
@@ -4080,6 +4094,15 @@ packages:
supports-color:
optional: true
+ debug@4.4.1:
+ resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
decamelize@1.2.0:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
@@ -4113,9 +4136,6 @@ packages:
resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
engines: {node: '>= 10'}
- defaults@1.0.4:
- resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
-
define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
@@ -4190,8 +4210,8 @@ packages:
devtools-protocol@0.0.1045489:
resolution: {integrity: sha512-D+PTmWulkuQW4D1NTiCRCFxF7pQPn0hgp4YyX4wAQ6xYXKOadSWPR3ENGDQ47MW/Ewc9v2rpC/UEEGahgBYpSQ==}
- devtools-protocol@0.0.1425554:
- resolution: {integrity: sha512-uRfxR6Nlzdzt0ihVIkV+sLztKgs7rgquY/Mhcv1YNCWDh5IZgl5mnn2aeEnW5stYTE0wwiF4RYVz8eMEpV1SEw==}
+ devtools-protocol@0.0.1452169:
+ resolution: {integrity: sha512-FOFDVMGrAUNp0dDKsAU1TorWJUx2JOU1k9xdgBKKJF3IBh/Uhl2yswG5r3TEAOrCiGY2QRp1e6LVDQrCsTKO4g==}
di@0.0.1:
resolution: {integrity: sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==}
@@ -4262,8 +4282,8 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.143:
- resolution: {integrity: sha512-QqklJMOFBMqe46k8iIOwA9l2hz57V2OKMmP5eSWcUvwx+mASAsbU+wkF1pHjn9ZVSBPrsYWr4/W/95y5SwYg2g==}
+ electron-to-chromium@1.5.161:
+ resolution: {integrity: sha512-hwtetwfKNZo/UlwHIVBlKZVdy7o8bIZxxKs0Mv/ROPiQQQmDgdm5a+KvKtBsxM8ZjFzTaCeLoodZ8jiBE3o9rA==}
emoji-regex@10.4.0:
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
@@ -4345,8 +4365,8 @@ packages:
errorstacks@2.4.1:
resolution: {integrity: sha512-jE4i0SMYevwu/xxAuzhly/KTwtj0xDhbzB6m1xPImxTkw8wcCbgarOQPfCVMi5JKVyW7in29pNJCCJrry3Ynnw==}
- es-abstract@1.23.9:
- resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
+ es-abstract@1.24.0:
+ resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==}
engines: {node: '>= 0.4'}
es-define-property@1.0.1:
@@ -4382,13 +4402,13 @@ packages:
es6-promisify@5.0.0:
resolution: {integrity: sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==}
- esbuild-wasm@0.25.3:
- resolution: {integrity: sha512-60mFpAU4iQMVIP9tSd5EEbxZUDsqSKAjAJ7r1OK073lG/ctnVidThvbcU+M2B55jMFntCFJlqksubXMpYIcbfg==}
+ esbuild-wasm@0.25.5:
+ resolution: {integrity: sha512-V/rbdOws2gDcnCAECfPrajhuafI0WY4WumUgc8ZHwOLnvmM0doLQ+dqvVFI2qkVxQsvo6880aC9IjpyDqcwwTw==}
engines: {node: '>=18'}
hasBin: true
- esbuild@0.25.3:
- resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==}
+ esbuild@0.25.5:
+ resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==}
engines: {node: '>=18'}
hasBin: true
@@ -4412,8 +4432,8 @@ packages:
engines: {node: '>=6.0'}
hasBin: true
- eslint-config-prettier@10.1.2:
- resolution: {integrity: sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==}
+ eslint-config-prettier@10.1.5:
+ resolution: {integrity: sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
@@ -4473,8 +4493,8 @@ packages:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.25.1:
- resolution: {integrity: sha512-E6Mtz9oGQWDCpV12319d59n4tx9zOTXSTmc8BLVxBx+G/0RdM5MvEEJLU9c0+aleoePYYgVTOsRblx433qmhWQ==}
+ eslint@9.28.0:
+ resolution: {integrity: sha512-ocgh41VhRlf9+fVpe7QKzwLj9c92fDiqOj8Y3Sd4/ZmVA4Btx4PlUYPq4pp9JDyupkf1upbEXecxL2mwNV7jPQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -4539,10 +4559,6 @@ packages:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- execa@1.0.0:
- resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
- engines: {node: '>=6'}
-
execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
@@ -4585,8 +4601,8 @@ packages:
resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
engines: {'0': node >=0.6.0}
- fast-content-type-parse@2.0.1:
- resolution: {integrity: sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==}
+ fast-content-type-parse@3.0.0:
+ resolution: {integrity: sha512-ZvLdcY8P+N8mGQJahJV5G4U88CSvT1rP8ApL6uETe88MBXrBHAkZlSEySdUlyztF7ccb+Znos3TFqaepHxdhBg==}
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
@@ -4621,8 +4637,8 @@ packages:
fd-slicer@1.1.0:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
- fdir@6.4.4:
- resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==}
+ fdir@6.4.5:
+ resolution: {integrity: sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -4657,14 +4673,18 @@ packages:
resolution: {integrity: sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==}
engines: {node: '>= 0.8'}
- find-cache-dir@3.3.2:
- resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
- engines: {node: '>=8'}
+ find-cache-directory@6.0.0:
+ resolution: {integrity: sha512-CvFd5ivA6HcSHbD+59P7CyzINHXzwhuQK8RY7CxJZtgDSAtRlHiCaQpZQ2lMR/WRyUIEmzUvL6G2AGurMfegZA==}
+ engines: {node: '>=20'}
find-replace@3.0.0:
resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==}
engines: {node: '>=4.0.0'}
+ find-up-simple@1.0.1:
+ resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==}
+ engines: {node: '>=18'}
+
find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
@@ -4771,13 +4791,13 @@ packages:
functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
- gaxios@6.7.1:
- resolution: {integrity: sha512-LDODD4TMYx7XXdpwxAVRAIAuB0bzv0s+ywFonY46k126qzQHT9ygyoa9tncmOiQmmDrik65UYsEkv3lbfqQ3yQ==}
- engines: {node: '>=14'}
+ gaxios@7.0.0-rc.6:
+ resolution: {integrity: sha512-osVFpgeBiwTM2AVI9MXvb8iWzM6oSMbTVWc65Gm5BgBlE+nUA6PBHFMaYpqjZx1AhUH7aPOZq78WcRAM6hhAwA==}
+ engines: {node: '>=18'}
- gcp-metadata@6.1.1:
- resolution: {integrity: sha512-a4tiq7E0/5fTjxPAaH4jpjkSv/uCaU2p5KC6HVGrvl0cDjA8iBZv4vv1gyzlmK0ZUKqwpOyQMKzZQe3lTit77A==}
- engines: {node: '>=14'}
+ gcp-metadata@7.0.0-rc.1:
+ resolution: {integrity: sha512-E6c+AdIaK1LNA839OyotiTca+B2IG1nDlMjnlcck8JjXn3fVgx57Ib9i6iL1/iqN7bA3EUQdcRRu+HqOCOABIg==}
+ engines: {node: '>=18'}
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
@@ -4803,10 +4823,6 @@ packages:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
- get-stream@4.1.0:
- resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
- engines: {node: '>=6'}
-
get-stream@5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
@@ -4853,8 +4869,8 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@16.0.0:
- resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==}
+ globals@16.2.0:
+ resolution: {integrity: sha512-O+7l9tPdHCU320IigZZPj5zmRCFG9xHmx9cU8FqU2Rp+JN714seHV+2S9+JslCpY4gJwU2vOGox0wzgae/MCEg==}
engines: {node: '>=18'}
globalthis@1.0.4:
@@ -4869,16 +4885,16 @@ packages:
resolution: {integrity: sha512-HJRTIH2EeH44ka+LWig+EqT2ONSYpVlNfx6pyd592/VF1TbfljJ7elwie7oSwcViLGqOdWocSdu2txwBF9bjmQ==}
engines: {node: '>=0.10.0'}
- google-auth-library@9.15.1:
- resolution: {integrity: sha512-Jb6Z0+nvECVz+2lzSMt9u98UsoakXxA2HGHMCxh+so3n90XgYWkq5dur19JAJV7ONiJY22yBTyJB1TSkvPq9Ng==}
- engines: {node: '>=14'}
+ google-auth-library@10.0.0-rc.3:
+ resolution: {integrity: sha512-WC9wfEKK0bk3seWKsDn2loduLth6JWKTsrbWftzrhPuzpwnVXb5oi2+aa0JDBxLBDdkGesLvTQ67F2nZ7leq1Q==}
+ engines: {node: '>=18'}
- google-gax@4.4.1:
- resolution: {integrity: sha512-Phyp9fMfA00J3sZbJxbbB4jC55b7DBjE3F6poyL3wKMEBVKA79q6BGuHcTiM28yOzVql0NDbRL8MLLh8Iwk9Dg==}
- engines: {node: '>=14'}
+ google-gax@5.0.1-rc.1:
+ resolution: {integrity: sha512-kz3HlvYvmQVBcam2C7FOphE6xrhjrlbKrRpNxvWYAmVHi+SCeMReWcKp64WJXNL7clSYAgYer3gCKVTTF/+wPA==}
+ engines: {node: '>=18'}
- google-logging-utils@0.0.2:
- resolution: {integrity: sha512-NEgUnEcBiP5HrPzufUkBzJOD/Sxsco3rLNo1F1TNf7ieU8ryUzBhqba8r756CjLX7rn3fHl6iLEwPYuqpoKgQQ==}
+ google-logging-utils@1.1.1:
+ resolution: {integrity: sha512-rcX58I7nqpu4mbKztFeOAObbomBbHU2oIb/d3tJfF3dizGSApqtSwYJigGCooHdnMyQBIw8BrWyK96w3YXgr6A==}
engines: {node: '>=14'}
gopd@1.2.0:
@@ -4897,9 +4913,9 @@ packages:
peerDependencies:
protobufjs: '*'
- gtoken@7.1.0:
- resolution: {integrity: sha512-pCcEwRi+TKpMlxAQObHDQ56KawURgyAf6jtIY046fJ5tIv3zDe/LEIubckAO8fj6JnAxLdmWkUfNyulQ2iKdEw==}
- engines: {node: '>=14.0.0'}
+ gtoken@8.0.0-rc.1:
+ resolution: {integrity: sha512-UjE/egX6ixArdcCKOkheuFQ4XN4/0gX92nd2JPVEYuRU2sWHAWuOVGnowm1fQUdQtaxqn1n8H0hOb2LCaUhJ3A==}
+ engines: {node: '>=18'}
gunzip-maybe@1.4.2:
resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==}
@@ -4977,8 +4993,8 @@ packages:
resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==}
engines: {node: '>= 0.8'}
- http-cache-semantics@4.1.1:
- resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
+ http-cache-semantics@4.2.0:
+ resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==}
http-deceiver@1.2.7:
resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
@@ -5087,6 +5103,10 @@ packages:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
+ ignore@7.0.5:
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
+ engines: {node: '>= 4'}
+
image-size@0.5.5:
resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
engines: {node: '>=0.10.0'}
@@ -5099,8 +5119,8 @@ packages:
resolution: {integrity: sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==}
engines: {node: '>=0.10.0'}
- immutable@5.1.1:
- resolution: {integrity: sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==}
+ immutable@5.1.2:
+ resolution: {integrity: sha512-qHKXW1q6liAk1Oys6umoaZbDRqjcjgSrbnrifHsfsttza7zcvRAsL7mMV6xWcyhwQy7Xj5v4hhbr6b+iDYwlmQ==}
import-fresh@3.3.1:
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
@@ -5142,10 +5162,6 @@ packages:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
- interpret@1.4.0:
- resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
- engines: {node: '>= 0.10'}
-
ip-address@9.0.5:
resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
engines: {node: '>= 12'}
@@ -5251,9 +5267,9 @@ packages:
engines: {node: '>=14.16'}
hasBin: true
- is-interactive@1.0.0:
- resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
- engines: {node: '>=8'}
+ is-interactive@2.0.0:
+ resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
+ engines: {node: '>=12'}
is-ip@3.1.0:
resolution: {integrity: sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==}
@@ -5266,6 +5282,10 @@ packages:
is-module@1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
+ is-negative-zero@2.0.3:
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
+ engines: {node: '>= 0.4'}
+
is-network-error@1.1.0:
resolution: {integrity: sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==}
engines: {node: '>=16'}
@@ -5332,10 +5352,6 @@ packages:
is-stream-ended@0.1.4:
resolution: {integrity: sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw==}
- is-stream@1.1.0:
- resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
- engines: {node: '>=0.10.0'}
-
is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
@@ -5355,9 +5371,13 @@ packages:
is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
- is-unicode-supported@0.1.0:
- resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
- engines: {node: '>=10'}
+ is-unicode-supported@1.3.0:
+ resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
+ engines: {node: '>=12'}
+
+ is-unicode-supported@2.1.0:
+ resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
+ engines: {node: '>=18'}
is-url@1.2.4:
resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
@@ -5453,8 +5473,8 @@ packages:
jasmine-core@4.6.1:
resolution: {integrity: sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==}
- jasmine-core@5.7.0:
- resolution: {integrity: sha512-EnUzZBHxS1Ofq+FPWs16rs2YC9o6Hb3buKJQDlkhJBDx+Bm5wNF+J1gUS06dWuW2ozaQ3oNIA1SESX9M5LopOQ==}
+ jasmine-core@5.7.1:
+ resolution: {integrity: sha512-QnurrtpKsPoixxG2R3d1xP0St/2kcX5oTZyDyQJMY+Vzi/HUlu1kGm+2V8Tz+9lV991leB1l0xcsyz40s9xOOw==}
jasmine-reporters@2.5.2:
resolution: {integrity: sha512-qdewRUuFOSiWhiyWZX8Yx3YNQ9JG51ntBEO4ekLQRpktxFTwUHy24a86zD/Oi2BRTKksEdfWQZcQFqzjqIkPig==}
@@ -5466,8 +5486,8 @@ packages:
resolution: {integrity: sha512-KbdGQTf5jbZgltoHs31XGiChAPumMSY64OZMWLNYnEnMfG5uwGBhffePwuskexjT+/Jea/gU3qAU8344hNohSw==}
hasBin: true
- jasmine@5.7.0:
- resolution: {integrity: sha512-pifsdoSBgOlAbw1Tg1Vm4LxXEzDv6a+dTzHUaI9aYYqdP+PiMFgz2Mce/7TBfvuP9kshl0yZn7+G0/G1n+yExw==}
+ jasmine@5.7.1:
+ resolution: {integrity: sha512-E/4fkRNy/9ALz6z3Z3/tYXFAohoznVy7In9FWutG2fqBSkILJHFzbgZtHJUw5UrL3jgUQ4sdGYOVZ5KpSXYjGw==}
hasBin: true
jasminewd2@2.2.0:
@@ -5582,11 +5602,11 @@ packages:
jszip@3.10.1:
resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
- jwa@1.4.1:
- resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==}
+ jwa@1.4.2:
+ resolution: {integrity: sha512-eeH5JO+21J78qMvTIDdBXidBd6nG2kZjg5Ohz/1fpa28Z4CcsWUzJ1ZZyFq/3z3N17aZy+ZuBoHljASbL1WfOw==}
- jwa@2.0.0:
- resolution: {integrity: sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==}
+ jwa@2.0.1:
+ resolution: {integrity: sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==}
jws@3.2.2:
resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==}
@@ -5658,8 +5678,8 @@ packages:
launch-editor@2.10.0:
resolution: {integrity: sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==}
- less-loader@12.2.0:
- resolution: {integrity: sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==}
+ less-loader@12.3.0:
+ resolution: {integrity: sha512-0M6+uYulvYIWs52y0LqN4+QM9TqWAohYSNTo4htE8Z7Cn3G/qQMEmktfHmyJT23k+20kU9zHH2wrfFXkxNLtVw==}
engines: {node: '>= 18.12.0'}
peerDependencies:
'@rspack/core': 0.x || 1.x
@@ -5700,12 +5720,12 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- listr2@8.3.2:
- resolution: {integrity: sha512-vsBzcU4oE+v0lj4FhVLzr9dBTv4/fHIa57l+GCwovP8MoFNZJTOhGU8PXd4v2VJCbECAaijBiHntiekFMLvo0g==}
+ listr2@8.3.3:
+ resolution: {integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==}
engines: {node: '>=18.0.0'}
- lmdb@3.2.6:
- resolution: {integrity: sha512-SuHqzPl7mYStna8WRotY8XX/EUZBjjv3QyKIByeCLFfC9uXT/OIHByEcA07PzbMfQAM0KYJtLgtpMRlIe5dErQ==}
+ lmdb@3.4.0:
+ resolution: {integrity: sha512-vrhkVxu+9IM463hYvozwt/Su70BNo+OvrMBds3isVljd38p5owYOlVvWVpie+//T8YtDaaOL1NDto5oEkEn9CQ==}
hasBin: true
loader-runner@4.3.0:
@@ -5770,9 +5790,9 @@ packages:
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- log-symbols@4.1.0:
- resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
- engines: {node: '>=10'}
+ log-symbols@6.0.0:
+ resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
+ engines: {node: '>=18'}
log-update@4.0.0:
resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
@@ -5817,10 +5837,6 @@ packages:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
- make-dir@3.1.0:
- resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
- engines: {node: '>=8'}
-
make-dir@4.0.0:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
@@ -5847,8 +5863,8 @@ packages:
resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
engines: {node: '>= 0.8'}
- memfs@4.17.0:
- resolution: {integrity: sha512-4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg==}
+ memfs@4.17.2:
+ resolution: {integrity: sha512-NgYhCOWgovOXSzvYgUW0LQ7Qy72rWQMGGFJDoWg4G30RHd3z77VbYdtJ4fembJXBy8pMIUA31XNAupobOQlwdg==}
engines: {node: '>= 4.0.0'}
merge-descriptors@1.0.3:
@@ -6015,8 +6031,8 @@ packages:
resolution: {integrity: sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==}
hasBin: true
- msgpackr@1.11.2:
- resolution: {integrity: sha512-F9UngXRlPyWCDEASDpTf6c9uNhGPTqnTeLVt7bN+bU1eajoR/8V9ys2BRaV5C/e5ihE6sJ9uPIKaYt6bFuO32g==}
+ msgpackr@1.11.4:
+ resolution: {integrity: sha512-uaff7RG9VIC4jacFW9xzL3jc0iM32DNHe4jYVycBcjUePT/Klnfj7pqtWJt9khvDFizmjN2TlYniYmSS2LIaZg==}
multicast-dns@7.2.5:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
@@ -6065,12 +6081,12 @@ packages:
resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
engines: {node: '>= 0.4.0'}
- ng-packagr@20.0.0-next.8:
- resolution: {integrity: sha512-jmvpjZ0YTW54zc5bRLI+i2SULrx8SxSccpa6lR8PlCPj/6hRbOwWz5YpDbhhDJRzflb1TXB7M29z/Ux18ghe+g==}
- engines: {node: ^20.11.1 || >=22.11.0}
+ ng-packagr@20.1.0-next.0:
+ resolution: {integrity: sha512-CIyRatR8O5jWyGZkKHSwKhehvh2AL6a90MvvPY9P2H6NtgpZO5hhSja5GRrexRs7sS71i9pXj/HEu+Phec56hg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
hasBin: true
peerDependencies:
- '@angular/compiler-cli': ^20.0.0 || ^20.0.0-next.0
+ '@angular/compiler-cli': ^20.0.0 || ^20.0.0-next.0 || ^20.1.0-next.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
tslib: ^2.3.0
typescript: 5.8.3
@@ -6078,9 +6094,6 @@ packages:
tailwindcss:
optional: true
- nice-try@1.0.5:
- resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
-
node-addon-api@6.1.0:
resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
@@ -6162,9 +6175,9 @@ packages:
resolution: {integrity: sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==}
engines: {node: ^18.17.0 || >=20.5.0}
- npm-packlist@9.0.0:
- resolution: {integrity: sha512-8qSayfmHJQTx3nJWYbbUmflpyarbLMBc6LCAjYsiGtXxDB68HaZpb8re6zeaLGxZzDuMdhsg70jryJe+RrItVQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ npm-packlist@10.0.0:
+ resolution: {integrity: sha512-rht9U6nS8WOBDc53eipZNPo5qkAV4X2rhKE2Oj1DYUQ3DieXfj0mKkVmjnf3iuNdtMd8WfLdi2L6ASkD/8a+Kg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
npm-pick-manifest@10.0.0:
resolution: {integrity: sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ==}
@@ -6174,16 +6187,12 @@ packages:
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==}
- engines: {node: '>=4'}
-
npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- npm@11.3.0:
- resolution: {integrity: sha512-luthFIP0nFX3+nTfYbWI3p4hP4CiVnKOZ5jdxnF2x7B+Shz8feiSJCLLzgJUNxQ2cDdTaVUiH6RRsMT++vIMZg==}
+ npm@11.4.1:
+ resolution: {integrity: sha512-/O5DiEFmtvnF0EU1+5VlDpcItpSKH3l+3fQOl3hkZ3ilGN+jJlGxxi/zb0rEK+zxd8pGyifVPyS1ORkMjZGAKw==}
engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
bundledDependencies:
@@ -6328,8 +6337,8 @@ packages:
only@0.0.2:
resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
- open@10.1.1:
- resolution: {integrity: sha512-zy1wx4+P3PfhXSEPJNtZmJXfhkkIaxU1VauWIrDZw1O7uJRDRJtKr9n3Ic4NgbA16KyOxOXO2ng9gYwCdXuSXA==}
+ open@10.1.2:
+ resolution: {integrity: sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==}
engines: {node: '>=18'}
open@8.4.2:
@@ -6344,9 +6353,9 @@ packages:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
- ora@5.4.1:
- resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
- engines: {node: '>=10'}
+ ora@8.2.0:
+ resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
+ engines: {node: '>=18'}
ordered-binary@1.5.3:
resolution: {integrity: sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==}
@@ -6414,9 +6423,9 @@ packages:
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
- pacote@20.0.0:
- resolution: {integrity: sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ pacote@21.0.0:
+ resolution: {integrity: sha512-lcqexq73AMv6QNLo7SOpz0JJoaGdS3rBFgF122NZVl1bApo2mfu+XzUBU/X/XsiJu+iUmKpekRayqQYAs+PhkA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
pako@0.2.9:
@@ -6464,10 +6473,6 @@ packages:
path-is-inside@1.0.2:
resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
- path-key@2.0.1:
- resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
- engines: {node: '>=4'}
-
path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
@@ -6553,12 +6558,13 @@ packages:
resolution: {integrity: sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==}
hasBin: true
- piscina@4.9.2:
- resolution: {integrity: sha512-Fq0FERJWFEUpB4eSY59wSNwXD4RYqR+nR/WiEVcZW8IWfVBxJJafcgTEZDQo8k3w0sUarJ8RyVbbUF4GQ2LGbQ==}
+ piscina@5.0.0:
+ resolution: {integrity: sha512-R+arufwL7sZvGjAhSMK3TfH55YdGOqhpKXkcwQJr432AAnJX/xxX19PA4QisrmJ+BTTfZVggaz6HexbkQq1l1Q==}
+ engines: {node: '>=18.x'}
- pkg-dir@4.2.0:
- resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
- engines: {node: '>=8'}
+ pkg-dir@8.0.0:
+ resolution: {integrity: sha512-4peoBq4Wks0riS0z8741NVv+/8IiTvqnZAr8QGgtdifrtpdXbNw/FxRS1l6NFqm4EMzuS0EDqNNx4XGaz8cuyQ==}
+ engines: {node: '>=18'}
pkginfo@0.4.1:
resolution: {integrity: sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==}
@@ -6568,8 +6574,8 @@ packages:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
engines: {node: '>=4'}
- portfinder@1.0.36:
- resolution: {integrity: sha512-gMKUzCoP+feA7t45moaSx7UniU7PgGN3hA8acAB+3Qn7/js0/lJ07fYZlxt9riE9S3myyxDCyAFzSrLlta0c9g==}
+ portfinder@1.0.37:
+ resolution: {integrity: sha512-yuGIEjDAYnnOex9ddMnKZEMFE0CcGo6zbfzDklkmT1m5z734ss6JMzN9rNB3+RR7iS+F10D4/BVIaXOyh8PQKw==}
engines: {node: '>= 10.12'}
portscanner@2.2.0:
@@ -6627,8 +6633,8 @@ packages:
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss@8.5.3:
- resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
+ postcss@8.5.4:
+ resolution: {integrity: sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w==}
engines: {node: ^10 || ^12 || >=14}
prelude-ls@1.2.1:
@@ -6665,12 +6671,12 @@ packages:
resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
engines: {node: '>=10'}
- proto3-json-serializer@2.0.2:
- resolution: {integrity: sha512-SAzp/O4Yh02jGdRc+uIrGoe87dkN/XtwxfZ4ZyafJHymd79ozp5VG5nyZ7ygqPM5+cpLDjjGnYFUkngonyDPOQ==}
- engines: {node: '>=14.0.0'}
+ proto3-json-serializer@3.0.0:
+ resolution: {integrity: sha512-mHPIc7zaJc26HMpgX5J7vXjliYv4Rnn5ICUyINudz76iY4zFMQHTaQXrTFn0EoHnRsLD6BE+OuHhQHFUU93I9A==}
+ engines: {node: '>=18'}
- protobufjs@7.5.0:
- resolution: {integrity: sha512-Z2E/kOY1QjoMlCytmexzYfDm/w5fKAiRwpSzGtdnXW1zC88Z2yXazHHrOtwCzn+7wSxyE8PYM4rvVcMphF9sOA==}
+ protobufjs@7.5.3:
+ resolution: {integrity: sha512-sildjKwVqOI2kmFDiXQ6aEB0fjYTafpEvIBs8tOR8qI4spuL9OPROLVu2qZqi/xgCfsHIwVqlaF8JBjWFHnKbw==}
engines: {node: '>=12.0.0'}
protractor@7.0.0:
@@ -6716,8 +6722,8 @@ packages:
resolution: {integrity: sha512-MRtTAZfQTluz3U2oU/X2VqVWPcR1+94nbA2V6ZrSZRVEwLqZ8eclZ551qGFQD/vD2PYqHJwWOW/fpC721uznVw==}
engines: {node: '>=14.1.0'}
- puppeteer-core@24.7.2:
- resolution: {integrity: sha512-P9pZyTmJqKODFCnkZgemCpoFA4LbAa8+NumHVQKyP5X9IgdNS1ZnAnIh1sMAwhF8/xEUGf7jt+qmNLlKieFw1Q==}
+ puppeteer-core@24.10.0:
+ resolution: {integrity: sha512-xX0QJRc8t19iAwRDsAOR38Q/Zx/W6WVzJCEhKCAwp2XMsaWqfNtQ+rBfQW9PlF+Op24d7c8Zlgq9YNmbnA7hdQ==}
engines: {node: '>=18'}
puppeteer@18.2.1:
@@ -6755,8 +6761,8 @@ packages:
quick-format-unescaped@4.0.4:
resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==}
- quicktype-core@23.1.1:
- resolution: {integrity: sha512-YhbUh6dXr+yTNl9Jgh85r6t9xkztIqPsgs3hI10r/ULsG3Fo15UgXgSFS6CIQ/PU76ptCBM9x+1a39i5+nwpqw==}
+ quicktype-core@23.2.6:
+ resolution: {integrity: sha512-asfeSv7BKBNVb9WiYhFRBvBZHcRutPRBwJMxW0pefluK4kkKu4lv0IvZBwFKvw2XygLcL1Rl90zxWDHYgkwCmA==}
randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
@@ -6800,10 +6806,6 @@ packages:
resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
engines: {node: '>= 12.13.0'}
- rechoir@0.6.2:
- resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
- engines: {node: '>= 0.10'}
-
reflect-metadata@0.2.2:
resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
@@ -6818,12 +6820,6 @@ packages:
regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- regenerator-runtime@0.14.1:
- resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
-
- regenerator-transform@0.15.2:
- resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
-
regex-parser@2.3.1:
resolution: {integrity: sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==}
@@ -6890,9 +6886,9 @@ packages:
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
engines: {node: '>=18'}
- retry-request@7.0.2:
- resolution: {integrity: sha512-dUOvLMJ0/JJYEn8NrpOaGNE7X3vpI5XlZS/u0ANjqtcZVKnIxP7IgCFwrKTxENw29emmwug53awKtaMm4i9g5w==}
- engines: {node: '>=14'}
+ retry-request@8.0.0:
+ resolution: {integrity: sha512-dJkZNmyV9C8WKUmbdj1xcvVlXBSvsUQCkg89TCK8rD72RdSn9A2jlXlS2VuYSTHoPJjJEfUHhjNYrlvuksF9cg==}
+ engines: {node: '>=18'}
retry@0.12.0:
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
@@ -6930,8 +6926,8 @@ packages:
rollup: ^3.29.4 || ^4
typescript: 5.8.3
- rollup-plugin-sourcemaps2@0.5.1:
- resolution: {integrity: sha512-y8yq66AM3gD2636cb6+mqGvrTnYJrCQt7lhzXxFShKxOA52PGtfsQdooOYtZWtXYc5bWsNXpD7CEs1m36CGZmw==}
+ rollup-plugin-sourcemaps2@0.5.2:
+ resolution: {integrity: sha512-NTz5Y5ySYH9cZZF+qteTHN2x3dnFggTKzCtiN3NhtMvIEXdkOsZVBh6r6xrwsyDnZAhmKRsttwTfXfJVoanM6w==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@types/node': '>=18.0.0'
@@ -6940,8 +6936,8 @@ packages:
'@types/node':
optional: true
- rollup@4.40.1:
- resolution: {integrity: sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==}
+ rollup@4.41.1:
+ resolution: {integrity: sha512-cPmwD3FnFv8rKMBc1MxWCwVQFxwf1JEmSX3iQXrRVVG15zerAIXRjMFVWnd5Q5QvgKF7Aj+5ykXFhUl+QGnyOw==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -7011,8 +7007,8 @@ packages:
webpack:
optional: true
- sass@1.87.0:
- resolution: {integrity: sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==}
+ sass@1.89.1:
+ resolution: {integrity: sha512-eMLLkl+qz7tx/0cJ9wI+w09GQ2zodTkcE/aVfywwdlRcI3EO19xGnbmJwg/JMIm+5MxVJ6outddLZ4Von4E++Q==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -7059,6 +7055,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.7.2:
+ resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
send@0.19.0:
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
@@ -7117,30 +7118,21 @@ packages:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
- shebang-command@1.2.0:
- resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
- engines: {node: '>=0.10.0'}
-
shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
- shebang-regex@1.0.0:
- resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
- engines: {node: '>=0.10.0'}
-
shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shell-quote@1.8.2:
- resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
+ shell-quote@1.8.3:
+ resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
engines: {node: '>= 0.4'}
- shelljs@0.9.2:
- resolution: {integrity: sha512-S3I64fEiKgTZzKCC46zT/Ib9meqofLrQVbpSswtjFfAVDW+AZ54WTnAM/3/yENoxz/V1Cy6u3kiiEbQ4DNphvw==}
+ shelljs@0.10.0:
+ resolution: {integrity: sha512-Jex+xw5Mg2qMZL3qnzXIfaxEtBaC4n7xifqaqtrZDdlheR70OGkydrPJWT0V1cA1k3nanC86x9FwAmQl6w3Klw==}
engines: {node: '>=18'}
- hasBin: true
side-channel-list@1.0.0:
resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
@@ -7317,9 +7309,17 @@ packages:
std-env@3.9.0:
resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==}
+ stdin-discarder@0.2.2:
+ resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
+ engines: {node: '>=18'}
+
steno@0.4.4:
resolution: {integrity: sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==}
+ stop-iteration-iterator@1.1.0:
+ resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
+ engines: {node: '>= 0.4'}
+
stream-events@1.0.5:
resolution: {integrity: sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==}
@@ -7384,10 +7384,6 @@ packages:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
- strip-eof@1.0.0:
- resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
- engines: {node: '>=0.10.0'}
-
strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
@@ -7426,15 +7422,15 @@ packages:
resolution: {integrity: sha512-iK5/YhZxq5GO5z8wb0bY1317uDF3Zjpha0QFFLA8/trAoiLbQD0HUbMesEaxyzUgDxi2QlcbM8IvqOlEjgoXBA==}
engines: {node: '>=12.17'}
- tapable@2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
+ tapable@2.2.2:
+ resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==}
engines: {node: '>=6'}
tar-fs@2.1.1:
resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
- tar-fs@3.0.8:
- resolution: {integrity: sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==}
+ tar-fs@3.0.9:
+ resolution: {integrity: sha512-XF4w9Xp+ZQgifKakjZYmFdkLoSWd34VGKcsTCwlNWM7QG3ZbaxnTsaBwnjFZqHRf/rROxaR8rXnbtwdvaDI+lA==}
tar-stream@2.2.0:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
@@ -7451,9 +7447,9 @@ packages:
resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
engines: {node: '>=18'}
- teeny-request@9.0.0:
- resolution: {integrity: sha512-resvxdc6Mgb7YEThw6G6bExlXKkv6+YbuzGg9xuXxSgxJF7Ozs+o8Y9+2R3sArdWdW8nOokoQb1yrpFB0pQK2g==}
- engines: {node: '>=14'}
+ teeny-request@10.1.0:
+ resolution: {integrity: sha512-3ZnLvgWF29jikg1sAQ1g0o+lr5JX6sVgYvfUJazn7ZjJroDBUTWp44/+cFVX0bULjv4vci+rBD+oGVAkWqhUbw==}
+ engines: {node: '>=18'}
terser-webpack-plugin@5.3.14:
resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==}
@@ -7471,8 +7467,8 @@ packages:
uglify-js:
optional: true
- terser@5.39.0:
- resolution: {integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==}
+ terser@5.41.0:
+ resolution: {integrity: sha512-H406eLPXpZbAX14+B8psIuvIr8+3c+2hkuYzpMkoE0ij+NdsVATbA78vb8neA/eqrj7rywa2pIkdmWRsXW6wmw==}
engines: {node: '>=10'}
hasBin: true
@@ -7509,20 +7505,20 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinyglobby@0.2.13:
- resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
+ tinyglobby@0.2.14:
+ resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
engines: {node: '>=12.0.0'}
- tinypool@1.0.2:
- resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
+ tinypool@1.1.0:
+ resolution: {integrity: sha512-7CotroY9a8DKsKprEy/a14aCCm8jYVmR7aFy4fpkZM8sdpNJbKkixuNjgM50yCmip2ezc8z4N7k3oe2+rfRJCQ==}
engines: {node: ^18.0.0 || >=20.0.0}
tinyrainbow@2.0.0:
resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
engines: {node: '>=14.0.0'}
- tinyspy@3.0.2:
- resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
+ tinyspy@4.0.3:
+ resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==}
engines: {node: '>=14.0.0'}
tldts-core@6.1.86:
@@ -7567,8 +7563,8 @@ packages:
resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
engines: {node: '>=18'}
- tree-dump@1.0.2:
- resolution: {integrity: sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==}
+ tree-dump@1.0.3:
+ resolution: {integrity: sha512-il+Cv80yVHFBwokQSfd4bldvr1Md951DpgAGfmhydt04L+YzHgubm2tQ7zueWDcGENKHq0ZvGFR/hjvNXilHEg==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
@@ -7697,8 +7693,8 @@ packages:
undici-types@6.19.8:
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
- undici@7.8.0:
- resolution: {integrity: sha512-vFv1GA99b7eKO1HG/4RPu2Is3FBTWBrmzqzO0mz+rLxN3yXkE4mqRcb8g8fHxzX4blEysrNZLqg5RbJLqX5buA==}
+ undici@7.10.0:
+ resolution: {integrity: sha512-u5otvFBOBZvmdjWLVW+5DAc9Nkq8f24g0O9oY7qw2JVIF1VocIFoyz9JFkuVOS2j41AufeO0xnlweJ2RLT8nGw==}
engines: {node: '>=20.18.1'}
unenv@1.10.0:
@@ -7734,8 +7730,8 @@ packages:
resolution: {integrity: sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==}
engines: {node: ^18.17.0 || >=20.5.0}
- universal-user-agent@7.0.2:
- resolution: {integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==}
+ universal-user-agent@7.0.3:
+ resolution: {integrity: sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A==}
universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
@@ -7776,10 +7772,6 @@ packages:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
- uuid@9.0.1:
- resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
- hasBin: true
-
v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
@@ -7823,13 +7815,13 @@ packages:
resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
engines: {'0': node >=0.6.0}
- vite-node@3.1.2:
- resolution: {integrity: sha512-/8iMryv46J3aK13iUXsei5G/A3CUlW4665THCPS+K8xAaqrVWiGB4RfXMQXCLjpK9P2eK//BczrVkn5JLAk6DA==}
+ vite-node@3.2.2:
+ resolution: {integrity: sha512-Xj/jovjZvDXOq2FgLXu8NsY4uHUMWtzVmMC2LkCu9HWdr9Qu1Is5sanX3Z4jOFKdohfaWDnEJWp9pRP0vVpAcA==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite@6.3.3:
- resolution: {integrity: sha512-5nXH+QsELbFKhsEfWLkHrvgRpTdGJzqOZ+utSdmPTvwHmvU6ITTm3xx+mRusihkcI8GeC7lCDyn3kDtiki9scw==}
+ vite@6.3.5:
+ resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -7868,56 +7860,16 @@ packages:
yaml:
optional: true
- vite@6.3.4:
- resolution: {integrity: sha512-BiReIiMS2fyFqbqNT/Qqt4CVITDU9M9vE+DKcVAsB+ZV0wvTKd+3hMbkpxz1b+NmEDMegpVbisKiAZOnvO92Sw==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- jiti: '>=1.21.0'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.16.0
- tsx: ^4.8.1
- yaml: ^2.4.2
- peerDependenciesMeta:
- '@types/node':
- optional: true
- jiti:
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- tsx:
- optional: true
- yaml:
- optional: true
-
- vitest@3.1.2:
- resolution: {integrity: sha512-WaxpJe092ID1C0mr+LH9MmNrhfzi8I65EX/NRU/Ld016KqQNRgxSOlGNP1hHN+a/F8L15Mh8klwaF77zR3GeDQ==}
+ vitest@3.2.2:
+ resolution: {integrity: sha512-fyNn/Rp016Bt5qvY0OQvIUCwW2vnaEBLxP42PmKbNIoasSYjML+8xyeADOPvBe+Xfl/ubIw4og7Lt9jflRsCNw==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/debug': ^4.1.12
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- '@vitest/browser': 3.1.2
- '@vitest/ui': 3.1.2
+ '@vitest/browser': 3.2.2
+ '@vitest/ui': 3.2.2
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -7944,21 +7896,18 @@ packages:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
engines: {node: '>=18'}
- watchpack@2.4.2:
- resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
+ watchpack@2.4.4:
+ resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==}
engines: {node: '>=10.13.0'}
wbuf@1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
- wcwidth@1.0.1:
- resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
-
weak-lru-cache@1.2.2:
resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==}
- web-features@2.34.1:
- resolution: {integrity: sha512-iCBDD79mpBQfocenp3dpkyhVoO5WLKJoncDcO+Rhygk2jESbktE7PBWPTDwtvZv/1Jm2tpxe0iwg9DPJyCbV8w==}
+ web-features@2.36.1:
+ resolution: {integrity: sha512-eAMg2v4XOJIZZgGx1tEK+9SUJvNMWq8UPLQNHK7bR8L5vMQuOq6jJ4a4L/FLJqOEUaOAJj/yjegPxhUwLklywA==}
web-streams-polyfill@3.3.3:
resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
@@ -7989,8 +7938,8 @@ packages:
webpack:
optional: true
- webpack-dev-server@5.2.1:
- resolution: {integrity: sha512-ml/0HIj9NLpVKOMq+SuBPLHcmbG+TGIjXRHsYfZwocUBIqEvws8NnS/V9AFQ5FKP+tgn5adwVwRrTEpGL33QFQ==}
+ webpack-dev-server@5.2.2:
+ resolution: {integrity: sha512-QcQ72gh8a+7JO63TAx/6XZf/CWhgMzu5m0QirvPfGvptOusAxG12w2+aua1Jkjr7hzaWDnJ2n6JFeexMHI+Zjg==}
engines: {node: '>= 18.12.0'}
hasBin: true
peerDependencies:
@@ -8006,8 +7955,8 @@ packages:
resolution: {integrity: sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==}
engines: {node: '>=18.0.0'}
- webpack-sources@3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
+ webpack-sources@3.3.2:
+ resolution: {integrity: sha512-ykKKus8lqlgXX/1WjudpIEjqsafjOTcOJqxnAbMLAu/KCsDCJ6GBtvscewvTkrn24HsnvFwrSCbenFrhtcCsAA==}
engines: {node: '>=10.13.0'}
webpack-subresource-integrity@5.1.0:
@@ -8020,8 +7969,8 @@ packages:
html-webpack-plugin:
optional: true
- webpack@5.99.7:
- resolution: {integrity: sha512-CNqKBRMQjwcmKR0idID5va1qlhrqVUKpovi+Ec79ksW8ux7iS1+A6VqzfZXgVYCFRKl7XL5ap3ZoMpwBJxcg0w==}
+ webpack@5.99.9:
+ resolution: {integrity: sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -8148,8 +8097,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.18.1:
- resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
+ ws@8.18.2:
+ resolution: {integrity: sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -8216,9 +8165,9 @@ packages:
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
engines: {node: '>=18'}
- yaml@2.7.1:
- resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==}
- engines: {node: '>= 14'}
+ yaml@2.8.0:
+ resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==}
+ engines: {node: '>= 14.6'}
hasBin: true
yargs-parser@18.1.3:
@@ -8233,6 +8182,10 @@ packages:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
+ yargs-parser@22.0.0:
+ resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
+
yargs@15.4.1:
resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
engines: {node: '>=8'}
@@ -8245,6 +8198,10 @@ packages:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
+ yargs@18.0.0:
+ resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
+
yauzl@2.10.0:
resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
@@ -8264,11 +8221,11 @@ packages:
resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
engines: {node: '>=18'}
- zod@3.24.3:
- resolution: {integrity: sha512-HhY1oqzWCQWuUqvBFnsyrtZRhyPeR7SUGv+C4+MsisMuVfSPx8HpwWqH8tRahSlt6M3PiFAcoeFhZAqIXTxoSg==}
+ zod@3.25.48:
+ resolution: {integrity: sha512-0X1mz8FtgEIvaxGjdIImYpZEaZMrund9pGXm3M6vM7Reba0e2eI71KPjSCGXBfwKDPwPoywf6waUKc3/tFvX2Q==}
- zone.js@0.15.0:
- resolution: {integrity: sha512-9oxn0IIjbCZkJ67L+LkhYWRyAy7axphb3VgE2MBDlOqnmHMPWGYMxJxBYFueFq/JGY2GMwS0rU+UCLunEmy5UA==}
+ zone.js@0.15.1:
+ resolution: {integrity: sha512-XE96n56IQpJM7NAoXswY3XRLcWFW83xe0BiAOeMD7K5k5xecOeul3Qcpx6GqEeeHNkW5DWL5zOyTbEfB4eti8w==}
snapshots:
@@ -8277,797 +8234,835 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- '@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))':
+ '@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))':
dependencies:
- '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/common': 20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/core': 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)
tslib: 2.8.1
- '@angular/cdk@20.0.0-next.8(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)':
+ '@angular/cdk@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)':
dependencies:
- '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/common': 20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/core': 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)
parse5: 7.3.0
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)':
+ '@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)':
dependencies:
- '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/core': 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3)':
+ '@angular/compiler-cli@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(typescript@5.8.3)':
dependencies:
- '@angular/compiler': 20.0.0-next.9
- '@babel/core': 7.26.10
+ '@angular/compiler': 20.1.0-next.0
+ '@babel/core': 7.27.1
'@jridgewell/sourcemap-codec': 1.5.0
chokidar: 4.0.3
convert-source-map: 1.9.0
reflect-metadata: 0.2.2
- semver: 7.7.1
+ semver: 7.7.2
tslib: 2.8.1
+ yargs: 18.0.0
+ optionalDependencies:
typescript: 5.8.3
- yargs: 17.7.2
transitivePeerDependencies:
- supports-color
- '@angular/compiler@20.0.0-next.9':
+ '@angular/compiler@20.1.0-next.0':
dependencies:
tslib: 2.8.1
- '@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)':
+ '@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)':
dependencies:
rxjs: 7.8.2
tslib: 2.8.1
- zone.js: 0.15.0
optionalDependencies:
- '@angular/compiler': 20.0.0-next.9
+ '@angular/compiler': 20.1.0-next.0
+ zone.js: 0.15.1
- '@angular/forms@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)':
+ '@angular/forms@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)':
dependencies:
- '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
- '@angular/platform-browser': 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/common': 20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/core': 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/platform-browser': 20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/localize@20.0.0-next.9(@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3))(@angular/compiler@20.0.0-next.9)':
+ '@angular/localize@20.1.0-next.0(@angular/compiler-cli@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(typescript@5.8.3))(@angular/compiler@20.1.0-next.0)':
dependencies:
- '@angular/compiler': 20.0.0-next.9
- '@angular/compiler-cli': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3)
- '@babel/core': 7.26.10
+ '@angular/compiler': 20.1.0-next.0
+ '@angular/compiler-cli': 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(typescript@5.8.3)
+ '@babel/core': 7.27.1
'@types/babel__core': 7.20.5
- tinyglobby: 0.2.13
- yargs: 17.7.2
+ tinyglobby: 0.2.14
+ yargs: 18.0.0
transitivePeerDependencies:
- supports-color
- '@angular/material@20.0.0-next.8(toykhwqb6vnza6rhnhkooutfpa)':
+ '@angular/material@20.1.0-next.0(4wux34b4hvvx5bs377ruhvyphy)':
dependencies:
- '@angular/cdk': 20.0.0-next.8(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
- '@angular/forms': 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
- '@angular/platform-browser': 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/cdk': 20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/common': 20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/core': 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/forms': 20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ '@angular/platform-browser': 20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/1a12d97905f4af88ccc0b582864907729d23e23e(encoding@0.1.13)':
+ '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/03896acc53dcd538c4b3b71240af9e344ba3cfec':
dependencies:
- '@google-cloud/spanner': 7.19.1(encoding@0.1.13)(supports-color@10.0.0)
- '@octokit/rest': 21.1.1
+ '@google-cloud/spanner': 8.0.0(supports-color@10.0.0)
+ '@octokit/rest': 22.0.0
'@types/semver': 7.7.0
'@types/supports-color': 10.0.0
'@yarnpkg/lockfile': 1.1.0
chalk: 5.4.1
- semver: 7.7.1
+ semver: 7.7.2
supports-color: 10.0.0
typed-graphqlify: 3.1.6
typescript: 5.8.3
which: 5.0.0
- yaml: 2.7.1
- transitivePeerDependencies:
- - encoding
+ yaml: 2.8.0
- '@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))':
+ '@angular/platform-browser@20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))':
dependencies:
- '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/common': 20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/core': 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)
tslib: 2.8.1
optionalDependencies:
- '@angular/animations': 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/animations': 20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))
- '@angular/platform-server@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.9)(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)':
+ '@angular/platform-server@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.1.0-next.0)(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)':
dependencies:
- '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/compiler': 20.0.0-next.9
- '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
- '@angular/platform-browser': 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/common': 20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/compiler': 20.1.0-next.0
+ '@angular/core': 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/platform-browser': 20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))
rxjs: 7.8.2
tslib: 2.8.1
xhr2: 0.2.1
- '@angular/router@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)':
+ '@angular/router@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)':
dependencies:
- '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
- '@angular/platform-browser': 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/common': 20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/core': 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/platform-browser': 20.1.0-next.0(@angular/animations@20.1.0-next.0(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/service-worker@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)':
+ '@angular/service-worker@20.1.0-next.0(@angular/core@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)':
dependencies:
- '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/core': 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(rxjs@7.8.2)(zone.js@0.15.1)
rxjs: 7.8.2
tslib: 2.8.1
- '@asamuzakjp/css-color@3.1.5':
+ '@asamuzakjp/css-color@3.2.0':
dependencies:
- '@csstools/css-calc': 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-color-parser': 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
lru-cache: 10.4.3
- '@babel/code-frame@7.26.2':
+ '@babel/code-frame@7.27.1':
dependencies:
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-validator-identifier': 7.27.1
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.26.8': {}
+ '@babel/compat-data@7.27.3': {}
+
+ '@babel/core@7.27.1':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.5
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.1)
+ '@babel/helpers': 7.27.4
+ '@babel/parser': 7.27.5
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.4
+ '@babel/types': 7.27.3
+ convert-source-map: 2.0.0
+ debug: 4.4.1(supports-color@10.0.0)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/core@7.26.10':
+ '@babel/core@7.27.4':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.27.0
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helpers': 7.27.0
- '@babel/parser': 7.27.0
- '@babel/template': 7.27.0
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.3
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4)
+ '@babel/helpers': 7.27.4
+ '@babel/parser': 7.27.4
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.4
+ '@babel/types': 7.27.3
convert-source-map: 2.0.0
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.27.0':
+ '@babel/generator@7.27.3':
+ dependencies:
+ '@babel/parser': 7.27.4
+ '@babel/types': 7.27.3
+ '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 3.1.0
+
+ '@babel/generator@7.27.5':
dependencies:
- '@babel/parser': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/parser': 7.27.5
+ '@babel/types': 7.27.3
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.1.0
- '@babel/helper-annotate-as-pure@7.25.9':
+ '@babel/helper-annotate-as-pure@7.27.3':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.27.3
- '@babel/helper-compilation-targets@7.27.0':
+ '@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/helper-validator-option': 7.25.9
- browserslist: 4.24.4
+ '@babel/compat-data': 7.27.3
+ '@babel/helper-validator-option': 7.27.1
+ browserslist: 4.25.0
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10)':
+ '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@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.26.5(@babel/core@7.26.10)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/traverse': 7.27.4
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.27.0(@babel/core@7.26.10)':
+ '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/core': 7.27.4
+ '@babel/helper-annotate-as-pure': 7.27.3
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.26.10)':
+ '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-plugin-utils': 7.26.5
- debug: 4.4.0(supports-color@10.0.0)
+ '@babel/core': 7.27.4
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ debug: 4.4.1(supports-color@10.0.0)
lodash.debounce: 4.0.8
resolve: 1.22.10
transitivePeerDependencies:
- supports-color
- '@babel/helper-member-expression-to-functions@7.25.9':
+ '@babel/helper-member-expression-to-functions@7.27.1':
+ dependencies:
+ '@babel/traverse': 7.27.4
+ '@babel/types': 7.27.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-imports@7.27.1':
dependencies:
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/traverse': 7.27.4
+ '@babel/types': 7.27.3
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.25.9':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.1)':
dependencies:
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/core': 7.27.1
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.27.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.27.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.25.9':
+ '@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.27.3
- '@babel/helper-plugin-utils@7.26.5': {}
+ '@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.10)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-wrap-function': 7.27.1
+ '@babel/traverse': 7.27.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.10)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/traverse': 7.27.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/traverse': 7.27.4
+ '@babel/types': 7.27.3
transitivePeerDependencies:
- supports-color
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.27.3
- '@babel/helper-string-parser@7.25.9': {}
+ '@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-validator-identifier@7.25.9': {}
+ '@babel/helper-validator-identifier@7.27.1': {}
- '@babel/helper-validator-option@7.25.9': {}
+ '@babel/helper-validator-option@7.27.1': {}
- '@babel/helper-wrap-function@7.25.9':
+ '@babel/helper-wrap-function@7.27.1':
dependencies:
- '@babel/template': 7.27.0
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.4
+ '@babel/types': 7.27.3
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.27.0':
+ '@babel/helpers@7.27.4':
+ dependencies:
+ '@babel/template': 7.27.2
+ '@babel/types': 7.27.3
+
+ '@babel/parser@7.27.4':
dependencies:
- '@babel/template': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/types': 7.27.3
- '@babel/parser@7.27.0':
+ '@babel/parser@7.27.5':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.27.3
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.27.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10)
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.27.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.27.4
- '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.10)':
+ '@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10)
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.4)
+ '@babel/traverse': 7.27.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10)
+ '@babel/core': 7.27.4
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.10)':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-block-scoping@7.27.3(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-classes@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10)
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4)
+ '@babel/traverse': 7.27.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/template': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/template': 7.27.2
- '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-destructuring@7.27.3(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.10)':
+ '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-for-of@7.26.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.27.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.27.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.10)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-object-rest-spread@7.27.3(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
+ '@babel/core': 7.27.4
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.4)
+ '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10)
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-parameters@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regenerator@7.27.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-regenerator@7.27.4(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- regenerator-transform: 0.15.2
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-runtime@7.26.10(@babel/core@7.26.10)':
+ '@babel/plugin-transform-runtime@7.27.4(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.10)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10)
- babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.10)
+ '@babel/core': 7.27.4
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.4)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.4)
+ babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.4)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-spread@7.27.1(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-typeof-symbol@7.27.0(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/preset-env@7.26.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-validator-option': 7.25.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.10)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.10)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.10)
- '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10)
- '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.10)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.10)
- '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-for-of': 7.26.9(@babel/core@7.26.10)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.10)
- '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-regenerator': 7.27.0(@babel/core@7.26.10)
- '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.10)
- '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.10)
- '@babel/plugin-transform-typeof-symbol': 7.27.0(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.10)
- babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.10)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10)
- babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.10)
- core-js-compat: 3.41.0
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.27.4)':
+ dependencies:
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.27.4)':
+ dependencies:
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.27.4)':
+ dependencies:
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.27.4)':
+ dependencies:
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.27.4)':
+ dependencies:
+ '@babel/core': 7.27.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.27.4)':
+ dependencies:
+ '@babel/core': 7.27.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.27.4)':
+ dependencies:
+ '@babel/core': 7.27.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/preset-env@7.27.2(@babel/core@7.27.4)':
+ dependencies:
+ '@babel/compat-data': 7.27.3
+ '@babel/core': 7.27.4
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.4)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.27.4)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-block-scoping': 7.27.3(@babel/core@7.27.4)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.4)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-object-rest-spread': 7.27.3(@babel/core@7.27.4)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-regenerator': 7.27.4(@babel/core@7.27.4)
+ '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.27.4)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.27.4)
+ babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.4)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.4)
+ babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.4)
+ core-js-compat: 3.42.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.10)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.27.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/types': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/types': 7.27.3
esutils: 2.0.3
- '@babel/runtime@7.27.0':
- dependencies:
- regenerator-runtime: 0.14.1
+ '@babel/runtime@7.27.6': {}
- '@babel/template@7.27.0':
+ '@babel/template@7.27.2':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/code-frame': 7.27.1
+ '@babel/parser': 7.27.4
+ '@babel/types': 7.27.3
- '@babel/traverse@7.27.0':
+ '@babel/traverse@7.27.4':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.27.0
- '@babel/parser': 7.27.0
- '@babel/template': 7.27.0
- '@babel/types': 7.27.0
- debug: 4.4.0(supports-color@10.0.0)
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.5
+ '@babel/parser': 7.27.4
+ '@babel/template': 7.27.2
+ '@babel/types': 7.27.3
+ debug: 4.4.1(supports-color@10.0.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.27.0':
+ '@babel/types@7.27.3':
dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
'@bazel/bazelisk@1.26.0': {}
- '@bazel/buildifier@8.0.3': {}
+ '@bazel/buildifier@8.2.0': {}
'@colors/colors@1.5.0': {}
@@ -9077,23 +9072,23 @@ snapshots:
'@csstools/color-helpers@5.0.2': {}
- '@csstools/css-calc@2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
dependencies:
- '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
- '@csstools/css-color-parser@3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-color-parser@3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
dependencies:
'@csstools/color-helpers': 5.0.2
- '@csstools/css-calc': 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
- '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
dependencies:
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-tokenizer': 3.0.4
- '@csstools/css-tokenizer@3.0.3': {}
+ '@csstools/css-tokenizer@3.0.4': {}
'@cypress/request@3.0.8':
dependencies:
@@ -9118,110 +9113,110 @@ snapshots:
'@discoveryjs/json-ext@0.6.3': {}
- '@esbuild/aix-ppc64@0.25.3':
+ '@esbuild/aix-ppc64@0.25.5':
optional: true
- '@esbuild/android-arm64@0.25.3':
+ '@esbuild/android-arm64@0.25.5':
optional: true
- '@esbuild/android-arm@0.25.3':
+ '@esbuild/android-arm@0.25.5':
optional: true
- '@esbuild/android-x64@0.25.3':
+ '@esbuild/android-x64@0.25.5':
optional: true
- '@esbuild/darwin-arm64@0.25.3':
+ '@esbuild/darwin-arm64@0.25.5':
optional: true
- '@esbuild/darwin-x64@0.25.3':
+ '@esbuild/darwin-x64@0.25.5':
optional: true
- '@esbuild/freebsd-arm64@0.25.3':
+ '@esbuild/freebsd-arm64@0.25.5':
optional: true
- '@esbuild/freebsd-x64@0.25.3':
+ '@esbuild/freebsd-x64@0.25.5':
optional: true
- '@esbuild/linux-arm64@0.25.3':
+ '@esbuild/linux-arm64@0.25.5':
optional: true
- '@esbuild/linux-arm@0.25.3':
+ '@esbuild/linux-arm@0.25.5':
optional: true
- '@esbuild/linux-ia32@0.25.3':
+ '@esbuild/linux-ia32@0.25.5':
optional: true
- '@esbuild/linux-loong64@0.25.3':
+ '@esbuild/linux-loong64@0.25.5':
optional: true
- '@esbuild/linux-mips64el@0.25.3':
+ '@esbuild/linux-mips64el@0.25.5':
optional: true
- '@esbuild/linux-ppc64@0.25.3':
+ '@esbuild/linux-ppc64@0.25.5':
optional: true
- '@esbuild/linux-riscv64@0.25.3':
+ '@esbuild/linux-riscv64@0.25.5':
optional: true
- '@esbuild/linux-s390x@0.25.3':
+ '@esbuild/linux-s390x@0.25.5':
optional: true
- '@esbuild/linux-x64@0.25.3':
+ '@esbuild/linux-x64@0.25.5':
optional: true
- '@esbuild/netbsd-arm64@0.25.3':
+ '@esbuild/netbsd-arm64@0.25.5':
optional: true
- '@esbuild/netbsd-x64@0.25.3':
+ '@esbuild/netbsd-x64@0.25.5':
optional: true
- '@esbuild/openbsd-arm64@0.25.3':
+ '@esbuild/openbsd-arm64@0.25.5':
optional: true
- '@esbuild/openbsd-x64@0.25.3':
+ '@esbuild/openbsd-x64@0.25.5':
optional: true
- '@esbuild/sunos-x64@0.25.3':
+ '@esbuild/sunos-x64@0.25.5':
optional: true
- '@esbuild/win32-arm64@0.25.3':
+ '@esbuild/win32-arm64@0.25.5':
optional: true
- '@esbuild/win32-ia32@0.25.3':
+ '@esbuild/win32-ia32@0.25.5':
optional: true
- '@esbuild/win32-x64@0.25.3':
+ '@esbuild/win32-x64@0.25.5':
optional: true
- '@eslint-community/eslint-utils@4.6.1(eslint@9.25.1(jiti@1.21.7))':
+ '@eslint-community/eslint-utils@4.7.0(eslint@9.28.0(jiti@1.21.7))':
dependencies:
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.28.0(jiti@1.21.7)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/compat@1.2.8(eslint@9.25.1(jiti@1.21.7))':
+ '@eslint/compat@1.2.9(eslint@9.28.0(jiti@1.21.7))':
optionalDependencies:
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.28.0(jiti@1.21.7)
'@eslint/config-array@0.20.0':
dependencies:
'@eslint/object-schema': 2.1.6
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.2.1': {}
+ '@eslint/config-helpers@0.2.2': {}
- '@eslint/core@0.13.0':
+ '@eslint/core@0.14.0':
dependencies:
'@types/json-schema': 7.0.15
'@eslint/eslintrc@3.3.1':
dependencies:
ajv: 6.12.6
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
espree: 10.3.0
globals: 14.0.0
ignore: 5.3.2
@@ -9232,76 +9227,77 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.25.1': {}
+ '@eslint/js@9.28.0': {}
'@eslint/object-schema@2.1.6': {}
- '@eslint/plugin-kit@0.2.8':
+ '@eslint/plugin-kit@0.3.1':
dependencies:
- '@eslint/core': 0.13.0
+ '@eslint/core': 0.14.0
levn: 0.4.1
'@glideapps/ts-necessities@2.2.3': {}
- '@google-cloud/common@5.0.2(encoding@0.1.13)(supports-color@10.0.0)':
+ '@google-cloud/common@6.0.0(supports-color@10.0.0)':
dependencies:
'@google-cloud/projectify': 4.0.0
'@google-cloud/promisify': 4.0.0
arrify: 2.0.1
duplexify: 4.1.3
extend: 3.0.2
- google-auth-library: 9.15.1(encoding@0.1.13)(supports-color@10.0.0)
+ google-auth-library: 10.0.0-rc.3(supports-color@10.0.0)
html-entities: 2.6.0
- retry-request: 7.0.2(encoding@0.1.13)(supports-color@10.0.0)
- teeny-request: 9.0.0(encoding@0.1.13)(supports-color@10.0.0)
+ retry-request: 8.0.0(supports-color@10.0.0)
+ teeny-request: 10.1.0(supports-color@10.0.0)
transitivePeerDependencies:
- - encoding
- supports-color
- '@google-cloud/precise-date@4.0.0': {}
+ '@google-cloud/precise-date@5.0.0': {}
'@google-cloud/projectify@4.0.0': {}
+ '@google-cloud/projectify@5.0.0': {}
+
'@google-cloud/promisify@4.0.0': {}
- '@google-cloud/spanner@7.19.1(encoding@0.1.13)(supports-color@10.0.0)':
+ '@google-cloud/promisify@5.0.0': {}
+
+ '@google-cloud/spanner@8.0.0(supports-color@10.0.0)':
dependencies:
- '@google-cloud/common': 5.0.2(encoding@0.1.13)(supports-color@10.0.0)
- '@google-cloud/precise-date': 4.0.0
- '@google-cloud/projectify': 4.0.0
- '@google-cloud/promisify': 4.0.0
+ '@google-cloud/common': 6.0.0(supports-color@10.0.0)
+ '@google-cloud/precise-date': 5.0.0
+ '@google-cloud/projectify': 5.0.0
+ '@google-cloud/promisify': 5.0.0
'@grpc/proto-loader': 0.7.15
'@opentelemetry/api': 1.9.0
- '@opentelemetry/context-async-hooks': 1.30.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.32.0
+ '@opentelemetry/context-async-hooks': 2.0.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.0.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.34.0
'@types/big.js': 6.2.2
'@types/stack-trace': 0.0.33
- arrify: 2.0.1
- big.js: 6.2.2
+ big.js: 7.0.1
checkpoint-stream: 0.1.2
duplexify: 4.1.3
events-intercept: 2.0.0
extend: 3.0.2
- google-auth-library: 9.15.1(encoding@0.1.13)(supports-color@10.0.0)
- google-gax: 4.4.1(encoding@0.1.13)(supports-color@10.0.0)
- grpc-gcp: 1.0.1(protobufjs@7.5.0)
+ google-auth-library: 10.0.0-rc.3(supports-color@10.0.0)
+ google-gax: 5.0.1-rc.1(supports-color@10.0.0)
+ grpc-gcp: 1.0.1(protobufjs@7.5.3)
is: 3.3.0
lodash.snakecase: 4.1.1
merge-stream: 2.0.0
p-queue: 6.6.2
- protobufjs: 7.5.0
- retry-request: 7.0.2(encoding@0.1.13)(supports-color@10.0.0)
+ protobufjs: 7.5.3
+ retry-request: 8.0.0(supports-color@10.0.0)
split-array-stream: 2.0.0
stack-trace: 0.0.10
stream-events: 1.0.5
- teeny-request: 9.0.0(encoding@0.1.13)(supports-color@10.0.0)
+ teeny-request: 10.1.0(supports-color@10.0.0)
through2: 4.0.2
transitivePeerDependencies:
- - encoding
- supports-color
- '@grpc/grpc-js@1.13.3':
+ '@grpc/grpc-js@1.13.4':
dependencies:
'@grpc/proto-loader': 0.7.15
'@js-sdsl/ordered-map': 4.4.2
@@ -9310,7 +9306,7 @@ snapshots:
dependencies:
lodash.camelcase: 4.3.0
long: 5.3.2
- protobufjs: 7.5.0
+ protobufjs: 7.5.3
yargs: 17.7.2
'@hapi/bourne@3.0.0': {}
@@ -9326,29 +9322,29 @@ snapshots:
'@humanwhocodes/retry@0.3.1': {}
- '@humanwhocodes/retry@0.4.2': {}
+ '@humanwhocodes/retry@0.4.3': {}
- '@inquirer/checkbox@4.1.5(@types/node@20.17.32)':
+ '@inquirer/checkbox@4.1.8(@types/node@20.17.57)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@20.17.32)
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@20.17.32)
+ '@inquirer/core': 10.1.13(@types/node@20.17.57)
+ '@inquirer/figures': 1.0.12
+ '@inquirer/type': 3.0.7(@types/node@20.17.57)
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@inquirer/confirm@5.1.9(@types/node@20.17.32)':
+ '@inquirer/confirm@5.1.12(@types/node@20.17.57)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@20.17.32)
- '@inquirer/type': 3.0.6(@types/node@20.17.32)
+ '@inquirer/core': 10.1.13(@types/node@20.17.57)
+ '@inquirer/type': 3.0.7(@types/node@20.17.57)
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@inquirer/core@10.1.10(@types/node@20.17.32)':
+ '@inquirer/core@10.1.13(@types/node@20.17.57)':
dependencies:
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@20.17.32)
+ '@inquirer/figures': 1.0.12
+ '@inquirer/type': 3.0.7(@types/node@20.17.57)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
@@ -9356,97 +9352,97 @@ snapshots:
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@inquirer/editor@4.2.10(@types/node@20.17.32)':
+ '@inquirer/editor@4.2.13(@types/node@20.17.57)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@20.17.32)
- '@inquirer/type': 3.0.6(@types/node@20.17.32)
+ '@inquirer/core': 10.1.13(@types/node@20.17.57)
+ '@inquirer/type': 3.0.7(@types/node@20.17.57)
external-editor: 3.1.0
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@inquirer/expand@4.0.12(@types/node@20.17.32)':
+ '@inquirer/expand@4.0.15(@types/node@20.17.57)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@20.17.32)
- '@inquirer/type': 3.0.6(@types/node@20.17.32)
+ '@inquirer/core': 10.1.13(@types/node@20.17.57)
+ '@inquirer/type': 3.0.7(@types/node@20.17.57)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@inquirer/figures@1.0.11': {}
+ '@inquirer/figures@1.0.12': {}
- '@inquirer/input@4.1.9(@types/node@20.17.32)':
+ '@inquirer/input@4.1.12(@types/node@20.17.57)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@20.17.32)
- '@inquirer/type': 3.0.6(@types/node@20.17.32)
+ '@inquirer/core': 10.1.13(@types/node@20.17.57)
+ '@inquirer/type': 3.0.7(@types/node@20.17.57)
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@inquirer/number@3.0.12(@types/node@20.17.32)':
+ '@inquirer/number@3.0.15(@types/node@20.17.57)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@20.17.32)
- '@inquirer/type': 3.0.6(@types/node@20.17.32)
+ '@inquirer/core': 10.1.13(@types/node@20.17.57)
+ '@inquirer/type': 3.0.7(@types/node@20.17.57)
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@inquirer/password@4.0.12(@types/node@20.17.32)':
+ '@inquirer/password@4.0.15(@types/node@20.17.57)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@20.17.32)
- '@inquirer/type': 3.0.6(@types/node@20.17.32)
+ '@inquirer/core': 10.1.13(@types/node@20.17.57)
+ '@inquirer/type': 3.0.7(@types/node@20.17.57)
ansi-escapes: 4.3.2
optionalDependencies:
- '@types/node': 20.17.32
-
- '@inquirer/prompts@7.5.0(@types/node@20.17.32)':
- dependencies:
- '@inquirer/checkbox': 4.1.5(@types/node@20.17.32)
- '@inquirer/confirm': 5.1.9(@types/node@20.17.32)
- '@inquirer/editor': 4.2.10(@types/node@20.17.32)
- '@inquirer/expand': 4.0.12(@types/node@20.17.32)
- '@inquirer/input': 4.1.9(@types/node@20.17.32)
- '@inquirer/number': 3.0.12(@types/node@20.17.32)
- '@inquirer/password': 4.0.12(@types/node@20.17.32)
- '@inquirer/rawlist': 4.1.0(@types/node@20.17.32)
- '@inquirer/search': 3.0.12(@types/node@20.17.32)
- '@inquirer/select': 4.2.0(@types/node@20.17.32)
+ '@types/node': 20.17.57
+
+ '@inquirer/prompts@7.5.3(@types/node@20.17.57)':
+ dependencies:
+ '@inquirer/checkbox': 4.1.8(@types/node@20.17.57)
+ '@inquirer/confirm': 5.1.12(@types/node@20.17.57)
+ '@inquirer/editor': 4.2.13(@types/node@20.17.57)
+ '@inquirer/expand': 4.0.15(@types/node@20.17.57)
+ '@inquirer/input': 4.1.12(@types/node@20.17.57)
+ '@inquirer/number': 3.0.15(@types/node@20.17.57)
+ '@inquirer/password': 4.0.15(@types/node@20.17.57)
+ '@inquirer/rawlist': 4.1.3(@types/node@20.17.57)
+ '@inquirer/search': 3.0.15(@types/node@20.17.57)
+ '@inquirer/select': 4.2.3(@types/node@20.17.57)
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@inquirer/rawlist@4.1.0(@types/node@20.17.32)':
+ '@inquirer/rawlist@4.1.3(@types/node@20.17.57)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@20.17.32)
- '@inquirer/type': 3.0.6(@types/node@20.17.32)
+ '@inquirer/core': 10.1.13(@types/node@20.17.57)
+ '@inquirer/type': 3.0.7(@types/node@20.17.57)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@inquirer/search@3.0.12(@types/node@20.17.32)':
+ '@inquirer/search@3.0.15(@types/node@20.17.57)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@20.17.32)
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@20.17.32)
+ '@inquirer/core': 10.1.13(@types/node@20.17.57)
+ '@inquirer/figures': 1.0.12
+ '@inquirer/type': 3.0.7(@types/node@20.17.57)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@inquirer/select@4.2.0(@types/node@20.17.32)':
+ '@inquirer/select@4.2.3(@types/node@20.17.57)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@20.17.32)
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@20.17.32)
+ '@inquirer/core': 10.1.13(@types/node@20.17.57)
+ '@inquirer/figures': 1.0.12
+ '@inquirer/type': 3.0.7(@types/node@20.17.57)
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@inquirer/type@1.5.5':
dependencies:
mute-stream: 1.0.0
- '@inquirer/type@3.0.6(@types/node@20.17.32)':
+ '@inquirer/type@3.0.7(@types/node@20.17.57)':
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@isaacs/cliui@8.0.2':
dependencies:
@@ -9499,41 +9495,44 @@ snapshots:
'@jsonjoy.com/json-pack@1.2.0(tslib@2.8.1)':
dependencies:
'@jsonjoy.com/base64': 1.1.2(tslib@2.8.1)
- '@jsonjoy.com/util': 1.5.0(tslib@2.8.1)
+ '@jsonjoy.com/util': 1.6.0(tslib@2.8.1)
hyperdyperid: 1.2.0
thingies: 1.21.0(tslib@2.8.1)
tslib: 2.8.1
- '@jsonjoy.com/util@1.5.0(tslib@2.8.1)':
+ '@jsonjoy.com/util@1.6.0(tslib@2.8.1)':
dependencies:
tslib: 2.8.1
'@leichtgewicht/ip-codec@2.0.5': {}
- '@listr2/prompt-adapter-inquirer@2.0.21(@inquirer/prompts@7.5.0(@types/node@20.17.32))':
+ '@listr2/prompt-adapter-inquirer@2.0.22(@inquirer/prompts@7.5.3(@types/node@20.17.57))':
dependencies:
- '@inquirer/prompts': 7.5.0(@types/node@20.17.32)
+ '@inquirer/prompts': 7.5.3(@types/node@20.17.57)
'@inquirer/type': 1.5.5
- '@lmdb/lmdb-darwin-arm64@3.2.6':
+ '@lmdb/lmdb-darwin-arm64@3.4.0':
+ optional: true
+
+ '@lmdb/lmdb-darwin-x64@3.4.0':
optional: true
- '@lmdb/lmdb-darwin-x64@3.2.6':
+ '@lmdb/lmdb-linux-arm64@3.4.0':
optional: true
- '@lmdb/lmdb-linux-arm64@3.2.6':
+ '@lmdb/lmdb-linux-arm@3.4.0':
optional: true
- '@lmdb/lmdb-linux-arm@3.2.6':
+ '@lmdb/lmdb-linux-x64@3.4.0':
optional: true
- '@lmdb/lmdb-linux-x64@3.2.6':
+ '@lmdb/lmdb-win32-arm64@3.4.0':
optional: true
- '@lmdb/lmdb-win32-x64@3.2.6':
+ '@lmdb/lmdb-win32-x64@3.4.0':
optional: true
- '@mdn/browser-compat-data@6.0.9': {}
+ '@mdn/browser-compat-data@6.0.19': {}
'@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
optional: true
@@ -9645,7 +9644,7 @@ snapshots:
'@npmcli/fs@4.0.0':
dependencies:
- semver: 7.7.1
+ semver: 7.7.2
'@npmcli/git@6.0.3':
dependencies:
@@ -9655,7 +9654,7 @@ snapshots:
npm-pick-manifest: 10.0.0
proc-log: 5.0.0
promise-retry: 2.0.1
- semver: 7.7.1
+ semver: 7.7.2
which: 5.0.0
'@npmcli/installed-package-contents@3.0.0':
@@ -9665,26 +9664,26 @@ snapshots:
'@npmcli/node-gyp@4.0.0': {}
- '@npmcli/package-json@6.1.1':
+ '@npmcli/package-json@6.2.0':
dependencies:
'@npmcli/git': 6.0.3
glob: 10.4.5
hosted-git-info: 8.1.0
json-parse-even-better-errors: 4.0.0
proc-log: 5.0.0
- semver: 7.7.1
+ semver: 7.7.2
validate-npm-package-license: 3.0.4
'@npmcli/promise-spawn@8.0.2':
dependencies:
which: 5.0.0
- '@npmcli/redact@3.2.0': {}
+ '@npmcli/redact@3.2.2': {}
'@npmcli/run-script@9.1.0':
dependencies:
'@npmcli/node-gyp': 4.0.0
- '@npmcli/package-json': 6.1.1
+ '@npmcli/package-json': 6.2.0
'@npmcli/promise-spawn': 8.0.2
node-gyp: 11.2.0
proc-log: 5.0.0
@@ -9692,88 +9691,80 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@octokit/auth-token@5.1.2': {}
+ '@octokit/auth-token@6.0.0': {}
- '@octokit/core@6.1.5':
+ '@octokit/core@7.0.2':
dependencies:
- '@octokit/auth-token': 5.1.2
- '@octokit/graphql': 8.2.2
- '@octokit/request': 9.2.3
- '@octokit/request-error': 6.1.8
- '@octokit/types': 14.0.0
- before-after-hook: 3.0.2
- universal-user-agent: 7.0.2
+ '@octokit/auth-token': 6.0.0
+ '@octokit/graphql': 9.0.1
+ '@octokit/request': 10.0.2
+ '@octokit/request-error': 7.0.0
+ '@octokit/types': 14.1.0
+ before-after-hook: 4.0.0
+ universal-user-agent: 7.0.3
- '@octokit/endpoint@10.1.4':
+ '@octokit/endpoint@11.0.0':
dependencies:
- '@octokit/types': 14.0.0
- universal-user-agent: 7.0.2
+ '@octokit/types': 14.1.0
+ universal-user-agent: 7.0.3
- '@octokit/graphql@8.2.2':
+ '@octokit/graphql@9.0.1':
dependencies:
- '@octokit/request': 9.2.3
- '@octokit/types': 14.0.0
- universal-user-agent: 7.0.2
-
- '@octokit/openapi-types@24.2.0': {}
-
- '@octokit/openapi-types@25.0.0': {}
+ '@octokit/request': 10.0.2
+ '@octokit/types': 14.1.0
+ universal-user-agent: 7.0.3
- '@octokit/plugin-paginate-rest@11.6.0(@octokit/core@6.1.5)':
- dependencies:
- '@octokit/core': 6.1.5
- '@octokit/types': 13.10.0
+ '@octokit/openapi-types@25.1.0': {}
- '@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.5)':
+ '@octokit/plugin-paginate-rest@13.0.1(@octokit/core@7.0.2)':
dependencies:
- '@octokit/core': 6.1.5
+ '@octokit/core': 7.0.2
+ '@octokit/types': 14.1.0
- '@octokit/plugin-rest-endpoint-methods@13.5.0(@octokit/core@6.1.5)':
+ '@octokit/plugin-request-log@6.0.0(@octokit/core@7.0.2)':
dependencies:
- '@octokit/core': 6.1.5
- '@octokit/types': 13.10.0
+ '@octokit/core': 7.0.2
- '@octokit/request-error@6.1.8':
+ '@octokit/plugin-rest-endpoint-methods@16.0.0(@octokit/core@7.0.2)':
dependencies:
- '@octokit/types': 14.0.0
+ '@octokit/core': 7.0.2
+ '@octokit/types': 14.1.0
- '@octokit/request@9.2.3':
+ '@octokit/request-error@7.0.0':
dependencies:
- '@octokit/endpoint': 10.1.4
- '@octokit/request-error': 6.1.8
- '@octokit/types': 14.0.0
- fast-content-type-parse: 2.0.1
- universal-user-agent: 7.0.2
+ '@octokit/types': 14.1.0
- '@octokit/rest@21.1.1':
+ '@octokit/request@10.0.2':
dependencies:
- '@octokit/core': 6.1.5
- '@octokit/plugin-paginate-rest': 11.6.0(@octokit/core@6.1.5)
- '@octokit/plugin-request-log': 5.3.1(@octokit/core@6.1.5)
- '@octokit/plugin-rest-endpoint-methods': 13.5.0(@octokit/core@6.1.5)
+ '@octokit/endpoint': 11.0.0
+ '@octokit/request-error': 7.0.0
+ '@octokit/types': 14.1.0
+ fast-content-type-parse: 3.0.0
+ universal-user-agent: 7.0.3
- '@octokit/types@13.10.0':
+ '@octokit/rest@22.0.0':
dependencies:
- '@octokit/openapi-types': 24.2.0
+ '@octokit/core': 7.0.2
+ '@octokit/plugin-paginate-rest': 13.0.1(@octokit/core@7.0.2)
+ '@octokit/plugin-request-log': 6.0.0(@octokit/core@7.0.2)
+ '@octokit/plugin-rest-endpoint-methods': 16.0.0(@octokit/core@7.0.2)
- '@octokit/types@14.0.0':
+ '@octokit/types@14.1.0':
dependencies:
- '@octokit/openapi-types': 25.0.0
+ '@octokit/openapi-types': 25.1.0
'@opentelemetry/api@1.9.0': {}
- '@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/context-async-hooks@2.0.1(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/core@2.0.1(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/semantic-conventions': 1.28.0
-
- '@opentelemetry/semantic-conventions@1.28.0': {}
+ '@opentelemetry/semantic-conventions': 1.34.0
- '@opentelemetry/semantic-conventions@1.32.0': {}
+ '@opentelemetry/semantic-conventions@1.34.0': {}
'@parcel/watcher-android-arm64@2.5.1':
optional: true
@@ -9862,130 +9853,130 @@ snapshots:
'@protobufjs/utf8@1.1.0': {}
- '@puppeteer/browsers@2.10.2':
+ '@puppeteer/browsers@2.10.5':
dependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
extract-zip: 2.0.1
progress: 2.0.3
proxy-agent: 6.5.0
- semver: 7.7.1
- tar-fs: 3.0.8
+ semver: 7.7.2
+ tar-fs: 3.0.9
yargs: 17.7.2
transitivePeerDependencies:
- bare-buffer
- supports-color
- '@rollup/plugin-alias@5.1.1(rollup@4.40.1)':
+ '@rollup/plugin-alias@5.1.1(rollup@4.41.1)':
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.41.1
- '@rollup/plugin-commonjs@28.0.3(rollup@4.40.1)':
+ '@rollup/plugin-commonjs@28.0.3(rollup@4.41.1)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.41.1)
commondir: 1.0.1
estree-walker: 2.0.2
- fdir: 6.4.4(picomatch@4.0.2)
+ fdir: 6.4.5(picomatch@4.0.2)
is-reference: 1.2.1
magic-string: 0.30.17
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.41.1
- '@rollup/plugin-json@6.1.0(rollup@4.40.1)':
+ '@rollup/plugin-json@6.1.0(rollup@4.41.1)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.41.1)
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.41.1
- '@rollup/plugin-node-resolve@15.3.1(rollup@4.40.1)':
+ '@rollup/plugin-node-resolve@15.3.1(rollup@4.41.1)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.41.1)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.10
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.41.1
- '@rollup/plugin-node-resolve@16.0.1(rollup@4.40.1)':
+ '@rollup/plugin-node-resolve@16.0.1(rollup@4.41.1)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.41.1)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.10
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.41.1
- '@rollup/pluginutils@5.1.4(rollup@4.40.1)':
+ '@rollup/pluginutils@5.1.4(rollup@4.41.1)':
dependencies:
'@types/estree': 1.0.7
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.41.1
- '@rollup/rollup-android-arm-eabi@4.40.1':
+ '@rollup/rollup-android-arm-eabi@4.41.1':
optional: true
- '@rollup/rollup-android-arm64@4.40.1':
+ '@rollup/rollup-android-arm64@4.41.1':
optional: true
- '@rollup/rollup-darwin-arm64@4.40.1':
+ '@rollup/rollup-darwin-arm64@4.41.1':
optional: true
- '@rollup/rollup-darwin-x64@4.40.1':
+ '@rollup/rollup-darwin-x64@4.41.1':
optional: true
- '@rollup/rollup-freebsd-arm64@4.40.1':
+ '@rollup/rollup-freebsd-arm64@4.41.1':
optional: true
- '@rollup/rollup-freebsd-x64@4.40.1':
+ '@rollup/rollup-freebsd-x64@4.41.1':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.41.1':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.40.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.41.1':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.40.1':
+ '@rollup/rollup-linux-arm64-gnu@4.41.1':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.40.1':
+ '@rollup/rollup-linux-arm64-musl@4.41.1':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
+ '@rollup/rollup-linux-loongarch64-gnu@4.41.1':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.41.1':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.40.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.41.1':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.40.1':
+ '@rollup/rollup-linux-riscv64-musl@4.41.1':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.40.1':
+ '@rollup/rollup-linux-s390x-gnu@4.41.1':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.40.1':
+ '@rollup/rollup-linux-x64-gnu@4.41.1':
optional: true
- '@rollup/rollup-linux-x64-musl@4.40.1':
+ '@rollup/rollup-linux-x64-musl@4.41.1':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.40.1':
+ '@rollup/rollup-win32-arm64-msvc@4.41.1':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.40.1':
+ '@rollup/rollup-win32-ia32-msvc@4.41.1':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.40.1':
+ '@rollup/rollup-win32-x64-msvc@4.41.1':
optional: true
- '@rollup/wasm-node@4.40.1':
+ '@rollup/wasm-node@4.41.1':
dependencies:
'@types/estree': 1.0.7
optionalDependencies:
@@ -9995,17 +9986,17 @@ snapshots:
'@sigstore/bundle@3.1.0':
dependencies:
- '@sigstore/protobuf-specs': 0.4.1
+ '@sigstore/protobuf-specs': 0.4.2
'@sigstore/core@2.0.0': {}
- '@sigstore/protobuf-specs@0.4.1': {}
+ '@sigstore/protobuf-specs@0.4.2': {}
'@sigstore/sign@3.1.0':
dependencies:
'@sigstore/bundle': 3.1.0
'@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.4.1
+ '@sigstore/protobuf-specs': 0.4.2
make-fetch-happen: 14.0.3
proc-log: 5.0.0
promise-retry: 2.0.1
@@ -10014,7 +10005,7 @@ snapshots:
'@sigstore/tuf@3.1.1':
dependencies:
- '@sigstore/protobuf-specs': 0.4.1
+ '@sigstore/protobuf-specs': 0.4.2
tuf-js: 3.0.1
transitivePeerDependencies:
- supports-color
@@ -10023,14 +10014,14 @@ snapshots:
dependencies:
'@sigstore/bundle': 3.1.0
'@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.4.1
+ '@sigstore/protobuf-specs': 0.4.2
'@socket.io/component-emitter@3.1.2': {}
- '@stylistic/eslint-plugin@4.2.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@stylistic/eslint-plugin@4.4.0(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- eslint: 9.25.1(jiti@1.21.7)
+ '@typescript-eslint/utils': 8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)
+ eslint: 9.28.0(jiti@1.21.7)
eslint-visitor-keys: 4.2.0
espree: 10.3.0
estraverse: 5.3.0
@@ -10060,66 +10051,70 @@ snapshots:
'@types/accepts@1.3.7':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/babel__code-frame@7.0.6': {}
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/parser': 7.27.4
+ '@babel/types': 7.27.3
'@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.7
'@types/babel__generator@7.27.0':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.27.3
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/parser': 7.27.4
+ '@babel/types': 7.27.3
'@types/babel__traverse@7.20.7':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.27.3
'@types/big.js@6.2.2': {}
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/browser-sync@2.29.0':
dependencies:
'@types/micromatch': 2.3.35
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/serve-static': 1.15.7
chokidar: 3.6.0
'@types/caseless@0.12.5': {}
+ '@types/chai@5.2.2':
+ dependencies:
+ '@types/deep-eql': 4.0.2
+
'@types/co-body@6.1.3':
dependencies:
- '@types/node': 20.17.32
- '@types/qs': 6.9.18
+ '@types/node': 20.17.57
+ '@types/qs': 6.14.0
'@types/command-line-args@5.2.3': {}
'@types/connect-history-api-fallback@1.5.4':
dependencies:
- '@types/express-serve-static-core': 4.19.6
- '@types/node': 20.17.32
+ '@types/express-serve-static-core': 5.0.6
+ '@types/node': 20.17.57
'@types/connect@3.4.38':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/content-disposition@0.5.8': {}
@@ -10128,19 +10123,21 @@ snapshots:
'@types/cookies@0.9.0':
dependencies:
'@types/connect': 3.4.38
- '@types/express': 5.0.1
+ '@types/express': 5.0.2
'@types/keygrip': 1.0.6
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@types/cors@2.8.17':
+ '@types/cors@2.8.18':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/debounce@1.2.4': {}
+ '@types/deep-eql@4.0.2': {}
+
'@types/duplexify@3.6.4':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/eslint-scope@3.7.7':
dependencies:
@@ -10156,26 +10153,26 @@ snapshots:
'@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 20.17.32
- '@types/qs': 6.9.18
+ '@types/node': 20.17.57
+ '@types/qs': 6.14.0
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
'@types/express-serve-static-core@5.0.6':
dependencies:
- '@types/node': 20.17.32
- '@types/qs': 6.9.18
+ '@types/node': 20.17.57
+ '@types/qs': 6.14.0
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
- '@types/express@4.17.21':
+ '@types/express@4.17.22':
dependencies:
'@types/body-parser': 1.19.5
'@types/express-serve-static-core': 4.19.6
- '@types/qs': 6.9.18
+ '@types/qs': 6.14.0
'@types/serve-static': 1.15.7
- '@types/express@5.0.1':
+ '@types/express@5.0.2':
dependencies:
'@types/body-parser': 1.19.5
'@types/express-serve-static-core': 5.0.6
@@ -10184,11 +10181,11 @@ snapshots:
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/http-assert@1.5.6': {}
@@ -10196,7 +10193,7 @@ snapshots:
'@types/http-proxy@1.17.16':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/ini@4.1.1': {}
@@ -10212,9 +10209,9 @@ snapshots:
'@types/jasmine-reporters@2.5.3':
dependencies:
- '@types/jasmine': 5.1.7
+ '@types/jasmine': 5.1.8
- '@types/jasmine@5.1.7': {}
+ '@types/jasmine@5.1.8': {}
'@types/json-schema@7.0.15': {}
@@ -10222,7 +10219,7 @@ snapshots:
'@types/karma@6.3.9':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
log4js: 6.9.1
transitivePeerDependencies:
- supports-color
@@ -10242,18 +10239,20 @@ snapshots:
'@types/http-errors': 2.0.4
'@types/keygrip': 1.0.6
'@types/koa-compose': 3.2.8
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/less@3.0.8': {}
'@types/loader-utils@2.0.6':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/webpack': 4.41.40
- '@types/lodash@4.17.16': {}
+ '@types/lodash@4.17.17': {}
- '@types/long@4.0.2': {}
+ '@types/long@5.0.0':
+ dependencies:
+ long: 5.3.2
'@types/micromatch@2.3.35':
dependencies:
@@ -10265,22 +10264,22 @@ snapshots:
'@types/node-fetch@2.6.12':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
form-data: 4.0.2
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- '@types/node@20.17.32':
+ '@types/node@20.17.57':
dependencies:
undici-types: 6.19.8
'@types/npm-package-arg@6.1.4': {}
- '@types/npm-registry-fetch@8.0.7':
+ '@types/npm-registry-fetch@8.0.8':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/node-fetch': 2.6.12
'@types/npm-package-arg': 6.1.4
'@types/npmlog': 7.0.0
@@ -10288,12 +10287,12 @@ snapshots:
'@types/npmlog@7.0.0':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/pacote@11.1.8':
dependencies:
- '@types/node': 20.17.32
- '@types/npm-registry-fetch': 8.0.7
+ '@types/node': 20.17.57
+ '@types/npm-registry-fetch': 8.0.8
'@types/npmlog': 7.0.0
'@types/ssri': 7.1.5
@@ -10305,23 +10304,23 @@ snapshots:
'@types/progress@2.0.7':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/pumpify@1.4.4':
dependencies:
'@types/duplexify': 3.6.4
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/q@0.0.32': {}
- '@types/qs@6.9.18': {}
+ '@types/qs@6.14.0': {}
'@types/range-parser@1.2.7': {}
'@types/request@2.48.12':
dependencies:
'@types/caseless': 0.12.5
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/tough-cookie': 4.0.5
form-data: 2.5.3
@@ -10338,32 +10337,32 @@ snapshots:
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/serve-index@1.9.4':
dependencies:
- '@types/express': 5.0.1
+ '@types/express': 5.0.2
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/send': 0.17.4
- '@types/shelljs@0.8.15':
+ '@types/shelljs@0.8.16':
dependencies:
'@types/glob': 7.2.0
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/source-list-map@0.1.6': {}
'@types/ssri@7.1.5':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/stack-trace@0.0.33': {}
@@ -10382,17 +10381,17 @@ snapshots:
'@types/watchpack@2.4.4':
dependencies:
'@types/graceful-fs': 4.1.9
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/webpack-sources@3.2.3':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/source-list-map': 0.1.6
source-map: 0.7.4
'@types/webpack@4.41.40':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/tapable': 1.0.12
'@types/uglify-js': 3.17.5
'@types/webpack-sources': 3.2.3
@@ -10401,11 +10400,11 @@ snapshots:
'@types/ws@7.4.7':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/ws@8.18.1':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
'@types/yargs-parser@21.0.3': {}
@@ -10417,121 +10416,99 @@ snapshots:
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
optional: true
- '@typescript-eslint/eslint-plugin@8.31.1(@typescript-eslint/parser@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@typescript-eslint/eslint-plugin@8.33.1(@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@typescript-eslint/scope-manager': 8.31.1
- '@typescript-eslint/type-utils': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.31.1
- eslint: 9.25.1(jiti@1.21.7)
+ '@typescript-eslint/parser': 8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.33.1
+ '@typescript-eslint/type-utils': 8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.33.1
+ eslint: 9.28.0(jiti@1.21.7)
graphemer: 1.4.0
- ignore: 5.3.2
+ ignore: 7.0.5
natural-compare: 1.4.0
ts-api-utils: 2.1.0(typescript@5.8.3)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.31.1
- '@typescript-eslint/types': 8.31.1
- '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.31.1
- debug: 4.4.0(supports-color@10.0.0)
- eslint: 9.25.1(jiti@1.21.7)
+ '@typescript-eslint/scope-manager': 8.33.1
+ '@typescript-eslint/types': 8.33.1
+ '@typescript-eslint/typescript-estree': 8.33.1(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.33.1
+ debug: 4.4.1(supports-color@10.0.0)
+ eslint: 9.28.0(jiti@1.21.7)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.31.0':
- dependencies:
- '@typescript-eslint/types': 8.31.0
- '@typescript-eslint/visitor-keys': 8.31.0
-
- '@typescript-eslint/scope-manager@8.31.1':
- dependencies:
- '@typescript-eslint/types': 8.31.1
- '@typescript-eslint/visitor-keys': 8.31.1
-
- '@typescript-eslint/type-utils@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@typescript-eslint/project-service@8.33.1(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
- '@typescript-eslint/utils': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- debug: 4.4.0(supports-color@10.0.0)
- eslint: 9.25.1(jiti@1.21.7)
- ts-api-utils: 2.1.0(typescript@5.8.3)
+ '@typescript-eslint/tsconfig-utils': 8.33.1(typescript@5.8.3)
+ '@typescript-eslint/types': 8.33.1
+ debug: 4.4.1(supports-color@10.0.0)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.31.0': {}
+ '@typescript-eslint/scope-manager@8.33.1':
+ dependencies:
+ '@typescript-eslint/types': 8.33.1
+ '@typescript-eslint/visitor-keys': 8.33.1
- '@typescript-eslint/types@8.31.1': {}
+ '@typescript-eslint/tsconfig-utils@8.33.1(typescript@5.8.3)':
+ dependencies:
+ typescript: 5.8.3
- '@typescript-eslint/typescript-estree@8.31.0(typescript@5.8.3)':
+ '@typescript-eslint/type-utils@8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.31.0
- '@typescript-eslint/visitor-keys': 8.31.0
- debug: 4.4.0(supports-color@10.0.0)
- fast-glob: 3.3.3
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
+ '@typescript-eslint/typescript-estree': 8.33.1(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)
+ debug: 4.4.1(supports-color@10.0.0)
+ eslint: 9.28.0(jiti@1.21.7)
ts-api-utils: 2.1.0(typescript@5.8.3)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.31.1(typescript@5.8.3)':
+ '@typescript-eslint/types@8.33.1': {}
+
+ '@typescript-eslint/typescript-estree@8.33.1(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.31.1
- '@typescript-eslint/visitor-keys': 8.31.1
- debug: 4.4.0(supports-color@10.0.0)
+ '@typescript-eslint/project-service': 8.33.1(typescript@5.8.3)
+ '@typescript-eslint/tsconfig-utils': 8.33.1(typescript@5.8.3)
+ '@typescript-eslint/types': 8.33.1
+ '@typescript-eslint/visitor-keys': 8.33.1
+ debug: 4.4.1(supports-color@10.0.0)
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.1
+ semver: 7.7.2
ts-api-utils: 2.1.0(typescript@5.8.3)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
- dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@1.21.7))
- '@typescript-eslint/scope-manager': 8.31.0
- '@typescript-eslint/types': 8.31.0
- '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3)
- eslint: 9.25.1(jiti@1.21.7)
- typescript: 5.8.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/utils@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@typescript-eslint/utils@8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@1.21.7))
- '@typescript-eslint/scope-manager': 8.31.1
- '@typescript-eslint/types': 8.31.1
- '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
- eslint: 9.25.1(jiti@1.21.7)
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.28.0(jiti@1.21.7))
+ '@typescript-eslint/scope-manager': 8.33.1
+ '@typescript-eslint/types': 8.33.1
+ '@typescript-eslint/typescript-estree': 8.33.1(typescript@5.8.3)
+ eslint: 9.28.0(jiti@1.21.7)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.31.0':
+ '@typescript-eslint/visitor-keys@8.33.1':
dependencies:
- '@typescript-eslint/types': 8.31.0
- eslint-visitor-keys: 4.2.0
-
- '@typescript-eslint/visitor-keys@8.31.1':
- dependencies:
- '@typescript-eslint/types': 8.31.1
+ '@typescript-eslint/types': 8.33.1
eslint-visitor-keys: 4.2.0
'@verdaccio/auth@8.0.0-next-8.15':
@@ -10541,7 +10518,7 @@ snapshots:
'@verdaccio/loaders': 8.0.0-next-8.6
'@verdaccio/signature': 8.0.0-next-8.7
'@verdaccio/utils': 8.1.0-next-8.15
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.0
lodash: 4.17.21
verdaccio-htpasswd: 13.0.0-next-8.15
transitivePeerDependencies:
@@ -10556,7 +10533,7 @@ snapshots:
dependencies:
'@verdaccio/core': 8.0.0-next-8.15
'@verdaccio/utils': 8.1.0-next-8.15
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.0
js-yaml: 4.1.0
lodash: 4.17.21
minimatch: 7.4.6
@@ -10582,7 +10559,7 @@ snapshots:
'@verdaccio/loaders@8.0.0-next-8.6':
dependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.0
lodash: 4.17.21
transitivePeerDependencies:
- supports-color
@@ -10605,7 +10582,7 @@ snapshots:
'@verdaccio/core': 8.0.0-next-8.15
'@verdaccio/logger-prettify': 8.0.0-next-8.2
colorette: 2.0.20
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -10630,7 +10607,7 @@ snapshots:
'@verdaccio/core': 8.0.0-next-8.15
'@verdaccio/url': 13.0.0-next-8.15
'@verdaccio/utils': 8.1.0-next-8.15
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.0
express: 4.21.2
express-rate-limit: 5.5.1
lodash: 4.17.21
@@ -10644,7 +10621,7 @@ snapshots:
'@verdaccio/signature@8.0.0-next-8.7':
dependencies:
'@verdaccio/config': 8.0.0-next-8.15
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.0
jsonwebtoken: 9.0.2
transitivePeerDependencies:
- supports-color
@@ -10656,7 +10633,7 @@ snapshots:
'@verdaccio/core': 8.0.0-next-8.15
'@verdaccio/url': 13.0.0-next-8.15
'@verdaccio/utils': 8.1.0-next-8.15
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.0
gunzip-maybe: 1.4.2
lodash: 4.17.21
tar-stream: 3.1.7
@@ -10668,7 +10645,7 @@ snapshots:
'@verdaccio/url@13.0.0-next-8.15':
dependencies:
'@verdaccio/core': 8.0.0-next-8.15
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.0
lodash: 4.17.21
validator: 13.12.0
transitivePeerDependencies:
@@ -10681,47 +10658,48 @@ snapshots:
minimatch: 7.4.6
semver: 7.7.1
- '@vitejs/plugin-basic-ssl@2.0.0(vite@6.3.4(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1))':
+ '@vitejs/plugin-basic-ssl@2.0.0(vite@6.3.5(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0))':
dependencies:
- vite: 6.3.4(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0)
- '@vitest/expect@3.1.2':
+ '@vitest/expect@3.2.2':
dependencies:
- '@vitest/spy': 3.1.2
- '@vitest/utils': 3.1.2
+ '@types/chai': 5.2.2
+ '@vitest/spy': 3.2.2
+ '@vitest/utils': 3.2.2
chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.1.2(vite@6.3.3(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1))':
+ '@vitest/mocker@3.2.2(vite@6.3.5(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0))':
dependencies:
- '@vitest/spy': 3.1.2
+ '@vitest/spy': 3.2.2
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- vite: 6.3.3(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0)
- '@vitest/pretty-format@3.1.2':
+ '@vitest/pretty-format@3.2.2':
dependencies:
tinyrainbow: 2.0.0
- '@vitest/runner@3.1.2':
+ '@vitest/runner@3.2.2':
dependencies:
- '@vitest/utils': 3.1.2
+ '@vitest/utils': 3.2.2
pathe: 2.0.3
- '@vitest/snapshot@3.1.2':
+ '@vitest/snapshot@3.2.2':
dependencies:
- '@vitest/pretty-format': 3.1.2
+ '@vitest/pretty-format': 3.2.2
magic-string: 0.30.17
pathe: 2.0.3
- '@vitest/spy@3.1.2':
+ '@vitest/spy@3.2.2':
dependencies:
- tinyspy: 3.0.2
+ tinyspy: 4.0.3
- '@vitest/utils@3.1.2':
+ '@vitest/utils@3.2.2':
dependencies:
- '@vitest/pretty-format': 3.1.2
+ '@vitest/pretty-format': 3.2.2
loupe: 3.1.3
tinyrainbow: 2.0.0
@@ -10758,11 +10736,11 @@ snapshots:
'@web/dev-server-rollup@0.6.4':
dependencies:
- '@rollup/plugin-node-resolve': 15.3.1(rollup@4.40.1)
+ '@rollup/plugin-node-resolve': 15.3.1(rollup@4.41.1)
'@web/dev-server-core': 0.7.5
nanocolors: 0.2.13
parse5: 6.0.1
- rollup: 4.40.1
+ rollup: 4.41.1
whatwg-url: 14.2.0
transitivePeerDependencies:
- bufferutil
@@ -10771,7 +10749,7 @@ snapshots:
'@web/dev-server@0.4.6':
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
'@types/command-line-args': 5.2.3
'@web/config-loader': 0.3.3
'@web/dev-server-core': 0.7.5
@@ -10784,7 +10762,7 @@ snapshots:
internal-ip: 6.2.0
nanocolors: 0.2.13
open: 8.4.2
- portfinder: 1.0.36
+ portfinder: 1.0.37
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -10800,7 +10778,7 @@ snapshots:
'@web/test-runner-core': 0.13.4
'@web/test-runner-coverage-v8': 0.8.0
chrome-launcher: 0.15.2
- puppeteer-core: 24.7.2
+ puppeteer-core: 24.10.0
transitivePeerDependencies:
- bare-buffer
- bufferutil
@@ -10818,7 +10796,7 @@ snapshots:
'@web/test-runner-core@0.13.4':
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
'@types/babel__code-frame': 7.0.6
'@types/co-body': 6.1.3
'@types/convert-source-map': 2.0.3
@@ -10869,7 +10847,7 @@ snapshots:
- supports-color
- utf-8-validate
- '@web/test-runner@0.20.1':
+ '@web/test-runner@0.20.2':
dependencies:
'@web/browser-logs': 0.4.1
'@web/config-loader': 0.3.3
@@ -10885,7 +10863,7 @@ snapshots:
diff: 5.2.0
globby: 11.1.0
nanocolors: 0.2.13
- portfinder: 1.0.36
+ portfinder: 1.0.37
source-map: 0.7.4
transitivePeerDependencies:
- bare-buffer
@@ -11021,7 +10999,7 @@ snapshots:
agent-base@6.0.2(supports-color@10.0.0):
dependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
transitivePeerDependencies:
- supports-color
@@ -11102,14 +11080,16 @@ snapshots:
array-flatten@1.1.1: {}
- array-includes@3.1.8:
+ array-includes@3.1.9:
dependencies:
call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-object-atoms: 1.1.1
get-intrinsic: 1.3.0
is-string: 1.1.1
+ math-intrinsics: 1.1.0
array-union@1.0.2:
dependencies:
@@ -11124,7 +11104,7 @@ snapshots:
call-bind: 1.0.8
call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-errors: 1.3.0
es-object-atoms: 1.1.1
es-shim-unscopables: 1.1.0
@@ -11133,14 +11113,14 @@ snapshots:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-shim-unscopables: 1.1.0
array.prototype.flatmap@1.3.3:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-shim-unscopables: 1.1.0
arraybuffer.prototype.slice@1.0.4:
@@ -11148,7 +11128,7 @@ snapshots:
array-buffer-byte-length: 1.0.2
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-errors: 1.3.0
get-intrinsic: 1.3.0
is-array-buffer: 3.0.5
@@ -11187,14 +11167,14 @@ snapshots:
atomic-sleep@1.0.0: {}
- autoprefixer@10.4.21(postcss@8.5.3):
+ autoprefixer@10.4.21(postcss@8.5.4):
dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001715
+ browserslist: 4.25.0
+ caniuse-lite: 1.0.30001720
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
- postcss: 8.5.3
+ postcss: 8.5.4
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
@@ -11207,33 +11187,33 @@ snapshots:
b4a@1.6.7: {}
- babel-loader@10.0.0(@babel/core@7.26.10)(webpack@5.99.7(esbuild@0.25.3)):
+ babel-loader@10.0.0(@babel/core@7.27.4)(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.27.4
find-up: 5.0.0
- webpack: 5.99.7(esbuild@0.25.3)
+ webpack: 5.99.9(esbuild@0.25.5)
- babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.10):
+ babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.27.4):
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.10
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10)
+ '@babel/compat-data': 7.27.3
+ '@babel/core': 7.27.4
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.4)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.10):
+ babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.27.4):
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10)
- core-js-compat: 3.41.0
+ '@babel/core': 7.27.4
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.4)
+ core-js-compat: 3.42.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.26.10):
+ babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.27.4):
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10)
+ '@babel/core': 7.27.4
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.4)
transitivePeerDependencies:
- supports-color
@@ -11242,7 +11222,7 @@ snapshots:
bare-events@2.5.4:
optional: true
- bare-fs@4.1.3:
+ bare-fs@4.1.5:
dependencies:
bare-events: 2.5.4
bare-path: 3.0.0
@@ -11268,10 +11248,10 @@ snapshots:
base64id@2.0.0: {}
- baseline-browser-mapping@2.3.0:
+ baseline-browser-mapping@2.4.4:
dependencies:
- '@mdn/browser-compat-data': 6.0.9
- web-features: 2.34.1
+ '@mdn/browser-compat-data': 6.0.19
+ web-features: 2.36.1
basic-ftp@5.0.5: {}
@@ -11283,7 +11263,7 @@ snapshots:
bcryptjs@2.4.3: {}
- beasties@0.3.3:
+ beasties@0.3.4:
dependencies:
css-select: 5.1.0
css-what: 6.1.0
@@ -11291,14 +11271,14 @@ snapshots:
domhandler: 5.0.3
htmlparser2: 10.0.0
picocolors: 1.1.1
- postcss: 8.5.3
+ postcss: 8.5.4
postcss-media-query-parser: 0.2.3
- before-after-hook@3.0.2: {}
+ before-after-hook@4.0.0: {}
big.js@5.2.2: {}
- big.js@6.2.2: {}
+ big.js@7.0.1: {}
bignumber.js@9.3.0: {}
@@ -11335,7 +11315,7 @@ snapshots:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
http-errors: 2.0.0
iconv-lite: 0.6.3
on-finished: 2.4.1
@@ -11402,7 +11382,7 @@ snapshots:
etag: 1.8.1
fresh: 0.5.2
fs-extra: 3.0.1
- http-proxy: 1.18.1(debug@4.4.0)
+ http-proxy: 1.18.1(debug@4.4.1)
immutable: 3.8.2
micromatch: 4.0.8
opn: 5.3.0
@@ -11427,12 +11407,12 @@ snapshots:
dependencies:
pako: 0.2.9
- browserslist@4.24.4:
+ browserslist@4.25.0:
dependencies:
- caniuse-lite: 1.0.30001715
- electron-to-chromium: 1.5.143
+ caniuse-lite: 1.0.30001720
+ electron-to-chromium: 1.5.161
node-releases: 2.0.19
- update-browserslist-db: 1.1.3(browserslist@4.24.4)
+ update-browserslist-db: 1.1.3(browserslist@4.25.0)
browserstack@1.6.1:
dependencies:
@@ -11509,7 +11489,7 @@ snapshots:
camelcase@6.3.0: {}
- caniuse-lite@1.0.30001715: {}
+ caniuse-lite@1.0.30001720: {}
caseless@0.12.0: {}
@@ -11576,7 +11556,7 @@ snapshots:
chrome-launcher@0.15.2:
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
escape-string-regexp: 4.0.0
is-wsl: 2.2.0
lighthouse-logger: 1.4.2
@@ -11585,11 +11565,11 @@ snapshots:
chrome-trace-event@1.0.4: {}
- chromium-bidi@4.1.1(devtools-protocol@0.0.1425554):
+ chromium-bidi@5.1.0(devtools-protocol@0.0.1452169):
dependencies:
- devtools-protocol: 0.0.1425554
+ devtools-protocol: 0.0.1452169
mitt: 3.0.1
- zod: 3.24.3
+ zod: 3.25.48
cli-cursor@3.1.0:
dependencies:
@@ -11630,14 +11610,18 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
+ cliui@9.0.1:
+ dependencies:
+ string-width: 7.2.0
+ strip-ansi: 7.1.0
+ wrap-ansi: 9.0.0
+
clone-deep@4.0.1:
dependencies:
is-plain-object: 2.0.4
kind-of: 6.0.3
shallow-clone: 3.0.1
- clone@1.0.4: {}
-
clone@2.1.2: {}
co-body@6.2.0:
@@ -11680,10 +11664,12 @@ snapshots:
table-layout: 4.1.1
typical: 7.3.0
- commander@13.1.0: {}
+ commander@14.0.0: {}
commander@2.20.3: {}
+ common-path-prefix@3.0.0: {}
+
commondir@1.0.1: {}
compressible@2.0.18:
@@ -11759,18 +11745,18 @@ snapshots:
dependencies:
is-what: 3.14.1
- copy-webpack-plugin@13.0.0(webpack@5.99.7(esbuild@0.25.3)):
+ copy-webpack-plugin@13.0.0(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
glob-parent: 6.0.2
normalize-path: 3.0.0
schema-utils: 4.3.2
serialize-javascript: 6.0.2
- tinyglobby: 0.2.13
- webpack: 5.99.7(esbuild@0.25.3)
+ tinyglobby: 0.2.14
+ webpack: 5.99.9(esbuild@0.25.5)
- core-js-compat@3.41.0:
+ core-js-compat@3.42.0:
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.25.0
core-js@3.40.0: {}
@@ -11806,32 +11792,24 @@ snapshots:
transitivePeerDependencies:
- encoding
- cross-spawn@6.0.6:
- dependencies:
- nice-try: 1.0.5
- path-key: 2.0.1
- semver: 5.7.2
- shebang-command: 1.2.0
- which: 1.3.1
-
cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
- css-loader@7.1.2(webpack@5.99.7(esbuild@0.25.3)):
+ css-loader@7.1.2(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
- icss-utils: 5.1.0(postcss@8.5.3)
- postcss: 8.5.3
- postcss-modules-extract-imports: 3.1.0(postcss@8.5.3)
- postcss-modules-local-by-default: 4.2.0(postcss@8.5.3)
- postcss-modules-scope: 3.2.1(postcss@8.5.3)
- postcss-modules-values: 4.0.0(postcss@8.5.3)
+ icss-utils: 5.1.0(postcss@8.5.4)
+ postcss: 8.5.4
+ postcss-modules-extract-imports: 3.1.0(postcss@8.5.4)
+ postcss-modules-local-by-default: 4.2.0(postcss@8.5.4)
+ postcss-modules-scope: 3.2.1(postcss@8.5.4)
+ postcss-modules-values: 4.0.0(postcss@8.5.4)
postcss-value-parser: 4.2.0
- semver: 7.7.1
+ semver: 7.7.2
optionalDependencies:
- webpack: 5.99.7(esbuild@0.25.3)
+ webpack: 5.99.9(esbuild@0.25.5)
css-select@5.1.0:
dependencies:
@@ -11847,7 +11825,7 @@ snapshots:
cssstyle@4.3.1:
dependencies:
- '@asamuzakjp/css-color': 3.1.5
+ '@asamuzakjp/css-color': 3.2.0
rrweb-cssom: 0.8.0
custom-event@1.0.1: {}
@@ -11905,7 +11883,11 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.4.0(supports-color@10.0.0):
+ debug@4.4.0:
+ dependencies:
+ ms: 2.1.3
+
+ debug@4.4.1(supports-color@10.0.0):
dependencies:
ms: 2.1.3
optionalDependencies:
@@ -11934,10 +11916,6 @@ snapshots:
dependencies:
execa: 5.1.1
- defaults@1.0.4:
- dependencies:
- clone: 1.0.4
-
define-data-property@1.1.4:
dependencies:
es-define-property: 1.0.1
@@ -11998,7 +11976,7 @@ snapshots:
devtools-protocol@0.0.1045489: {}
- devtools-protocol@0.0.1425554: {}
+ devtools-protocol@0.0.1452169: {}
di@0.0.1: {}
@@ -12084,7 +12062,7 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.5.143: {}
+ electron-to-chromium@1.5.161: {}
emoji-regex@10.4.0: {}
@@ -12123,8 +12101,8 @@ snapshots:
engine.io@6.6.4:
dependencies:
- '@types/cors': 2.8.17
- '@types/node': 20.17.32
+ '@types/cors': 2.8.18
+ '@types/node': 20.17.57
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.7.2
@@ -12140,7 +12118,7 @@ snapshots:
enhanced-resolve@5.18.1:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.2.1
+ tapable: 2.2.2
ent@2.2.2:
dependencies:
@@ -12172,7 +12150,7 @@ snapshots:
errorstacks@2.4.1: {}
- es-abstract@1.23.9:
+ es-abstract@1.24.0:
dependencies:
array-buffer-byte-length: 1.0.2
arraybuffer.prototype.slice: 1.0.4
@@ -12201,7 +12179,9 @@ snapshots:
is-array-buffer: 3.0.5
is-callable: 1.2.7
is-data-view: 1.0.2
+ is-negative-zero: 2.0.3
is-regex: 1.2.1
+ is-set: 2.0.3
is-shared-array-buffer: 1.0.4
is-string: 1.1.1
is-typed-array: 1.1.15
@@ -12216,6 +12196,7 @@ snapshots:
safe-push-apply: 1.0.0
safe-regex-test: 1.1.0
set-proto: 1.0.0
+ stop-iteration-iterator: 1.1.0
string.prototype.trim: 1.2.10
string.prototype.trimend: 1.0.9
string.prototype.trimstart: 1.0.8
@@ -12259,35 +12240,35 @@ snapshots:
dependencies:
es6-promise: 4.2.8
- esbuild-wasm@0.25.3: {}
+ esbuild-wasm@0.25.5: {}
- esbuild@0.25.3:
+ esbuild@0.25.5:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.3
- '@esbuild/android-arm': 0.25.3
- '@esbuild/android-arm64': 0.25.3
- '@esbuild/android-x64': 0.25.3
- '@esbuild/darwin-arm64': 0.25.3
- '@esbuild/darwin-x64': 0.25.3
- '@esbuild/freebsd-arm64': 0.25.3
- '@esbuild/freebsd-x64': 0.25.3
- '@esbuild/linux-arm': 0.25.3
- '@esbuild/linux-arm64': 0.25.3
- '@esbuild/linux-ia32': 0.25.3
- '@esbuild/linux-loong64': 0.25.3
- '@esbuild/linux-mips64el': 0.25.3
- '@esbuild/linux-ppc64': 0.25.3
- '@esbuild/linux-riscv64': 0.25.3
- '@esbuild/linux-s390x': 0.25.3
- '@esbuild/linux-x64': 0.25.3
- '@esbuild/netbsd-arm64': 0.25.3
- '@esbuild/netbsd-x64': 0.25.3
- '@esbuild/openbsd-arm64': 0.25.3
- '@esbuild/openbsd-x64': 0.25.3
- '@esbuild/sunos-x64': 0.25.3
- '@esbuild/win32-arm64': 0.25.3
- '@esbuild/win32-ia32': 0.25.3
- '@esbuild/win32-x64': 0.25.3
+ '@esbuild/aix-ppc64': 0.25.5
+ '@esbuild/android-arm': 0.25.5
+ '@esbuild/android-arm64': 0.25.5
+ '@esbuild/android-x64': 0.25.5
+ '@esbuild/darwin-arm64': 0.25.5
+ '@esbuild/darwin-x64': 0.25.5
+ '@esbuild/freebsd-arm64': 0.25.5
+ '@esbuild/freebsd-x64': 0.25.5
+ '@esbuild/linux-arm': 0.25.5
+ '@esbuild/linux-arm64': 0.25.5
+ '@esbuild/linux-ia32': 0.25.5
+ '@esbuild/linux-loong64': 0.25.5
+ '@esbuild/linux-mips64el': 0.25.5
+ '@esbuild/linux-ppc64': 0.25.5
+ '@esbuild/linux-riscv64': 0.25.5
+ '@esbuild/linux-s390x': 0.25.5
+ '@esbuild/linux-x64': 0.25.5
+ '@esbuild/netbsd-arm64': 0.25.5
+ '@esbuild/netbsd-x64': 0.25.5
+ '@esbuild/openbsd-arm64': 0.25.5
+ '@esbuild/openbsd-x64': 0.25.5
+ '@esbuild/sunos-x64': 0.25.5
+ '@esbuild/win32-arm64': 0.25.5
+ '@esbuild/win32-ia32': 0.25.5
+ '@esbuild/win32-x64': 0.25.5
escalade@3.2.0: {}
@@ -12305,9 +12286,9 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-prettier@10.1.2(eslint@9.25.1(jiti@1.21.7)):
+ eslint-config-prettier@10.1.5(eslint@9.28.0(jiti@1.21.7)):
dependencies:
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.28.0(jiti@1.21.7)
eslint-import-resolver-node@0.3.9:
dependencies:
@@ -12317,32 +12298,32 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.25.1(jiti@1.21.7)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.28.0(jiti@1.21.7)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- eslint: 9.25.1(jiti@1.21.7)
+ '@typescript-eslint/parser': 8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)
+ eslint: 9.28.0(jiti@1.21.7)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-plugin-header@3.1.1(eslint@9.25.1(jiti@1.21.7)):
+ eslint-plugin-header@3.1.1(eslint@9.28.0(jiti@1.21.7)):
dependencies:
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.28.0(jiti@1.21.7)
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.28.0(jiti@1.21.7)):
dependencies:
'@rtsao/scc': 1.1.0
- array-includes: 3.1.8
+ array-includes: 3.1.9
array.prototype.findlastindex: 1.2.6
array.prototype.flat: 1.3.3
array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.25.1(jiti@1.21.7)
+ eslint: 9.28.0(jiti@1.21.7)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.25.1(jiti@1.21.7))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.28.0(jiti@1.21.7))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -12354,7 +12335,7 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.33.1(eslint@9.28.0(jiti@1.21.7))(typescript@5.8.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -12374,25 +12355,25 @@ snapshots:
eslint-visitor-keys@4.2.0: {}
- eslint@9.25.1(jiti@1.21.7):
+ eslint@9.28.0(jiti@1.21.7):
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@1.21.7))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.28.0(jiti@1.21.7))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.20.0
- '@eslint/config-helpers': 0.2.1
- '@eslint/core': 0.13.0
+ '@eslint/config-helpers': 0.2.2
+ '@eslint/core': 0.14.0
'@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.25.1
- '@eslint/plugin-kit': 0.2.8
+ '@eslint/js': 9.28.0
+ '@eslint/plugin-kit': 0.3.1
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.4.2
+ '@humanwhocodes/retry': 0.4.3
'@types/estree': 1.0.7
'@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
escape-string-regexp: 4.0.0
eslint-scope: 8.3.0
eslint-visitor-keys: 4.2.0
@@ -12456,16 +12437,6 @@ snapshots:
events@3.3.0: {}
- execa@1.0.0:
- dependencies:
- cross-spawn: 6.0.6
- get-stream: 4.1.0
- is-stream: 1.1.0
- npm-run-path: 2.0.2
- p-finally: 1.0.0
- signal-exit: 3.0.7
- strip-eof: 1.0.0
-
execa@5.1.1:
dependencies:
cross-spawn: 7.0.6
@@ -12530,7 +12501,7 @@ snapshots:
content-type: 1.0.5
cookie: 0.7.2
cookie-signature: 1.2.2
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
@@ -12564,7 +12535,7 @@ snapshots:
extract-zip@2.0.1:
dependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -12574,7 +12545,7 @@ snapshots:
extsprintf@1.3.0: {}
- fast-content-type-parse@2.0.1: {}
+ fast-content-type-parse@3.0.0: {}
fast-deep-equal@3.1.3: {}
@@ -12608,7 +12579,7 @@ snapshots:
dependencies:
pend: 1.2.0
- fdir@6.4.4(picomatch@4.0.2):
+ fdir@6.4.5(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
@@ -12663,7 +12634,7 @@ snapshots:
finalhandler@2.1.0:
dependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
@@ -12672,16 +12643,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- find-cache-dir@3.3.2:
+ find-cache-directory@6.0.0:
dependencies:
- commondir: 1.0.1
- make-dir: 3.1.0
- pkg-dir: 4.2.0
+ common-path-prefix: 3.0.0
+ pkg-dir: 8.0.0
find-replace@3.0.0:
dependencies:
array-back: 3.1.0
+ find-up-simple@1.0.1: {}
+
find-up@4.1.0:
dependencies:
locate-path: 5.0.0
@@ -12701,9 +12673,9 @@ snapshots:
flatted@3.3.3: {}
- follow-redirects@1.15.9(debug@4.4.0):
+ follow-redirects@1.15.9(debug@4.4.1):
optionalDependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
for-each@0.3.5:
dependencies:
@@ -12789,24 +12761,20 @@ snapshots:
functions-have-names@1.2.3: {}
- gaxios@6.7.1(encoding@0.1.13)(supports-color@10.0.0):
+ gaxios@7.0.0-rc.6(supports-color@10.0.0):
dependencies:
extend: 3.0.2
https-proxy-agent: 7.0.6(supports-color@10.0.0)
- is-stream: 2.0.1
- node-fetch: 2.7.0(encoding@0.1.13)
- uuid: 9.0.1
+ node-fetch: 3.3.2
transitivePeerDependencies:
- - encoding
- supports-color
- gcp-metadata@6.1.1(encoding@0.1.13)(supports-color@10.0.0):
+ gcp-metadata@7.0.0-rc.1(supports-color@10.0.0):
dependencies:
- gaxios: 6.7.1(encoding@0.1.13)(supports-color@10.0.0)
- google-logging-utils: 0.0.2
+ gaxios: 7.0.0-rc.6(supports-color@10.0.0)
+ google-logging-utils: 1.1.1
json-bigint: 1.0.0
transitivePeerDependencies:
- - encoding
- supports-color
gensync@1.0.0-beta.2: {}
@@ -12835,10 +12803,6 @@ snapshots:
dunder-proto: 1.0.1
es-object-atoms: 1.1.1
- get-stream@4.1.0:
- dependencies:
- pump: 3.0.2
-
get-stream@5.2.0:
dependencies:
pump: 3.0.2
@@ -12855,7 +12819,7 @@ snapshots:
dependencies:
basic-ftp: 5.0.5
data-uri-to-buffer: 6.0.2
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
transitivePeerDependencies:
- supports-color
@@ -12895,7 +12859,7 @@ snapshots:
globals@14.0.0: {}
- globals@16.0.0: {}
+ globals@16.2.0: {}
globalthis@1.0.4:
dependencies:
@@ -12920,37 +12884,36 @@ snapshots:
pify: 2.3.0
pinkie-promise: 2.0.1
- google-auth-library@9.15.1(encoding@0.1.13)(supports-color@10.0.0):
+ google-auth-library@10.0.0-rc.3(supports-color@10.0.0):
dependencies:
base64-js: 1.5.1
ecdsa-sig-formatter: 1.0.11
- gaxios: 6.7.1(encoding@0.1.13)(supports-color@10.0.0)
- gcp-metadata: 6.1.1(encoding@0.1.13)(supports-color@10.0.0)
- gtoken: 7.1.0(encoding@0.1.13)(supports-color@10.0.0)
+ gaxios: 7.0.0-rc.6(supports-color@10.0.0)
+ gcp-metadata: 7.0.0-rc.1(supports-color@10.0.0)
+ google-logging-utils: 1.1.1
+ gtoken: 8.0.0-rc.1(supports-color@10.0.0)
jws: 4.0.0
transitivePeerDependencies:
- - encoding
- supports-color
- google-gax@4.4.1(encoding@0.1.13)(supports-color@10.0.0):
+ google-gax@5.0.1-rc.1(supports-color@10.0.0):
dependencies:
- '@grpc/grpc-js': 1.13.3
+ '@grpc/grpc-js': 1.13.4
'@grpc/proto-loader': 0.7.15
- '@types/long': 4.0.2
+ '@types/long': 5.0.0
abort-controller: 3.0.0
duplexify: 4.1.3
- google-auth-library: 9.15.1(encoding@0.1.13)(supports-color@10.0.0)
- node-fetch: 2.7.0(encoding@0.1.13)
+ google-auth-library: 10.0.0-rc.3(supports-color@10.0.0)
+ google-logging-utils: 1.1.1
+ node-fetch: 3.3.2
object-hash: 3.0.0
- proto3-json-serializer: 2.0.2
- protobufjs: 7.5.0
- retry-request: 7.0.2(encoding@0.1.13)(supports-color@10.0.0)
- uuid: 9.0.1
+ proto3-json-serializer: 3.0.0
+ protobufjs: 7.5.3
+ retry-request: 8.0.0(supports-color@10.0.0)
transitivePeerDependencies:
- - encoding
- supports-color
- google-logging-utils@0.0.2: {}
+ google-logging-utils@1.1.1: {}
gopd@1.2.0: {}
@@ -12958,17 +12921,16 @@ snapshots:
graphemer@1.4.0: {}
- grpc-gcp@1.0.1(protobufjs@7.5.0):
+ grpc-gcp@1.0.1(protobufjs@7.5.3):
dependencies:
- '@grpc/grpc-js': 1.13.3
- protobufjs: 7.5.0
+ '@grpc/grpc-js': 1.13.4
+ protobufjs: 7.5.3
- gtoken@7.1.0(encoding@0.1.13)(supports-color@10.0.0):
+ gtoken@8.0.0-rc.1(supports-color@10.0.0):
dependencies:
- gaxios: 6.7.1(encoding@0.1.13)(supports-color@10.0.0)
+ gaxios: 7.0.0-rc.6(supports-color@10.0.0)
jws: 4.0.0
transitivePeerDependencies:
- - encoding
- supports-color
gunzip-maybe@1.4.2:
@@ -13055,7 +13017,7 @@ snapshots:
deep-equal: 1.0.1
http-errors: 1.8.1
- http-cache-semantics@4.1.1: {}
+ http-cache-semantics@4.2.0: {}
http-deceiver@1.2.7: {}
@@ -13088,44 +13050,44 @@ snapshots:
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2(supports-color@10.0.0)
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
transitivePeerDependencies:
- supports-color
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
transitivePeerDependencies:
- supports-color
- http-proxy-middleware@2.0.9(@types/express@4.17.21):
+ http-proxy-middleware@2.0.9(@types/express@4.17.22):
dependencies:
'@types/http-proxy': 1.17.16
- http-proxy: 1.18.1(debug@4.4.0)
+ http-proxy: 1.18.1(debug@4.4.1)
is-glob: 4.0.3
is-plain-obj: 3.0.0
micromatch: 4.0.8
optionalDependencies:
- '@types/express': 4.17.21
+ '@types/express': 4.17.22
transitivePeerDependencies:
- debug
http-proxy-middleware@3.0.5:
dependencies:
'@types/http-proxy': 1.17.16
- debug: 4.4.0(supports-color@10.0.0)
- http-proxy: 1.18.1(debug@4.4.0)
+ debug: 4.4.1(supports-color@10.0.0)
+ http-proxy: 1.18.1(debug@4.4.1)
is-glob: 4.0.3
is-plain-object: 5.0.0
micromatch: 4.0.8
transitivePeerDependencies:
- supports-color
- http-proxy@1.18.1(debug@4.4.0):
+ http-proxy@1.18.1(debug@4.4.1):
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.9(debug@4.4.0)
+ follow-redirects: 1.15.9(debug@4.4.1)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -13156,14 +13118,14 @@ snapshots:
https-proxy-agent@5.0.1(supports-color@10.0.0):
dependencies:
agent-base: 6.0.2(supports-color@10.0.0)
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.6(supports-color@10.0.0):
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
transitivePeerDependencies:
- supports-color
@@ -13181,9 +13143,9 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.5.3):
+ icss-utils@5.1.0(postcss@8.5.4):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.4
ieee754@1.2.1: {}
@@ -13193,6 +13155,8 @@ snapshots:
ignore@5.3.2: {}
+ ignore@7.0.5: {}
+
image-size@0.5.5:
optional: true
@@ -13200,7 +13164,7 @@ snapshots:
immutable@3.8.2: {}
- immutable@5.1.1: {}
+ immutable@5.1.2: {}
import-fresh@3.3.1:
dependencies:
@@ -13241,8 +13205,6 @@ snapshots:
hasown: 2.0.2
side-channel: 1.1.0
- interpret@1.4.0: {}
-
ip-address@9.0.5:
dependencies:
jsbn: 1.1.0
@@ -13337,7 +13299,7 @@ snapshots:
dependencies:
is-docker: 3.0.0
- is-interactive@1.0.0: {}
+ is-interactive@2.0.0: {}
is-ip@3.1.0:
dependencies:
@@ -13347,6 +13309,8 @@ snapshots:
is-module@1.0.0: {}
+ is-negative-zero@2.0.3: {}
+
is-network-error@1.1.0: {}
is-number-like@1.0.8:
@@ -13403,8 +13367,6 @@ snapshots:
is-stream-ended@0.1.4: {}
- is-stream@1.1.0: {}
-
is-stream@2.0.1: {}
is-string@1.1.1:
@@ -13424,7 +13386,9 @@ snapshots:
is-typedarray@1.0.0: {}
- is-unicode-supported@0.1.0: {}
+ is-unicode-supported@1.3.0: {}
+
+ is-unicode-supported@2.1.0: {}
is-url@1.2.4: {}
@@ -13473,8 +13437,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.26.10
- '@babel/parser': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/parser': 7.27.4
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -13483,11 +13447,11 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.26.10
- '@babel/parser': 7.27.0
+ '@babel/core': 7.27.4
+ '@babel/parser': 7.27.4
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.7.1
+ semver: 7.7.2
transitivePeerDependencies:
- supports-color
@@ -13499,7 +13463,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
@@ -13520,7 +13484,7 @@ snapshots:
jasmine-core@4.6.1: {}
- jasmine-core@5.7.0: {}
+ jasmine-core@5.7.1: {}
jasmine-reporters@2.5.2:
dependencies:
@@ -13537,16 +13501,16 @@ snapshots:
glob: 7.2.3
jasmine-core: 2.8.0
- jasmine@5.7.0:
+ jasmine@5.7.1:
dependencies:
glob: 10.4.5
- jasmine-core: 5.7.0
+ jasmine-core: 5.7.1
jasminewd2@2.2.0: {}
jest-worker@27.5.1:
dependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -13584,7 +13548,7 @@ snapshots:
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
whatwg-url: 14.2.0
- ws: 8.18.1
+ ws: 8.18.2
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -13644,7 +13608,7 @@ snapshots:
lodash.isstring: 4.0.1
lodash.once: 4.1.1
ms: 2.1.3
- semver: 7.7.1
+ semver: 7.7.2
jsprim@1.4.2:
dependencies:
@@ -13667,13 +13631,13 @@ snapshots:
readable-stream: 2.3.8
setimmediate: 1.0.5
- jwa@1.4.1:
+ jwa@1.4.2:
dependencies:
buffer-equal-constant-time: 1.0.1
ecdsa-sig-formatter: 1.0.11
safe-buffer: 5.2.1
- jwa@2.0.0:
+ jwa@2.0.1:
dependencies:
buffer-equal-constant-time: 1.0.1
ecdsa-sig-formatter: 1.0.11
@@ -13681,12 +13645,12 @@ snapshots:
jws@3.2.2:
dependencies:
- jwa: 1.4.1
+ jwa: 1.4.2
safe-buffer: 5.2.1
jws@4.0.0:
dependencies:
- jwa: 2.0.0
+ jwa: 2.0.1
safe-buffer: 5.2.1
karma-chrome-launcher@3.2.0:
@@ -13704,9 +13668,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- karma-jasmine-html-reporter@2.1.0(jasmine-core@5.7.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4):
+ karma-jasmine-html-reporter@2.1.0(jasmine-core@5.7.1)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4):
dependencies:
- jasmine-core: 5.7.0
+ jasmine-core: 5.7.1
karma: 6.4.4
karma-jasmine: 5.1.0(karma@6.4.4)
@@ -13730,7 +13694,7 @@ snapshots:
dom-serialize: 2.2.1
glob: 7.2.3
graceful-fs: 4.2.11
- http-proxy: 1.18.1(debug@4.4.0)
+ http-proxy: 1.18.1(debug@4.4.1)
isbinaryfile: 4.0.10
lodash: 4.17.21
log4js: 6.9.1
@@ -13774,7 +13738,7 @@ snapshots:
koa-send@5.0.1:
dependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
http-errors: 1.8.1
resolve-path: 1.4.0
transitivePeerDependencies:
@@ -13794,7 +13758,7 @@ snapshots:
content-disposition: 0.5.4
content-type: 1.0.5
cookies: 0.9.1
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
delegates: 1.0.0
depd: 2.0.0
destroy: 1.2.0
@@ -13818,13 +13782,13 @@ snapshots:
launch-editor@2.10.0:
dependencies:
picocolors: 1.1.1
- shell-quote: 1.8.2
+ shell-quote: 1.8.3
- less-loader@12.2.0(less@4.3.0)(webpack@5.99.7(esbuild@0.25.3)):
+ less-loader@12.3.0(less@4.3.0)(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
less: 4.3.0
optionalDependencies:
- webpack: 5.99.7(esbuild@0.25.3)
+ webpack: 5.99.9(esbuild@0.25.5)
less@4.3.0:
dependencies:
@@ -13845,11 +13809,11 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- license-webpack-plugin@4.0.2(webpack@5.99.7(esbuild@0.25.3)):
+ license-webpack-plugin@4.0.2(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
- webpack-sources: 3.2.3
+ webpack-sources: 3.3.2
optionalDependencies:
- webpack: 5.99.7(esbuild@0.25.3)
+ webpack: 5.99.9(esbuild@0.25.5)
lie@3.3.0:
dependencies:
@@ -13866,7 +13830,7 @@ snapshots:
lines-and-columns@1.2.4: {}
- listr2@8.3.2:
+ listr2@8.3.3:
dependencies:
cli-truncate: 4.0.0
colorette: 2.0.20
@@ -13875,20 +13839,21 @@ snapshots:
rfdc: 1.4.1
wrap-ansi: 9.0.0
- lmdb@3.2.6:
+ lmdb@3.4.0:
dependencies:
- msgpackr: 1.11.2
+ msgpackr: 1.11.4
node-addon-api: 6.1.0
node-gyp-build-optional-packages: 5.2.2
ordered-binary: 1.5.3
weak-lru-cache: 1.2.2
optionalDependencies:
- '@lmdb/lmdb-darwin-arm64': 3.2.6
- '@lmdb/lmdb-darwin-x64': 3.2.6
- '@lmdb/lmdb-linux-arm': 3.2.6
- '@lmdb/lmdb-linux-arm64': 3.2.6
- '@lmdb/lmdb-linux-x64': 3.2.6
- '@lmdb/lmdb-win32-x64': 3.2.6
+ '@lmdb/lmdb-darwin-arm64': 3.4.0
+ '@lmdb/lmdb-darwin-x64': 3.4.0
+ '@lmdb/lmdb-linux-arm': 3.4.0
+ '@lmdb/lmdb-linux-arm64': 3.4.0
+ '@lmdb/lmdb-linux-x64': 3.4.0
+ '@lmdb/lmdb-win32-arm64': 3.4.0
+ '@lmdb/lmdb-win32-x64': 3.4.0
optional: true
loader-runner@4.3.0: {}
@@ -13939,10 +13904,10 @@ snapshots:
lodash@4.17.21: {}
- log-symbols@4.1.0:
+ log-symbols@6.0.0:
dependencies:
- chalk: 4.1.2
- is-unicode-supported: 0.1.0
+ chalk: 5.4.1
+ is-unicode-supported: 1.3.0
log-update@4.0.0:
dependencies:
@@ -13962,7 +13927,7 @@ snapshots:
log4js@6.9.1:
dependencies:
date-format: 4.0.14
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
flatted: 3.3.3
rfdc: 1.4.1
streamroller: 3.1.5
@@ -14001,13 +13966,9 @@ snapshots:
semver: 5.7.2
optional: true
- make-dir@3.1.0:
- dependencies:
- semver: 6.3.1
-
make-dir@4.0.0:
dependencies:
- semver: 7.7.1
+ semver: 7.7.2
make-error@1.3.6: {}
@@ -14015,7 +13976,7 @@ snapshots:
dependencies:
'@npmcli/agent': 3.0.0
cacache: 19.0.1
- http-cache-semantics: 4.1.1
+ http-cache-semantics: 4.2.0
minipass: 7.1.2
minipass-fetch: 4.0.1
minipass-flush: 1.0.5
@@ -14035,11 +13996,11 @@ snapshots:
media-typer@1.1.0: {}
- memfs@4.17.0:
+ memfs@4.17.2:
dependencies:
'@jsonjoy.com/json-pack': 1.2.0(tslib@2.8.1)
- '@jsonjoy.com/util': 1.5.0(tslib@2.8.1)
- tree-dump: 1.0.2(tslib@2.8.1)
+ '@jsonjoy.com/util': 1.6.0(tslib@2.8.1)
+ tree-dump: 1.0.3(tslib@2.8.1)
tslib: 2.8.1
merge-descriptors@1.0.3: {}
@@ -14079,11 +14040,11 @@ snapshots:
mimic-function@5.0.1: {}
- mini-css-extract-plugin@2.9.2(webpack@5.99.7(esbuild@0.25.3)):
+ mini-css-extract-plugin@2.9.2(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
schema-utils: 4.3.2
- tapable: 2.2.1
- webpack: 5.99.7(esbuild@0.25.3)
+ tapable: 2.2.2
+ webpack: 5.99.9(esbuild@0.25.5)
minimalistic-assert@1.0.1: {}
@@ -14176,7 +14137,7 @@ snapshots:
'@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.3
optional: true
- msgpackr@1.11.2:
+ msgpackr@1.11.4:
optionalDependencies:
msgpackr-extract: 3.0.3
optional: true
@@ -14212,36 +14173,34 @@ snapshots:
netmask@2.0.2: {}
- ng-packagr@20.0.0-next.8(@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3):
+ ng-packagr@20.1.0-next.0(@angular/compiler-cli@20.1.0-next.0(@angular/compiler@20.1.0-next.0)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3):
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular/compiler-cli': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3)
- '@rollup/plugin-json': 6.1.0(rollup@4.40.1)
- '@rollup/wasm-node': 4.40.1
+ '@angular/compiler-cli': 20.1.0-next.0(@angular/compiler@20.1.0-next.0)(typescript@5.8.3)
+ '@rollup/plugin-json': 6.1.0(rollup@4.41.1)
+ '@rollup/wasm-node': 4.41.1
ajv: 8.17.1
ansi-colors: 4.1.3
- browserslist: 4.24.4
+ browserslist: 4.25.0
chokidar: 4.0.3
- commander: 13.1.0
+ commander: 14.0.0
dependency-graph: 1.0.0
- esbuild: 0.25.3
- find-cache-dir: 3.3.2
+ esbuild: 0.25.5
+ find-cache-directory: 6.0.0
injection-js: 2.5.0
jsonc-parser: 3.3.1
less: 4.3.0
- ora: 5.4.1
- piscina: 4.9.2
- postcss: 8.5.3
- rollup-plugin-dts: 6.2.1(rollup@4.40.1)(typescript@5.8.3)
+ ora: 8.2.0
+ piscina: 5.0.0
+ postcss: 8.5.4
+ rollup-plugin-dts: 6.2.1(rollup@4.41.1)(typescript@5.8.3)
rxjs: 7.8.2
- sass: 1.87.0
- tinyglobby: 0.2.13
+ sass: 1.89.1
+ tinyglobby: 0.2.14
tslib: 2.8.1
typescript: 5.8.3
optionalDependencies:
- rollup: 4.40.1
-
- nice-try@1.0.5: {}
+ rollup: 4.41.1
node-addon-api@6.1.0:
optional: true
@@ -14286,9 +14245,9 @@ snapshots:
make-fetch-happen: 14.0.3
nopt: 8.1.0
proc-log: 5.0.0
- semver: 7.7.1
+ semver: 7.7.2
tar: 7.4.3
- tinyglobby: 0.2.13
+ tinyglobby: 0.2.14
which: 5.0.0
transitivePeerDependencies:
- supports-color
@@ -14309,7 +14268,7 @@ snapshots:
npm-install-checks@7.1.1:
dependencies:
- semver: 7.7.1
+ semver: 7.7.2
npm-normalize-package-bin@4.0.0: {}
@@ -14317,10 +14276,10 @@ snapshots:
dependencies:
hosted-git-info: 8.1.0
proc-log: 5.0.0
- semver: 7.7.1
+ semver: 7.7.2
validate-npm-package-name: 6.0.0
- npm-packlist@9.0.0:
+ npm-packlist@10.0.0:
dependencies:
ignore-walk: 7.0.0
@@ -14329,11 +14288,11 @@ snapshots:
npm-install-checks: 7.1.1
npm-normalize-package-bin: 4.0.0
npm-package-arg: 12.0.2
- semver: 7.7.1
+ semver: 7.7.2
npm-registry-fetch@18.0.2:
dependencies:
- '@npmcli/redact': 3.2.0
+ '@npmcli/redact': 3.2.2
jsonparse: 1.3.1
make-fetch-happen: 14.0.3
minipass: 7.1.2
@@ -14344,15 +14303,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- npm-run-path@2.0.2:
- dependencies:
- path-key: 2.0.1
-
npm-run-path@4.0.1:
dependencies:
path-key: 3.1.1
- npm@11.3.0: {}
+ npm@11.4.1: {}
nth-check@2.1.1:
dependencies:
@@ -14383,14 +14338,14 @@ snapshots:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-object-atoms: 1.1.1
object.groupby@1.0.3:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
object.values@1.2.1:
dependencies:
@@ -14427,7 +14382,7 @@ snapshots:
only@0.0.2: {}
- open@10.1.1:
+ open@10.1.2:
dependencies:
default-browser: 5.2.1
define-lazy-prop: 3.0.0
@@ -14453,17 +14408,17 @@ snapshots:
type-check: 0.4.0
word-wrap: 1.2.5
- ora@5.4.1:
+ ora@8.2.0:
dependencies:
- bl: 4.1.0
- chalk: 4.1.2
- cli-cursor: 3.1.0
+ chalk: 5.4.1
+ cli-cursor: 5.0.0
cli-spinners: 2.9.2
- is-interactive: 1.0.0
- is-unicode-supported: 0.1.0
- log-symbols: 4.1.0
- strip-ansi: 6.0.1
- wcwidth: 1.0.1
+ is-interactive: 2.0.0
+ is-unicode-supported: 2.1.0
+ log-symbols: 6.0.0
+ stdin-discarder: 0.2.2
+ string-width: 7.2.0
+ strip-ansi: 7.1.0
ordered-binary@1.5.3:
optional: true
@@ -14521,7 +14476,7 @@ snapshots:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
agent-base: 7.1.3
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
get-uri: 6.0.4
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6(supports-color@10.0.0)
@@ -14537,18 +14492,18 @@ snapshots:
package-json-from-dist@1.0.1: {}
- pacote@20.0.0:
+ pacote@21.0.0:
dependencies:
'@npmcli/git': 6.0.3
'@npmcli/installed-package-contents': 3.0.0
- '@npmcli/package-json': 6.1.1
+ '@npmcli/package-json': 6.2.0
'@npmcli/promise-spawn': 8.0.2
'@npmcli/run-script': 9.1.0
cacache: 19.0.1
fs-minipass: 3.0.3
minipass: 7.1.2
npm-package-arg: 12.0.2
- npm-packlist: 9.0.0
+ npm-packlist: 10.0.0
npm-pick-manifest: 10.0.0
npm-registry-fetch: 18.0.2
proc-log: 5.0.0
@@ -14569,7 +14524,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -14600,8 +14555,6 @@ snapshots:
path-is-inside@1.0.2: {}
- path-key@2.0.1: {}
-
path-key@3.1.1: {}
path-parse@1.0.7: {}
@@ -14677,22 +14630,22 @@ snapshots:
sonic-boom: 4.2.0
thread-stream: 3.1.0
- piscina@4.9.2:
+ piscina@5.0.0:
optionalDependencies:
'@napi-rs/nice': 1.0.1
- pkg-dir@4.2.0:
+ pkg-dir@8.0.0:
dependencies:
- find-up: 4.1.0
+ find-up-simple: 1.0.1
pkginfo@0.4.1: {}
pluralize@8.0.0: {}
- portfinder@1.0.36:
+ portfinder@1.0.37:
dependencies:
async: 3.2.6
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
transitivePeerDependencies:
- supports-color
@@ -14703,39 +14656,39 @@ snapshots:
possible-typed-array-names@1.1.0: {}
- postcss-loader@8.1.1(postcss@8.5.3)(typescript@5.8.3)(webpack@5.99.7(esbuild@0.25.3)):
+ postcss-loader@8.1.1(postcss@8.5.4)(typescript@5.8.3)(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
cosmiconfig: 9.0.0(typescript@5.8.3)
jiti: 1.21.7
- postcss: 8.5.3
- semver: 7.7.1
+ postcss: 8.5.4
+ semver: 7.7.2
optionalDependencies:
- webpack: 5.99.7(esbuild@0.25.3)
+ webpack: 5.99.9(esbuild@0.25.5)
transitivePeerDependencies:
- typescript
postcss-media-query-parser@0.2.3: {}
- postcss-modules-extract-imports@3.1.0(postcss@8.5.3):
+ postcss-modules-extract-imports@3.1.0(postcss@8.5.4):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.4
- postcss-modules-local-by-default@4.2.0(postcss@8.5.3):
+ postcss-modules-local-by-default@4.2.0(postcss@8.5.4):
dependencies:
- icss-utils: 5.1.0(postcss@8.5.3)
- postcss: 8.5.3
+ icss-utils: 5.1.0(postcss@8.5.4)
+ postcss: 8.5.4
postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.2.1(postcss@8.5.3):
+ postcss-modules-scope@3.2.1(postcss@8.5.4):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.4
postcss-selector-parser: 7.1.0
- postcss-modules-values@4.0.0(postcss@8.5.3):
+ postcss-modules-values@4.0.0(postcss@8.5.4):
dependencies:
- icss-utils: 5.1.0(postcss@8.5.3)
- postcss: 8.5.3
+ icss-utils: 5.1.0(postcss@8.5.4)
+ postcss: 8.5.4
postcss-selector-parser@7.1.0:
dependencies:
@@ -14744,7 +14697,7 @@ snapshots:
postcss-value-parser@4.2.0: {}
- postcss@8.5.3:
+ postcss@8.5.4:
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
@@ -14771,11 +14724,11 @@ snapshots:
err-code: 2.0.3
retry: 0.12.0
- proto3-json-serializer@2.0.2:
+ proto3-json-serializer@3.0.0:
dependencies:
- protobufjs: 7.5.0
+ protobufjs: 7.5.3
- protobufjs@7.5.0:
+ protobufjs@7.5.3:
dependencies:
'@protobufjs/aspromise': 1.1.2
'@protobufjs/base64': 1.1.2
@@ -14787,7 +14740,7 @@ snapshots:
'@protobufjs/path': 1.1.2
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
long: 5.3.2
protractor@7.0.0:
@@ -14818,7 +14771,7 @@ snapshots:
proxy-agent@6.5.0:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6(supports-color@10.0.0)
lru-cache: 7.18.3
@@ -14875,14 +14828,14 @@ snapshots:
- supports-color
- utf-8-validate
- puppeteer-core@24.7.2:
+ puppeteer-core@24.10.0:
dependencies:
- '@puppeteer/browsers': 2.10.2
- chromium-bidi: 4.1.1(devtools-protocol@0.0.1425554)
- debug: 4.4.0(supports-color@10.0.0)
- devtools-protocol: 0.0.1425554
+ '@puppeteer/browsers': 2.10.5
+ chromium-bidi: 5.1.0(devtools-protocol@0.0.1452169)
+ debug: 4.4.1(supports-color@10.0.0)
+ devtools-protocol: 0.0.1452169
typed-query-selector: 2.12.0
- ws: 8.18.1
+ ws: 8.18.2
transitivePeerDependencies:
- bare-buffer
- bufferutil
@@ -14919,7 +14872,7 @@ snapshots:
quick-format-unescaped@4.0.4: {}
- quicktype-core@23.1.1(encoding@0.1.13):
+ quicktype-core@23.2.6(encoding@0.1.13):
dependencies:
'@glideapps/ts-necessities': 2.2.3
browser-or-node: 3.0.0
@@ -14934,7 +14887,7 @@ snapshots:
unicode-properties: 1.4.1
urijs: 1.19.11
wordwrap: 1.0.0
- yaml: 2.7.1
+ yaml: 2.8.0
transitivePeerDependencies:
- encoding
@@ -14998,17 +14951,13 @@ snapshots:
real-require@0.2.0: {}
- rechoir@0.6.2:
- dependencies:
- resolve: 1.22.10
-
reflect-metadata@0.2.2: {}
reflect.getprototypeof@1.0.10:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-errors: 1.3.0
es-object-atoms: 1.1.1
get-intrinsic: 1.3.0
@@ -15021,12 +14970,6 @@ snapshots:
regenerate@1.4.2: {}
- regenerator-runtime@0.14.1: {}
-
- regenerator-transform@0.15.2:
- dependencies:
- '@babel/runtime': 7.27.0
-
regex-parser@2.3.1: {}
regexp.prototype.flags@1.5.4:
@@ -15096,7 +15039,7 @@ snapshots:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.4
- postcss: 8.5.3
+ postcss: 8.5.4
source-map: 0.6.1
resolve@1.22.10:
@@ -15122,13 +15065,12 @@ snapshots:
onetime: 7.0.0
signal-exit: 4.1.0
- retry-request@7.0.2(encoding@0.1.13)(supports-color@10.0.0):
+ retry-request@8.0.0(supports-color@10.0.0):
dependencies:
'@types/request': 2.48.12
extend: 3.0.2
- teeny-request: 9.0.0(encoding@0.1.13)(supports-color@10.0.0)
+ teeny-request: 10.1.0(supports-color@10.0.0)
transitivePeerDependencies:
- - encoding
- supports-color
retry@0.12.0: {}
@@ -15153,50 +15095,50 @@ snapshots:
node-fetch: 3.3.2
spdx-expression-validate: 2.0.0
- rollup-plugin-dts@6.2.1(rollup@4.40.1)(typescript@5.8.3):
+ rollup-plugin-dts@6.2.1(rollup@4.41.1)(typescript@5.8.3):
dependencies:
magic-string: 0.30.17
- rollup: 4.40.1
+ rollup: 4.41.1
typescript: 5.8.3
optionalDependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
- rollup-plugin-sourcemaps2@0.5.1(@types/node@20.17.32)(rollup@4.40.1):
+ rollup-plugin-sourcemaps2@0.5.2(@types/node@20.17.57)(rollup@4.41.1):
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
- rollup: 4.40.1
+ '@rollup/pluginutils': 5.1.4(rollup@4.41.1)
+ rollup: 4.41.1
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
- rollup@4.40.1:
+ rollup@4.41.1:
dependencies:
'@types/estree': 1.0.7
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.40.1
- '@rollup/rollup-android-arm64': 4.40.1
- '@rollup/rollup-darwin-arm64': 4.40.1
- '@rollup/rollup-darwin-x64': 4.40.1
- '@rollup/rollup-freebsd-arm64': 4.40.1
- '@rollup/rollup-freebsd-x64': 4.40.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.40.1
- '@rollup/rollup-linux-arm-musleabihf': 4.40.1
- '@rollup/rollup-linux-arm64-gnu': 4.40.1
- '@rollup/rollup-linux-arm64-musl': 4.40.1
- '@rollup/rollup-linux-loongarch64-gnu': 4.40.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.40.1
- '@rollup/rollup-linux-riscv64-gnu': 4.40.1
- '@rollup/rollup-linux-riscv64-musl': 4.40.1
- '@rollup/rollup-linux-s390x-gnu': 4.40.1
- '@rollup/rollup-linux-x64-gnu': 4.40.1
- '@rollup/rollup-linux-x64-musl': 4.40.1
- '@rollup/rollup-win32-arm64-msvc': 4.40.1
- '@rollup/rollup-win32-ia32-msvc': 4.40.1
- '@rollup/rollup-win32-x64-msvc': 4.40.1
+ '@rollup/rollup-android-arm-eabi': 4.41.1
+ '@rollup/rollup-android-arm64': 4.41.1
+ '@rollup/rollup-darwin-arm64': 4.41.1
+ '@rollup/rollup-darwin-x64': 4.41.1
+ '@rollup/rollup-freebsd-arm64': 4.41.1
+ '@rollup/rollup-freebsd-x64': 4.41.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.41.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.41.1
+ '@rollup/rollup-linux-arm64-gnu': 4.41.1
+ '@rollup/rollup-linux-arm64-musl': 4.41.1
+ '@rollup/rollup-linux-loongarch64-gnu': 4.41.1
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.41.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.41.1
+ '@rollup/rollup-linux-riscv64-musl': 4.41.1
+ '@rollup/rollup-linux-s390x-gnu': 4.41.1
+ '@rollup/rollup-linux-x64-gnu': 4.41.1
+ '@rollup/rollup-linux-x64-musl': 4.41.1
+ '@rollup/rollup-win32-arm64-msvc': 4.41.1
+ '@rollup/rollup-win32-ia32-msvc': 4.41.1
+ '@rollup/rollup-win32-x64-msvc': 4.41.1
fsevents: 2.3.3
router@2.2.0:
dependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
depd: 2.0.0
is-promise: 4.0.0
parseurl: 1.3.3
@@ -15245,17 +15187,17 @@ snapshots:
safer-buffer@2.1.2: {}
- sass-loader@16.0.5(sass@1.87.0)(webpack@5.99.7(esbuild@0.25.3)):
+ sass-loader@16.0.5(sass@1.89.1)(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
neo-async: 2.6.2
optionalDependencies:
- sass: 1.87.0
- webpack: 5.99.7(esbuild@0.25.3)
+ sass: 1.89.1
+ webpack: 5.99.9(esbuild@0.25.5)
- sass@1.87.0:
+ sass@1.89.1:
dependencies:
chokidar: 4.0.3
- immutable: 5.1.1
+ immutable: 5.1.2
source-map-js: 1.2.1
optionalDependencies:
'@parcel/watcher': 2.5.1
@@ -15301,6 +15243,8 @@ snapshots:
semver@7.7.1: {}
+ semver@7.7.2: {}
+
send@0.19.0:
dependencies:
debug: 2.6.9
@@ -15339,7 +15283,7 @@ snapshots:
send@1.2.0:
dependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
@@ -15423,26 +15367,18 @@ snapshots:
dependencies:
kind-of: 6.0.3
- shebang-command@1.2.0:
- dependencies:
- shebang-regex: 1.0.0
-
shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
- shebang-regex@1.0.0: {}
-
shebang-regex@3.0.0: {}
- shell-quote@1.8.2: {}
+ shell-quote@1.8.3: {}
- shelljs@0.9.2:
+ shelljs@0.10.0:
dependencies:
- execa: 1.0.0
+ execa: 5.1.1
fast-glob: 3.3.3
- interpret: 1.4.0
- rechoir: 0.6.2
side-channel-list@1.0.0:
dependencies:
@@ -15482,7 +15418,7 @@ snapshots:
dependencies:
'@sigstore/bundle': 3.1.0
'@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.4.1
+ '@sigstore/protobuf-specs': 0.4.2
'@sigstore/sign': 3.1.0
'@sigstore/tuf': 3.1.1
'@sigstore/verify': 2.1.1
@@ -15559,7 +15495,7 @@ snapshots:
socks-proxy-agent@8.0.5:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
socks: 2.8.4
transitivePeerDependencies:
- supports-color
@@ -15579,11 +15515,11 @@ snapshots:
source-map-js@1.2.1: {}
- source-map-loader@5.0.0(webpack@5.99.7(esbuild@0.25.3)):
+ source-map-loader@5.0.0(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.1
- webpack: 5.99.7(esbuild@0.25.3)
+ webpack: 5.99.9(esbuild@0.25.5)
source-map-support@0.4.18:
dependencies:
@@ -15620,7 +15556,7 @@ snapshots:
spdy-transport@3.0.0:
dependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -15631,7 +15567,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -15680,10 +15616,17 @@ snapshots:
std-env@3.9.0: {}
+ stdin-discarder@0.2.2: {}
+
steno@0.4.4:
dependencies:
graceful-fs: 4.2.11
+ stop-iteration-iterator@1.1.0:
+ dependencies:
+ es-errors: 1.3.0
+ internal-slot: 1.1.0
+
stream-events@1.0.5:
dependencies:
stubs: 3.0.0
@@ -15698,7 +15641,7 @@ snapshots:
streamroller@3.1.5:
dependencies:
date-format: 4.0.14
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
fs-extra: 8.1.0
transitivePeerDependencies:
- supports-color
@@ -15734,7 +15677,7 @@ snapshots:
call-bound: 1.0.4
define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-object-atoms: 1.1.1
has-property-descriptors: 1.0.2
@@ -15773,8 +15716,6 @@ snapshots:
strip-bom@3.0.0: {}
- strip-eof@1.0.0: {}
-
strip-final-newline@2.0.0: {}
strip-json-comments@3.1.1: {}
@@ -15802,7 +15743,7 @@ snapshots:
array-back: 6.2.2
wordwrapjs: 5.1.0
- tapable@2.2.1: {}
+ tapable@2.2.2: {}
tar-fs@2.1.1:
dependencies:
@@ -15811,12 +15752,12 @@ snapshots:
pump: 3.0.2
tar-stream: 2.2.0
- tar-fs@3.0.8:
+ tar-fs@3.0.9:
dependencies:
pump: 3.0.2
tar-stream: 3.1.7
optionalDependencies:
- bare-fs: 4.1.3
+ bare-fs: 4.1.5
bare-path: 3.0.0
transitivePeerDependencies:
- bare-buffer
@@ -15853,29 +15794,27 @@ snapshots:
mkdirp: 3.0.1
yallist: 5.0.0
- teeny-request@9.0.0(encoding@0.1.13)(supports-color@10.0.0):
+ teeny-request@10.1.0(supports-color@10.0.0):
dependencies:
http-proxy-agent: 5.0.0(supports-color@10.0.0)
https-proxy-agent: 5.0.1(supports-color@10.0.0)
- node-fetch: 2.7.0(encoding@0.1.13)
+ node-fetch: 3.3.2
stream-events: 1.0.5
- uuid: 9.0.1
transitivePeerDependencies:
- - encoding
- supports-color
- terser-webpack-plugin@5.3.14(esbuild@0.25.3)(webpack@5.99.7(esbuild@0.25.3)):
+ terser-webpack-plugin@5.3.14(esbuild@0.25.5)(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 4.3.2
serialize-javascript: 6.0.2
- terser: 5.39.0
- webpack: 5.99.7(esbuild@0.25.3)
+ terser: 5.41.0
+ webpack: 5.99.9(esbuild@0.25.5)
optionalDependencies:
- esbuild: 0.25.3
+ esbuild: 0.25.5
- terser@5.39.0:
+ terser@5.41.0:
dependencies:
'@jridgewell/source-map': 0.3.6
acorn: 8.14.1
@@ -15913,16 +15852,16 @@ snapshots:
tinyexec@0.3.2: {}
- tinyglobby@0.2.13:
+ tinyglobby@0.2.14:
dependencies:
- fdir: 6.4.4(picomatch@4.0.2)
+ fdir: 6.4.5(picomatch@4.0.2)
picomatch: 4.0.2
- tinypool@1.0.2: {}
+ tinypool@1.1.0: {}
tinyrainbow@2.0.0: {}
- tinyspy@3.0.2: {}
+ tinyspy@4.0.3: {}
tldts-core@6.1.86: {}
@@ -15961,7 +15900,7 @@ snapshots:
dependencies:
punycode: 2.3.1
- tree-dump@1.0.2(tslib@2.8.1):
+ tree-dump@1.0.3(tslib@2.8.1):
dependencies:
tslib: 2.8.1
@@ -15971,14 +15910,14 @@ snapshots:
dependencies:
typescript: 5.8.3
- ts-node@10.9.2(@types/node@20.17.32)(typescript@5.8.3):
+ ts-node@10.9.2(@types/node@20.17.57)(typescript@5.8.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
acorn: 8.14.1
acorn-walk: 8.3.4
arg: 4.1.3
@@ -16003,7 +15942,7 @@ snapshots:
tuf-js@3.0.1:
dependencies:
'@tufjs/models': 3.0.1
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
make-fetch-happen: 14.0.3
transitivePeerDependencies:
- supports-color
@@ -16099,7 +16038,7 @@ snapshots:
undici-types@6.19.8: {}
- undici@7.8.0: {}
+ undici@7.10.0: {}
unenv@1.10.0:
dependencies:
@@ -16138,7 +16077,7 @@ snapshots:
dependencies:
imurmurhash: 0.1.4
- universal-user-agent@7.0.2: {}
+ universal-user-agent@7.0.3: {}
universalify@0.1.2: {}
@@ -16146,9 +16085,9 @@ snapshots:
unpipe@1.0.0: {}
- update-browserslist-db@1.1.3(browserslist@4.24.4):
+ update-browserslist-db@1.1.3(browserslist@4.25.0):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.25.0
escalade: 3.2.0
picocolors: 1.1.1
@@ -16166,8 +16105,6 @@ snapshots:
uuid@8.3.2: {}
- uuid@9.0.1: {}
-
v8-compile-cache-lib@3.0.1: {}
v8-to-istanbul@9.3.0:
@@ -16209,7 +16146,7 @@ snapshots:
apache-md5: 1.1.8
bcryptjs: 2.4.3
core-js: 3.40.0
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.0
http-errors: 2.0.0
unix-crypt-td-js: 1.1.4
transitivePeerDependencies:
@@ -16237,7 +16174,7 @@ snapshots:
clipanion: 4.0.0-rc.4
compression: 1.8.0
cors: 2.8.5
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.0
envinfo: 7.14.0
express: 4.21.2
handlebars: 4.7.8
@@ -16259,13 +16196,13 @@ snapshots:
core-util-is: 1.0.2
extsprintf: 1.3.0
- vite-node@3.1.2(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1):
+ vite-node@3.2.2(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0):
dependencies:
cac: 6.7.14
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 6.3.4(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -16280,65 +16217,50 @@ snapshots:
- tsx
- yaml
- vite@6.3.3(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1):
+ vite@6.3.5(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0):
dependencies:
- esbuild: 0.25.3
- fdir: 6.4.4(picomatch@4.0.2)
+ esbuild: 0.25.5
+ fdir: 6.4.5(picomatch@4.0.2)
picomatch: 4.0.2
- postcss: 8.5.3
- rollup: 4.40.1
- tinyglobby: 0.2.13
+ postcss: 8.5.4
+ rollup: 4.41.1
+ tinyglobby: 0.2.14
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
fsevents: 2.3.3
jiti: 1.21.7
less: 4.3.0
- sass: 1.87.0
- terser: 5.39.0
- yaml: 2.7.1
-
- vite@6.3.4(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1):
- dependencies:
- esbuild: 0.25.3
- fdir: 6.4.4(picomatch@4.0.2)
- picomatch: 4.0.2
- postcss: 8.5.3
- rollup: 4.40.1
- tinyglobby: 0.2.13
- optionalDependencies:
- '@types/node': 20.17.32
- fsevents: 2.3.3
- jiti: 1.21.7
- less: 4.3.0
- sass: 1.87.0
- terser: 5.39.0
- yaml: 2.7.1
-
- vitest@3.1.2(@types/node@20.17.32)(jiti@1.21.7)(jsdom@26.1.0)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1):
- dependencies:
- '@vitest/expect': 3.1.2
- '@vitest/mocker': 3.1.2(vite@6.3.3(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1))
- '@vitest/pretty-format': 3.1.2
- '@vitest/runner': 3.1.2
- '@vitest/snapshot': 3.1.2
- '@vitest/spy': 3.1.2
- '@vitest/utils': 3.1.2
+ sass: 1.89.1
+ terser: 5.41.0
+ yaml: 2.8.0
+
+ vitest@3.2.2(@types/node@20.17.57)(jiti@1.21.7)(jsdom@26.1.0)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0):
+ dependencies:
+ '@types/chai': 5.2.2
+ '@vitest/expect': 3.2.2
+ '@vitest/mocker': 3.2.2(vite@6.3.5(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0))
+ '@vitest/pretty-format': 3.2.2
+ '@vitest/runner': 3.2.2
+ '@vitest/snapshot': 3.2.2
+ '@vitest/spy': 3.2.2
+ '@vitest/utils': 3.2.2
chai: 5.2.0
- debug: 4.4.0(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.0.0)
expect-type: 1.2.1
magic-string: 0.30.17
pathe: 2.0.3
+ picomatch: 4.0.2
std-env: 3.9.0
tinybench: 2.9.0
tinyexec: 0.3.2
- tinyglobby: 0.2.13
- tinypool: 1.0.2
+ tinyglobby: 0.2.14
+ tinypool: 1.1.0
tinyrainbow: 2.0.0
- vite: 6.3.3(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1)
- vite-node: 3.1.2(@types/node@20.17.32)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0)
+ vite-node: 3.2.2(@types/node@20.17.57)(jiti@1.21.7)(less@4.3.0)(sass@1.89.1)(terser@5.41.0)(yaml@2.8.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 20.17.32
+ '@types/node': 20.17.57
jsdom: 26.1.0
transitivePeerDependencies:
- jiti
@@ -16360,7 +16282,7 @@ snapshots:
dependencies:
xml-name-validator: 5.0.0
- watchpack@2.4.2:
+ watchpack@2.4.4:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -16369,14 +16291,10 @@ snapshots:
dependencies:
minimalistic-assert: 1.0.1
- wcwidth@1.0.1:
- dependencies:
- defaults: 1.0.4
-
weak-lru-cache@1.2.2:
optional: true
- web-features@2.34.1: {}
+ web-features@2.36.1: {}
web-streams-polyfill@3.3.3: {}
@@ -16403,22 +16321,22 @@ snapshots:
webidl-conversions@7.0.0: {}
- webpack-dev-middleware@7.4.2(webpack@5.99.7(esbuild@0.25.3)):
+ webpack-dev-middleware@7.4.2(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
colorette: 2.0.20
- memfs: 4.17.0
+ memfs: 4.17.2
mime-types: 2.1.35
on-finished: 2.4.1
range-parser: 1.2.1
schema-utils: 4.3.2
optionalDependencies:
- webpack: 5.99.7(esbuild@0.25.3)
+ webpack: 5.99.9(esbuild@0.25.5)
- webpack-dev-server@5.2.1(webpack@5.99.7(esbuild@0.25.3)):
+ webpack-dev-server@5.2.2(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
- '@types/express': 4.17.21
+ '@types/express': 4.17.22
'@types/express-serve-static-core': 4.19.6
'@types/serve-index': 1.9.4
'@types/serve-static': 1.15.7
@@ -16432,20 +16350,20 @@ snapshots:
connect-history-api-fallback: 2.0.0
express: 4.21.2
graceful-fs: 4.2.11
- http-proxy-middleware: 2.0.9(@types/express@4.17.21)
+ http-proxy-middleware: 2.0.9(@types/express@4.17.22)
ipaddr.js: 2.2.0
launch-editor: 2.10.0
- open: 10.1.1
+ open: 10.1.2
p-retry: 6.2.1
schema-utils: 4.3.2
selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 7.4.2(webpack@5.99.7(esbuild@0.25.3))
- ws: 8.18.1
+ webpack-dev-middleware: 7.4.2(webpack@5.99.9(esbuild@0.25.5))
+ ws: 8.18.2
optionalDependencies:
- webpack: 5.99.7(esbuild@0.25.3)
+ webpack: 5.99.9(esbuild@0.25.5)
transitivePeerDependencies:
- bufferutil
- debug
@@ -16458,14 +16376,14 @@ snapshots:
flat: 5.0.2
wildcard: 2.0.1
- webpack-sources@3.2.3: {}
+ webpack-sources@3.3.2: {}
- webpack-subresource-integrity@5.1.0(webpack@5.99.7(esbuild@0.25.3)):
+ webpack-subresource-integrity@5.1.0(webpack@5.99.9(esbuild@0.25.5)):
dependencies:
typed-assert: 1.0.9
- webpack: 5.99.7(esbuild@0.25.3)
+ webpack: 5.99.9(esbuild@0.25.5)
- webpack@5.99.7(esbuild@0.25.3):
+ webpack@5.99.9(esbuild@0.25.5):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.7
@@ -16474,7 +16392,7 @@ snapshots:
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
acorn: 8.14.1
- browserslist: 4.24.4
+ browserslist: 4.25.0
chrome-trace-event: 1.0.4
enhanced-resolve: 5.18.1
es-module-lexer: 1.7.0
@@ -16487,10 +16405,10 @@ snapshots:
mime-types: 2.1.35
neo-async: 2.6.2
schema-utils: 4.3.2
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.14(esbuild@0.25.3)(webpack@5.99.7(esbuild@0.25.3))
- watchpack: 2.4.2
- webpack-sources: 3.2.3
+ tapable: 2.2.2
+ terser-webpack-plugin: 5.3.14(esbuild@0.25.5)(webpack@5.99.9(esbuild@0.25.5))
+ watchpack: 2.4.4
+ webpack-sources: 3.3.2
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -16618,7 +16536,7 @@ snapshots:
ws@8.17.1: {}
- ws@8.18.1: {}
+ ws@8.18.2: {}
ws@8.9.0: {}
@@ -16649,7 +16567,7 @@ snapshots:
yallist@5.0.0: {}
- yaml@2.7.1: {}
+ yaml@2.8.0: {}
yargs-parser@18.1.3:
dependencies:
@@ -16660,6 +16578,8 @@ snapshots:
yargs-parser@21.1.1: {}
+ yargs-parser@22.0.0: {}
+
yargs@15.4.1:
dependencies:
cliui: 6.0.0
@@ -16694,6 +16614,15 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
+ yargs@18.0.0:
+ dependencies:
+ cliui: 9.0.1
+ escalade: 3.2.0
+ get-caller-file: 2.0.5
+ string-width: 7.2.0
+ y18n: 5.0.8
+ yargs-parser: 22.0.0
+
yauzl@2.10.0:
dependencies:
buffer-crc32: 0.2.13
@@ -16707,6 +16636,6 @@ snapshots:
yoctocolors-cjs@2.1.2: {}
- zod@3.24.3: {}
+ zod@3.25.48: {}
- zone.js@0.15.0: {}
+ zone.js@0.15.1: {}
diff --git a/renovate.json b/renovate.json
index 46266084e448..3214405915b3 100644
--- a/renovate.json
+++ b/renovate.json
@@ -1,73 +1,8 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
- "rangeStrategy": "replace",
- "semanticCommits": "enabled",
- "semanticCommitType": "build",
- "semanticCommitScope": "",
- "separateMajorMinor": false,
- "prHourlyLimit": 2,
- "labels": ["target: minor", "action: merge"],
- "timezone": "America/Tijuana",
- "lockFileMaintenance": {
- "enabled": true
- },
- "dependencyDashboard": true,
- "schedule": ["after 10:00pm every weekday", "before 4:00am every weekday", "every weekend"],
- "baseBranches": ["main"],
- "ignoreDeps": ["@types/node", "build_bazel_rules_nodejs", "rules_pkg", "yarn"],
- "includePaths": [
- "WORKSPACE",
- "package.json",
- "**/package.json",
- ".github/workflows/**/*.yml",
- ".nvmrc"
- ],
+ "extends": ["github>angular/dev-infra//renovate-presets/default.json5"],
"ignorePaths": ["tests/legacy-cli/e2e/assets/**", "tests/schematics/update/packages/**"],
"packageRules": [
- {
- "matchDepNames": ["node"],
- "matchUpdateTypes": ["minor", "patch"]
- },
- {
- "enabled": false,
- "matchDepNames": ["node"],
- "matchUpdateTypes": ["major"]
- },
- {
- "matchPackageNames": ["quicktype-core"],
- "schedule": ["before 4:00am on the first day of the month"]
- },
- {
- "matchCurrentVersion": "/^[~^]?0\\.0\\.0-/",
- "enabled": false
- },
- {
- "groupName": "angular",
- "followTag": "next",
- "matchDepNames": ["/^@angular/.*/", "/angular/dev-infra/"]
- },
- {
- "groupName": "babel",
- "matchDepNames": ["/^@babel/.*/"]
- },
- {
- "groupName": "bazel",
- "matchDepNames": ["/^@bazel/.*/", "/^build_bazel.*/"]
- },
- {
- "separateMinorPatch": true,
- "matchPackageNames": ["typescript", "rxjs", "tslib"]
- },
- {
- "enabled": false,
- "matchPackageNames": ["typescript", "rxjs", "tslib"],
- "matchUpdateTypes": ["major"]
- },
- {
- "enabled": false,
- "matchPackageNames": ["typescript"],
- "matchUpdateTypes": ["minor"]
- },
{
"matchFileNames": [
"packages/angular_devkit/schematics_cli/blank/project-files/package.json",
@@ -76,27 +11,9 @@
],
"matchPackageNames": ["*"],
"groupName": "schematics dependencies",
- "groupSlug": "all-schematics-dependencies",
"lockFileMaintenance": {
"enabled": false
}
- },
- {
- "matchFileNames": [
- "!packages/angular_devkit/schematics_cli/blank/project-files/package.json",
- "!packages/angular_devkit/schematics_cli/schematic/files/package.json",
- "!packages/schematics/angular/utility/latest-versions/package.json"
- ],
- "matchPackageNames": ["*", "!/^@angular/.*/", "!/angular/dev-infra/"],
- "matchUpdateTypes": ["minor", "patch"],
- "groupName": "all non-major dependencies",
- "groupSlug": "all-minor-patch"
- },
- {
- "matchFileNames": [".github/workflows/scorecard.yml"],
- "matchPackageNames": ["*"],
- "groupName": "scorecard action dependencies",
- "groupSlug": "scorecard-action"
}
]
}
diff --git a/scripts/windows-testing/convert-symlinks.mjs b/scripts/windows-testing/convert-symlinks.mjs
index 554b42fc7f15..a170e350dae2 100644
--- a/scripts/windows-testing/convert-symlinks.mjs
+++ b/scripts/windows-testing/convert-symlinks.mjs
@@ -26,100 +26,68 @@ const skipDirectories = [
'_windows_amd64/bin/nodejs/node_modules',
];
-const workspaceRootPaths = [/.*\.runfiles\/_main\//, /^.*-fastbuild\/bin\//];
-
-// Copying can be parallelized and doesn't cause any WSL flakiness (no exe is invoked).
-const parallelCopyTasks = [];
+// Dereferencing can be parallelized and doesn't cause any WSL flakiness (no exe is invoked).
+const dereferenceFns = [];
+// Re-linking can be parallelized, but should only be in batched. WSL exe is involved and it can be flaky.
+// Note: Relinking should not happen during removing & copying of dereference tasks.
+const relinkFns = [];
async function transformDir(p) {
- // We perform all command executions in parallel here to speed up.
- // Note that we can't parallelize for the full recursive directory,
- // as WSL and its interop would otherwise end up with some flaky errors.
- // See: https://github.com/microsoft/WSL/issues/8677.
- const tasks = [];
// We explore directories after all files were checked at this level.
const directoriesToVisit = [];
for (const file of await fs.readdir(p, { withFileTypes: true })) {
const subPath = path.join(p, file.name);
-
if (skipDirectories.some((d) => subPath.endsWith(d))) {
continue;
}
if (file.isSymbolicLink()) {
- // Allow for parallel processing of directory entries.
- tasks.push(
- (async () => {
- let target = '';
- try {
- target = await fs.realpath(subPath);
- } catch (e) {
- if (debug) {
- console.error('Skipping', subPath);
- }
- return;
- }
-
- await fs.rm(subPath);
-
- const subPathId = relativizeForSimilarWorkspacePaths(subPath);
- const targetPathId = relativizeForSimilarWorkspacePaths(target);
- const isSelfLink = subPathId === targetPathId;
+ let realTarget = '';
+ let linkTarget = '';
+
+ try {
+ realTarget = await fs.realpath(subPath);
+ linkTarget = await fs.readlink(subPath);
+ } catch (e) {
+ throw new Error(`Skipping; cannot dereference & read link: ${subPath}: ${e}`);
+ }
- // This is an actual file that needs to be copied. Copy contents.
- // - the target path is equivalent to the link. This is a self-link from `.runfiles` to `bin/`.
- // - the target path is outside any of our workspace roots.
- if (isSelfLink || targetPathId.startsWith('..')) {
- parallelCopyTasks.push(exec(`cp -Rf ${target} ${subPath}`));
- return;
- }
+ // Transform relative links but preserve them.
+ // This is needed for pnpm.
+ if (!path.isAbsolute(linkTarget)) {
+ relinkFns.push(async () => {
+ const wslSubPath = path.relative(rootDir, subPath).replace(/\//g, '\\');
+ const linkTargetWindowsPath = linkTarget.replace(/\//g, '\\');
- const relativeSubPath = relativizeToRoot(subPath);
- const targetAtDestination = path.relative(path.dirname(subPathId), targetPathId);
- const targetAtDestinationWindowsPath = targetAtDestination.replace(/\//g, '\\');
-
- const wslSubPath = relativeSubPath.replace(/\//g, '\\');
-
- if (debug) {
- console.log({
- targetAtDestination,
- subPath,
- relativeSubPath,
- target,
- targetPathId,
- subPathId,
- });
- }
+ await fs.unlink(subPath);
- if ((await fs.stat(target)).isDirectory()) {
+ if ((await fs.stat(realTarget)).isDirectory()) {
// This is a symlink to a directory, create a dir junction.
// Re-create this symlink on the Windows FS using the Windows mklink command.
- await exec(
- `${cmdPath} /c mklink /d "${wslSubPath}" "${targetAtDestinationWindowsPath}"`,
- );
+ await exec(`${cmdPath} /c mklink /d "${wslSubPath}" "${linkTargetWindowsPath}"`);
} else {
// This is a symlink to a file, create a file junction.
// Re-create this symlink on the Windows FS using the Windows mklink command.
- await exec(`${cmdPath} /c mklink "${wslSubPath}" "${targetAtDestinationWindowsPath}"`);
+ await exec(`${cmdPath} /c mklink "${wslSubPath}" "${linkTargetWindowsPath}"`);
}
- })(),
- );
+ });
+ } else {
+ dereferenceFns.push(async () => {
+ await fs.unlink(subPath);
+ // Note: NodeJS `fs.cp` can have issues when sources are readonly.
+ await exec(`cp -R ${realTarget} ${subPath}`);
+ });
+ }
} else if (file.isDirectory()) {
directoriesToVisit.push(subPath);
}
}
- // Wait for all commands/tasks to complete, executed in parallel.
- await Promise.all(tasks);
-
- // Descend into other directories, sequentially to avoid WSL interop errors.
- for (const d of directoriesToVisit) {
- await transformDir(d);
- }
+ await Promise.all(directoriesToVisit.map((d) => transformDir(d)));
}
-function exec(cmd, maxRetries = 2) {
+function exec(cmd, maxRetries = 3) {
return new Promise((resolve, reject) => {
childProcess.exec(cmd, { cwd: rootDir }, (error) => {
if (error !== null) {
@@ -143,27 +111,19 @@ function exec(cmd, maxRetries = 2) {
});
}
-function relativizeForSimilarWorkspacePaths(p) {
- const workspaceRootMatch = workspaceRootPaths.find((r) => r.test(p));
- if (workspaceRootMatch !== undefined) {
- return p.replace(workspaceRootMatch, '');
- }
+try {
+ await transformDir(rootDir);
- return path.relative(rootDir, p);
-}
+ // Dereference first.
+ await Promise.all(dereferenceFns.map((fn) => fn()));
-function relativizeToRoot(p) {
- const res = path.relative(rootDir, p);
- if (!res.startsWith('..')) {
- return res;
+ // Re-link symlinks to work inside Windows.
+ // This is done in batches to avoid flakiness due to WSL
+ // See: https://github.com/microsoft/WSL/issues/8677.
+ const batchSize = 75;
+ for (let i = 0; i < relinkFns.length; i += batchSize) {
+ await Promise.all(relinkFns.slice(i, i + batchSize).map((fn) => fn()));
}
-
- throw new Error('Could not relativize to root: ' + p);
-}
-
-try {
- await transformDir(rootDir);
- await Promise.all(parallelCopyTasks);
} catch (err) {
console.error('Could not convert symlinks:', err);
process.exitCode = 1;
diff --git a/tests/legacy-cli/e2e/initialize/500-create-project.ts b/tests/legacy-cli/e2e/initialize/500-create-project.ts
index d641365b9276..837f54efbcde 100644
--- a/tests/legacy-cli/e2e/initialize/500-create-project.ts
+++ b/tests/legacy-cli/e2e/initialize/500-create-project.ts
@@ -35,6 +35,7 @@ export default async function () {
main: build.options.browser,
browser: undefined,
outputPath: 'dist/test-project/browser',
+ index: 'src/index.html',
};
build.configurations.development = {
diff --git a/tests/legacy-cli/e2e/ng-snapshot/package.json b/tests/legacy-cli/e2e/ng-snapshot/package.json
index 7bab43a46922..ec7c1bfc723d 100644
--- a/tests/legacy-cli/e2e/ng-snapshot/package.json
+++ b/tests/legacy-cli/e2e/ng-snapshot/package.json
@@ -2,21 +2,21 @@
"description": "snapshot versions of Angular for e2e testing",
"private": true,
"dependencies": {
- "@angular/animations": "github:angular/animations-builds#8c7cfe5de32963f3ca4849e0ac0b257e5fcad968",
- "@angular/cdk": "github:angular/cdk-builds#9500b84652d34db69e545a1b24b2728ea86f0328",
- "@angular/common": "github:angular/common-builds#54f70aabf2a52d8fe6fa8c1ed58904ef4e961f18",
- "@angular/compiler": "github:angular/compiler-builds#78737e3daac1f14c1414b214c6c5b70f0737f7a8",
- "@angular/compiler-cli": "github:angular/compiler-cli-builds#c6ad0a6c2534b51de4bb772d651f624535a6a0e0",
- "@angular/core": "github:angular/core-builds#f646318bb5610265ad60850935196d166b1b7f87",
- "@angular/forms": "github:angular/forms-builds#718a5a850ceb7f830371faca3edbae3807b72598",
- "@angular/language-service": "github:angular/language-service-builds#84e7ead0a8c0f48c6a47d1e13c4d3d88697f0c98",
- "@angular/localize": "github:angular/localize-builds#98ba220bc3f0c46c58946354cac2264ca8f120a1",
- "@angular/material": "github:angular/material-builds#d3a1861bac291dbaf690c26410039040ff87cb4d",
- "@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#852e876e854c4e7300b4fae3b6d92a53bb405dc4",
- "@angular/platform-browser": "github:angular/platform-browser-builds#cb20b664273e89b661e3a1f0a8f47daae0b8505d",
- "@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#0e04f42da81191558a80322714cfc6c03c277bba",
- "@angular/platform-server": "github:angular/platform-server-builds#8bb910a8c0c1f5a30a1151728689b3123138d835",
- "@angular/router": "github:angular/router-builds#478122be7bf6b0da1eb5da500991f0be4568d4fa",
- "@angular/service-worker": "github:angular/service-worker-builds#677c72c47d89d5b5a302c2bbb733cbbdc05d2a08"
+ "@angular/animations": "github:angular/animations-builds#bcc07cdd9e1c208d756cbf37b5f37b33245b9cc3",
+ "@angular/cdk": "github:angular/cdk-builds#d732d0761cf59f98b0877c471d23671b106a67a3",
+ "@angular/common": "github:angular/common-builds#deb5d1ab1ecd95b103aa5696962fca2b88815b34",
+ "@angular/compiler": "github:angular/compiler-builds#10f2fca0a5d89f36c31c9255327cb3355b5ebfe9",
+ "@angular/compiler-cli": "github:angular/compiler-cli-builds#037a418996536f53b36f896c05700619e0e68409",
+ "@angular/core": "github:angular/core-builds#8cbe216a823e2857889cb5ddfe1d802ecd07c650",
+ "@angular/forms": "github:angular/forms-builds#fdff7f65686946c3b8acc6cc57dd38b19a9f15bd",
+ "@angular/language-service": "github:angular/language-service-builds#bc4b3892d1e001138eab1752cb284c334dee15d7",
+ "@angular/localize": "github:angular/localize-builds#ddcea6a0a274eb8f1f97574c4152360d554cdcee",
+ "@angular/material": "github:angular/material-builds#5e3bd5cf4de0387d04428f8f3fca2ba9d9f23061",
+ "@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#a415bbb937964ce3e79bdaa32aaf18b1a661b7eb",
+ "@angular/platform-browser": "github:angular/platform-browser-builds#c4e360793d7db06c3bbd084a0972d876bc4ef276",
+ "@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#15a8c5812e1732f013aac702148bd1112a75d877",
+ "@angular/platform-server": "github:angular/platform-server-builds#0344c984525838166fdf9cc3f169b08ee670bcbf",
+ "@angular/router": "github:angular/router-builds#c71c8f8091d611de2fe61ebd523baecf1dbe5a64",
+ "@angular/service-worker": "github:angular/service-worker-builds#541118eb92265ae35d2a521244926d9b0c5b2477"
}
}
diff --git a/tests/legacy-cli/e2e/tests/build/jit-ngmodule.ts b/tests/legacy-cli/e2e/tests/build/jit-ngmodule.ts
index 8ce44ea32386..910f8993a16d 100644
--- a/tests/legacy-cli/e2e/tests/build/jit-ngmodule.ts
+++ b/tests/legacy-cli/e2e/tests/build/jit-ngmodule.ts
@@ -24,6 +24,7 @@ export default async function () {
browser: undefined,
buildOptimizer: false,
outputPath: 'dist/test-project-two',
+ index: 'src/index.html',
};
build.configurations.development = {
diff --git a/tests/legacy-cli/e2e/tests/build/prerender/discover-routes-ngmodule.ts b/tests/legacy-cli/e2e/tests/build/prerender/discover-routes-ngmodule.ts
index cc79e32f9185..9d4843e00f7d 100644
--- a/tests/legacy-cli/e2e/tests/build/prerender/discover-routes-ngmodule.ts
+++ b/tests/legacy-cli/e2e/tests/build/prerender/discover-routes-ngmodule.ts
@@ -19,6 +19,7 @@ export default async function () {
...build.options,
main: build.options.browser,
browser: undefined,
+ index: 'src/index.html',
};
build.configurations.development = {
diff --git a/tests/legacy-cli/e2e/tests/build/prerender/error-with-sourcemaps.ts b/tests/legacy-cli/e2e/tests/build/prerender/error-with-sourcemaps.ts
index b7970cec4000..8e45499f0021 100644
--- a/tests/legacy-cli/e2e/tests/build/prerender/error-with-sourcemaps.ts
+++ b/tests/legacy-cli/e2e/tests/build/prerender/error-with-sourcemaps.ts
@@ -20,7 +20,7 @@ export default async function () {
await writeMultipleFiles({
'src/app/app.ts': `
- import { Component } from '@angular/core';
+ import { Component, signal } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterOutlet } from '@angular/router';
@@ -32,7 +32,7 @@ export default async function () {
styleUrls: ['./app.css']
})
export class App {
- title = 'test-ssr';
+ protected readonly title = signal('test-ssr');
constructor() {
console.log(window)
diff --git a/tests/legacy-cli/e2e/tests/build/rebuild-dot-dirname.ts b/tests/legacy-cli/e2e/tests/build/rebuild-dot-dirname.ts
index ca6ab8ad2886..ed5f12ed94c1 100644
--- a/tests/legacy-cli/e2e/tests/build/rebuild-dot-dirname.ts
+++ b/tests/legacy-cli/e2e/tests/build/rebuild-dot-dirname.ts
@@ -34,6 +34,7 @@ export default async function () {
main: build.options.browser,
browser: undefined,
outputPath: 'dist/subdirectory-test-project',
+ index: 'src/index.html',
};
build.configurations.development = {
diff --git a/tests/legacy-cli/e2e/tests/build/relative-sourcemap.ts b/tests/legacy-cli/e2e/tests/build/relative-sourcemap.ts
index 789b52748796..11b2cccd082b 100644
--- a/tests/legacy-cli/e2e/tests/build/relative-sourcemap.ts
+++ b/tests/legacy-cli/e2e/tests/build/relative-sourcemap.ts
@@ -19,6 +19,7 @@ export default async function () {
main: build.options.browser,
browser: undefined,
outputPath: 'dist/secondary-project',
+ index: 'src/index.html',
};
build.configurations.development = {
diff --git a/tests/legacy-cli/e2e/tests/build/server-rendering/express-engine-ngmodule.ts b/tests/legacy-cli/e2e/tests/build/server-rendering/express-engine-ngmodule.ts
index 2fa393de929f..f05d2182bbd2 100644
--- a/tests/legacy-cli/e2e/tests/build/server-rendering/express-engine-ngmodule.ts
+++ b/tests/legacy-cli/e2e/tests/build/server-rendering/express-engine-ngmodule.ts
@@ -32,6 +32,7 @@ export default async function () {
...build.options,
main: build.options.browser,
browser: undefined,
+ index: 'src/index.html',
};
build.configurations.development = {
diff --git a/tests/legacy-cli/e2e/tests/build/server-rendering/server-routes-output-mode-server.ts b/tests/legacy-cli/e2e/tests/build/server-rendering/server-routes-output-mode-server.ts
index 77b9f9adab61..5205d20eeb0a 100644
--- a/tests/legacy-cli/e2e/tests/build/server-rendering/server-routes-output-mode-server.ts
+++ b/tests/legacy-cli/e2e/tests/build/server-rendering/server-routes-output-mode-server.ts
@@ -21,10 +21,10 @@ export default async function () {
await installWorkspacePackages();
// Test scenario to verify that the content length, including \r\n, is accurate
- await replaceInFile('src/app/app.ts', "title = '", "title = 'Title\\r\\n");
+ await replaceInFile('src/app/app.ts', "title = signal('", "title = signal('Title\\r\\n");
// Ensure text has been updated.
- assert.match(await readFile('src/app/app.ts'), /title = 'Title/);
+ assert.match(await readFile('src/app/app.ts'), /title = signal\('Title/);
// Add routes
await writeFile(
diff --git a/tests/legacy-cli/e2e/tests/i18n/ivy-localize-sub-path.ts b/tests/legacy-cli/e2e/tests/i18n/ivy-localize-sub-path.ts
new file mode 100644
index 000000000000..d6640534c45f
--- /dev/null
+++ b/tests/legacy-cli/e2e/tests/i18n/ivy-localize-sub-path.ts
@@ -0,0 +1,73 @@
+/**
+ * @license
+ * Copyright Google LLC All Rights Reserved.
+ *
+ * Use of this source code is governed by an MIT-style license that can be
+ * found in the LICENSE file at https://angular.dev/license
+ */
+
+import { join } from 'node:path';
+import { expectFileToMatch } from '../../utils/fs';
+import { ng } from '../../utils/process';
+import { updateJsonFile } from '../../utils/project';
+import { baseDir, baseHrefs, externalServer, langTranslations, setupI18nConfig } from './setup';
+
+export default async function () {
+ // Setup i18n tests and config.
+ await setupI18nConfig();
+
+ const URL_SUB_PATH: Record = {
+ 'en-US': '',
+ 'fr': 'fr',
+ 'de': 'deutsche',
+ };
+
+ // Update angular.json
+ await updateJsonFile('angular.json', (workspaceJson) => {
+ const appProject = workspaceJson.projects['test-project'];
+ const i18n: Record = appProject.i18n;
+
+ i18n.sourceLocale = {
+ subPath: URL_SUB_PATH['en-US'],
+ };
+
+ i18n.locales['fr'] = {
+ translation: i18n.locales['fr'],
+ subPath: URL_SUB_PATH['fr'],
+ };
+
+ i18n.locales['de'] = {
+ translation: i18n.locales['de'],
+ subPath: URL_SUB_PATH['de'],
+ };
+ });
+
+ // Build each locale and verify the output.
+ await ng('build');
+ for (const { lang } of langTranslations) {
+ const subPath = URL_SUB_PATH[lang];
+ const baseHref = subPath ? `/${subPath}/` : '/';
+ const outputPath = join(baseDir, subPath);
+
+ // Verify the HTML lang attribute is present
+ await expectFileToMatch(`${outputPath}/index.html`, `lang="${lang}"`);
+
+ // Verify the HTML base HREF attribute is present
+ await expectFileToMatch(`${outputPath}/index.html`, `href="${baseHref}"`);
+
+ // Execute Application E2E tests for a production build without dev server
+ const { server, port, url } = await externalServer(outputPath, baseHref);
+
+ try {
+ await ng(
+ 'e2e',
+ `--port=${port}`,
+ `--configuration=${lang}`,
+ '--dev-server-target=',
+ `--base-url=${url}`,
+ );
+ } finally {
+ server.close();
+ }
+ }
+}
diff --git a/tests/legacy-cli/e2e/tests/misc/forwardref-es2015.ts b/tests/legacy-cli/e2e/tests/misc/forwardref-es2015.ts
index 32ca39e89713..48c28086cd0d 100644
--- a/tests/legacy-cli/e2e/tests/misc/forwardref-es2015.ts
+++ b/tests/legacy-cli/e2e/tests/misc/forwardref-es2015.ts
@@ -6,8 +6,8 @@ export default async function () {
// Update the application to use a forward reference
await replaceInFile(
'src/app/app.ts',
- "import { Component } from '@angular/core';",
- "import { Component, Inject, Injectable, forwardRef } from '@angular/core';",
+ "import { Component, signal } from '@angular/core';",
+ "import { Component, Inject, Injectable, forwardRef, signal } from '@angular/core';",
);
await appendToFile('src/app/app.ts', '\n@Injectable() export class Lock { }\n');
await replaceInFile(
diff --git a/tests/legacy-cli/e2e/tests/test/karma-junit-output.ts b/tests/legacy-cli/e2e/tests/test/karma-junit-output.ts
new file mode 100644
index 000000000000..056adea26ab3
--- /dev/null
+++ b/tests/legacy-cli/e2e/tests/test/karma-junit-output.ts
@@ -0,0 +1,27 @@
+import { expectFileMatchToExist, replaceInFile } from '../../utils/fs';
+import { installPackage } from '../../utils/packages';
+import { silentNg } from '../../utils/process';
+
+const E2E_CUSTOM_LAUNCHER = `
+ customLaunchers: {
+ ChromeHeadlessNoSandbox: {
+ base: 'ChromeHeadless',
+ flags: ['--no-sandbox', '--headless', '--disable-gpu', '--disable-dev-shm-usage'],
+ },
+ },
+ restartOnFileChange: true,
+`;
+
+export default async function () {
+ await installPackage('karma-junit-reporter');
+ await silentNg('generate', 'config', 'karma');
+
+ await replaceInFile('karma.conf.js', 'karma-jasmine-html-reporter', 'karma-junit-reporter');
+ await replaceInFile('karma.conf.js', `'kjhtml'`, `'junit'`);
+
+ await replaceInFile('karma.conf.js', `restartOnFileChange: true`, E2E_CUSTOM_LAUNCHER);
+
+ await silentNg('test', '--no-watch');
+
+ await expectFileMatchToExist('.', /TESTS\-.+\.xml/);
+}
diff --git a/tools/baseline_browserslist/BUILD.bazel b/tools/baseline_browserslist/BUILD.bazel
index 34141cd15759..7680d4e021d0 100644
--- a/tools/baseline_browserslist/BUILD.bazel
+++ b/tools/baseline_browserslist/BUILD.bazel
@@ -32,7 +32,7 @@ ts_project(
)
jasmine_test(
- name = "baseline_browserslist_test",
+ name = "test",
data = [":baseline_browserslist_test_lib"],
)
diff --git a/tools/baseline_browserslist/package.json b/tools/baseline_browserslist/package.json
index 055c59705a2e..68aabd0f9888 100644
--- a/tools/baseline_browserslist/package.json
+++ b/tools/baseline_browserslist/package.json
@@ -1,6 +1,6 @@
{
"type": "module",
"devDependencies": {
- "baseline-browser-mapping": "2.3.0"
+ "baseline-browser-mapping": "2.4.4"
}
}
diff --git a/tools/defaults.bzl b/tools/defaults.bzl
index 18f7f0d5fdc0..cde6f8c43dd6 100644
--- a/tools/defaults.bzl
+++ b/tools/defaults.bzl
@@ -65,9 +65,10 @@ def jasmine_test(data = [], args = [], **kwargs):
chdir = native.package_name(),
args = [
"--require=%s/node_modules/source-map-support/register.js" % relative_to_root,
- "**/*spec.js",
- "**/*spec.mjs",
- "**/*spec.cjs",
+ # Escape so that the `js_binary` launcher triggers Bash expansion.
+ "'**/*+(.|_)spec.js'",
+ "'**/*+(.|_)spec.mjs'",
+ "'**/*+(.|_)spec.cjs'",
] + args,
data = data + ["//:node_modules/source-map-support"],
**kwargs
diff --git a/tools/snapshot_repo_filter.bzl b/tools/snapshot_repo_filter.bzl
index 00e26b44dd9d..a648e8e300a7 100644
--- a/tools/snapshot_repo_filter.bzl
+++ b/tools/snapshot_repo_filter.bzl
@@ -6,14 +6,23 @@
load("//:constants.bzl", "SNAPSHOT_REPOS")
def _generate_snapshot_repo_filter():
- filter = ""
- for (i, pkg_name) in enumerate(SNAPSHOT_REPOS.keys()):
- filter += "{sep}(..|objects|select(has(\"{pkg_name}\")))[\"{pkg_name}\"] |= \"github:{snapshot_repo}#BUILD_SCM_HASH-PLACEHOLDER\"\n".format(
- sep = "| " if i > 0 else "",
- pkg_name = pkg_name,
- snapshot_repo = SNAPSHOT_REPOS[pkg_name],
+ individual_pkg_filters = []
+ for pkg_name, snapshot_repo in SNAPSHOT_REPOS.items():
+ individual_pkg_filters.append(
+ """
+ . as $root
+ | [paths(..)]
+ | [(.[] | select(
+ contains(["{pkg_name}"]) and
+ contains(["peerDependenciesMeta"]) != true))] as $paths
+ | $paths | reduce $paths[] as $path ($root; setpath($path; "github:{snapshot_repo}#BUILD_SCM_HASH-PLACEHOLDER")) | .
+ """.format(
+ pkg_name = pkg_name,
+ snapshot_repo = snapshot_repo,
+ ),
)
- return filter
+
+ return " | ".join(individual_pkg_filters)
# jq filter that replaces package.json dependencies with snapshot repos
SNAPSHOT_REPO_JQ_FILTER = _generate_snapshot_repo_filter()
diff --git a/tools/substitutions.bzl b/tools/substitutions.bzl
index 098b511b1d6e..b2e3877138cd 100644
--- a/tools/substitutions.bzl
+++ b/tools/substitutions.bzl
@@ -5,7 +5,7 @@ _stamp_substitutions = {
"0.0.0-PLACEHOLDER": "{{STABLE_PROJECT_VERSION}}",
"0.0.0-EXPERIMENTAL-PLACEHOLDER": "{{STABLE_PROJECT_EXPERIMENTAL_VERSION}}",
# ---
- "BUILD_SCM_HASH-PLACEHOLDER": "{BUILD_SCM_ABBREV_HASH}",
+ "BUILD_SCM_HASH-PLACEHOLDER": "{{BUILD_SCM_ABBREV_HASH}}",
"0.0.0-ENGINES-NODE": RELEASE_ENGINES_NODE,
"0.0.0-ENGINES-NPM": RELEASE_ENGINES_NPM,
"0.0.0-ENGINES-YARN": RELEASE_ENGINES_YARN,
diff --git a/tools/toolchain_info.bzl b/tools/toolchain_info.bzl
index 8a69f7d0c474..727a02abcae4 100644
--- a/tools/toolchain_info.bzl
+++ b/tools/toolchain_info.bzl
@@ -5,6 +5,7 @@
TOOLCHAINS_NAMES = [
"node20",
"node22",
+ "node24",
]
# this is the list of toolchains that should be used and are registered with nodejs_register_toolchains in the WORKSPACE file
@@ -19,6 +20,11 @@ TOOLCHAINS_VERSIONS = [
"@bazel_tools//src/conditions:darwin": "@node22_darwin_amd64//:node_toolchain",
"@bazel_tools//src/conditions:windows": "@node22_windows_amd64//:node_toolchain",
}),
+ select({
+ "@bazel_tools//src/conditions:linux_x86_64": "@node24_linux_amd64//:node_toolchain",
+ "@bazel_tools//src/conditions:darwin": "@node24_darwin_amd64//:node_toolchain",
+ "@bazel_tools//src/conditions:windows": "@node24_windows_amd64//:node_toolchain",
+ }),
]
# A default toolchain for use when only one is necessary