diff --git a/.github/workflows/lucide-angular.yml b/.github/workflows/lucide-angular.yml
deleted file mode 100644
index 4da339437..000000000
--- a/.github/workflows/lucide-angular.yml
+++ /dev/null
@@ -1,44 +0,0 @@
-name: Lucide Angular checks
-
-on:
- push:
- branches:
- - next
- pull_request:
- paths:
- - packages/lucide-angular/**
- - tools/build-icons/**
- - pnpm-lock.yaml
-
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v6
- - uses: pnpm/action-setup@v4
- - uses: actions/setup-node@v6
- with:
- cache: 'pnpm'
- node-version-file: 'package.json'
-
- - name: Install dependencies
- run: pnpm install --frozen-lockfile
-
- - name: Build
- run: pnpm --filter lucide-angular build
-
- test:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v6
- - uses: pnpm/action-setup@v4
- - uses: actions/setup-node@v6
- with:
- cache: 'pnpm'
- node-version-file: 'package.json'
-
- - name: Install dependencies
- run: pnpm install --frozen-lockfile
-
- - name: Test
- run: pnpm --filter lucide-angular test
diff --git a/.github/workflows/lucide-svelte.yml b/.github/workflows/lucide-svelte.yml
deleted file mode 100644
index 8623787dd..000000000
--- a/.github/workflows/lucide-svelte.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-name: Lucide Svelte checks
-
-on:
- push:
- branches:
- - next
- pull_request:
- paths:
- - packages/lucide-svelte/**
- - packages/shared/**
- - tools/build-icons/**
- - tools/rollup-plugins/**
- - pnpm-lock.yaml
-
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v6
- - uses: pnpm/action-setup@v4
- - uses: actions/setup-node@v6
- with:
- cache: 'pnpm'
- node-version-file: 'package.json'
-
- - name: Install dependencies
- run: pnpm install --frozen-lockfile
-
- - name: Build
- run: pnpm --filter lucide-svelte build
-
- test:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v6
- - uses: pnpm/action-setup@v4
- - uses: actions/setup-node@v6
- with:
- cache: 'pnpm'
- node-version-file: 'package.json'
-
- - name: Install dependencies
- run: pnpm install --frozen-lockfile
-
- - name: Test
- run: pnpm --filter lucide-svelte test
diff --git a/.github/workflows/lucide-vue-next.yml b/.github/workflows/lucide-vue-next.yml
deleted file mode 100644
index f1fa885c6..000000000
--- a/.github/workflows/lucide-vue-next.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-name: Lucide Vue Next checks
-
-on:
- push:
- branches:
- - next
- pull_request:
- paths:
- - packages/lucide-vue-next/**
- - packages/shared/**
- - tools/build-icons/**
- - tools/rollup-plugins/**
- - pnpm-lock.yaml
-
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v6
- - uses: pnpm/action-setup@v4
- - uses: actions/setup-node@v6
- with:
- cache: 'pnpm'
- node-version-file: 'package.json'
-
- - name: Install dependencies
- run: pnpm install --frozen-lockfile
-
- - name: Build
- run: pnpm --filter lucide-vue-next build
-
- test:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v6
- - uses: pnpm/action-setup@v4
- - uses: actions/setup-node@v6
- with:
- cache: 'pnpm'
- node-version-file: 'package.json'
-
- - name: Install dependencies
- run: pnpm install --frozen-lockfile
-
- - name: Test
- run: pnpm --filter lucide-vue-next test
diff --git a/.gitignore b/.gitignore
index 55399e356..691b0bc39 100644
--- a/.gitignore
+++ b/.gitignore
@@ -39,6 +39,7 @@ packages/**/LICENSE
categories.json
tags.json
.vercel
+package-lock.json
# docs
docs/.vitepress/cache
diff --git a/packages/lucide-angular/.eslintrc.js b/packages/lucide-angular/.eslintrc.js
deleted file mode 100644
index 9f2a56033..000000000
--- a/packages/lucide-angular/.eslintrc.js
+++ /dev/null
@@ -1,38 +0,0 @@
-module.exports = {
- root: true,
- overrides: [
- {
- files: ['*.ts'],
- extends: [
- 'eslint:recommended',
- 'plugin:@typescript-eslint/recommended',
- 'plugin:@angular-eslint/recommended',
- 'plugin:@angular-eslint/template/process-inline-templates',
- 'prettier',
- ],
- rules: {
- '@angular-eslint/directive-selector': [
- 'error',
- {
- type: 'attribute',
- prefix: 'lucide',
- style: 'camelCase',
- },
- ],
- '@angular-eslint/component-selector': [
- 'error',
- {
- type: 'element',
- prefix: ['lucide', 'i', 'span'],
- style: 'kebab-case',
- },
- ],
- },
- },
- {
- files: ['*.html'],
- extends: ['plugin:@angular-eslint/template/recommended'],
- rules: {},
- },
- ],
-};
diff --git a/packages/lucide-angular/.gitignore b/packages/lucide-angular/.gitignore
deleted file mode 100644
index ce404eccb..000000000
--- a/packages/lucide-angular/.gitignore
+++ /dev/null
@@ -1,55 +0,0 @@
-# See http://help.github.com/ignore-files/ for more about ignoring files.
-
-# Compiled output
-/dist
-/tmp
-/out-tsc
-# Only exists if Bazel was run
-/bazel-out
-
-# Node
-/node_modules
-
-# profiling files
-chrome-profiler-events*.json
-speed-measure-plugin*.json
-
-# IDEs and editors
-/.idea
-.project
-.classpath
-.c9/
-*.launch
-.settings/
-*.sublime-workspace
-
-# Visual Studio Code
-/.vscode
-.vscode/*
-!.vscode/settings.json
-!.vscode/tasks.json
-!.vscode/launch.json
-!.vscode/extensions.json
-.history/*
-.editorconfig
-
-# Miscellaneous
-/.sass-cache
-/connect.lock
-/coverage
-/libpeerconnection.log
-npm-debug.log
-yarn-error.log
-testem.log
-/typings
-
-# System files
-.DS_Store
-Thumbs.db
-
-# npm-yarn
-package-lock.json
-src/createElement.js
-
-# angular cache
-.angular/cache
diff --git a/packages/lucide-angular/README.md b/packages/lucide-angular/README.md
deleted file mode 100644
index 65a783ea5..000000000
--- a/packages/lucide-angular/README.md
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
-
-
-Lucide icon library for Angular applications.
-
-
-
-
- [](https://www.npmjs.com/package/lucide-angular)
- 
- [](https://lucide.dev/license)
-
-
-
- About
- ·
- Icons
- ·
- Documentation
- ·
- License
-
-
-# Lucide Angular
-
-Implementation of the Lucide icon library for angular applications.
-
-## Installation
-
-```sh
-pnpm add lucide-angular
-```
-
-```sh
-npm install lucide-angular
-```
-
-```sh
-yarn add lucide-angular
-```
-
-```sh
-bun add lucide-angular
-```
-
-## Documentation
-
-For full documentation, visit [lucide.dev](https://lucide.dev/guide/packages/lucide-angular)
-
-## Community
-
-Join the [Discord server](https://discord.gg/EH6nSts) to chat with the maintainers and other users.
-
-## License
-
-Lucide is licensed under the ISC license. See [LICENSE](https://lucide.dev/license).
-
-[//]: <> (Sponsors)
-
-## Sponsors
-
-
-
-
-
-
-
-### Hero backers 🦸
-
-
-
-### Awesome backers 🍺
-
-
-
-
-### Backers ☕
-
-
-
-### Other contributors 💸
-
-You can find all our past and non-recurring financial contributors at [our Open Collective page](https://opencollective.com/lucide-icons).
diff --git a/packages/lucide-angular/angular.json b/packages/lucide-angular/angular.json
deleted file mode 100644
index f518cd3e5..000000000
--- a/packages/lucide-angular/angular.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- "$schema": "../../node_modules/@angular/cli/lib/config/schema.json",
- "version": 1,
- "newProjectRoot": "",
- "projects": {
- "lucide-angular": {
- "projectType": "library",
- "root": ".",
- "sourceRoot": "src",
- "prefix": "lucide",
- "architect": {
- "build": {
- "builder": "@angular-devkit/build-angular:ng-packagr",
- "options": {
- "project": "ng-package.json"
- },
- "configurations": {
- "production": {
- "tsConfig": "tsconfig.lib.prod.json"
- },
- "development": {
- "tsConfig": "tsconfig.lib.json"
- }
- },
- "defaultConfiguration": "production"
- },
- "test": {
- "builder": "@angular-devkit/build-angular:karma",
- "options": {
- "main": "src/test.ts",
- "tsConfig": "tsconfig.spec.json",
- "karmaConfig": "karma.conf.js"
- }
- },
- "lint": {
- "builder": "@angular-eslint/builder:lint",
- "options": {
- "lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
- }
- }
- }
- }
- },
- "cli": {
- "packageManager": "pnpm"
- },
- "defaultProject": "lucide-angular"
-}
diff --git a/packages/lucide-angular/karma.conf.js b/packages/lucide-angular/karma.conf.js
deleted file mode 100644
index 1bd44e6a5..000000000
--- a/packages/lucide-angular/karma.conf.js
+++ /dev/null
@@ -1,48 +0,0 @@
-/* eslint-disable global-require, func-names */
-// Karma configuration file, see link for more information
-// https://karma-runner.github.io/1.0/config/configuration-file.html
-
-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'),
- ],
- client: {
- jasmine: {
- // you can add configuration options for Jasmine here
- // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
- // for example, you can disable the random execution with `random: false`
- // or set a specific seed with `seed: 4321`
- },
- clearContext: false, // leave Jasmine Spec Runner output visible in browser
- },
- jasmineHtmlReporter: {
- suppressAll: true, // removes the duplicated traces
- },
- coverageReporter: {
- dir: require('path').join(__dirname, '../../coverage/lucide-angular'),
- subdir: '.',
- reporters: [{ type: 'html' }, { type: 'text-summary' }],
- },
- reporters: ['progress', 'kjhtml'],
- port: 9876,
- colors: true,
- logLevel: config.LOG_INFO,
- autoWatch: true,
- browsers: ['ChromeHeadlessCI'],
- customLaunchers: {
- ChromeHeadlessCI: {
- base: 'ChromeHeadless',
- flags: ['--no-sandbox'],
- },
- },
- singleRun: false,
- restartOnFileChange: true,
- });
-};
diff --git a/packages/lucide-angular/ng-package.json b/packages/lucide-angular/ng-package.json
deleted file mode 100644
index 951f31589..000000000
--- a/packages/lucide-angular/ng-package.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "$schema": "./node_modules/ng-packagr/ng-package.schema.json",
- "dest": "dist",
- "lib": {
- "entryFile": "src/public-api.ts"
- }
-}
diff --git a/packages/lucide-angular/package.json b/packages/lucide-angular/package.json
deleted file mode 100644
index 2bf498bf8..000000000
--- a/packages/lucide-angular/package.json
+++ /dev/null
@@ -1,81 +0,0 @@
-{
- "name": "lucide-angular",
- "description": "A Lucide icon library package for Angular applications.",
- "version": "0.0.1",
- "author": "SMAH1",
- "license": "ISC",
- "homepage": "https://lucide.dev",
- "bugs": "https://github.com/lucide-icons/lucide/issues",
- "repository": {
- "type": "git",
- "url": "https://github.com/lucide-icons/lucide.git",
- "directory": "packages/lucide-angular"
- },
- "publishConfig": {
- "directory": "dist"
- },
- "keywords": [
- "Lucide",
- "Angular",
- "Feather",
- "Icons",
- "Icon",
- "SVG",
- "Feather Icons",
- "Fontawesome",
- "Font Awesome"
- ],
- "scripts": {
- "build": "pnpm clean && pnpm copy:license && pnpm copy:utils &&pnpm build:icons && pnpm build:ng",
- "copy:license": "cp ../../LICENSE ./LICENSE",
- "copy:utils": "mkdir -p ./src/utils && cp -rf ../../packages/shared/src/utils/hasA11yProp.ts ./src/utils/",
- "clean": "rm -rf dist && rm -rf ./src/icons/*.ts",
- "build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mts --renderUniqueKey --withAliases --aliasesFileExtension=.ts --iconFileExtension=.ts --exportFileName=lucide-icons.ts",
- "build:ng": "ng build --configuration production",
- "test": "pnpm copy:utils && ng test --no-watch --no-progress --browsers=ChromeHeadlessCI",
- "test:watch": "ng test",
- "lint": "npx eslint 'src/**/*.{js,jsx,ts,tsx,html,css,scss}' --quiet --fix",
- "e2e": "ng e2e",
- "version": "pnpm version --git-tag-version=false"
- },
- "devDependencies": {
- "@angular-devkit/build-angular": "~13.3.11",
- "@angular-eslint/builder": "~13.0.0",
- "@angular-eslint/eslint-plugin": "~13.0.0",
- "@angular-eslint/eslint-plugin-template": "~13.0.0",
- "@angular-eslint/schematics": "~13.0.0",
- "@angular-eslint/template-parser": "~13.0.0",
- "@angular/cli": "~13.3.11",
- "@angular/common": "~13.3.0",
- "@angular/compiler": "~13.3.0",
- "@angular/compiler-cli": "~13.3.0",
- "@angular/core": "~13.3.0",
- "@angular/platform-browser": "~13.3.0",
- "@angular/platform-browser-dynamic": "~13.3.0",
- "@lucide/build-icons": "workspace:*",
- "@types/jasmine": "~3.10.0",
- "@types/node": "^12.11.1",
- "@typescript-eslint/eslint-plugin": "5.48.2",
- "@typescript-eslint/parser": "5.48.2",
- "eslint": "^8.33.0",
- "eslint-config-prettier": "^8.5.0",
- "jasmine-core": "~4.0.0",
- "jasmine-spec-reporter": "~7.0.0",
- "karma": "~6.3.0",
- "karma-chrome-launcher": "~3.1.0",
- "karma-coverage": "~2.1.0",
- "karma-jasmine": "~4.0.0",
- "karma-jasmine-html-reporter": "~1.7.0",
- "ng-packagr": "^13.3.0",
- "prettier": "^2.8.4",
- "rxjs": "~7.5.0",
- "ts-node": "~10.9.1",
- "tslib": "^2.3.0",
- "typescript": "~4.6.2",
- "zone.js": "~0.11.4"
- },
- "peerDependencies": {
- "@angular/common": "13.x - 21.x",
- "@angular/core": "13.x - 21.x"
- }
-}
diff --git a/packages/lucide-angular/scripts/exportTemplate.mts b/packages/lucide-angular/scripts/exportTemplate.mts
deleted file mode 100644
index 6376483cf..000000000
--- a/packages/lucide-angular/scripts/exportTemplate.mts
+++ /dev/null
@@ -1,33 +0,0 @@
-import base64SVG from '@lucide/build-icons/utils/base64SVG';
-import defineExportTemplate from '@lucide/build-icons/utils/defineExportTemplate';
-
-export default defineExportTemplate(async ({
- componentName,
- iconName,
- children,
- getSvg,
- deprecated,
- deprecationReason,
-}) => {
- const svgContents = await getSvg();
- const svgBase64 = base64SVG(svgContents);
-
- return `\
-import { LucideIconData } from './types';
-
-/**
- * @component @name ${componentName}
- * @description Lucide SVG icon component, renders SVG Element with children.
- *
- * @preview  - https://lucide.dev/icons/${iconName}
- * @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
- *
- * @param {Object} props - Lucide icons props and any valid SVG attribute
- * @returns {FunctionalComponent} Vue component
- * ${deprecated ? `@deprecated ${deprecationReason}` : ''}
-*/
-const ${componentName}: LucideIconData = ${JSON.stringify(children)}; //eslint-disable-line no-shadow-restricted-names
-
-export default ${componentName};
-`;
-});
diff --git a/packages/lucide-angular/src/aliases/index.ts b/packages/lucide-angular/src/aliases/index.ts
deleted file mode 100644
index bbe66d0a2..000000000
--- a/packages/lucide-angular/src/aliases/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export * from './aliases';
-export * from './prefixed';
-export * from './suffixed';
diff --git a/packages/lucide-angular/src/icons/constants/default-attributes.ts b/packages/lucide-angular/src/icons/constants/default-attributes.ts
deleted file mode 100644
index 8ae7d46ea..000000000
--- a/packages/lucide-angular/src/icons/constants/default-attributes.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-export default {
- xmlns: 'http://www.w3.org/2000/svg',
- width: 24,
- height: 24,
- viewBox: '0 0 24 24',
- fill: 'none',
- stroke: 'currentColor',
- 'stroke-width': 2,
- 'stroke-linecap': 'round',
- 'stroke-linejoin': 'round',
-};
diff --git a/packages/lucide-angular/src/icons/package.json b/packages/lucide-angular/src/icons/package.json
deleted file mode 100644
index 23510812c..000000000
--- a/packages/lucide-angular/src/icons/package.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "ngPackage": {
- "dest": "dist",
- "lib": {
- "entryFile": "../public-api.ts"
- }
- }
-}
diff --git a/packages/lucide-angular/src/icons/types/index.ts b/packages/lucide-angular/src/icons/types/index.ts
deleted file mode 100644
index 1e4f28b5c..000000000
--- a/packages/lucide-angular/src/icons/types/index.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-type HtmlAttributes = { [key: string]: string | number };
-export type LucideIconNode = readonly [string, HtmlAttributes];
-export type LucideIconData = readonly LucideIconNode[];
-export type LucideIcons = { [key: string]: LucideIconData };
-
-/** @deprecated Use LucideIconData instead. Will be removed in v1.0. */
-export type IconData = LucideIconData;
-
-/** @deprecated Use LucideIconNode instead. Will be removed in v1.0. */
-export type IconNode = LucideIconNode;
-
-/** @deprecated Use LucideIcons instead. Will be removed in v1.0. */
-export type Icons = LucideIcons;
diff --git a/packages/lucide-angular/src/lib/icons.provider.ts b/packages/lucide-angular/src/lib/icons.provider.ts
deleted file mode 100644
index ef768fa2a..000000000
--- a/packages/lucide-angular/src/lib/icons.provider.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-/** @deprecated Use the injection token LUCIDE_ICONS instead. Will be removed in v1.0. */
-export class Icons {
- constructor(private icons: object) {}
-}
diff --git a/packages/lucide-angular/src/lib/lucide-angular.component.spec.ts b/packages/lucide-angular/src/lib/lucide-angular.component.spec.ts
deleted file mode 100644
index c6448bb31..000000000
--- a/packages/lucide-angular/src/lib/lucide-angular.component.spec.ts
+++ /dev/null
@@ -1,151 +0,0 @@
-import { Component } from '@angular/core';
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-import { LucideAngularModule } from './lucide-angular.module';
-import { formatFixed, LucideAngularComponent } from './lucide-angular.component';
-import defaultAttributes from '../icons/constants/default-attributes';
-import { LucideIcons } from '../icons/types';
-
-describe('LucideAngularComponent', () => {
- let testHostComponent: TestHostComponent;
- let testHostFixture: ComponentFixture;
- const getAttribute = (attr: string) =>
- testHostFixture.nativeElement.querySelector('svg').getAttribute(attr);
- const getRootAttribute = (attr: string) =>
- testHostFixture.nativeElement.querySelector('i-lucide').getAttribute(attr);
- const testIcons: LucideIcons = {
- Demo: [['polyline', { points: '1 1 22 22' }]],
- };
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- declarations: [LucideAngularComponent, TestHostComponent],
- imports: [LucideAngularModule.pick(testIcons)],
- }).compileComponents();
- testHostFixture = TestBed.createComponent(TestHostComponent);
- testHostComponent = testHostFixture.componentInstance;
- });
-
- it('should create', () => {
- testHostFixture.detectChanges();
- expect(testHostComponent).toBeTruthy();
- });
-
- it('should add all classes', () => {
- testHostFixture.detectChanges();
-
- expect(getAttribute('class')).toBe('lucide lucide-demo my-icon');
- });
-
- it('should set color', () => {
- const color = 'red';
- testHostComponent.setColor(color);
- testHostFixture.detectChanges();
- expect(getAttribute('stroke')).toBe(color);
- });
-
- it('should set size', () => {
- const size = 12;
- testHostComponent.setSize(size);
- testHostFixture.detectChanges();
- expect(getAttribute('width')).toBe(size.toString(10));
- });
-
- it('should set stroke width', () => {
- const strokeWidth = 1.41;
- testHostComponent.setStrokeWidth(strokeWidth);
- testHostFixture.detectChanges();
- expect(getAttribute('stroke-width')).toBe(strokeWidth.toString(10));
- });
-
- it('should adjust stroke width', () => {
- const strokeWidth = 2;
- const size = 12;
- testHostComponent.setStrokeWidth(strokeWidth);
- testHostComponent.setSize(12);
- testHostComponent.setAbsoluteStrokeWidth(true);
- testHostFixture.detectChanges();
- expect(getAttribute('stroke-width')).toBe(
- formatFixed(strokeWidth / (size / defaultAttributes.height)),
- );
- });
-
- it('should have aria-hidden prop when no aria prop is present', async () => {
- testHostFixture.detectChanges();
- expect(getRootAttribute('aria-hidden')).toBe('true');
- });
-
- it('should not have aria-hidden prop when aria prop is present', async () => {
- const ariaLabel = 'Demo icon';
- testHostComponent.setAriaLabel(ariaLabel);
- testHostFixture.detectChanges();
- expect(getRootAttribute('aria-label')).toBe(ariaLabel);
- expect(getRootAttribute('aria-hidden')).toBeNull();
- });
-
- it('should not have aria-hidden prop when title prop is present', async () => {
- const ariaLabel = 'Demo icon';
- testHostComponent.setTitle(ariaLabel);
- testHostFixture.detectChanges();
- expect(getRootAttribute('title')).toBe(ariaLabel);
- expect(getRootAttribute('aria-hidden')).toBeNull();
- });
-
- it('should never override aria-hidden prop', async () => {
- testHostComponent.setAriaHidden(true);
- testHostFixture.detectChanges();
- expect(getRootAttribute('aria-hidden')).toBe('true');
- });
-
- @Component({
- selector: 'lucide-spec-host-component',
- template: `
- `,
- })
- class TestHostComponent {
- color?: string;
- size?: number;
- strokeWidth?: number;
- absoluteStrokeWidth = true;
- ariaLabel?: string = undefined;
- title?: string = undefined;
- ariaHidden?: boolean = undefined;
-
- setColor(color: string): void {
- this.color = color;
- }
-
- setSize(size: number): void {
- this.size = size;
- }
-
- setStrokeWidth(strokeWidth: number): void {
- this.strokeWidth = strokeWidth;
- }
-
- setAbsoluteStrokeWidth(absoluteStrokeWidth: boolean): void {
- this.absoluteStrokeWidth = absoluteStrokeWidth;
- }
-
- setAriaLabel(label: string): void {
- this.ariaLabel = label;
- }
-
- setTitle(title: string): void {
- this.title = title;
- }
-
- setAriaHidden(ariaHidden: boolean): void {
- this.ariaHidden = ariaHidden;
- }
- }
-});
diff --git a/packages/lucide-angular/src/lib/lucide-angular.component.ts b/packages/lucide-angular/src/lib/lucide-angular.component.ts
deleted file mode 100644
index 42952cea0..000000000
--- a/packages/lucide-angular/src/lib/lucide-angular.component.ts
+++ /dev/null
@@ -1,220 +0,0 @@
-import {
- ChangeDetectorRef,
- Component,
- ElementRef,
- Inject,
- Input,
- OnChanges,
- Renderer2,
- SimpleChange,
-} from '@angular/core';
-import { LucideIconData } from '../icons/types';
-import defaultAttributes from '../icons/constants/default-attributes';
-import { LUCIDE_ICONS, LucideIconProviderInterface } from './lucide-icon.provider';
-import { LucideIconConfig } from './lucide-icon.config';
-import { hasA11yProp } from '../utils/hasA11yProp';
-
-interface TypedChange extends SimpleChange {
- previousValue: T;
- currentValue: T;
-}
-
-type SvgAttributes = { [key: string]: string | number };
-
-type LucideAngularComponentChanges = {
- name?: TypedChange;
- img?: TypedChange;
- color?: TypedChange;
- size?: TypedChange;
- strokeWidth?: TypedChange;
- absoluteStrokeWidth?: TypedChange;
- class: TypedChange;
-};
-
-export function formatFixed(number: number, decimals = 3): string {
- return parseFloat(number.toFixed(decimals)).toString(10);
-}
-
-@Component({
- selector: 'lucide-angular, lucide-icon, i-lucide, span-lucide',
- template: ' ',
-})
-export class LucideAngularComponent implements OnChanges {
- @Input() class?: string;
- @Input() name?: string | LucideIconData;
- @Input() img?: LucideIconData;
- @Input() color?: string;
- @Input() absoluteStrokeWidth = false;
- defaultSize: number;
-
- constructor(
- @Inject(ElementRef) private elem: ElementRef,
- @Inject(Renderer2) private renderer: Renderer2,
- @Inject(ChangeDetectorRef) private changeDetector: ChangeDetectorRef,
- @Inject(LUCIDE_ICONS) private iconProviders: LucideIconProviderInterface[],
- @Inject(LucideIconConfig) private iconConfig: LucideIconConfig,
- ) {
- this.defaultSize = defaultAttributes.height;
- }
-
- _size?: number;
-
- get size(): number {
- return this._size ?? this.iconConfig.size;
- }
-
- @Input() set size(value: string | number | undefined) {
- if (value) {
- this._size = this.parseNumber(value);
- } else {
- delete this._size;
- }
- }
-
- _strokeWidth?: number;
-
- get strokeWidth(): number {
- return this._strokeWidth ?? this.iconConfig.strokeWidth;
- }
-
- @Input() set strokeWidth(value: string | number | undefined) {
- if (value) {
- this._strokeWidth = this.parseNumber(value);
- } else {
- delete this._strokeWidth;
- }
- }
-
- ngOnChanges(changes: LucideAngularComponentChanges): void {
- if (
- changes.name ||
- changes.img ||
- changes.color ||
- changes.size ||
- changes.absoluteStrokeWidth ||
- changes.strokeWidth ||
- changes.class
- ) {
- this.color = this.color ?? this.iconConfig.color;
- this.size = this.parseNumber(this.size ?? this.iconConfig.size);
- this.strokeWidth = this.parseNumber(this.strokeWidth ?? this.iconConfig.strokeWidth);
- this.absoluteStrokeWidth = this.absoluteStrokeWidth ?? this.iconConfig.absoluteStrokeWidth;
- const nameOrIcon = this.img ?? this.name;
- const restAttributes = this.getRestAttributes();
-
- if (!hasA11yProp(restAttributes)) {
- this.renderer.setAttribute(this.elem.nativeElement, 'aria-hidden', 'true');
- }
-
- if (typeof nameOrIcon === 'string') {
- const icoOfName = this.getIcon(this.toPascalCase(nameOrIcon));
- if (icoOfName) {
- this.replaceElement(icoOfName);
- } else {
- throw new Error(
- `The "${nameOrIcon}" icon has not been provided by any available icon providers.`,
- );
- }
- } else if (Array.isArray(nameOrIcon)) {
- this.replaceElement(nameOrIcon);
- } else {
- throw new Error(`No icon name or image has been provided.`);
- }
- }
-
- this.changeDetector.markForCheck();
- }
-
- replaceElement(img: LucideIconData): void {
- const childElements = this.elem.nativeElement.childNodes;
-
- const attributes = {
- ...defaultAttributes,
- width: this.size,
- height: this.size,
- stroke: this.color ?? this.iconConfig.color,
- 'stroke-width': this.absoluteStrokeWidth
- ? formatFixed(this.strokeWidth / (this.size / this.defaultSize))
- : this.strokeWidth.toString(10),
- };
- const icoElement = this.createElement(['svg', attributes, img]);
- icoElement.classList.add('lucide');
- if (typeof this.name === 'string') {
- icoElement.classList.add(`lucide-${this.name.replace('_', '-')}`);
- }
-
- if (this.class) {
- icoElement.classList.add(
- ...this.class
- .split(/ /)
- .map((a) => a.trim())
- .filter((a) => a.length > 0),
- );
- }
-
- for (const child of childElements) {
- this.renderer.removeChild(this.elem.nativeElement, child);
- }
- this.renderer.appendChild(this.elem.nativeElement, icoElement);
- }
-
- getRestAttributes(): Record {
- const restAttributeMap: NamedNodeMap = this.elem.nativeElement.attributes;
- const restAttributes = Object.fromEntries(
- Array.from(restAttributeMap).map((item) => [item.name, item.value]),
- );
- return restAttributes;
- }
-
- toPascalCase(str: string): string {
- return str.replace(
- /(\w)([a-z0-9]*)(_|-|\s*)/g,
- (g0, g1, g2) => g1.toUpperCase() + g2.toLowerCase(),
- );
- }
-
- private parseNumber(value: string | number): number {
- if (typeof value === 'string') {
- const parsedValue = parseInt(value, 10);
- if (isNaN(parsedValue)) {
- throw new Error(`${value} is not numeric.`);
- }
- return parsedValue;
- }
- return value;
- }
-
- private getIcon(name: string): LucideIconData | null {
- for (const iconProvider of Array.isArray(this.iconProviders)
- ? this.iconProviders
- : [this.iconProviders]) {
- if (iconProvider.hasIcon(name)) {
- return iconProvider.getIcon(name);
- }
- }
- return null;
- }
-
- private createElement([tag, attrs, children = []]: readonly [
- string,
- SvgAttributes,
- LucideIconData?,
- ]) {
- const element = this.renderer.createElement(tag, 'http://www.w3.org/2000/svg');
-
- Object.keys(attrs).forEach((name) => {
- const attrValue: string =
- typeof attrs[name] === 'string' ? (attrs[name] as string) : attrs[name].toString(10);
- this.renderer.setAttribute(element, name, attrValue);
- });
-
- if (children.length) {
- children.forEach((child) => {
- const childElement = this.createElement(child);
- this.renderer.appendChild(element, childElement);
- });
- }
-
- return element;
- }
-}
diff --git a/packages/lucide-angular/src/lib/lucide-angular.module.ts b/packages/lucide-angular/src/lib/lucide-angular.module.ts
deleted file mode 100644
index df41c5dea..000000000
--- a/packages/lucide-angular/src/lib/lucide-angular.module.ts
+++ /dev/null
@@ -1,31 +0,0 @@
-import { ModuleWithProviders, NgModule, Optional } from '@angular/core';
-import { LucideAngularComponent } from './lucide-angular.component';
-import { LucideIcons } from '../icons/types';
-import { LUCIDE_ICONS, LucideIconProvider } from './lucide-icon.provider';
-import { Icons } from './icons.provider';
-
-const legacyIconProviderFactory = (icons?: LucideIcons) => {
- return new LucideIconProvider(icons ?? {});
-};
-
-@NgModule({
- declarations: [LucideAngularComponent],
- imports: [],
- exports: [LucideAngularComponent],
-})
-export class LucideAngularModule {
- static pick(icons: LucideIcons): ModuleWithProviders {
- return {
- ngModule: LucideAngularModule,
- providers: [
- { provide: LUCIDE_ICONS, multi: true, useValue: new LucideIconProvider(icons) },
- {
- provide: LUCIDE_ICONS,
- multi: true,
- useFactory: legacyIconProviderFactory,
- deps: [[new Optional(), Icons]],
- },
- ],
- };
- }
-}
diff --git a/packages/lucide-angular/src/lib/lucide-icon.config.ts b/packages/lucide-angular/src/lib/lucide-icon.config.ts
deleted file mode 100644
index 897ca31e2..000000000
--- a/packages/lucide-angular/src/lib/lucide-icon.config.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { Injectable } from '@angular/core';
-import defaultAttributes from '../icons/constants/default-attributes';
-
-/**
- * A configuration service for Lucide icon components.
- *
- * You can inject this service, typically in AppComponent, and customize its property values in
- * order to provide default values for all the icons used in the application.
- */
-@Injectable({ providedIn: 'root' })
-export class LucideIconConfig {
- color: string = defaultAttributes.stroke;
- size: number = defaultAttributes.width;
- strokeWidth: number = defaultAttributes['stroke-width'];
- absoluteStrokeWidth = false;
-}
diff --git a/packages/lucide-angular/src/lib/lucide-icon.provider.ts b/packages/lucide-angular/src/lib/lucide-icon.provider.ts
deleted file mode 100644
index 53975cbdd..000000000
--- a/packages/lucide-angular/src/lib/lucide-icon.provider.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-import { LucideIconData, LucideIcons } from '../icons/types';
-import { InjectionToken } from '@angular/core';
-
-export interface LucideIconProviderInterface {
- hasIcon(name: string): boolean;
-
- getIcon(name: string): LucideIconData | null;
-}
-
-export const LUCIDE_ICONS = new InjectionToken('LucideIcons', {
- factory: () => new LucideIconProvider({}),
-});
-
-export class LucideIconProvider implements LucideIconProviderInterface {
- constructor(private icons: LucideIcons) {}
-
- getIcon(name: string): LucideIconData | null {
- return this.hasIcon(name) ? this.icons[name] : null;
- }
-
- hasIcon(name: string): boolean {
- return typeof this.icons === 'object' && name in this.icons;
- }
-}
diff --git a/packages/lucide-angular/src/public-api.ts b/packages/lucide-angular/src/public-api.ts
deleted file mode 100644
index 0cc803097..000000000
--- a/packages/lucide-angular/src/public-api.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import * as icons from './icons/lucide-icons';
-
-export * from './lib/lucide-angular.component';
-export * from './lib/lucide-angular.module';
-export * from './lib/lucide-icon.config';
-export * from './lib/lucide-icon.provider';
-export * from './icons/lucide-icons';
-export * from './icons/types';
-export * from './aliases';
-export { icons };
diff --git a/packages/lucide-angular/src/test.ts b/packages/lucide-angular/src/test.ts
deleted file mode 100644
index 300199a99..000000000
--- a/packages/lucide-angular/src/test.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-// This file is required by karma.conf.js and loads recursively all the .spec and framework files
-
-import 'zone.js';
-import 'zone.js/testing';
-import { getTestBed } from '@angular/core/testing';
-import {
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting,
-} from '@angular/platform-browser-dynamic/testing';
-
-declare const require: {
- context(
- path: string,
- deep?: boolean,
- filter?: RegExp,
- ): {
- (id: string): T;
- keys(): string[];
- };
-};
-
-// First, initialize the Angular testing environment.
-getTestBed().initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicTesting());
-
-// Then we find all the tests.
-const context = require.context('./', true, /\.spec\.ts$/);
-// And load the modules.
-context.keys().map(context);
diff --git a/packages/lucide-angular/tsconfig.json b/packages/lucide-angular/tsconfig.json
deleted file mode 100644
index 46f053f70..000000000
--- a/packages/lucide-angular/tsconfig.json
+++ /dev/null
@@ -1,32 +0,0 @@
-/* To learn more about this file see: https://angular.io/config/tsconfig. */
-{
- "compileOnSave": false,
- "compilerOptions": {
- "baseUrl": "./",
- "outDir": "./dist/out-tsc",
- "forceConsistentCasingInFileNames": true,
- "strict": true,
- "noImplicitOverride": true,
- "noPropertyAccessFromIndexSignature": true,
- "noImplicitReturns": true,
- "paths": {
- "lucide-angular": ["dist"],
- },
- "noFallthroughCasesInSwitch": true,
- "sourceMap": true,
- "declaration": false,
- "downlevelIteration": true,
- "experimentalDecorators": true,
- "moduleResolution": "node",
- "importHelpers": true,
- "target": "es2017",
- "module": "es2020",
- "lib": ["es2020", "dom"],
- },
- "angularCompilerOptions": {
- "enableI18nLegacyMessageIdFormat": false,
- "strictInjectionParameters": true,
- "strictInputAccessModifiers": true,
- "strictTemplates": true,
- },
-}
diff --git a/packages/lucide-angular/tsconfig.lib.json b/packages/lucide-angular/tsconfig.lib.json
deleted file mode 100644
index d68f81e02..000000000
--- a/packages/lucide-angular/tsconfig.lib.json
+++ /dev/null
@@ -1,12 +0,0 @@
-/* To learn more about this file see: https://angular.io/config/tsconfig. */
-{
- "extends": "./tsconfig.json",
- "compilerOptions": {
- "outDir": "./out-tsc/lib",
- "declaration": true,
- "declarationMap": true,
- "inlineSources": true,
- "types": []
- },
- "exclude": ["src/test.ts", "**/*.spec.ts"]
-}
diff --git a/packages/lucide-angular/tsconfig.lib.prod.json b/packages/lucide-angular/tsconfig.lib.prod.json
deleted file mode 100644
index 06de549e1..000000000
--- a/packages/lucide-angular/tsconfig.lib.prod.json
+++ /dev/null
@@ -1,10 +0,0 @@
-/* To learn more about this file see: https://angular.io/config/tsconfig. */
-{
- "extends": "./tsconfig.lib.json",
- "compilerOptions": {
- "declarationMap": false
- },
- "angularCompilerOptions": {
- "compilationMode": "partial"
- }
-}
diff --git a/packages/lucide-angular/tsconfig.spec.json b/packages/lucide-angular/tsconfig.spec.json
deleted file mode 100644
index 6df9f8b84..000000000
--- a/packages/lucide-angular/tsconfig.spec.json
+++ /dev/null
@@ -1,10 +0,0 @@
-/* To learn more about this file see: https://angular.io/config/tsconfig. */
-{
- "extends": "./tsconfig.json",
- "compilerOptions": {
- "outDir": "./out-tsc/spec",
- "types": ["jasmine"]
- },
- "files": ["src/test.ts"],
- "include": ["**/*.spec.ts", "**/*.d.ts"]
-}
diff --git a/packages/lucide-svelte/.gitignore b/packages/lucide-svelte/.gitignore
deleted file mode 100644
index f550ccc4b..000000000
--- a/packages/lucide-svelte/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-src/icons/*.svelte
-.svelte-kit
\ No newline at end of file
diff --git a/packages/lucide-svelte/README.md b/packages/lucide-svelte/README.md
deleted file mode 100644
index 60aacc49c..000000000
--- a/packages/lucide-svelte/README.md
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-
-
-
-Lucide icon library for Svelte applications.
-
-
-
-
- [](https://www.npmjs.com/package/lucide-svelte)
- 
- [](https://lucide.dev/license)
-
-
-
- About
- ·
- Icons
- ·
- Documentation
- ·
- License
-
-
-# Lucide Svelte
-
-Implementation of the Lucide icon library for svelte applications.
-
-## Installation
-
-```sh
-pnpm add lucide-svelte
-```
-
-```sh
-npm install lucide-svelte
-```
-
-```sh
-yarn add lucide-svelte
-```
-
-```sh
-bun add lucide-svelte
-```
-
-> For Svelte 5, check out [`@lucide/svelte`](https://www.npmjs.com/package/@lucide/svelte) package.
-
-## Documentation
-
-For full documentation, visit [lucide.dev](https://lucide.dev/guide/packages/lucide-svelte)
-
-## Community
-
-Join the [Discord server](https://discord.gg/EH6nSts) to chat with the maintainers and other users.
-
-## License
-
-Lucide is licensed under the ISC license. See [LICENSE](https://lucide.dev/license).
-
-[//]: <> (Sponsors)
-
-## Sponsors
-
-
-
-
-
-
-
-### Hero backers 🦸
-
-
-
-### Awesome backers 🍺
-
-
-
-
-### Backers ☕
-
-
-
-### Other contributors 💸
-
-You can find all our past and non-recurring financial contributors at [our Open Collective page](https://opencollective.com/lucide-icons).
diff --git a/packages/lucide-svelte/package.json b/packages/lucide-svelte/package.json
deleted file mode 100644
index 779fe8d1b..000000000
--- a/packages/lucide-svelte/package.json
+++ /dev/null
@@ -1,78 +0,0 @@
-{
- "name": "lucide-svelte",
- "description": "A Lucide icon library package for Svelte applications.",
- "version": "0.0.1",
- "license": "ISC",
- "homepage": "https://lucide.dev",
- "bugs": "https://github.com/lucide-icons/lucide/issues",
- "repository": {
- "type": "git",
- "url": "https://github.com/lucide-icons/lucide.git",
- "directory": "packages/lucide-svelte"
- },
- "keywords": [
- "Lucide",
- "Svelte",
- "Feather",
- "Icons",
- "Icon",
- "SVG",
- "Feather Icons",
- "Fontawesome",
- "Font Awesome"
- ],
- "author": "Eric Fennis",
- "type": "module",
- "main": "dist/lucide-svelte.js",
- "exports": {
- ".": {
- "types": "./dist/lucide-svelte.d.ts",
- "svelte": "./dist/lucide-svelte.js",
- "default": "./dist/lucide-svelte.js"
- },
- "./icons": {
- "types": "./dist/lucide-svelte.d.ts",
- "svelte": "./dist/lucide-svelte.js"
- },
- "./icons/*": {
- "types": "./dist/icons/*.svelte.d.ts",
- "svelte": "./dist/icons/*.js",
- "default": "./dist/icons/*.js"
- }
- },
- "typings": "dist/lucide-svelte.d.ts",
- "sideEffects": false,
- "files": [
- "dist"
- ],
- "scripts": {
- "build": "pnpm clean && pnpm copy:license && pnpm copy:utils && pnpm build:icons && pnpm build:package && pnpm build:license",
- "copy:license": "cp ../../LICENSE ./LICENSE",
- "copy:utils": "mkdir -p ./src/utils && for f in hasA11yProp mergeClasses; do cp -f ../../packages/shared/src/utils/$f.ts ./src/utils/; done",
- "clean": "rm -rf dist && rm -rf stats && rm -rf ./src/icons/*.svelte && rm -rf ./src/icons/*.ts && rm -f index.js",
- "build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mts --exportFileName=index.ts --iconFileExtension=.svelte --importImportFileExtension=.svelte --separateIconFileExport --separateIconFileExportExtension=.ts --withAliases --aliasesFileExtension=.ts --separateAliasesFile --separateAliasesFileExtension=.ts --aliasImportFileExtension=.js --pretty=false",
- "build:package": "svelte-package --input ./src",
- "build:license": "node ./scripts/appendBlockComments.mts",
- "test": "pnpm copy:license && pnpm copy:utils && pnpm build:icons && vitest run",
- "test:watch": "vitest watch",
- "version": "pnpm version --git-tag-version=false"
- },
- "devDependencies": {
- "@lucide/build-icons": "workspace:*",
- "@lucide/helpers": "workspace:*",
- "@sveltejs/package": "^2.2.3",
- "@sveltejs/vite-plugin-svelte": "^2.4.2",
- "@testing-library/jest-dom": "^6.8.0",
- "@testing-library/svelte": "^4.0.2",
- "@tsconfig/svelte": "^5.0.0",
- "jest-serializer-html": "^7.1.0",
- "svelte": "^4.2.19",
- "svelte-check": "^3.4.4",
- "svelte-preprocess": "^5.0.4",
- "typescript": "^5.8.3",
- "vite": "^7.2.4"
- },
- "peerDependencies": {
- "svelte": "^3 || ^4 || ^5.0.0-next.42"
- }
-}
diff --git a/packages/lucide-svelte/scripts/appendBlockComments.mts b/packages/lucide-svelte/scripts/appendBlockComments.mts
deleted file mode 100644
index 2e6bf13c7..000000000
--- a/packages/lucide-svelte/scripts/appendBlockComments.mts
+++ /dev/null
@@ -1,64 +0,0 @@
-import { lstatSync } from 'fs';
-import { readdir, readFile, writeFile } from 'fs/promises';
-import path from 'path';
-import { getCurrentDirPath } from '@lucide/helpers';
-import { getJSBanner } from './license.mts';
-
-const currentDir = await getCurrentDirPath(import.meta.url);
-const targetDirectory = path.join(currentDir, '../dist');
-
-const files = await readdir(targetDirectory, {
- recursive: true,
- encoding: 'utf-8',
-});
-
-// eslint-disable-next-line no-restricted-syntax
-for (const file of files) {
- const filepath = path.join(targetDirectory, file);
- const filestat = lstatSync(filepath);
-
- // eslint-disable-next-line no-continue
- if (filestat.isFile() === false || filestat.isDirectory()) continue;
-
- // eslint-disable-next-line no-await-in-loop
- const contents = (await readFile(filepath, { encoding: 'utf-8' }) as unknown as string);
- let newContents = contents;
- const ext = path.extname(filepath);
- let license;
-
- if (/\.(js|mjs|cjs|ts)/.test(ext)) {
- license = getJSBanner();
- }
-
- if (license) {
- newContents = license + contents;
- }
-
- // Places icon block comment at the top of the Svelte component class
- if (/icons\/(.*?)\.svelte\.d\.ts/.test(filepath)) {
- const svelteFilepath = filepath.replace('.d.ts', '');
- // eslint-disable-next-line no-await-in-loop
- const svelteFileContents = (await readFile(svelteFilepath, { encoding: 'utf-8' }) as unknown as string);
-
- const blockCommentRegex = /\/\*\*\n\s\*\s(@component\s@name)[\s\S]*?\*\//;
- const blockCommentMatch = blockCommentRegex.exec(svelteFileContents);
-
- if (blockCommentMatch !== null) {
- const blockComment = blockCommentMatch[0];
-
- const exportClassRegex = /export default class (\w+) extends SvelteComponentTyped<(.*?)> {/;
-
- if (exportClassRegex.test(newContents)) {
- newContents = newContents.replace(
- exportClassRegex,
- `${blockComment}\nexport default class $1 extends SvelteComponentTyped<$2> {`,
- );
- }
- }
- }
-
- if (newContents !== contents) {
- // eslint-disable-next-line no-await-in-loop
- await writeFile(filepath, newContents, { encoding: 'utf-8' });
- }
-}
diff --git a/packages/lucide-svelte/scripts/exportTemplate.mts b/packages/lucide-svelte/scripts/exportTemplate.mts
deleted file mode 100644
index 75051505a..000000000
--- a/packages/lucide-svelte/scripts/exportTemplate.mts
+++ /dev/null
@@ -1,43 +0,0 @@
-import base64SVG from '@lucide/build-icons/utils/base64SVG';
-import { getJSBanner } from './license.mts';
-import defineExportTemplate from '@lucide/build-icons/utils/defineExportTemplate';
-
-export default defineExportTemplate(async ({
- iconName,
- children,
- componentName,
- getSvg,
- deprecated,
- deprecationReason,
-}) => {
- const svgContents = await getSvg();
- const svgBase64 = base64SVG(svgContents);
-
- return `\
-
-
-
-
-
-`;
-});
diff --git a/packages/lucide-svelte/scripts/license.mts b/packages/lucide-svelte/scripts/license.mts
deleted file mode 100644
index 3f12b02c8..000000000
--- a/packages/lucide-svelte/scripts/license.mts
+++ /dev/null
@@ -1,13 +0,0 @@
-import fs from 'fs';
-import pkg from '../package.json' with { type: 'json' };
-
-const license = fs.readFileSync('LICENSE', 'utf-8');
-
-export function getJSBanner() {
- return `/**
- * @license ${pkg.name} v${pkg.version} - ${pkg.license}
- *
- * ${license.split('\n').join('\n * ')}
- */
-`;
-}
diff --git a/packages/lucide-svelte/src/Icon.svelte b/packages/lucide-svelte/src/Icon.svelte
deleted file mode 100644
index 448726cd6..000000000
--- a/packages/lucide-svelte/src/Icon.svelte
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
- {#each iconNode as [tag, attrs]}
-
- {/each}
-
-
diff --git a/packages/lucide-svelte/src/aliases/index.ts b/packages/lucide-svelte/src/aliases/index.ts
deleted file mode 100644
index bbe66d0a2..000000000
--- a/packages/lucide-svelte/src/aliases/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export * from './aliases';
-export * from './prefixed';
-export * from './suffixed';
diff --git a/packages/lucide-svelte/src/defaultAttributes.ts b/packages/lucide-svelte/src/defaultAttributes.ts
deleted file mode 100644
index 61d05a1d6..000000000
--- a/packages/lucide-svelte/src/defaultAttributes.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import type { Attrs } from './types.js';
-
-const defaultAttributes: Attrs = {
- xmlns: 'http://www.w3.org/2000/svg',
- width: 24,
- height: 24,
- viewBox: '0 0 24 24',
- fill: 'none',
- stroke: 'currentColor',
- 'stroke-width': 2,
- 'stroke-linecap': 'round',
- 'stroke-linejoin': 'round',
-};
-
-export default defaultAttributes;
diff --git a/packages/lucide-svelte/src/icons/.gitkeep b/packages/lucide-svelte/src/icons/.gitkeep
deleted file mode 100644
index e3d85f774..000000000
--- a/packages/lucide-svelte/src/icons/.gitkeep
+++ /dev/null
@@ -1 +0,0 @@
-Folder for generated icons
diff --git a/packages/lucide-svelte/src/lucide-svelte.ts b/packages/lucide-svelte/src/lucide-svelte.ts
deleted file mode 100644
index d2a2ce4d0..000000000
--- a/packages/lucide-svelte/src/lucide-svelte.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-export * from './icons/index';
-export * as icons from './icons/index';
-export * from './aliases';
-export { default as defaultAttributes } from './defaultAttributes';
-export * from './types';
-export { default as Icon } from './Icon.svelte';
diff --git a/packages/lucide-svelte/src/types.ts b/packages/lucide-svelte/src/types.ts
deleted file mode 100644
index e6ef3fdbb..000000000
--- a/packages/lucide-svelte/src/types.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import type { SVGAttributes, SvelteHTMLElements } from 'svelte/elements';
-
-export type Attrs = SVGAttributes;
-
-export type IconNode = [elementName: keyof SvelteHTMLElements, attrs: Attrs][];
-
-export interface IconProps extends Attrs {
- name?: string;
- color?: string;
- size?: number | string;
- strokeWidth?: number | string;
- absoluteStrokeWidth?: boolean;
- class?: string;
- iconNode?: IconNode;
-}
-
-export type IconEvents = {
- [evt: string]: CustomEvent;
-};
-
-export type IconSlots = {
- default: {};
-};
diff --git a/packages/lucide-svelte/svelte.config.js b/packages/lucide-svelte/svelte.config.js
deleted file mode 100644
index b6034d2c4..000000000
--- a/packages/lucide-svelte/svelte.config.js
+++ /dev/null
@@ -1,8 +0,0 @@
-// eslint-disable-next-line import/no-extraneous-dependencies
-import sveltePreprocess from 'svelte-preprocess';
-
-export default {
- preprocess: sveltePreprocess({
- typescript: true,
- }),
-};
diff --git a/packages/lucide-svelte/tests/Icon.spec.ts b/packages/lucide-svelte/tests/Icon.spec.ts
deleted file mode 100644
index 89cb7adbb..000000000
--- a/packages/lucide-svelte/tests/Icon.spec.ts
+++ /dev/null
@@ -1,90 +0,0 @@
-import { describe, it, expect } from 'vitest';
-import { render } from '@testing-library/svelte';
-import { Icon } from '../src/lucide-svelte';
-
-import { airVent } from './testIconNodes';
-
-describe('Using Icon Component', () => {
- it('should render icon based on a iconNode', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- },
- });
-
- expect(container.firstChild).toBeDefined();
- });
-
- it('should render icon and match snapshot', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- },
- });
-
- expect(container.firstChild).toMatchSnapshot();
- });
-});
-
-describe('Icon Component Accessibility', () => {
- it('should have aria-hidden prop when no aria prop is present', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- },
- });
-
- expect(container.firstChild).toHaveAttribute('aria-hidden', 'true');
- });
-
- it('should not have aria-hidden prop when aria prop is present', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- 'aria-label': 'Air conditioning',
- },
- });
-
- expect(container.firstChild).not.toHaveAttribute('aria-hidden');
- });
-
- it('should not have aria-hidden prop when title prop is present', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- title: 'Air conditioning',
- },
- });
-
- expect(container.firstChild).not.toHaveAttribute('aria-hidden');
- });
-
- it('should never override aria-hidden prop', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- 'aria-hidden': 'false',
- },
- });
-
- expect(container.firstChild).toHaveAttribute('aria-hidden', 'false');
- });
-});
diff --git a/packages/lucide-svelte/tests/TestSlots.svelte b/packages/lucide-svelte/tests/TestSlots.svelte
deleted file mode 100644
index a93f05991..000000000
--- a/packages/lucide-svelte/tests/TestSlots.svelte
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
- Test
-
diff --git a/packages/lucide-svelte/tests/__snapshots__/Icon.spec.ts.snap b/packages/lucide-svelte/tests/__snapshots__/Icon.spec.ts.snap
deleted file mode 100644
index b87a6bb81..000000000
--- a/packages/lucide-svelte/tests/__snapshots__/Icon.spec.ts.snap
+++ /dev/null
@@ -1,35 +0,0 @@
-// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
-
-exports[`Using Icon Component > should render icon and match snapshot 1`] = `
-
-
-
-
-
-
-
-
-
-
-
-`;
diff --git a/packages/lucide-svelte/tests/__snapshots__/lucide-svelte.spec.ts.snap b/packages/lucide-svelte/tests/__snapshots__/lucide-svelte.spec.ts.snap
deleted file mode 100644
index 6df0e21fb..000000000
--- a/packages/lucide-svelte/tests/__snapshots__/lucide-svelte.spec.ts.snap
+++ /dev/null
@@ -1,214 +0,0 @@
-// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
-
-exports[`Using lucide icon components > should add a class to the element 1`] = `
-
-
-
-
-
-
-
-
-
-
-
-`;
-
-exports[`Using lucide icon components > should adjust the size, stroke color and stroke width 1`] = `
-
-`;
-
-exports[`Using lucide icon components > should not scale the strokeWidth when absoluteStrokeWidth is set 1`] = `
-
-
-
-
-
-
-
-
-
-
-`;
-
-exports[`Using lucide icon components > should render an component 1`] = `
-
-`;
-
-exports[`Using lucide icon components > should render an icon slot 1`] = `
-
-
-
-
-
-
-
-
-
-
-
-
- Test
-
-
-
-`;
diff --git a/packages/lucide-svelte/tests/lucide-svelte.spec.ts b/packages/lucide-svelte/tests/lucide-svelte.spec.ts
deleted file mode 100644
index 643d3e153..000000000
--- a/packages/lucide-svelte/tests/lucide-svelte.spec.ts
+++ /dev/null
@@ -1,92 +0,0 @@
-import { describe, it, expect, afterEach } from 'vitest';
-import { render, cleanup } from '@testing-library/svelte';
-import { Smile, Pen, Edit2 } from '../src/lucide-svelte';
-import TestSlots from './TestSlots.svelte';
-
-describe('Using lucide icon components', () => {
- afterEach(() => cleanup());
- it('should render an component', () => {
- const { container } = render(Smile);
- expect(container).toMatchSnapshot();
- });
-
- it('should adjust the size, stroke color and stroke width', () => {
- const { container } = render(Smile, {
- props: {
- size: 48,
- color: 'red',
- strokeWidth: 4,
- },
- });
-
- expect(container).toMatchSnapshot();
- });
-
- it('should add a class to the element', () => {
- const testClass = 'my-icon';
- render(Smile, {
- props: {
- class: testClass,
- },
- });
-
- const [icon] = document.getElementsByClassName(testClass);
-
- expect(icon).toBeInTheDocument();
- expect(icon).toMatchSnapshot();
- expect(icon).toHaveClass(testClass);
- expect(icon).toHaveClass('lucide');
- expect(icon).toHaveClass('lucide-smile');
- });
-
- it('should add a style attribute to the element', () => {
- render(Smile, {
- props: {
- style: 'position: absolute;',
- },
- });
- const [icon] = document.getElementsByClassName('lucide');
-
- expect(icon.getAttribute('style')).toContain('position: absolute');
- });
-
- it('should render an icon slot', () => {
- const { container, getByText } = render(TestSlots);
-
- const textElement = getByText('Test');
- expect(textElement).toBeInTheDocument();
- expect(container).toMatchSnapshot();
- });
-
- it('should render the alias icon', () => {
- const { container } = render(Pen);
-
- const PenIconRenderedHTML = container.innerHTML;
-
- cleanup();
-
- const { container: Edit2Container } = render(Edit2);
-
- expect(PenIconRenderedHTML).toBe(Edit2Container.innerHTML);
- });
-
- it('should not scale the strokeWidth when absoluteStrokeWidth is set', () => {
- const testId = 'smile-icon';
- const { container, getByTestId } = render(Smile, {
- 'data-testid': testId,
- color: 'red',
- size: 48,
- absoluteStrokeWidth: true,
- });
-
- const { attributes } = getByTestId(testId) as unknown as {
- attributes: Record;
- };
- expect(attributes.stroke.value).toBe('red');
- expect(attributes.width.value).toBe('48');
- expect(attributes.height.value).toBe('48');
- expect(attributes['stroke-width'].value).toBe('1');
-
- expect(container.innerHTML).toMatchSnapshot();
- });
-});
diff --git a/packages/lucide-svelte/tests/setupVitest.ts b/packages/lucide-svelte/tests/setupVitest.ts
deleted file mode 100644
index 03a0244af..000000000
--- a/packages/lucide-svelte/tests/setupVitest.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { expect } from 'vitest';
-import '@testing-library/jest-dom/vitest';
-import htmlSerializer from 'jest-serializer-html';
-
-expect.addSnapshotSerializer(htmlSerializer);
diff --git a/packages/lucide-svelte/tests/testIconNodes.ts b/packages/lucide-svelte/tests/testIconNodes.ts
deleted file mode 100644
index ff00c70fb..000000000
--- a/packages/lucide-svelte/tests/testIconNodes.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import type { IconNode } from '../src/lucide-svelte';
-
-export const airVent: IconNode = [
- [
- 'path',
- {
- d: 'M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2',
- },
- ],
- ['path', { d: 'M6 8h12' }],
- ['path', { d: 'M18.3 17.7a2.5 2.5 0 0 1-3.16 3.83 2.53 2.53 0 0 1-1.14-2V12' }],
- ['path', { d: 'M6.6 15.6A2 2 0 1 0 10 17v-5' }],
-];
-
-export const coffee: IconNode = [
- ['path', { d: 'M17 8h1a4 4 0 1 1 0 8h-1' }],
- ['path', { d: 'M3 8h14v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4Z' }],
- ['line', { x1: '6', x2: '6', y1: '2', y2: '4' }],
- ['line', { x1: '10', x2: '10', y1: '2', y2: '4' }],
- ['line', { x1: '14', x2: '14', y1: '2', y2: '4' }],
-];
diff --git a/packages/lucide-svelte/tsconfig.json b/packages/lucide-svelte/tsconfig.json
deleted file mode 100644
index 068c3322f..000000000
--- a/packages/lucide-svelte/tsconfig.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "extends": "@tsconfig/svelte/tsconfig.json",
- "compilerOptions": {
- "target": "ESNext",
- "useDefineForClassFields": true,
- "module": "ESNext",
- "resolveJsonModule": true,
- "allowJs": true,
- "checkJs": true,
- "isolatedModules": true,
- "types": ["@testing-library/jest-dom"],
- },
- "include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte", "tests/**/*.ts"],
-}
diff --git a/packages/lucide-svelte/vitest.config.ts b/packages/lucide-svelte/vitest.config.ts
deleted file mode 100644
index 0763e3912..000000000
--- a/packages/lucide-svelte/vitest.config.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { defineConfig } from 'vitest/config';
-import { svelte } from '@sveltejs/vite-plugin-svelte';
-
-export default defineConfig({
- plugins: [
- svelte({
- hot: false,
- }),
- ],
- test: {
- globals: true,
- environment: 'jsdom',
- setupFiles: './tests/setupVitest.ts',
- alias: [{ find: /^svelte$/, replacement: 'svelte/internal' }],
- },
-});
diff --git a/packages/lucide-vue-next/README.md b/packages/lucide-vue-next/README.md
deleted file mode 100644
index 3ea85c731..000000000
--- a/packages/lucide-vue-next/README.md
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
-
-
-Lucide icon library for Vue applications.
-
-
-
-
- [](https://www.npmjs.com/package/lucide-vue-next)
- 
- [](https://lucide.dev/license)
-
-
-
- About
- ·
- Icons
- ·
- Documentation
- ·
- License
-
-
-# Lucide Vue
-
-Implementation of the Lucide icon library for Vue 3 applications.
-
-## Installation
-
-```sh
-pnpm add lucide-vue-next
-```
-
-```sh
-npm install lucide-vue-next
-```
-
-```sh
-yarn add lucide-vue-next
-```
-
-```sh
-bun add lucide-vue-next
-```
-
-## Documentation
-
-For full documentation, visit [lucide.dev](https://lucide.dev/guide/packages/lucide-vue-next)
-
-## Community
-
-Join the [Discord server](https://discord.gg/EH6nSts) to chat with the maintainers and other users.
-
-## License
-
-Lucide is licensed under the ISC license. See [LICENSE](https://lucide.dev/license).
-
-[//]: <> (Sponsors)
-
-## Sponsors
-
-
-
-
-
-
-
-### Hero backers 🦸
-
-
-
-### Awesome backers 🍺
-
-
-
-
-### Backers ☕
-
-
-
-### Other contributors 💸
-
-You can find all our past and non-recurring financial contributors at [our Open Collective page](https://opencollective.com/lucide-icons).
diff --git a/packages/lucide-vue-next/package.json b/packages/lucide-vue-next/package.json
deleted file mode 100644
index fb626ea9d..000000000
--- a/packages/lucide-vue-next/package.json
+++ /dev/null
@@ -1,62 +0,0 @@
-{
- "name": "lucide-vue-next",
- "version": "0.0.1",
- "author": "Eric Fennis",
- "description": "A Lucide icon library package for Vue 3 applications.",
- "license": "ISC",
- "homepage": "https://lucide.dev",
- "bugs": "https://github.com/lucide-icons/lucide/issues",
- "repository": {
- "type": "git",
- "url": "https://github.com/lucide-icons/lucide.git",
- "directory": "packages/lucide-vue-next"
- },
- "keywords": [
- "Lucide",
- "Vue",
- "Feather",
- "Icons",
- "Icon",
- "SVG",
- "Feather Icons",
- "Fontawesome",
- "Font Awesome"
- ],
- "amdName": "lucide-vue-next",
- "source": "build/lucide-vue-next.js",
- "main": "dist/cjs/lucide-vue-next.js",
- "module": "dist/esm/lucide-vue-next.js",
- "typings": "dist/lucide-vue-next.d.ts",
- "sideEffects": false,
- "files": [
- "dist",
- "nuxt.js"
- ],
- "scripts": {
- "build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:bundles",
- "copy:license": "cp ../../LICENSE ./LICENSE",
- "clean": "rm -rf dist && rm -rf ./src/icons/*.ts",
- "build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mts --renderUniqueKey --withAliases --aliasesFileExtension=.ts --iconFileExtension=.ts --exportFileName=index.ts",
- "build:bundles": "rollup -c ./rollup.config.mjs",
- "test": "pnpm build:icons && vitest run",
- "test:watch": "vitest watch",
- "version": "pnpm version --git-tag-version=false"
- },
- "devDependencies": {
- "@lucide/build-icons": "workspace:*",
- "@lucide/rollup-plugins": "workspace:*",
- "@lucide/shared": "workspace:*",
- "@testing-library/jest-dom": "^6.8.0",
- "@testing-library/vue": "^8.1.0",
- "@vitejs/plugin-vue": "^6.0.2",
- "@vue/test-utils": "2.4.6",
- "rollup": "^4.59.0",
- "rollup-plugin-dts": "^6.2.3",
- "vite": "^7.2.4",
- "vitest": "^4.0.12",
- "vue": "^3.5.20"
- },
- "peerDependencies": {
- "vue": ">=3.0.1"
- }
-}
diff --git a/packages/lucide-vue-next/rollup.config.mjs b/packages/lucide-vue-next/rollup.config.mjs
deleted file mode 100644
index 02d4cbd72..000000000
--- a/packages/lucide-vue-next/rollup.config.mjs
+++ /dev/null
@@ -1,100 +0,0 @@
-import plugins, { replace } from '@lucide/rollup-plugins';
-import pkg from './package.json' with { type: 'json' };
-import dts from 'rollup-plugin-dts';
-
-const packageName = 'LucideVueNext';
-const outputFileName = 'lucide-vue-next';
-const outputDir = 'dist';
-const inputs = ['src/lucide-vue-next.ts'];
-const bundles = [
- {
- format: 'cjs',
- inputs,
- outputDir,
- },
- {
- format: 'esm',
- inputs,
- outputDir,
- preserveModules: true,
- },
-];
-
-const configs = bundles
- .map(({ inputs, outputDir, format, minify, preserveModules }) =>
- inputs.map((input) => ({
- input,
- plugins: plugins({ pkg, minify }),
- external: ['vue'],
- output: {
- name: packageName,
- ...(preserveModules
- ? {
- dir: `${outputDir}/${format}`,
- }
- : {
- file: `${outputDir}/${format}/${outputFileName}.js`,
- }),
- format,
- preserveModules,
- preserveModulesRoot: 'src',
- sourcemap: true,
- globals: {
- vue: 'vue',
- },
- },
- })),
- )
- .flat();
-
-export default [
- {
- input: inputs[0],
- output: [
- {
- file: `dist/${outputFileName}.d.ts`,
- format: 'es',
- },
- ],
- plugins: [
- dts({
- compilerOptions: {
- preserveSymlinks: false,
- },
- }),
- ],
- },
- {
- input: `src/${outputFileName}.suffixed.ts`,
- output: [
- {
- file: `dist/${outputFileName}.suffixed.d.ts`,
- format: 'es',
- },
- ],
- plugins: [
- dts({
- compilerOptions: {
- preserveSymlinks: false,
- },
- }),
- ],
- },
- {
- input: `src/${outputFileName}.prefixed.ts`,
- output: [
- {
- file: `dist/${outputFileName}.prefixed.d.ts`,
- format: 'es',
- },
- ],
- plugins: [
- dts({
- compilerOptions: {
- preserveSymlinks: false,
- },
- }),
- ],
- },
- ...configs,
-];
diff --git a/packages/lucide-vue-next/scripts/exportTemplate.mts b/packages/lucide-vue-next/scripts/exportTemplate.mts
deleted file mode 100644
index d42df2a61..000000000
--- a/packages/lucide-vue-next/scripts/exportTemplate.mts
+++ /dev/null
@@ -1,36 +0,0 @@
-import base64SVG from '@lucide/build-icons/utils/base64SVG';
-import defineExportTemplate from '@lucide/build-icons/utils/defineExportTemplate';
-
-export default defineExportTemplate(async({
- componentName,
- iconName,
- children,
- getSvg,
- deprecated,
- deprecationReason,
-}) => {
- const svgContents = await getSvg();
- const svgBase64 = base64SVG(svgContents);
-
- return `
-import createLucideIcon from '../createLucideIcon';
-import { IconNode } from '../types';
-
-export const __iconNode: IconNode = ${JSON.stringify(children)}
-
-/**
- * @component @name ${componentName}
- * @description Lucide SVG icon component, renders SVG Element with children.
- *
- * @preview  - https://lucide.dev/icons/${iconName}
- * @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
- *
- * @param {Object} props - Lucide icons props and any valid SVG attribute
- * @returns {FunctionalComponent} Vue component
- * ${deprecated ? `@deprecated ${deprecationReason}` : ''}
- */
-const ${componentName} = createLucideIcon('${iconName}', __iconNode);
-
-export default ${componentName};
-`;
-});
diff --git a/packages/lucide-vue-next/src/Icon.ts b/packages/lucide-vue-next/src/Icon.ts
deleted file mode 100644
index 73054aa07..000000000
--- a/packages/lucide-vue-next/src/Icon.ts
+++ /dev/null
@@ -1,63 +0,0 @@
-import { type FunctionalComponent, h } from 'vue';
-import {
- mergeClasses,
- toKebabCase,
- toPascalCase,
- isEmptyString,
- hasA11yProp,
-} from '@lucide/shared';
-import defaultAttributes from './defaultAttributes';
-import { IconNode, LucideProps } from './types';
-
-interface IconProps {
- iconNode: IconNode;
- name: string;
- as?: string | FunctionalComponent;
-}
-
-const Icon: FunctionalComponent = (
- {
- name,
- iconNode,
- absoluteStrokeWidth,
- 'absolute-stroke-width': absoluteStrokeWidthKebabCase,
- strokeWidth,
- 'stroke-width': strokeWidthKebabCase,
- as = 'svg',
- size = defaultAttributes.width,
- color = defaultAttributes.stroke,
- ...props
- },
- { slots },
-) => {
- return h(
- as,
- {
- ...defaultAttributes,
- ...props,
- width: size,
- height: size,
- stroke: color,
- 'stroke-width':
- isEmptyString(absoluteStrokeWidth) ||
- isEmptyString(absoluteStrokeWidthKebabCase) ||
- absoluteStrokeWidth === true ||
- absoluteStrokeWidthKebabCase === true
- ? (Number(strokeWidth || strokeWidthKebabCase || defaultAttributes['stroke-width']) *
- 24) /
- Number(size)
- : strokeWidth || strokeWidthKebabCase || defaultAttributes['stroke-width'],
- class: mergeClasses(
- 'lucide',
- props.class,
- ...(name
- ? [`lucide-${toKebabCase(toPascalCase(name))}-icon`, `lucide-${toKebabCase(name)}`]
- : ['lucide-icon']),
- ),
- ...(!slots.default && !hasA11yProp(props) && { 'aria-hidden': 'true' }),
- },
- [...iconNode.map((child) => h(...child)), ...(slots.default ? [slots.default()] : [])],
- );
-};
-
-export default Icon;
diff --git a/packages/lucide-vue-next/src/aliases/index.ts b/packages/lucide-vue-next/src/aliases/index.ts
deleted file mode 100644
index bbe66d0a2..000000000
--- a/packages/lucide-vue-next/src/aliases/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export * from './aliases';
-export * from './prefixed';
-export * from './suffixed';
diff --git a/packages/lucide-vue-next/src/createLucideIcon.ts b/packages/lucide-vue-next/src/createLucideIcon.ts
deleted file mode 100644
index 92b1f8d9f..000000000
--- a/packages/lucide-vue-next/src/createLucideIcon.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-import { h } from 'vue';
-import type { FunctionalComponent } from 'vue';
-import { IconNode, LucideProps } from './types';
-import Icon from './Icon';
-
-var showDeprecationWarning = true;
-
-/**
- * Create a Lucide icon component
- * @param {string} iconName
- * @param {array} iconNode
- * @returns {FunctionalComponent} LucideIcon
- */
-const createLucideIcon =
- (iconName: string, iconNode: IconNode): FunctionalComponent =>
- (props, { slots, attrs }) => {
- if (showDeprecationWarning) {
- console.warn(
- '[lucide-vue-nuxt]: This package is renamed to `@lucide/vue`. Please update your imports to avoid potential issues in the future.',
- );
- showDeprecationWarning = false;
- }
-
- return h(
- Icon,
- {
- ...attrs,
- ...props,
- iconNode,
- name: iconName,
- },
- slots,
- );
- };
-
-export default createLucideIcon;
diff --git a/packages/lucide-vue-next/src/defaultAttributes.ts b/packages/lucide-vue-next/src/defaultAttributes.ts
deleted file mode 100644
index 8ae7d46ea..000000000
--- a/packages/lucide-vue-next/src/defaultAttributes.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-export default {
- xmlns: 'http://www.w3.org/2000/svg',
- width: 24,
- height: 24,
- viewBox: '0 0 24 24',
- fill: 'none',
- stroke: 'currentColor',
- 'stroke-width': 2,
- 'stroke-linecap': 'round',
- 'stroke-linejoin': 'round',
-};
diff --git a/packages/lucide-vue-next/src/icons/.gitkeep b/packages/lucide-vue-next/src/icons/.gitkeep
deleted file mode 100644
index e3d85f774..000000000
--- a/packages/lucide-vue-next/src/icons/.gitkeep
+++ /dev/null
@@ -1 +0,0 @@
-Folder for generated icons
diff --git a/packages/lucide-vue-next/src/lucide-vue-next.prefixed.ts b/packages/lucide-vue-next/src/lucide-vue-next.prefixed.ts
deleted file mode 100644
index a6eed90a3..000000000
--- a/packages/lucide-vue-next/src/lucide-vue-next.prefixed.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-export * as icons from './icons';
-export * from './aliases/prefixed';
-export * from './types';
-
-export { default as createLucideIcon } from './createLucideIcon';
-export { default as Icon } from './Icon';
diff --git a/packages/lucide-vue-next/src/lucide-vue-next.suffixed.ts b/packages/lucide-vue-next/src/lucide-vue-next.suffixed.ts
deleted file mode 100644
index 10d5d93d5..000000000
--- a/packages/lucide-vue-next/src/lucide-vue-next.suffixed.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-export * as icons from './icons';
-export * from './aliases/suffixed';
-export * from './types';
-
-export { default as createLucideIcon } from './createLucideIcon';
-export { default as Icon } from './Icon';
diff --git a/packages/lucide-vue-next/src/lucide-vue-next.ts b/packages/lucide-vue-next/src/lucide-vue-next.ts
deleted file mode 100644
index 6636c2259..000000000
--- a/packages/lucide-vue-next/src/lucide-vue-next.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-export * from './icons';
-export * as icons from './icons';
-export * from './aliases';
-export * from './types';
-
-export { default as createLucideIcon } from './createLucideIcon';
-export { default as Icon } from './Icon';
diff --git a/packages/lucide-vue-next/src/types.ts b/packages/lucide-vue-next/src/types.ts
deleted file mode 100644
index 6b3c026a5..000000000
--- a/packages/lucide-vue-next/src/types.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import type { FunctionalComponent, SVGAttributes } from 'vue';
-
-export interface LucideProps extends Partial {
- size?: 24 | number;
- strokeWidth?: number | string;
- absoluteStrokeWidth?: boolean;
- 'absolute-stroke-width'?: boolean;
-}
-
-export type IconNode = [elementName: string, attrs: Record][];
-export type LucideIcon = FunctionalComponent;
-
-// Legacy exports
-export type SVGProps = LucideProps;
diff --git a/packages/lucide-vue-next/tests/Icon.spec.ts b/packages/lucide-vue-next/tests/Icon.spec.ts
deleted file mode 100644
index 3c1e4c15e..000000000
--- a/packages/lucide-vue-next/tests/Icon.spec.ts
+++ /dev/null
@@ -1,110 +0,0 @@
-import { describe, it, expect } from 'vitest';
-import { render } from '@testing-library/vue';
-
-import { airVent } from './testIconNodes';
-import { Icon } from '../src/lucide-vue-next';
-
-describe('Using Icon Component', () => {
- it('should render icon based on a iconNode', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- },
- });
-
- expect(container.firstChild).toBeDefined();
- });
-
- it('should render icon and match snapshot', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- },
- });
-
- expect(container.firstChild).toMatchSnapshot();
- });
-});
-
-describe('Icon Component Accessibility', () => {
- it('should have aria-hidden prop when no aria prop is present', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- },
- });
-
- expect(container.firstChild).toHaveAttribute('aria-hidden', 'true');
- });
-
- it('should not have aria-hidden prop when aria prop is present', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- 'aria-label': 'Air conditioning',
- },
- });
-
- expect(container.firstChild).not.toHaveAttribute('aria-hidden');
- });
-
- it('should not have aria-hidden prop when title prop is present', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- title: 'Air conditioning',
- },
- });
-
- expect(container.firstChild).not.toHaveAttribute('aria-hidden');
- });
-
- it('should not have aria-hidden prop when there are children that could be a element', async () => {
- const template = {
- name: 'Stub',
- template: `Some title `,
- };
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- },
- slots: {
- default: template,
- },
- });
-
- expect(container.firstChild).not.toHaveAttribute('aria-hidden');
- });
-
- it('should never override aria-hidden prop', async () => {
- const { container } = render(Icon, {
- props: {
- iconNode: airVent,
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- 'aria-hidden': false,
- },
- });
-
- expect(container.firstChild).toHaveAttribute('aria-hidden', 'false');
- });
-});
diff --git a/packages/lucide-vue-next/tests/__snapshots__/Icon.spec.ts.snap b/packages/lucide-vue-next/tests/__snapshots__/Icon.spec.ts.snap
deleted file mode 100644
index ae7de76e2..000000000
--- a/packages/lucide-vue-next/tests/__snapshots__/Icon.spec.ts.snap
+++ /dev/null
@@ -1,30 +0,0 @@
-// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
-
-exports[`Using Icon Component > should render icon and match snapshot 1`] = `
-
-
-
-
-
-
-`;
diff --git a/packages/lucide-vue-next/tests/__snapshots__/lucide-vue-next.spec.ts.snap b/packages/lucide-vue-next/tests/__snapshots__/lucide-vue-next.spec.ts.snap
deleted file mode 100644
index 0be2c0e7d..000000000
--- a/packages/lucide-vue-next/tests/__snapshots__/lucide-vue-next.spec.ts.snap
+++ /dev/null
@@ -1,201 +0,0 @@
-// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
-
-exports[`Using lucide icon components > should add a class to the element 1`] = `
-
-`;
-
-exports[`Using lucide icon components > should add a style attribute to the element 1`] = `
-
-`;
-
-exports[`Using lucide icon components > should adjust the size, stroke color and stroke width 1`] = `
-
-`;
-
-exports[`Using lucide icon components > should pass children to the icon slot 1`] = `
-
-
-
-
-
-
-
-
- Hello World
-
-
-
-
-`;
-
-exports[`Using lucide icon components > should render an component 1`] = `
-
-`;
diff --git a/packages/lucide-vue-next/tests/lucide-vue-next.spec.ts b/packages/lucide-vue-next/tests/lucide-vue-next.spec.ts
deleted file mode 100644
index f8fe38e2c..000000000
--- a/packages/lucide-vue-next/tests/lucide-vue-next.spec.ts
+++ /dev/null
@@ -1,183 +0,0 @@
-import { describe, it, expect, vi, afterEach } from 'vitest';
-import { render, fireEvent, cleanup } from '@testing-library/vue';
-import { Smile, Edit2, Pen } from '../src/lucide-vue-next';
-import defaultAttributes from '../src/defaultAttributes';
-
-describe('Using lucide icon components', () => {
- afterEach(() => cleanup());
-
- it('should render an component', () => {
- const { container } = render(Smile);
- expect(container).toMatchSnapshot();
- });
-
- it('should render the icon with the default attributes', () => {
- const { container } = render(Smile);
-
- const SVGElement = container.firstElementChild;
-
- expect(SVGElement).toHaveAttribute('xmlns', defaultAttributes.xmlns);
- expect(SVGElement).toHaveAttribute('width', String(defaultAttributes.width));
- expect(SVGElement).toHaveAttribute('height', String(defaultAttributes.height));
- expect(SVGElement).toHaveAttribute('viewBox', defaultAttributes.viewBox);
- expect(SVGElement).toHaveAttribute('fill', defaultAttributes.fill);
- expect(SVGElement).toHaveAttribute('stroke', defaultAttributes.stroke);
- expect(SVGElement).toHaveAttribute('stroke-width', String(defaultAttributes['stroke-width']));
- expect(SVGElement).toHaveAttribute('stroke-linecap', defaultAttributes['stroke-linecap']);
- expect(SVGElement).toHaveAttribute('stroke-linejoin', defaultAttributes['stroke-linejoin']);
- });
-
- it('should adjust the size, stroke color and stroke width', () => {
- const { container } = render(Smile, {
- props: {
- size: 48,
- color: 'red',
- 'stroke-width': 4,
- },
- });
-
- const SVGElement = container.firstElementChild;
-
- expect(SVGElement).toHaveAttribute('width', '48');
- expect(SVGElement).toHaveAttribute('stroke', 'red');
- expect(SVGElement).toHaveAttribute('stroke-width', '4');
-
- expect(container).toMatchSnapshot();
- });
-
- it('should add a class to the element', () => {
- const { container } = render(Smile, {
- attrs: {
- class: 'my-icon',
- },
- });
-
- expect(container).toMatchSnapshot();
-
- const icon = container.firstElementChild;
-
- expect(icon).toHaveClass('my-icon');
- expect(icon).toHaveClass('lucide');
- expect(icon).toHaveClass('lucide-smile-icon');
- });
-
- it('should add a style attribute to the element', () => {
- const { container } = render(Smile, {
- attrs: {
- style: 'position: absolute',
- },
- });
-
- expect(container).toMatchSnapshot();
-
- const icon = container.firstElementChild;
-
- expect(icon).toHaveStyle({ position: 'absolute' });
- });
-
- it('should call the onClick event', async () => {
- const onClick = vi.fn();
- const { container } = render(Smile, {
- attrs: {
- onClick,
- },
- });
-
- const icon = container.firstElementChild;
-
- await fireEvent.click(icon);
-
- expect(onClick).toHaveBeenCalled();
- });
-
- it('should pass children to the icon slot', () => {
- const testText = 'Hello World';
- const template = {
- name: 'Stub',
- template: `${testText} `,
- };
- const { getByText, container } = render(Smile, {
- slots: {
- default: template,
- },
- });
-
- const textElement = getByText(testText);
-
- expect(textElement).toBeInTheDocument();
- expect(container).toMatchSnapshot();
- });
-
- it('should render the alias icon', () => {
- const { container } = render(Pen, {
- props: {
- size: 48,
- color: 'red',
- 'stroke-width': 4,
- },
- });
-
- const PenIconRenderedHTML = container.innerHTML;
-
- cleanup();
-
- const { container: Edit2Container } = render(Edit2, {
- props: {
- size: 48,
- color: 'red',
- 'stroke-width': 4,
- },
- });
-
- expect(PenIconRenderedHTML).toBe(Edit2Container.innerHTML);
- });
-
- it('should not scale the strokeWidth when absoluteStrokeWidth is set', () => {
- const { container } = render(Pen, {
- props: {
- size: 48,
- color: 'red',
- absoluteStrokeWidth: true,
- },
- });
-
- const icon = container.firstElementChild;
-
- expect(icon).toHaveAttribute('width', '48');
- expect(icon).toHaveAttribute('stroke', 'red');
- expect(icon).toHaveAttribute('stroke-width', '1');
- });
-
- it('should not scale the strokeWidth when absoluteStrokeWidth is as empty value attribute', () => {
- const { container } = render(Pen, {
- props: {
- size: 48,
- color: 'red',
- absoluteStrokeWidth: '',
- },
- });
-
- const icon = container.firstElementChild;
-
- expect(icon).toHaveAttribute('width', '48');
- expect(icon).toHaveAttribute('stroke', 'red');
- expect(icon).toHaveAttribute('stroke-width', '1');
- });
-
- it('should not scale the strokeWidth when absoluteStrokeWidth is written in kebabCase', () => {
- const { container } = render(Pen, {
- props: {
- size: 48,
- color: 'red',
- 'stroke-width': '2',
- 'absolute-stroke-width': '',
- },
- });
-
- const icon = container.firstElementChild;
-
- expect(icon).toHaveAttribute('width', '48');
- expect(icon).toHaveAttribute('stroke', 'red');
- expect(icon).toHaveAttribute('stroke-width', '1');
- });
-});
diff --git a/packages/lucide-vue-next/tests/setupVitest.js b/packages/lucide-vue-next/tests/setupVitest.js
deleted file mode 100644
index bb02c60cd..000000000
--- a/packages/lucide-vue-next/tests/setupVitest.js
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/vitest';
diff --git a/packages/lucide-vue-next/tests/testIconNodes.ts b/packages/lucide-vue-next/tests/testIconNodes.ts
deleted file mode 100644
index 8c593572d..000000000
--- a/packages/lucide-vue-next/tests/testIconNodes.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import { IconNode } from '../src/createLucideIcon';
-
-export const airVent: IconNode = [
- [
- 'path',
- {
- d: 'M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2',
- key: 'larmp2',
- },
- ],
- ['path', { d: 'M6 8h12', key: '6g4wlu' }],
- ['path', { d: 'M18.3 17.7a2.5 2.5 0 0 1-3.16 3.83 2.53 2.53 0 0 1-1.14-2V12', key: '1bo8pg' }],
- ['path', { d: 'M6.6 15.6A2 2 0 1 0 10 17v-5', key: 't9h90c' }],
-];
-
-export const coffee: IconNode = [
- ['path', { d: 'M17 8h1a4 4 0 1 1 0 8h-1', key: 'jx4kbh' }],
- ['path', { d: 'M3 8h14v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4Z', key: '1bxrl0' }],
- ['line', { x1: '6', x2: '6', y1: '2', y2: '4', key: '1cr9l3' }],
- ['line', { x1: '10', x2: '10', y1: '2', y2: '4', key: '170wym' }],
- ['line', { x1: '14', x2: '14', y1: '2', y2: '4', key: '1c5f70' }],
-];
diff --git a/packages/lucide-vue-next/tsconfig.json b/packages/lucide-vue-next/tsconfig.json
deleted file mode 100644
index a9eaeabec..000000000
--- a/packages/lucide-vue-next/tsconfig.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "compilerOptions": {
- "target": "ESNext",
- "useDefineForClassFields": true,
- "module": "ESNext",
- "moduleResolution": "Node",
- "strict": true,
- "jsx": "preserve",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "esModuleInterop": true,
- "lib": ["ESNext", "DOM"],
- "skipLibCheck": true,
- "noEmit": true,
- "types": ["@testing-library/jest-dom"],
- },
-}
diff --git a/packages/lucide-vue-next/vitest.config.mts b/packages/lucide-vue-next/vitest.config.mts
deleted file mode 100644
index bd4e60680..000000000
--- a/packages/lucide-vue-next/vitest.config.mts
+++ /dev/null
@@ -1,11 +0,0 @@
-import { defineConfig } from 'vitest/config'
-import vue from '@vitejs/plugin-vue'
-
-export default defineConfig({
- plugins: [vue()],
- test: {
- globals: true,
- environment: 'jsdom',
- setupFiles: './tests/setupVitest.js',
- },
-});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 4a7f2cc6f..9c9183b35 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -259,7 +259,7 @@ importers:
version: 21.1.0(eslint@8.57.1)(typescript@5.9.3)
'@angular/build':
specifier: ^21.0.3
- version: 21.2.3(@angular/compiler-cli@21.2.5(@angular/compiler@21.2.5)(typescript@5.9.3))(@angular/compiler@21.2.5)(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)))(@types/node@24.10.1)(chokidar@5.0.0)(jiti@2.7.0)(less@4.2.0)(ng-packagr@21.2.1(@angular/compiler-cli@21.2.5(@angular/compiler@21.2.5)(typescript@5.9.3))(tslib@2.8.1)(typescript@5.9.3))(postcss@8.5.8)(stylus@0.56.0)(terser@5.47.1)(tslib@2.8.1)(typescript@5.9.3)(vitest@4.0.12)(yaml@2.8.0)
+ version: 21.2.3(@angular/compiler-cli@21.2.5(@angular/compiler@21.2.5)(typescript@5.9.3))(@angular/compiler@21.2.5)(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)))(@types/node@24.10.1)(chokidar@5.0.0)(jiti@2.7.0)(less@4.2.0)(ng-packagr@21.2.1(@angular/compiler-cli@21.2.5(@angular/compiler@21.2.5)(typescript@5.9.3))(tslib@2.8.1)(typescript@5.9.3))(postcss@8.5.8)(stylus@0.56.0)(terser@5.47.1)(tslib@2.8.1)(typescript@5.9.3)(vitest@4.1.1)(yaml@2.8.0)
'@angular/cli':
specifier: ^21.0.3
version: 21.2.3(@types/node@24.10.1)(chokidar@5.0.0)
@@ -292,7 +292,7 @@ importers:
version: link:../../tools/build-helpers
'@vitest/browser-playwright':
specifier: ^4.0.12
- version: 4.1.1(playwright@1.58.2)(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.0.12)
+ version: 4.1.1(playwright@1.58.2)(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.1.1)
angular-eslint:
specifier: 21.1.0
version: 21.1.0(@angular/cli@21.2.3(@types/node@24.10.1)(chokidar@5.0.0))(chokidar@5.0.0)(eslint@8.57.1)(typescript-eslint@8.57.1(eslint@8.57.1)(typescript@5.9.3))(typescript@5.9.3)
@@ -344,7 +344,7 @@ importers:
version: 7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
vitest:
specifier: ^4.1.1
- version: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jsdom@27.4.0)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
+ version: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@27.4.0)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
packages/icons:
devDependencies:
@@ -418,112 +418,6 @@ importers:
specifier: ^7.2.4
version: 7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
- packages/lucide-angular:
- devDependencies:
- '@angular-devkit/build-angular':
- specifier: ~13.3.11
- version: 13.3.11(@angular/compiler-cli@13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))(@types/express@4.17.21)(chokidar@3.6.0)(karma@6.3.20)(ng-packagr@13.3.1(@angular/compiler-cli@13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4))(@types/node@12.20.55)(tslib@2.8.1)(typescript@4.6.4))(typescript@4.6.4)
- '@angular-eslint/builder':
- specifier: ~13.0.0
- version: 13.0.1(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))(eslint@8.57.1)(typescript@4.6.4)
- '@angular-eslint/eslint-plugin':
- specifier: ~13.0.0
- version: 13.0.1(eslint@8.57.1)(typescript@4.6.4)
- '@angular-eslint/eslint-plugin-template':
- specifier: ~13.0.0
- version: 13.0.1(eslint@8.57.1)(typescript@4.6.4)
- '@angular-eslint/schematics':
- specifier: ~13.0.0
- version: 13.0.1(@angular/cli@13.3.11(chokidar@3.6.0))(eslint@8.57.1)(typescript@4.6.4)
- '@angular-eslint/template-parser':
- specifier: ~13.0.0
- version: 13.0.1(eslint@8.57.1)(typescript@4.6.4)
- '@angular/cli':
- specifier: ~13.3.11
- version: 13.3.11(chokidar@3.6.0)
- '@angular/common':
- specifier: ~13.3.0
- version: 13.3.12(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(rxjs@7.5.7)
- '@angular/compiler':
- specifier: ~13.3.0
- version: 13.3.12
- '@angular/compiler-cli':
- specifier: ~13.3.0
- version: 13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4)
- '@angular/core':
- specifier: ~13.3.0
- version: 13.3.12(rxjs@7.5.7)(zone.js@0.11.8)
- '@angular/platform-browser':
- specifier: ~13.3.0
- version: 13.3.12(@angular/common@13.3.12(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(rxjs@7.5.7))(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))
- '@angular/platform-browser-dynamic':
- specifier: ~13.3.0
- version: 13.3.12(@angular/common@13.3.12(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(rxjs@7.5.7))(@angular/compiler@13.3.12)(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(@angular/platform-browser@13.3.12(@angular/common@13.3.12(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(rxjs@7.5.7))(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8)))
- '@lucide/build-icons':
- specifier: workspace:*
- version: link:../../tools/build-icons
- '@types/jasmine':
- specifier: ~3.10.0
- version: 3.10.18
- '@types/node':
- specifier: ^12.11.1
- version: 12.20.55
- '@typescript-eslint/eslint-plugin':
- specifier: 5.48.2
- version: 5.48.2(@typescript-eslint/parser@5.48.2(eslint@8.57.1)(typescript@4.6.4))(eslint@8.57.1)(typescript@4.6.4)
- '@typescript-eslint/parser':
- specifier: 5.48.2
- version: 5.48.2(eslint@8.57.1)(typescript@4.6.4)
- eslint:
- specifier: ^8.33.0
- version: 8.57.1
- eslint-config-prettier:
- specifier: ^8.5.0
- version: 8.10.2(eslint@8.57.1)
- jasmine-core:
- specifier: ~4.0.0
- version: 4.0.1
- jasmine-spec-reporter:
- specifier: ~7.0.0
- version: 7.0.0
- karma:
- specifier: ~6.3.0
- version: 6.3.20
- karma-chrome-launcher:
- specifier: ~3.1.0
- version: 3.1.1
- karma-coverage:
- specifier: ~2.1.0
- version: 2.1.1
- karma-jasmine:
- specifier: ~4.0.0
- version: 4.0.2(karma@6.3.20)
- karma-jasmine-html-reporter:
- specifier: ~1.7.0
- version: 1.7.0(jasmine-core@4.0.1)(karma-jasmine@4.0.2(karma@6.3.20))(karma@6.3.20)
- ng-packagr:
- specifier: ^13.3.0
- version: 13.3.1(@angular/compiler-cli@13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4))(@types/node@12.20.55)(tslib@2.8.1)(typescript@4.6.4)
- prettier:
- specifier: ^2.8.4
- version: 2.8.8
- rxjs:
- specifier: ~7.5.0
- version: 7.5.7
- ts-node:
- specifier: ~10.9.1
- version: 10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.17))(@types/node@12.20.55)(typescript@4.6.4)
- tslib:
- specifier: ^2.3.0
- version: 2.8.1
- typescript:
- specifier: ~4.6.2
- version: 4.6.4
- zone.js:
- specifier: ~0.11.4
- version: 0.11.8
- publishDirectory: dist
-
packages/lucide-preact:
devDependencies:
'@lucide/build-icons':
@@ -746,87 +640,6 @@ importers:
specifier: ^5.2.1
version: 5.3.1
- packages/lucide-svelte:
- devDependencies:
- '@lucide/build-icons':
- specifier: workspace:*
- version: link:../../tools/build-icons
- '@lucide/helpers':
- specifier: workspace:*
- version: link:../../tools/build-helpers
- '@sveltejs/package':
- specifier: ^2.2.3
- version: 2.5.6(svelte@4.2.20)(typescript@5.9.3)
- '@sveltejs/vite-plugin-svelte':
- specifier: ^2.4.2
- version: 2.5.3(svelte@4.2.20)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
- '@testing-library/jest-dom':
- specifier: ^6.8.0
- version: 6.9.1
- '@testing-library/svelte':
- specifier: ^4.0.2
- version: 4.2.3(svelte@4.2.20)
- '@tsconfig/svelte':
- specifier: ^5.0.0
- version: 5.0.6
- jest-serializer-html:
- specifier: ^7.1.0
- version: 7.1.0
- svelte:
- specifier: ^4.2.19
- version: 4.2.20
- svelte-check:
- specifier: ^3.4.4
- version: 3.8.6(@babel/core@7.29.0)(less@4.2.0)(postcss@8.5.9)(sass@1.98.0)(stylus@0.56.0)(svelte@4.2.20)
- svelte-preprocess:
- specifier: ^5.0.4
- version: 5.1.4(@babel/core@7.29.0)(less@4.2.0)(postcss@8.5.9)(sass@1.98.0)(stylus@0.56.0)(svelte@4.2.20)(typescript@5.9.3)
- typescript:
- specifier: ^5.8.3
- version: 5.9.3
- vite:
- specifier: ^7.2.4
- version: 7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
-
- packages/lucide-vue-next:
- devDependencies:
- '@lucide/build-icons':
- specifier: workspace:*
- version: link:../../tools/build-icons
- '@lucide/rollup-plugins':
- specifier: workspace:*
- version: link:../../tools/rollup-plugins
- '@lucide/shared':
- specifier: workspace:*
- version: link:../shared
- '@testing-library/jest-dom':
- specifier: ^6.8.0
- version: 6.9.1
- '@testing-library/vue':
- specifier: ^8.1.0
- version: 8.1.0(@vue/compiler-sfc@3.5.24)(vue@3.5.24(typescript@5.9.3))
- '@vitejs/plugin-vue':
- specifier: ^6.0.2
- version: 6.0.2(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vue@3.5.24(typescript@5.9.3))
- '@vue/test-utils':
- specifier: 2.4.6
- version: 2.4.6
- rollup:
- specifier: ^4.59.0
- version: 4.59.0
- rollup-plugin-dts:
- specifier: ^6.2.3
- version: 6.2.3(rollup@4.59.0)(typescript@5.9.3)
- vite:
- specifier: ^7.2.4
- version: 7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
- vitest:
- specifier: ^4.0.12
- version: 4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/ui@4.0.12)(jiti@2.7.0)(jsdom@27.4.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
- vue:
- specifier: ^3.5.20
- version: 3.5.24(typescript@5.9.3)
-
packages/shared:
devDependencies:
vite:
@@ -1164,10 +977,6 @@ packages:
resolution: {integrity: sha512-xcaCqbhupVWhuBP1nwbk1XNvwrGljozutEiLx06mvqDf3o8cHyEgQSHS4fKJM+UAggaWVnnFW+Nne5aQ8SUJXg==}
engines: {node: '>= 14.0.0'}
- '@ampproject/remapping@2.2.0':
- resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
- engines: {node: '>=6.0.0'}
-
'@ampproject/remapping@2.2.1':
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
@@ -1176,57 +985,11 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@angular-devkit/architect@0.1303.11':
- resolution: {integrity: sha512-JwrWomNqNGjAeKlqV2pimUFlCgFxQy+Vioz9+QAPIrUkvvjbkQ1dZKOe8Ul8eosb1N3Ln282U6qzOpHKfJ4TOg==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
-
'@angular-devkit/architect@0.2102.3':
resolution: {integrity: sha512-G4wSWUbtWp1WCKw5GMRqHH8g4m5RBpIyzt8n8IX5Pm6iYe/rwCBSKL3ktEkk7AYMwjtonkRlDtAK1GScFsf1Sg==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
hasBin: true
- '@angular-devkit/build-angular@13.3.11':
- resolution: {integrity: sha512-H4tpdmRu+6HSjsL+swV/8qj8v0YSDq6lpb31EYajlBB6fDj+YJQvHgaWvexSWl6eIqgDKXcujhNUjNi1enjwHw==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- peerDependencies:
- '@angular/compiler-cli': ^13.0.0 || ^13.3.0-rc.0
- '@angular/localize': ^13.0.0 || ^13.3.0-rc.0
- '@angular/service-worker': ^13.0.0 || ^13.3.0-rc.0
- karma: ^6.3.0
- ng-packagr: ^13.0.0
- protractor: ^7.0.0
- tailwindcss: ^2.0.0 || ^3.0.0
- typescript: '>=4.4.3 <4.7'
- peerDependenciesMeta:
- '@angular/localize':
- optional: true
- '@angular/service-worker':
- optional: true
- karma:
- optional: true
- ng-packagr:
- optional: true
- protractor:
- optional: true
- tailwindcss:
- optional: true
-
- '@angular-devkit/build-webpack@0.1303.11':
- resolution: {integrity: sha512-599pWAQLq7i/fmEZLb7PaNU6nmPC3EZbJk1nU/UBcpx7FWs9e0o2XQE2PCAs0buqtQxVjSgY6kMO8ex5dUmgUQ==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- peerDependencies:
- webpack: ^5.30.0
- webpack-dev-server: ^4.0.0
-
- '@angular-devkit/core@13.3.11':
- resolution: {integrity: sha512-rfqoLMRYhlz0wzKlHx7FfyIyQq8dKTsmbCoIVU1cEIH0gyTMVY7PbVzwRRcO6xp5waY+0hA+0Brriujpuhkm4w==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- peerDependencies:
- chokidar: ^3.5.2
- peerDependenciesMeta:
- chokidar:
- optional: true
-
'@angular-devkit/core@21.2.3':
resolution: {integrity: sha512-i++JVHOijyFckjdYqKbSXUpKnvmO2a0Utt/wQVwiLAT0O9H1hR/2NGPzubB4hnLMNSyVWY8diminaF23mZ0xjA==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
@@ -1236,20 +999,10 @@ packages:
chokidar:
optional: true
- '@angular-devkit/schematics@13.3.11':
- resolution: {integrity: sha512-ben+EGXpCrClnIVAAnEQmhQdKmnnqFhMp5BqMxgOslSYBAmCutLA6rBu5vsc8kZcGian1wt+lueF7G1Uk5cGBg==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
-
'@angular-devkit/schematics@21.2.3':
resolution: {integrity: sha512-tc/bBloRTVIBWGRiMPln1QbW+2QPj+YnWL/nG79abLKWkdrL9dJLcCRXY7dsPNrxOc/QF+8tVpnr8JofhWL9cQ==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@angular-eslint/builder@13.0.1':
- resolution: {integrity: sha512-z43jUpA4xm767ze/yWwvoy5PdvSe57DAvXHlHywv0iYxXl1OhytPIA0CdOA3ZWkbSWWVmWmFzELeYfGnE3+igg==}
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- typescript: '*'
-
'@angular-eslint/builder@21.1.0':
resolution: {integrity: sha512-pcUlDkGqeZ+oQC0oEjnkDDlB96gbgHQhnBUKdhYAiAOSuiBod4+npP0xQOq5chYtRNPBprhDqgrJrp5DBeDMOA==}
peerDependencies:
@@ -1257,18 +1010,9 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/bundled-angular-compiler@13.0.1':
- resolution: {integrity: sha512-Eih9Kh0hxHO4+3in9mgjksQecym0p+3p+287y3LLihIc7gCkAO4xZeHGVGiC8qUX72PNUXkDlyskI9oHjK9Axw==}
-
'@angular-eslint/bundled-angular-compiler@21.1.0':
resolution: {integrity: sha512-t52J6FszgEHaJ+IjuzU9qaWfVxsjlVNkAP+B5z2t4NDgbbDDsmI+QJh0OtP1qdlqzjh2pbocEml30KhYmNZm/Q==}
- '@angular-eslint/eslint-plugin-template@13.0.1':
- resolution: {integrity: sha512-8FclNMjEzb87CtE3TdsXXWk1SRCp/tSSHI0cYVv6YpU7f/9Mnej+ZY3MdvqI/amD8zJueTMdnjNRP/jiwX2XhQ==}
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- typescript: '*'
-
'@angular-eslint/eslint-plugin-template@21.1.0':
resolution: {integrity: sha512-FlbRfOCn8IUHvP1ebcCSQFVNh+4X/HqZqL7SW5oj9WIYPiOX9ijS03ndNbfX/pBPSIi8GHLKMjLt8zIy1l5Lww==}
peerDependencies:
@@ -1278,12 +1022,6 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/eslint-plugin@13.0.1':
- resolution: {integrity: sha512-WxqgMLTfE45dqjzg/Nq0dOEDwzpdB+zYOWrA41MT3jt0UbukFEx8+FMrAgBLIeDaHzwWomiAEV5Tm5mQAKA4VA==}
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- typescript: '*'
-
'@angular-eslint/eslint-plugin@21.1.0':
resolution: {integrity: sha512-oNp+4UzN2M3KwGwEw03NUdXz93vqJd9sMzTbGXWF9+KVfA2LjckGDTrI6g6asGcJMdyTo07rDcnw0m0MkLB5VA==}
peerDependencies:
@@ -1291,34 +1029,17 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/schematics@13.0.1':
- resolution: {integrity: sha512-LiPUVff6fexQNa6Ttgb+yhIoQc9oXc1qb34kmntvQDw59xBeEyrUojG2P2I5VS+1ZoVUWNY86cqEaxkFJVkY7w==}
- peerDependencies:
- '@angular/cli': '>= 13.0.0 < 14.0.0'
-
'@angular-eslint/schematics@21.1.0':
resolution: {integrity: sha512-Hal1mYwx4MTjCcNHqfIlua31xrk2tZJoyTiXiGQ21cAeK4sFuY+9V7/8cxbwJMGftX0G4J7uhx8woOdIFuqiZw==}
peerDependencies:
'@angular/cli': '>= 21.0.0 < 22.0.0'
- '@angular-eslint/template-parser@13.0.1':
- resolution: {integrity: sha512-GEJzVLS4Sb4UdurqaPD1/ucGhagGAQCp17CIgjpcXRwzxBZ9OLqbO/rx8diRbADp+1rceVq4BhADsg3VdsOsuw==}
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- typescript: '*'
-
'@angular-eslint/template-parser@21.1.0':
resolution: {integrity: sha512-PYVgNbjNtuD5/QOuS6cHR8A7bRqsVqxtUUXGqdv76FYMAajQcAvyfR0QxOkqf3NmYxgNgO3hlUHWq0ILjVbcow==}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/utils@13.0.1':
- resolution: {integrity: sha512-makSpu8kr5yHIz0c6WaWwix+tk5DN5Uix9vQulVisZWchTmSqEovJih/UC+4XspM9kQbjcbWHohYKiBbBEQpbA==}
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- typescript: '*'
-
'@angular-eslint/utils@21.1.0':
resolution: {integrity: sha512-rWINgxGREu+NFUPCpAVsBGG8B4hfXxyswM0N5GbjykvsfB5W6PUix2Gsoh++iEsZPT+c9lvgXL5GbpwfanjOow==}
peerDependencies:
@@ -1372,23 +1093,11 @@ packages:
vitest:
optional: true
- '@angular/cli@13.3.11':
- resolution: {integrity: sha512-LTuQ1wC/VJiHqHx8nYJCx0EJv1Ek7R6VvP/5vmr/+M8oVvJ2zSh/aIbcPg6BTL0YEfMI6nX41mUjPBUfF0q2OA==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- hasBin: true
-
'@angular/cli@21.2.3':
resolution: {integrity: sha512-QzDxnSy8AUOz6ca92xfbNuEmRdWRDi1dfFkxDVr+4l6XUnA9X6VmOi7ioCO1I9oDR73LXHybOqkqHBYDlqt/Ag==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
hasBin: true
- '@angular/common@13.3.12':
- resolution: {integrity: sha512-Nk4zNKfda92aFe+cucHRv2keyryR7C1ZnsurwZW9WZSobpY3z2tTT81F+yy35lGoMt5BDBAIpfh1b4j9Ue/vMg==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0}
- peerDependencies:
- '@angular/core': 13.3.12
- rxjs: ^6.5.3 || ^7.4.0
-
'@angular/common@21.2.5':
resolution: {integrity: sha512-MTjCbsHBkF9W12CW9yYiTJdVfZv/qCqBCZ2iqhMpDA5G+ZJiTKP0IDTJVrx2N5iHfiJ1lnK719t/9GXROtEAvg==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
@@ -1396,14 +1105,6 @@ packages:
'@angular/core': 21.2.5
rxjs: ^6.5.3 || ^7.4.0
- '@angular/compiler-cli@13.3.12':
- resolution: {integrity: sha512-6jrdVwexPihWlyitopc3rn2ReEkhAaMI8UWR0SOTnt3NaqNYWeio4bpeWlumgNPElDyY5rmyrmJgeaY8ICa8qA==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0}
- hasBin: true
- peerDependencies:
- '@angular/compiler': 13.3.12
- typescript: '>=4.4.2 <4.7'
-
'@angular/compiler-cli@21.2.5':
resolution: {integrity: sha512-Ox3vz6KAM7i47ujR/3M3NCOeCRn6vrC9yV1SHZRhSrYg6CWWcOMveavEEwtNjYtn3hOzrktO4CnuVwtDbU8pLg==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
@@ -1415,21 +1116,10 @@ packages:
typescript:
optional: true
- '@angular/compiler@13.3.12':
- resolution: {integrity: sha512-F5vJYrjbNvEWoVz9J/CqiT3Iod6g9bV0dGI5EeURcW4yHXHZ12ioQpfU3+bE7qXcTlnofbdDhK8cGxGx01SzBA==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0}
-
'@angular/compiler@21.2.5':
resolution: {integrity: sha512-QloEsknGqLvmr+ED7QShDt7SoMY9mipV+gVnwn4hBI5sbl+TOBfYWXIaJMnxseFwSqjXTSCVGckfylIlynNcFg==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
- '@angular/core@13.3.12':
- resolution: {integrity: sha512-jx0YC+NbPMbxGr5bXECkCEQv2RdVxR8AJNnabkPk8ZjwCpDzROrbELwwS1kunrZUhffcD15IhWGBvf1EGHAYDw==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0}
- peerDependencies:
- rxjs: ^6.5.3 || ^7.4.0
- zone.js: ~0.11.4
-
'@angular/core@21.2.5':
resolution: {integrity: sha512-JgHU134Adb1wrpyGC9ozcv3hiRAgaFTvJFn1u9OU/AVXyxu4meMmVh2hp5QhAvPnv8XQdKWWIkAY+dbpPE6zKA==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
@@ -1452,26 +1142,6 @@ packages:
'@angular/platform-browser': 21.2.5
rxjs: ^6.5.3 || ^7.4.0
- '@angular/platform-browser-dynamic@13.3.12':
- resolution: {integrity: sha512-/hBggov0PxK/KNJqIu3MVc5k8f0iDbygDP8Z1k/J0FcllOSRdO4LsQd1fsCfGfwIUf0YWGyD7KraSGpBBiWlFg==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0}
- peerDependencies:
- '@angular/common': 13.3.12
- '@angular/compiler': 13.3.12
- '@angular/core': 13.3.12
- '@angular/platform-browser': 13.3.12
-
- '@angular/platform-browser@13.3.12':
- resolution: {integrity: sha512-sfhQqU4xjTJCjkH62TQeH5/gkay/KzvNDF95J6NHi/Q6p2dbtzZdXuLJKR/sHxtF2kc505z5v9RNm6XMSXM1KA==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0}
- peerDependencies:
- '@angular/animations': 13.3.12
- '@angular/common': 13.3.12
- '@angular/core': 13.3.12
- peerDependenciesMeta:
- '@angular/animations':
- optional: true
-
'@angular/platform-browser@21.2.5':
resolution: {integrity: sha512-VuuYguxjgyI4XWuoXrKynmuA3FB991pXbkNhxHeCW0yX+7DGOnGLPF1oierd4/X+IvskmN8foBZLfjyg9u4Ffg==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
@@ -1545,10 +1215,6 @@ packages:
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.8':
- resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/compat-data@7.27.2':
resolution: {integrity: sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ==}
engines: {node: '>=6.9.0'}
@@ -1561,14 +1227,6 @@ packages:
resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.16.12':
- resolution: {integrity: sha512-dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.25.2':
- resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
- engines: {node: '>=6.9.0'}
-
'@babel/core@7.28.0':
resolution: {integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==}
engines: {node: '>=6.9.0'}
@@ -1581,10 +1239,6 @@ packages:
resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.16.8':
- resolution: {integrity: sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==}
- engines: {node: '>=6.9.0'}
-
'@babel/generator@7.27.1':
resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==}
engines: {node: '>=6.9.0'}
@@ -1597,30 +1251,14 @@ packages:
resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.28.6':
- resolution: {integrity: sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==}
- engines: {node: '>=6.9.0'}
-
'@babel/generator@7.29.1':
resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.16.7':
- resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-annotate-as-pure@7.27.3':
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
- resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-compilation-targets@7.26.5':
- resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-compilation-targets@7.27.2':
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
@@ -1659,23 +1297,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.25.2':
- resolution: {integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-create-regexp-features-plugin@7.27.1':
resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.3.3':
- resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
-
'@babel/helper-define-polyfill-provider@0.6.5':
resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==}
peerDependencies:
@@ -1705,10 +1332,6 @@ packages:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.25.9':
- resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-module-imports@7.27.1':
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
@@ -1717,12 +1340,6 @@ packages:
resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.26.0':
- resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-module-transforms@7.27.3':
resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
engines: {node: '>=6.9.0'}
@@ -1757,34 +1374,18 @@ packages:
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.25.0':
- resolution: {integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-remap-async-to-generator@7.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.25.0':
- resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-replace-supers@7.27.1':
resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.24.7':
- resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
engines: {node: '>=6.9.0'}
@@ -1809,26 +1410,14 @@ packages:
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.9':
- resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.25.0':
- resolution: {integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-wrap-function@7.27.1':
resolution: {integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.26.9':
- resolution: {integrity: sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helpers@7.28.2':
resolution: {integrity: sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==}
engines: {node: '>=6.9.0'}
@@ -1864,24 +1453,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0':
- resolution: {integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.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.24.7':
- resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
-
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1':
resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==}
engines: {node: '>=6.9.0'}
@@ -1894,13 +1471,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-proposal-async-generator-functions@7.16.8':
- resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-proposal-class-properties@7.18.6':
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
@@ -1908,47 +1478,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-class-static-block@7.21.0':
- resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.
- peerDependencies:
- '@babel/core': ^7.12.0
-
- '@babel/plugin-proposal-dynamic-import@7.18.6':
- resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-proposal-export-default-from@7.27.1':
resolution: {integrity: sha512-hjlsMBl1aJc5lp8MoCDEZCiYzlgdRAShOjAfRw6X+GlpLpUPU7c3XNLsKFZbQk/1cRzBlJ7CXg3xJAJMrFa1Uw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-export-namespace-from@7.18.9':
- resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-json-strings@7.18.6':
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-logical-assignment-operators@7.20.7':
- resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6':
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
@@ -1956,27 +1491,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-numeric-separator@7.18.6':
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-object-rest-spread@7.20.7':
- resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-optional-catch-binding@7.18.6':
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-proposal-optional-chaining@7.21.0':
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
@@ -1984,33 +1498,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-private-methods@7.18.6':
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-private-property-in-object@7.21.11':
- resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-unicode-property-regex@7.18.6':
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-async-generators@7.8.4':
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
@@ -2043,11 +1536,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-export-namespace-from@7.8.3':
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-flow@7.27.1':
resolution: {integrity: sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==}
engines: {node: '>=6.9.0'}
@@ -2136,12 +1624,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.24.7':
- resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-arrow-functions@7.27.1':
resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==}
engines: {node: '>=6.9.0'}
@@ -2154,36 +1636,18 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.16.8':
- resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-async-to-generator@7.27.1':
resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.24.7':
- resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-block-scoped-functions@7.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.25.0':
- resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-block-scoping@7.28.5':
resolution: {integrity: sha512-45DmULpySVvmq9Pj3X9B+62Xe+DJGov27QravQJU1LLcapR6/10i+gYVAucGGJpHBp5mYxIMK4nDAT/QDLr47g==}
engines: {node: '>=6.9.0'}
@@ -2202,60 +1666,30 @@ packages:
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.25.4':
- resolution: {integrity: sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-classes@7.28.4':
resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.24.7':
- resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-computed-properties@7.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.24.8':
- resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-destructuring@7.28.5':
resolution: {integrity: sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.24.7':
- resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-dotall-regex@7.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.24.7':
- resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-duplicate-keys@7.27.1':
resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==}
engines: {node: '>=6.9.0'}
@@ -2280,12 +1714,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.24.7':
- resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-exponentiation-operator@7.28.5':
resolution: {integrity: sha512-D4WIMaFtwa2NizOp+dnoFjRez/ClKiC2BqqImwKd1X28nqBtZEyCYJ2ozQrrzlxAFrcrjxo39S6khe9RNDlGzw==}
engines: {node: '>=6.9.0'}
@@ -2304,24 +1732,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.24.7':
- resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-for-of@7.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.1':
- resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-function-name@7.27.1':
resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==}
engines: {node: '>=6.9.0'}
@@ -2334,12 +1750,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.25.2':
- resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-literals@7.27.1':
resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==}
engines: {node: '>=6.9.0'}
@@ -2352,84 +1762,42 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.24.7':
- resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-member-expression-literals@7.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.24.7':
- resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-modules-amd@7.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.24.8':
- resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.0':
- resolution: {integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-modules-systemjs@7.28.5':
resolution: {integrity: sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.24.7':
- resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-modules-umd@7.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.24.7':
- resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/plugin-transform-named-capturing-groups-regex@7.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.24.7':
- resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-new-target@7.27.1':
resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==}
engines: {node: '>=6.9.0'}
@@ -2454,12 +1822,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.24.7':
- resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-object-super@7.27.1':
resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==}
engines: {node: '>=6.9.0'}
@@ -2478,12 +1840,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.24.7':
- resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-parameters@7.27.7':
resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==}
engines: {node: '>=6.9.0'}
@@ -2502,12 +1858,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.24.7':
- resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-property-literals@7.27.1':
resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==}
engines: {node: '>=6.9.0'}
@@ -2544,12 +1894,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.24.7':
- resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-regenerator@7.28.4':
resolution: {integrity: sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==}
engines: {node: '>=6.9.0'}
@@ -2562,84 +1906,42 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-reserved-words@7.24.7':
- resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-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.16.10':
- resolution: {integrity: sha512-9nwTiqETv2G7xI4RvXHNfpGdr8pAA+Q/YtN3yLK7OoK7n9OibVm/xymJ838a9A6E/IciOLPj82lZk0fW6O4O7w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-runtime@7.27.1':
resolution: {integrity: sha512-TqGF3desVsTcp3WrJGj4HfKokfCXCLcHpt4PJF0D8/iT6LPd9RS82Upw3KPeyr6B22Lfd3DO8MVrmp0oRkUDdw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.24.7':
- resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-shorthand-properties@7.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.24.7':
- resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-template-literals@7.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.24.8':
- resolution: {integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-typeof-symbol@7.27.1':
resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==}
engines: {node: '>=6.9.0'}
@@ -2652,12 +1954,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.24.7':
- resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-unicode-escapes@7.27.1':
resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==}
engines: {node: '>=6.9.0'}
@@ -2670,12 +1966,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.24.7':
- resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-unicode-regex@7.27.1':
resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==}
engines: {node: '>=6.9.0'}
@@ -2688,12 +1978,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.16.11':
- resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/preset-env@7.28.5':
resolution: {integrity: sha512-S36mOoi1Sb6Fz98fBfE+UZSpYw5mJm0NUHtIKrOuNcqeFauy1J6dIvXm2KRVKobOSaGq4t/hBXdN4HGU3wL9Wg==}
engines: {node: '>=6.9.0'}
@@ -2706,11 +1990,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-modules@0.1.6':
- resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
-
'@babel/preset-modules@0.1.6-no-external-plugins':
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
@@ -2731,14 +2010,6 @@ packages:
'@babel/regjsgen@0.8.0':
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- '@babel/runtime-corejs3@7.25.0':
- resolution: {integrity: sha512-BOehWE7MgQ8W8Qn0CQnMtg2tHPHPulcS/5AVpFvs2KCK1ET+0WqZqPvnpRpFN81gYoFopdIEJX9Sgjw3ZBccPg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/runtime@7.16.7':
- resolution: {integrity: sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/runtime@7.22.15':
resolution: {integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==}
engines: {node: '>=6.9.0'}
@@ -2751,14 +2022,6 @@ packages:
resolution: {integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.16.7':
- resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.27.1':
- resolution: {integrity: sha512-Fyo3ghWMqkHHpHQCoBs2VnYjR4iWFFjguTDEqA5WgZDOrFesVjMhMM2FSqTKSoUSDO1VQtavj8NFpdRBEvJTtg==}
- engines: {node: '>=6.9.0'}
-
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
@@ -2899,100 +2162,6 @@ packages:
resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==}
engines: {node: '>=20.19.0'}
- '@csstools/postcss-cascade-layers@1.1.1':
- resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-color-function@1.1.1':
- resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-font-format-keywords@1.0.1':
- resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-hwb-function@1.0.2':
- resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-ic-unit@1.0.1':
- resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-is-pseudo-class@2.0.7':
- resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-nested-calc@1.0.0':
- resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-normalize-display-values@1.0.1':
- resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-oklab-function@1.1.1':
- resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-progressive-custom-properties@1.3.0':
- resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.3
-
- '@csstools/postcss-stepped-value-functions@1.0.1':
- resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-text-decoration-shorthand@1.0.0':
- resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-trigonometric-functions@1.0.2':
- resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==}
- engines: {node: ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/postcss-unset-value@1.0.2':
- resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- '@csstools/selector-specificity@2.2.0':
- resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==}
- engines: {node: ^14 || ^16 || >=18}
- peerDependencies:
- postcss-selector-parser: ^6.0.10
-
- '@discoveryjs/json-ext@0.5.6':
- resolution: {integrity: sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==}
- engines: {node: '>=10.0.0'}
-
'@docsearch/css@3.8.2':
resolution: {integrity: sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==}
@@ -3016,18 +2185,12 @@ packages:
search-insights:
optional: true
- '@emnapi/core@1.10.0':
- resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
-
'@emnapi/core@1.4.3':
resolution: {integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==}
'@emnapi/core@1.8.1':
resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==}
- '@emnapi/runtime@1.10.0':
- resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
-
'@emnapi/runtime@1.8.1':
resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
@@ -3037,9 +2200,6 @@ packages:
'@emnapi/wasi-threads@1.1.0':
resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
- '@emnapi/wasi-threads@1.2.1':
- resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
-
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
@@ -3436,12 +2596,6 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.14.54':
- resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
-
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
@@ -4039,9 +3193,6 @@ packages:
resolution: {integrity: sha512-GmzA9ckNokPypTg10pgpeHNQe7ph+iIKKmhKu3Ob9ANkswreCx7R3cKmY781K8QK3AqVL3xVh9A42JvIAbkkSA==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@gar/promisify@1.1.3':
- resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
-
'@harperfast/extended-iterable@1.0.3':
resolution: {integrity: sha512-sSAYhQca3rDWtQUHSAPeO7axFIUJOI6hn1gjRC5APVE1a90tuyT8f5WIgRsFhhWA7htNkju2veB9eWL6YHi/Lw==}
@@ -4576,10 +3727,6 @@ packages:
'@jimp/utils@0.22.12':
resolution: {integrity: sha512-yJ5cWUknGnilBq97ZXOyOS0HhsHOyAyjHwYfHxGbSyMTohgQI6sVyE8KPgDwH8HHW/nMKXk8TrSwAE71zt716Q==}
- '@jridgewell/gen-mapping@0.1.1':
- resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
- engines: {node: '>=6.0.0'}
-
'@jridgewell/gen-mapping@0.3.13':
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
@@ -4590,10 +3737,6 @@ packages:
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- '@jridgewell/set-array@1.2.1':
- resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
- engines: {node: '>=6.0.0'}
-
'@jridgewell/source-map@0.3.11':
resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
@@ -4603,9 +3746,6 @@ packages:
'@jridgewell/sourcemap-codec@1.5.5':
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
- '@jridgewell/trace-mapping@0.3.25':
- resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
-
'@jridgewell/trace-mapping@0.3.31':
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
@@ -4835,23 +3975,12 @@ packages:
resolution: {integrity: sha512-xJIPs+bYuc9ASBl+cvGsKbGrJmS6fAKaSZCnT0lhahT5rhA2VVy9/EcIgd2JhtEuFOJNx7UHNn/qiTPTY4nrQw==}
engines: {node: '>= 10'}
- '@napi-rs/wasm-runtime@0.2.12':
- resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
-
'@napi-rs/wasm-runtime@0.2.9':
resolution: {integrity: sha512-OKRBiajrrxB9ATokgEQoG87Z25c67pCpYcCwmXYX8PBftC9pBfN18gnm/fh1wurSLEKIAt+QRFLFCQISrb66Jg==}
'@napi-rs/wasm-runtime@1.1.1':
resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==}
- '@ngtools/webpack@13.3.11':
- resolution: {integrity: sha512-gB33hTbc/RJmHyIgSUYj8ErPazhYYm7yfapOnvwHdYhCjrj1TKkR1ierOlhJtpfBYUQg6FChdl2YpyIQNPjWMA==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- peerDependencies:
- '@angular/compiler-cli': ^13.0.0
- typescript: '>=4.4.3 <4.7'
- webpack: ^5.30.0
-
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -4876,13 +4005,6 @@ packages:
resolution: {integrity: sha512-kAQTcEN9E8ERLVg5AsGwLNoFb+oEG6engbqAU2P43gD4JEIkNGMHdVQ096FsOAAYpZPB0RSt0zgInKIAS1l5QA==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/fs@1.1.1':
- resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==}
-
- '@npmcli/fs@2.1.2':
- resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
'@npmcli/fs@3.1.0':
resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -4891,36 +4013,15 @@ packages:
resolution: {integrity: sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/git@2.1.0':
- resolution: {integrity: sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==}
-
'@npmcli/git@7.0.2':
resolution: {integrity: sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/installed-package-contents@1.0.7':
- resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==}
- engines: {node: '>= 10'}
- hasBin: true
-
'@npmcli/installed-package-contents@4.0.0':
resolution: {integrity: sha512-yNyAdkBxB72gtZ4GrwXCM0ZUedo9nIbOMKfGjt6Cu6DXf0p8y1PViZAKDC8q8kv/fufx0WTjRBdSlyrvnP7hmA==}
engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
- '@npmcli/move-file@1.1.2':
- resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==}
- engines: {node: '>=10'}
- deprecated: This functionality has been moved to @npmcli/fs
-
- '@npmcli/move-file@2.0.1':
- resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This functionality has been moved to @npmcli/fs
-
- '@npmcli/node-gyp@1.0.3':
- resolution: {integrity: sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==}
-
'@npmcli/node-gyp@5.0.0':
resolution: {integrity: sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ==}
engines: {node: ^20.17.0 || >=22.9.0}
@@ -4929,9 +4030,6 @@ packages:
resolution: {integrity: sha512-iVuTlG3ORq2iaVa1IWUxAO/jIp77tUKBhoMjuzYW2kL4MLN1bi/ofqkZ7D7OOwh8coAx1/S2ge0rMdGv8sLSOQ==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/promise-spawn@1.3.2':
- resolution: {integrity: sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==}
-
'@npmcli/promise-spawn@9.0.1':
resolution: {integrity: sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q==}
engines: {node: ^20.17.0 || >=22.9.0}
@@ -4944,77 +4042,6 @@ packages:
resolution: {integrity: sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/run-script@2.0.0':
- resolution: {integrity: sha512-fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig==}
-
- '@nrwl/cli@15.9.3':
- resolution: {integrity: sha512-qiAKHkov3iBx6hroPTitUrkRSUZFQqVgNJiF9gXRFC6pNJe9RS4rlmcIaoUFOboi9CnH5jwblNJVcz8YSVYOvA==}
-
- '@nrwl/devkit@13.1.3':
- resolution: {integrity: sha512-TAAsZJvVc/obeH0rZKY6miVhyM2GHGb8qIWp9MAIdLlXf4VDcNC7rxwb5OrGVSwuTTjqGYBGPUx0yEogOOJthA==}
-
- '@nrwl/nx-darwin-arm64@15.9.3':
- resolution: {integrity: sha512-2htJzVa+S/uLg5tj4nbO/tRz2SRMQIpT6EeWMgDGuEKQdpuRLVj2ez9hMpkRn9tl1tBUwR05hbV28DnOLRESVA==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [darwin]
-
- '@nrwl/nx-darwin-x64@15.9.3':
- resolution: {integrity: sha512-p+8UkfC6KTLOX4XRt7NSP8DoTzEgs73+SN0csoXT9VsNO35+F0Z5zMZxpEc7RVo5Wen/4PGh2OWA+8gtgntsJQ==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [darwin]
-
- '@nrwl/nx-linux-arm-gnueabihf@15.9.3':
- resolution: {integrity: sha512-xwW7bZtggrxhFbYvvWWArtcSWwoxWzi/4wNgP3wPbcZFNZiraahVQSpIyJXrS9aajGbdvuDBM8cbDsMj9v7mwg==}
- engines: {node: '>= 10'}
- cpu: [arm]
- os: [linux]
-
- '@nrwl/nx-linux-arm64-gnu@15.9.3':
- resolution: {integrity: sha512-KNxDL2OAHxhFqztEjv2mNwXD6xrzoUury7NsYZYqlxJUNc3YYBfRSLEatnw491crvMBndbxfGVTWEO9S4YmRuw==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
-
- '@nrwl/nx-linux-arm64-musl@15.9.3':
- resolution: {integrity: sha512-AxoZzfsXH7ZqDE+WrQtRumufIcSIBw4U/LikiDLaWWoGtNpAfKLkD/PHirZiNxHIeGy1Toi4ccMUolXbafLVFw==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
-
- '@nrwl/nx-linux-x64-gnu@15.9.3':
- resolution: {integrity: sha512-P8AOPRufvV4a5cSczNsw84zFAI7NgAiEBTybYcyymdNJmo0iArJXEmvj/G4mB20O8VCsCkwqMYAu6nQEnES1Kw==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
-
- '@nrwl/nx-linux-x64-musl@15.9.3':
- resolution: {integrity: sha512-4ZYDp7T319+xbw7Z7KVtRefzaXJipZfgrM49r+Y1FAfYDc8y18zvKz3slK26wfWz+EUZwKsa/DfA2KmyRG3DvQ==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
-
- '@nrwl/nx-win32-arm64-msvc@15.9.3':
- resolution: {integrity: sha512-UhgxIPgTZBKN1oxlLPSklkSzVL3hA4lAiVc9A0Utumpbp0ob/Xx+2vHzg3cnmNH3jWkZ+9OsC2dKyeMB6gAbSw==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [win32]
-
- '@nrwl/nx-win32-x64-msvc@15.9.3':
- resolution: {integrity: sha512-gdnvqURKnu0EQGOFJ6NUKq6wSB+viNb7Z8qtKhzSmFwVjT8akOnLWn7ZhL9v28TAjLM7/s1Mwvmz/IMj1PGlcQ==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [win32]
-
- '@nrwl/tao@13.1.3':
- resolution: {integrity: sha512-/IwJgSgCBD1SaF+n8RuXX2OxDAh8ut/+P8pMswjm8063ac30UlAHjQ4XTYyskLH8uoUmNi2hNaGgHUrkwt7tQA==}
- hasBin: true
-
- '@nrwl/tao@15.9.3':
- resolution: {integrity: sha512-NcjFCbuMa53C3fBrK7qLUImUBySyr9EVwmiZuAv9sZZtm4eILK8w3qihjrB4FFUuLjPU/SViriYXi+hF2tbP4w==}
- hasBin: true
-
'@octokit/auth-token@3.0.4':
resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==}
engines: {node: '>= 14'}
@@ -5132,61 +4159,6 @@ packages:
'@oxc-project/types@0.113.0':
resolution: {integrity: sha512-Tp3XmgxwNQ9pEN9vxgJBAqdRamHibi76iowQ38O2I4PMpcvNRQNVsU2n1x1nv9yh0XoTrGFzf7cZSGxmixxrhA==}
- '@oxc-resolver/binding-darwin-arm64@1.12.0':
- resolution: {integrity: sha512-wYe+dlF8npM7cwopOOxbdNjtmJp17e/xF5c0K2WooQXy5VOh74icydM33+Uh/SZDgwyum09/U1FVCX5GdeQk+A==}
- cpu: [arm64]
- os: [darwin]
-
- '@oxc-resolver/binding-darwin-x64@1.12.0':
- resolution: {integrity: sha512-FZxxp99om+SlvBr1cjzF8A3TjYcS0BInCqjUlM+2f9m9bPTR2Bng9Zq5Q09ZQyrKJjfGKqlOEHs3akuVOnrx3Q==}
- cpu: [x64]
- os: [darwin]
-
- '@oxc-resolver/binding-freebsd-x64@1.12.0':
- resolution: {integrity: sha512-BZi0iU6IEOnXGSkqt1OjTTkN9wfyaK6kTpQwL/axl8eCcNDc7wbv1vloHgILf7ozAY1TP75nsLYlASYI4B5kGA==}
- cpu: [x64]
- os: [freebsd]
-
- '@oxc-resolver/binding-linux-arm-gnueabihf@1.12.0':
- resolution: {integrity: sha512-L2qnMEnZAqxbG9b1J3di/w/THIm+1fMVfbbTMWIQNMMXdMeqqDN6ojnOLDtuP564rAh4TBFPdLyEfGhMz6ipNA==}
- cpu: [arm]
- os: [linux]
-
- '@oxc-resolver/binding-linux-arm64-gnu@1.12.0':
- resolution: {integrity: sha512-otVbS4zeo3n71zgGLBYRTriDzc0zpruC0WI3ICwjpIk454cLwGV0yzh4jlGYWQJYJk0BRAmXFd3ooKIF+bKBHw==}
- cpu: [arm64]
- os: [linux]
-
- '@oxc-resolver/binding-linux-arm64-musl@1.12.0':
- resolution: {integrity: sha512-IStQDjIT7Lzmqg1i9wXvPL/NsYsxF24WqaQFS8b8rxra+z0VG7saBOsEnOaa4jcEY8MVpLYabFhTV+fSsA2vnA==}
- cpu: [arm64]
- os: [linux]
-
- '@oxc-resolver/binding-linux-x64-gnu@1.12.0':
- resolution: {integrity: sha512-SipT7EVORz8pOQSFwemOm91TpSiBAGmOjG830/o+aLEsvQ4pEy223+SAnCfITh7+AahldYsJnVoIs519jmIlKQ==}
- cpu: [x64]
- os: [linux]
-
- '@oxc-resolver/binding-linux-x64-musl@1.12.0':
- resolution: {integrity: sha512-mGh0XfUzKdn+WFaqPacziNraCWL5znkHRfQVxG9avGS9zb2KC/N1EBbPzFqutDwixGDP54r2gx4q54YCJEZ4iQ==}
- cpu: [x64]
- os: [linux]
-
- '@oxc-resolver/binding-wasm32-wasi@1.12.0':
- resolution: {integrity: sha512-SZN6v7apKmQf/Vwiqb6e/s3Y2Oacw8uW8V2i1AlxtyaEFvnFE0UBn89zq6swEwE3OCajNWs0yPvgAXUMddYc7Q==}
- engines: {node: '>=14.0.0'}
- cpu: [wasm32]
-
- '@oxc-resolver/binding-win32-arm64-msvc@1.12.0':
- resolution: {integrity: sha512-GRe4bqCfFsyghruEn5bv47s9w3EWBdO2q72xCz5kpQ0LWbw+enPHtTjw3qX5PUcFYpKykM55FaO0hFDs1yzatw==}
- cpu: [arm64]
- os: [win32]
-
- '@oxc-resolver/binding-win32-x64-msvc@1.12.0':
- resolution: {integrity: sha512-Z3llHH0jfJP4mlWq3DT7bK6qV+/vYe0+xzCgfc67+Tc/U3eYndujl880bexeGdGNPh87JeYznpZAOJ44N7QVVQ==}
- cpu: [x64]
- os: [win32]
-
'@parcel/watcher-android-arm64@2.5.1':
resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
engines: {node: '>= 10.0.0'}
@@ -5349,10 +4321,6 @@ packages:
cpu: [x64]
os: [win32]
- '@parcel/watcher@2.0.4':
- resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==}
- engines: {node: '>= 10.0.0'}
-
'@parcel/watcher@2.5.1':
resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
engines: {node: '>= 10.0.0'}
@@ -5621,9 +4589,6 @@ packages:
'@rolldown/pluginutils@1.0.0-beta.27':
resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
- '@rolldown/pluginutils@1.0.0-beta.50':
- resolution: {integrity: sha512-5e76wQiQVeL1ICOZVUg4LSOVYg9jyhGCin+icYozhsUzM+fHE7kddi1bdiE0jwVqTfkjba3jUFbEkoC9WkdvyA==}
-
'@rolldown/pluginutils@1.0.0-rc.4':
resolution: {integrity: sha512-1BrrmTu0TWfOP1riA8uakjFc9bpIUGzVKETsOtzY39pPga8zELGDl8eu1Dx7/gjM5CAz14UknsUMpBO8L+YntQ==}
@@ -5667,11 +4632,6 @@ packages:
rollup:
optional: true
- '@rollup/plugin-json@4.1.0':
- resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==}
- peerDependencies:
- rollup: ^1.20.0 || ^2.0.0
-
'@rollup/plugin-json@6.1.0':
resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==}
engines: {node: '>=14.0.0'}
@@ -5681,12 +4641,6 @@ packages:
rollup:
optional: true
- '@rollup/plugin-node-resolve@13.3.0':
- resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==}
- engines: {node: '>= 10.0.0'}
- peerDependencies:
- rollup: ^2.42.0
-
'@rollup/plugin-node-resolve@16.0.3':
resolution: {integrity: sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==}
engines: {node: '>=14.0.0'}
@@ -5714,12 +4668,6 @@ packages:
rollup:
optional: true
- '@rollup/pluginutils@3.1.0':
- resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
- engines: {node: '>= 8.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0
-
'@rollup/pluginutils@4.2.1':
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
@@ -6134,10 +5082,6 @@ packages:
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
- '@schematics/angular@13.3.11':
- resolution: {integrity: sha512-imKBnKYEse0SBVELZO/753nkpt3eEgpjrYkB+AFWF9YfO/4RGnYXDHoH8CFkzxPH9QQCgNrmsVFNiYGS+P/S1A==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
-
'@schematics/angular@21.2.3':
resolution: {integrity: sha512-rCEprgpNbJLl9Rm/t92eRYc1eIqD4BAJqB1OO8fzQolyDajCcOBpohjXkuLYSwK9RMyS6f+szNnYGOQawlrPYw==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
@@ -6259,9 +5203,6 @@ packages:
'@sinonjs/fake-timers@10.3.0':
resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
- '@socket.io/component-emitter@3.1.2':
- resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
-
'@solidjs/router@0.11.5':
resolution: {integrity: sha512-nclebUUufZT37rB5l0LbJn92vZwJOhYVltfjfLFI3yAcMlwiil5JOy6X2FEgekWsoX29No/GCBTkYfrSZCRfaw==}
peerDependencies:
@@ -6301,14 +5242,6 @@ packages:
peerDependencies:
svelte: ^3.44.0 || ^4.0.0 || ^5.0.0-next.1
- '@sveltejs/vite-plugin-svelte-inspector@1.0.4':
- resolution: {integrity: sha512-zjiuZ3yydBtwpF3bj0kQNV0YXe+iKE545QGZVTaylW3eAzFr+pJ/cwK8lZEaRp4JtaJXhD5DyWAV4AxLh6DgaQ==}
- engines: {node: ^14.18.0 || >= 16}
- peerDependencies:
- '@sveltejs/vite-plugin-svelte': ^2.2.0
- svelte: ^3.54.0 || ^4.0.0
- vite: ^4.0.0
-
'@sveltejs/vite-plugin-svelte-inspector@5.0.2':
resolution: {integrity: sha512-TZzRTcEtZffICSAoZGkPSl6Etsj2torOVrx6Uw0KpXxrec9Gg6jFWQ60Q3+LmNGfZSxHRCZL7vXVZIWmuV50Ig==}
engines: {node: ^20.19 || ^22.12 || >=24}
@@ -6317,13 +5250,6 @@ packages:
svelte: ^5.0.0
vite: ^6.3.0 || ^7.0.0
- '@sveltejs/vite-plugin-svelte@2.5.3':
- resolution: {integrity: sha512-erhNtXxE5/6xGZz/M9eXsmI7Pxa6MS7jyTy06zN3Ck++ldrppOnOlJwHHTsMC7DHDQdgUp4NAc4cDNQ9eGdB/w==}
- engines: {node: ^14.18.0 || >= 16}
- peerDependencies:
- svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0
- vite: ^4.0.0
-
'@sveltejs/vite-plugin-svelte@6.2.4':
resolution: {integrity: sha512-ou/d51QSdTyN26D7h6dSpusAKaZkAiGM55/AKYi+9AGZw7q85hElbjK3kEyzXHhLSnRISHOYzVge6x0jRZ7DXA==}
engines: {node: ^20.19 || ^22.12 || >=24}
@@ -6331,22 +5257,6 @@ packages:
svelte: ^5.0.0
vite: ^6.3.0 || ^7.0.0
- '@swc-node/core@1.14.1':
- resolution: {integrity: sha512-jrt5GUaZUU6cmMS+WTJEvGvaB6j1YNKPHPzC2PUi2BjaFbtxURHj6641Az6xN7b665hNniAIdvjxWcRml5yCnw==}
- engines: {node: '>= 10'}
- peerDependencies:
- '@swc/core': '>= 1.13.3'
- '@swc/types': '>= 0.1'
-
- '@swc-node/register@1.10.9':
- resolution: {integrity: sha512-iXy2sjP0phPEpK2yivjRC3PAgoLaT4sjSk0LDWCTdcTBJmR4waEog0E6eJbvoOkLkOtWw37SB8vCkl/bbh4+8A==}
- peerDependencies:
- '@swc/core': '>= 1.4.13'
- typescript: '>= 4.3'
-
- '@swc-node/sourcemap-support@0.5.1':
- resolution: {integrity: sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==}
-
'@swc/core-darwin-arm64@1.7.23':
resolution: {integrity: sha512-yyOHPfti6yKlQulfVWMt7BVKst+SyEZYCWuQSGMn1KgmNCH/bYufRWfQXIhkGSj44ZkEepJmsJ8tDyIb4k5WyA==}
engines: {node: '>=10'}
@@ -6462,12 +5372,6 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
- '@testing-library/svelte@4.2.3':
- resolution: {integrity: sha512-8vM2+JSPc6wZWkO9ICPmHvzacjy8jBw+iVjmNs+0VsPV3AO3v4P8qCLWTaQ9nYW/e+IR1BCy3MM3Uqg21dlBkw==}
- engines: {node: '>= 10'}
- peerDependencies:
- svelte: ^3 || ^4 || ^5
-
'@testing-library/svelte@5.2.9':
resolution: {integrity: sha512-p0Lg/vL1iEsEasXKSipvW9nBCtItQGhYvxL8OZ4w7/IDdC+LGoSJw4mMS5bndVFON/gWryitEhMr29AlO4FvBg==}
engines: {node: '>= 10'}
@@ -6498,10 +5402,6 @@ packages:
'@tokenizer/token@0.3.0':
resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
- '@tootallnate/once@1.1.2':
- resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
- engines: {node: '>= 6'}
-
'@tootallnate/once@2.0.0':
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
engines: {node: '>= 10'}
@@ -6536,9 +5436,6 @@ packages:
'@tybys/wasm-util@0.10.1':
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
- '@tybys/wasm-util@0.10.2':
- resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==}
-
'@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
@@ -6557,63 +5454,24 @@ packages:
'@types/babel__traverse@7.20.1':
resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==}
- '@types/body-parser@1.19.5':
- resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
-
- '@types/bonjour@3.5.13':
- resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
-
'@types/chai@5.2.2':
resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==}
- '@types/connect-history-api-fallback@1.5.4':
- resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
-
- '@types/connect@3.4.38':
- resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
-
- '@types/cookie@0.4.1':
- resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==}
-
- '@types/cors@2.8.17':
- resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
-
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
'@types/deep-eql@4.0.2':
resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
- '@types/eslint-scope@3.7.7':
- resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
-
- '@types/eslint@9.6.0':
- resolution: {integrity: sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==}
-
'@types/esrecurse@4.3.1':
resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
- '@types/estree@0.0.39':
- resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
-
- '@types/estree@0.0.51':
- resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
-
- '@types/estree@1.0.6':
- resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
-
'@types/estree@1.0.8':
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
'@types/estree@1.0.9':
resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
- '@types/express-serve-static-core@4.19.5':
- resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==}
-
- '@types/express@4.17.21':
- resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
-
'@types/fs-extra@11.0.4':
resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
@@ -6629,12 +5487,6 @@ packages:
'@types/hast@3.0.4':
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
- '@types/http-errors@2.0.4':
- resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
-
- '@types/http-proxy@1.17.17':
- resolution: {integrity: sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==}
-
'@types/istanbul-lib-coverage@2.0.4':
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
@@ -6644,9 +5496,6 @@ packages:
'@types/istanbul-reports@3.0.1':
resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
- '@types/jasmine@3.10.18':
- resolution: {integrity: sha512-jOk52a1Kz+1oU5fNWwAcNe64/GsE7r/Q6ronwDox0D3ETo/cr4ICMQyeXrj7G6FPW1n8YjRoAZA2F0XBr6GicQ==}
-
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -6668,9 +5517,6 @@ packages:
'@types/mdurl@2.0.0':
resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
- '@types/mime@1.3.5':
- resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
-
'@types/minimatch@6.0.0':
resolution: {integrity: sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==}
deprecated: This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed.
@@ -6687,9 +5533,6 @@ packages:
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
- '@types/node@12.20.55':
- resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
-
'@types/node@16.9.1':
resolution: {integrity: sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==}
@@ -6702,57 +5545,27 @@ packages:
'@types/node@24.10.1':
resolution: {integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==}
- '@types/parse-json@4.0.2':
- resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
-
'@types/prop-types@15.7.15':
resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==}
'@types/prop-types@15.7.5':
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
- '@types/pug@2.0.6':
- resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==}
-
- '@types/qs@6.9.15':
- resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==}
-
- '@types/range-parser@1.2.7':
- resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
-
'@types/react-dom@18.2.7':
resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==}
'@types/react@18.3.27':
resolution: {integrity: sha512-cisd7gxkzjBKU2GgdYrTdtQx1SORymWyaAFhaxQPK9bYO9ot3Y5OikQRvY0VYQtvwjeQnizCINJAenh/V7MK2w==}
- '@types/resolve@1.17.1':
- resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
-
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
- '@types/retry@0.12.0':
- resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
-
'@types/sax@1.2.7':
resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==}
'@types/semver@7.7.1':
resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==}
- '@types/send@0.17.4':
- resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
-
- '@types/serve-index@1.9.4':
- resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
-
- '@types/serve-static@1.15.7':
- resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
-
- '@types/sockjs@0.3.36':
- resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
-
'@types/stack-utils@2.0.1':
resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
@@ -6765,26 +5578,12 @@ packages:
'@types/web-bluetooth@0.0.21':
resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
- '@types/ws@8.5.12':
- resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==}
-
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
'@types/yargs@17.0.35':
resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
- '@typescript-eslint/eslint-plugin@5.48.2':
- resolution: {integrity: sha512-sR0Gja9Ky1teIq4qJOl0nC+Tk64/uYdX+mi+5iB//MH8gwyx8e3SOyhEzeLZEFEEfCaLf8KJq+Bd/6je1t+CAg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/parser': ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
'@typescript-eslint/eslint-plugin@6.21.0':
resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -6804,22 +5603,6 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/experimental-utils@5.3.0':
- resolution: {integrity: sha512-NFVxYTjKj69qB0FM+piah1x3G/63WB8vCBMnlnEHUsiLzXSTWb9FmFn36FD9Zb4APKBLY3xRArOGSMQkuzTF1w==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '*'
-
- '@typescript-eslint/parser@5.48.2':
- resolution: {integrity: sha512-38zMsKsG2sIuM5Oi/olurGwYJXzmtdsHhn5mI/pQogP+BjYVkK5iRazCQ8RGS0V+YLk282uWElN70zAAUmaYHw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
'@typescript-eslint/parser@6.21.0':
resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -6843,14 +5626,6 @@ packages:
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/scope-manager@5.3.0':
- resolution: {integrity: sha512-22Uic9oRlTsPppy5Tcwfj+QET5RWEnZ5414Prby465XxQrQFZ6nnm5KnXgnsAJefG4hEgMnaxTB3kNEyjdjj6A==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
- '@typescript-eslint/scope-manager@5.48.2':
- resolution: {integrity: sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
'@typescript-eslint/scope-manager@6.21.0':
resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -6865,16 +5640,6 @@ packages:
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/type-utils@5.48.2':
- resolution: {integrity: sha512-QVWx7J5sPMRiOMJp5dYshPxABRoZV1xbRirqSk8yuIIsu0nvMTZesKErEA3Oix1k+uvsk8Cs8TGJ6kQ0ndAcew==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '*'
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
'@typescript-eslint/type-utils@6.21.0':
resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -6892,14 +5657,6 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/types@5.3.0':
- resolution: {integrity: sha512-fce5pG41/w8O6ahQEhXmMV+xuh4+GayzqEogN24EK+vECA3I6pUwKuLi5QbXO721EMitpQne5VKXofPonYlAQg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
- '@typescript-eslint/types@5.48.2':
- resolution: {integrity: sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
'@typescript-eslint/types@6.21.0':
resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -6908,24 +5665,6 @@ packages:
resolution: {integrity: sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@5.3.0':
- resolution: {integrity: sha512-FJ0nqcaUOpn/6Z4Jwbtf+o0valjBLkqc3MWkMvrhA2TvzFXtcclIM8F4MBEmYa2kgcI8EZeSAzwoSrIC8JYkug==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/typescript-estree@5.48.2':
- resolution: {integrity: sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
'@typescript-eslint/typescript-estree@6.21.0':
resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -6941,12 +5680,6 @@ packages:
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/utils@5.48.2':
- resolution: {integrity: sha512-2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
-
'@typescript-eslint/utils@6.21.0':
resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -6960,14 +5693,6 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/visitor-keys@5.3.0':
- resolution: {integrity: sha512-oVIAfIQuq0x2TFDNLVavUn548WL+7hdhxYn+9j3YdJJXB7mH9dAmZNJsPDa7Jc+B9WGqoiex7GUDbyMxV0a/aw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
- '@typescript-eslint/visitor-keys@5.48.2':
- resolution: {integrity: sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
'@typescript-eslint/visitor-keys@6.21.0':
resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -7109,13 +5834,6 @@ packages:
vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
- '@vitejs/plugin-vue@6.0.2':
- resolution: {integrity: sha512-iHmwV3QcVGGvSC1BG5bZ4z6iwa1SOpAPWmnjOErd4Ske+lZua5K9TtAVdx0gMBClJ28DViCbSmZitjWZsWO3LA==}
- engines: {node: ^20.19.0 || >=22.12.0}
- peerDependencies:
- vite: ^5.0.0 || ^6.0.0 || ^7.0.0
- vue: ^3.2.25
-
'@vitest/browser-playwright@4.1.1':
resolution: {integrity: sha512-dtVSBZZha2k/7P7EAXXrEAoxuIKl8Yv9f2Dk4GN/DGfmhf4DQvkvu+57okR2wq/gan1xppKjL/aBxK/kbYrbGw==}
peerDependencies:
@@ -7320,73 +6038,14 @@ packages:
peerDependencies:
vue: ^3.5.0
- '@webassemblyjs/ast@1.11.1':
- resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
-
- '@webassemblyjs/floating-point-hex-parser@1.11.1':
- resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
-
- '@webassemblyjs/helper-api-error@1.11.1':
- resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
-
- '@webassemblyjs/helper-buffer@1.11.1':
- resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
-
- '@webassemblyjs/helper-numbers@1.11.1':
- resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
-
- '@webassemblyjs/helper-wasm-bytecode@1.11.1':
- resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
-
- '@webassemblyjs/helper-wasm-section@1.11.1':
- resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
-
- '@webassemblyjs/ieee754@1.11.1':
- resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
-
- '@webassemblyjs/leb128@1.11.1':
- resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
-
- '@webassemblyjs/utf8@1.11.1':
- resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
-
- '@webassemblyjs/wasm-edit@1.11.1':
- resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
-
- '@webassemblyjs/wasm-gen@1.11.1':
- resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
-
- '@webassemblyjs/wasm-opt@1.11.1':
- resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
-
- '@webassemblyjs/wasm-parser@1.11.1':
- resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
-
- '@webassemblyjs/wast-printer@1.11.1':
- resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
-
'@xmldom/xmldom@0.7.13':
resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==}
engines: {node: '>=10.0.0'}
deprecated: this version has critical issues, please update to the latest version
- '@xtuc/ieee754@1.2.0':
- resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
-
- '@xtuc/long@4.2.2':
- resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
-
'@yarnpkg/lockfile@1.1.0':
resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
- '@yarnpkg/parsers@3.0.2':
- resolution: {integrity: sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==}
- engines: {node: '>=18.12.0'}
-
- '@zkochan/js-yaml@0.0.6':
- resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==}
- hasBin: true
-
a-sync-waterfall@1.0.1:
resolution: {integrity: sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==}
@@ -7424,12 +6083,6 @@ packages:
acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
- acorn-import-assertions@1.9.0:
- resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
- deprecated: package has been renamed to acorn-import-attributes
- peerDependencies:
- acorn: ^8
-
acorn-import-attributes@1.9.5:
resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
peerDependencies:
@@ -7444,11 +6097,6 @@ packages:
resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
engines: {node: '>=0.4.0'}
- acorn@8.12.1:
- resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
acorn@8.14.0:
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
@@ -7469,10 +6117,6 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- adjust-sourcemap-loader@4.0.0:
- resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==}
- engines: {node: '>=8.9'}
-
agent-base@6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
@@ -7485,10 +6129,6 @@ packages:
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
engines: {node: '>= 14'}
- agentkeepalive@4.5.0:
- resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==}
- engines: {node: '>= 8.0.0'}
-
aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
@@ -7502,14 +6142,6 @@ packages:
ts-node:
optional: true
- ajv-formats@2.1.1:
- resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
- peerDependencies:
- ajv: ^8.0.0
- peerDependenciesMeta:
- ajv:
- optional: true
-
ajv-formats@3.0.1:
resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
peerDependencies:
@@ -7518,16 +6150,6 @@ packages:
ajv:
optional: true
- ajv-keywords@3.5.2:
- resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
- peerDependencies:
- ajv: ^6.9.1
-
- ajv-keywords@5.1.0:
- resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
- peerDependencies:
- ajv: ^8.8.2
-
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
@@ -7537,9 +6159,6 @@ packages:
ajv@8.18.0:
resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
- ajv@8.9.0:
- resolution: {integrity: sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==}
-
algoliasearch@5.44.0:
resolution: {integrity: sha512-f8IpsbdQjzTjr/4mJ/jv5UplrtyMnnciGax6/B0OnLCs2/GJTK13O4Y7Ff1AvJVAaztanH+m5nzPoUq6EAy+aA==}
engines: {node: '>= 14.0.0'}
@@ -7562,18 +6181,10 @@ packages:
anser@2.3.3:
resolution: {integrity: sha512-QGY1oxYE7/kkeNmbtY/2ZjQ07BCG3zYdz+k/+sf69kMzEIxb93guHkPnIXITQ+BYi61oQwG74twMOX1tD4aesg==}
- ansi-colors@4.1.1:
- resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==}
- engines: {node: '>=6'}
-
ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
- ansi-escapes@4.3.2:
- resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
- engines: {node: '>=8'}
-
ansi-escapes@5.0.0:
resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==}
engines: {node: '>=12'}
@@ -7582,11 +6193,6 @@ packages:
resolution: {integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==}
engines: {node: '>=18'}
- ansi-html-community@0.0.8:
- resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
- engines: {'0': node >= 0.8.0}
- hasBin: true
-
ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
@@ -7634,9 +6240,6 @@ packages:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
- aproba@2.1.0:
- resolution: {integrity: sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==}
-
archiver-utils@5.0.2:
resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==}
engines: {node: '>= 14'}
@@ -7645,11 +6248,6 @@ packages:
resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==}
engines: {node: '>= 14'}
- are-we-there-yet@3.0.1:
- resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This package is no longer supported.
-
arg@4.1.3:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
@@ -7662,10 +6260,6 @@ packages:
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- aria-query@4.2.2:
- resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
- engines: {node: '>=6.0'}
-
aria-query@5.1.3:
resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
@@ -7684,12 +6278,6 @@ packages:
resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==}
engines: {node: '>=0.10.0'}
- array-flatten@1.1.1:
- resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
-
- array-flatten@2.1.2:
- resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
-
array-includes@3.1.9:
resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==}
engines: {node: '>= 0.4'}
@@ -7701,10 +6289,6 @@ packages:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- array-union@3.0.1:
- resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==}
- engines: {node: '>=12'}
-
array.prototype.findlastindex@1.2.6:
resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==}
engines: {node: '>= 0.4'}
@@ -7749,19 +6333,12 @@ packages:
async-sema@3.1.1:
resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
- async@2.6.4:
- resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
-
async@3.2.6:
resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- at-least-node@1.0.0:
- resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
- engines: {node: '>= 4.0.0'}
-
atob@2.1.2:
resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
engines: {node: '>= 4.5.0'}
@@ -7771,13 +6348,6 @@ packages:
resolution: {integrity: sha512-0V8gZAGGqiFDP15d6d4/Emi6Gpozbr1S9lSfxJ+lNV8nF+7grhcgbHIgn3O/DQKybS+cDqVMC3rxH8k+o0ISpA==}
engines: {node: '>=16.0.0'}
- autoprefixer@10.4.20:
- resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
- engines: {node: ^10 || ^12 || >=14}
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
-
available-typed-arrays@1.0.7:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
@@ -7785,9 +6355,6 @@ packages:
axios@1.13.2:
resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
- axobject-query@2.2.0:
- resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
-
axobject-query@4.1.0:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
engines: {node: '>= 0.4'}
@@ -7811,13 +6378,6 @@ packages:
peerDependencies:
'@babel/core': ^7.8.0
- babel-loader@8.2.5:
- resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==}
- engines: {node: '>= 8.9'}
- peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
-
babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
@@ -7831,11 +6391,6 @@ packages:
peerDependencies:
'@babel/core': ^7.20.12
- babel-plugin-polyfill-corejs2@0.3.3:
- resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
babel-plugin-polyfill-corejs2@0.4.14:
resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==}
peerDependencies:
@@ -7851,16 +6406,6 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.5.3:
- resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- babel-plugin-polyfill-regenerator@0.3.1:
- resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
babel-plugin-polyfill-regenerator@0.6.5:
resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==}
peerDependencies:
@@ -7954,18 +6499,11 @@ packages:
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- base64id@2.0.0:
- resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
- engines: {node: ^4.5.0 || >= 5.9}
-
baseline-browser-mapping@2.10.10:
resolution: {integrity: sha512-sUoJ3IMxx4AyRqO4MLeHlnGDkyXRoUG0/AI9fjK+vS72ekpV0yWVY7O0BVjmBcRtkNcsAO2QDZ4tdKKGoI6YaQ==}
engines: {node: '>=6.0.0'}
hasBin: true
- batch@0.6.1:
- resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
-
beasties@0.4.1:
resolution: {integrity: sha512-2Imdcw3LznDuxAbJM26RHniOLAzE6WgrK8OuvVXCQtNBS8rsnD9zsSEa3fHl4hHpUY7BYTlrpvtPVbvu9G6neg==}
engines: {node: '>=18.0.0'}
@@ -7976,9 +6514,6 @@ packages:
bidi-js@1.0.3:
resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
- big.js@5.2.2:
- resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
-
binary-extensions@2.3.0:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
@@ -7989,23 +6524,13 @@ packages:
birpc@2.8.0:
resolution: {integrity: sha512-Bz2a4qD/5GRhiHSwj30c/8kC8QGj12nNDwz3D4ErQ4Xhy35dsSDvF+RA/tWpjyU0pdGtSDiEk6B5fBGE1qNVhw==}
- bl@4.1.0:
- resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
-
bmp-js@0.1.0:
resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==}
- body-parser@1.20.3:
- resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
- engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
-
body-parser@2.2.2:
resolution: {integrity: sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==}
engines: {node: '>=18'}
- bonjour@3.5.0:
- resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==}
-
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
@@ -8037,11 +6562,6 @@ packages:
resolution: {integrity: sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==}
engines: {node: '>= 10.16.0'}
- browserslist@4.23.3:
- resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
browserslist@4.24.5:
resolution: {integrity: sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -8060,9 +6580,6 @@ packages:
bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
- buffer-crc32@0.2.13:
- resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
-
buffer-crc32@1.0.0:
resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
engines: {node: '>=8.0.0'}
@@ -8074,9 +6591,6 @@ packages:
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- buffer-indexof@1.1.1:
- resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==}
-
buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
@@ -8087,21 +6601,10 @@ packages:
resolution: {integrity: sha512-azX778/2VQ9K2uiYprSUKLgK2K6lR1KtJycJDsMg7u0+Cc994A9HyGaUKb01e/T+M8jse057429iKXurCaT35g==}
engines: {node: '>=20.11.1'}
- builtin-modules@3.3.0:
- resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
- engines: {node: '>=6'}
-
- builtins@1.0.3:
- resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==}
-
bundle-name@4.1.0:
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
engines: {node: '>=18'}
- bytes@3.0.0:
- resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
- engines: {node: '>= 0.8'}
-
bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
@@ -8114,14 +6617,6 @@ packages:
magicast:
optional: true
- cacache@15.3.0:
- resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==}
- engines: {node: '>= 10'}
-
- cacache@16.1.3:
- resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
cacache@18.0.4:
resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -8166,9 +6661,6 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- caniuse-lite@1.0.30001673:
- resolution: {integrity: sha512-WTrjUCSMp3LYX0nE12ECkV0a+e6LC85E0Auz75555/qr78Oc8YWhEPNfDd6SHdtlCMSzqtuXY0uyEMNRcsKpKw==}
-
caniuse-lite@1.0.30001718:
resolution: {integrity: sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw==}
@@ -8189,10 +6681,6 @@ packages:
resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==}
engines: {node: '>=18'}
- chalk@4.1.0:
- resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==}
- engines: {node: '>=10'}
-
chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
@@ -8214,9 +6702,6 @@ packages:
character-entities@2.0.2:
resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
- chardet@0.7.0:
- resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
-
chardet@2.1.1:
resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==}
@@ -8252,10 +6737,6 @@ packages:
engines: {node: '>=12.13.0'}
hasBin: true
- chrome-trace-event@1.0.4:
- resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
- engines: {node: '>=6.0'}
-
chromium-edge-launcher@0.2.0:
resolution: {integrity: sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==}
@@ -8270,12 +6751,6 @@ packages:
resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
engines: {node: '>=8'}
- circular-dependency-plugin@5.2.2:
- resolution: {integrity: sha512-g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ==}
- engines: {node: '>=6.0.0'}
- peerDependencies:
- webpack: '>=4.0.1'
-
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
@@ -8289,10 +6764,6 @@ packages:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
- cli-cursor@3.1.0:
- resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
- engines: {node: '>=8'}
-
cli-cursor@4.0.0:
resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -8305,14 +6776,6 @@ packages:
resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
engines: {node: '>=4'}
- cli-spinners@2.6.1:
- resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
- engines: {node: '>=6'}
-
- cli-spinners@2.9.2:
- resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
- engines: {node: '>=6'}
-
cli-spinners@3.4.0:
resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
engines: {node: '>=18.20'}
@@ -8329,10 +6792,6 @@ packages:
resolution: {integrity: sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==}
engines: {node: '>=20'}
- cli-width@3.0.0:
- resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
- engines: {node: '>= 10'}
-
cli-width@4.1.0:
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
engines: {node: '>= 12'}
@@ -8352,10 +6811,6 @@ packages:
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'}
-
clsx@2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
@@ -8364,9 +6819,6 @@ packages:
resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
engines: {node: '>=0.10.0'}
- code-red@1.0.4:
- resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==}
-
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
@@ -8374,10 +6826,6 @@ packages:
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- color-support@1.1.3:
- resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
- hasBin: true
-
colorette@1.4.0:
resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
@@ -8388,10 +6836,6 @@ packages:
resolution: {integrity: sha512-zHMwyBeZ1PEo1sm11JA2SFw5/+5AB0aRBmQZbO8qOZ0bCeDEpoJDe+UZbG/oICiQ9/m6vLBd/3GASAP9GfSkwA==}
hasBin: true
- colors@1.4.0:
- resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==}
- engines: {node: '>=0.1.90'}
-
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -8434,10 +6878,6 @@ packages:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
- commander@8.3.0:
- resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
- engines: {node: '>= 12'}
-
commenting@1.1.0:
resolution: {integrity: sha512-YeNK4tavZwtH7jEgK1ZINXzLKm6DZdEMfsaaieOsCAN0S8vsY7UeuO3Q7d/M018EFgE+IeUAuBOKkFccBZsUZA==}
@@ -8458,14 +6898,6 @@ packages:
resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==}
engines: {node: '>= 14'}
- compressible@2.0.18:
- resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
- engines: {node: '>= 0.6'}
-
- compression@1.7.4:
- resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
- engines: {node: '>= 0.8.0'}
-
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
@@ -8481,10 +6913,6 @@ packages:
confusing-browser-globals@1.0.11:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
- connect-history-api-fallback@1.6.0:
- resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
- engines: {node: '>=0.8'}
-
connect@3.7.0:
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
engines: {node: '>= 0.10.0'}
@@ -8493,13 +6921,6 @@ packages:
resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
engines: {node: ^14.18.0 || >=16.10.0}
- console-control-strings@1.1.0:
- resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
-
- content-disposition@0.5.4:
- resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
- engines: {node: '>= 0.6'}
-
content-disposition@1.0.1:
resolution: {integrity: sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==}
engines: {node: '>=18'}
@@ -8526,21 +6947,10 @@ packages:
cookie-es@3.1.1:
resolution: {integrity: sha512-UaXxwISYJPTr9hwQxMFYZ7kNhSXboMXP+Z3TRX6f1/NyaGPfuNUZOWP1pUEb75B2HjfklIYLVRfWiFZJyC6Npg==}
- cookie-signature@1.0.6:
- resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
-
cookie-signature@1.2.2:
resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
engines: {node: '>=6.6.0'}
- cookie@0.4.2:
- resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
- engines: {node: '>= 0.6'}
-
- cookie@0.7.1:
- resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
- engines: {node: '>= 0.6'}
-
cookie@0.7.2:
resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
engines: {node: '>= 0.6'}
@@ -8556,25 +6966,9 @@ packages:
resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==}
engines: {node: '>=18'}
- copy-webpack-plugin@10.2.1:
- resolution: {integrity: sha512-nr81NhCAIpAWXGCK5thrKmfCQ6GDY0L5RN0U+BnIn/7Us55+UCex5ANNsNKmIVtDRnk0Ecf+/kzp9SUVrrBMLg==}
- engines: {node: '>= 12.20.0'}
- peerDependencies:
- webpack: ^5.1.0
-
- core-js-compat@3.38.1:
- resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
-
core-js-compat@3.45.0:
resolution: {integrity: sha512-gRoVMBawZg0OnxaVv3zpqLLxaHmsubEGyTnqdpI/CEBvX4JadI1dMSHxagThprYRtSVbuQxvi6iUatdPxohHpA==}
- core-js-pure@3.38.1:
- resolution: {integrity: sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==}
-
- core-js@3.20.3:
- resolution: {integrity: sha512-vVl8j8ph6tRS3B8qir40H7yw7voy17xL0piAjlbBUsH7WIfzoedL/ZOr1OV9FyZQLWXsayOJyV4tnRyXR85/ag==}
- deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
-
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -8586,10 +6980,6 @@ packages:
resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
engines: {node: '>=4'}
- cosmiconfig@7.1.0:
- resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
- engines: {node: '>=10'}
-
crc-32@1.2.2:
resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
engines: {node: '>=0.8'}
@@ -8605,9 +6995,6 @@ packages:
crelt@1.0.6:
resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
- critters@0.0.16:
- resolution: {integrity: sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==}
-
croner@10.0.1:
resolution: {integrity: sha512-ixNtAJndqh173VQ4KodSdJEI6nuioBWI0V1ITNKhZZsO0pEMoDxz539T4FTTbSZ/xIOSuDnzxLVRqBVSvPNE2g==}
engines: {node: '>=18.0'}
@@ -8619,36 +7006,6 @@ packages:
crossws@0.3.5:
resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==}
- css-blank-pseudo@3.0.3:
- resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==}
- engines: {node: ^12 || ^14 || >=16}
- hasBin: true
- peerDependencies:
- postcss: ^8.4
-
- css-has-pseudo@3.0.4:
- resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==}
- engines: {node: ^12 || ^14 || >=16}
- hasBin: true
- peerDependencies:
- postcss: ^8.4
-
- css-loader@6.5.1:
- resolution: {integrity: sha512-gEy2w9AnJNnD9Kuo4XAP9VflW/ujKoS9c/syO+uWMlm5igc7LysKzPXaDoR2vroROkSwsTS2tGr1yGGEbZOYZQ==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
-
- css-prefers-color-scheme@6.0.3:
- resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==}
- engines: {node: ^12 || ^14 || >=16}
- hasBin: true
- peerDependencies:
- postcss: ^8.4
-
- css-select@4.3.0:
- resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
-
css-select@5.1.0:
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
@@ -8692,17 +7049,6 @@ packages:
css@3.0.0:
resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==}
- cssdb@5.1.0:
- resolution: {integrity: sha512-/vqjXhv1x9eGkE/zO6o8ZOI7dgdZbLVLUGyVRbPgk6YipXbW87YzUCcO+Jrmi5bwJlAH6oD+MNeZyRgXea1GZw==}
-
- cssdb@7.11.2:
- resolution: {integrity: sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==}
-
- cssesc@3.0.0:
- resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
- engines: {node: '>=4'}
- hasBin: true
-
csso@5.0.5:
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
@@ -8730,12 +7076,6 @@ packages:
cubic2quad@1.2.1:
resolution: {integrity: sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ==}
- cuint@0.2.2:
- resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==}
-
- custom-event@1.0.1:
- resolution: {integrity: sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==}
-
data-uri-to-buffer@4.0.1:
resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
engines: {node: '>= 12'}
@@ -8760,10 +7100,6 @@ packages:
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
engines: {node: '>= 0.4'}
- date-format@4.0.14:
- resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==}
- engines: {node: '>=4.0'}
-
db0@0.3.4:
resolution: {integrity: sha512-RiXXi4WaNzPTHEOu8UPQKMooIbqOEyqA1t7Z6MsdxSCeb8iUC9ko3LcmsLmeUt2SM5bctfArZKkRQggKZz7JNw==}
peerDependencies:
@@ -8803,15 +7139,6 @@ packages:
supports-color:
optional: true
- debug@4.3.3:
- resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
debug@4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
@@ -8839,15 +7166,6 @@ packages:
supports-color:
optional: true
- debug@4.3.7:
- resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
debug@4.4.0:
resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
engines: {node: '>=6.0'}
@@ -8882,10 +7200,6 @@ packages:
dedent-js@1.0.1:
resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==}
- deep-equal@1.1.2:
- resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==}
- engines: {node: '>= 0.4'}
-
deep-equal@2.2.2:
resolution: {integrity: sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==}
@@ -8908,13 +7222,6 @@ packages:
resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==}
engines: {node: '>=18'}
- default-gateway@6.0.3:
- resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
- engines: {node: '>= 10'}
-
- defaults@1.0.4:
- resolution: {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'}
@@ -8937,33 +7244,18 @@ packages:
defu@6.1.7:
resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==}
- del@6.1.1:
- resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
- engines: {node: '>=10'}
-
delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
- delegates@1.0.0:
- resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
-
denque@2.1.0:
resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==}
engines: {node: '>=0.10'}
- depd@1.1.2:
- resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
- engines: {node: '>= 0.6'}
-
depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- dependency-graph@0.11.0:
- resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==}
- engines: {node: '>= 0.6.0'}
-
dependency-graph@1.0.0:
resolution: {integrity: sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==}
engines: {node: '>=4'}
@@ -8982,10 +7274,6 @@ packages:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- detect-indent@6.1.0:
- resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
- engines: {node: '>=8'}
-
detect-libc@1.0.3:
resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
engines: {node: '>=0.10'}
@@ -8995,18 +7283,12 @@ packages:
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
engines: {node: '>=8'}
- detect-node@2.1.0:
- resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
-
devalue@5.8.0:
resolution: {integrity: sha512-2zA9pFEsnp7vWBZbXF5JAgAq0fsUIt/1XPbRiAmRV3lp/2C3upzH+sADiyy66aFCihoLEsrQHxNM5w1gIDfsBg==}
devlop@1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
- di@0.0.1:
- resolution: {integrity: sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==}
-
diff@4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
@@ -9025,15 +7307,6 @@ packages:
dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- dns-equal@1.0.0:
- resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
-
- dns-packet@1.3.4:
- resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==}
-
- dns-txt@2.0.2:
- resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==}
-
doctrine@2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
@@ -9048,15 +7321,9 @@ packages:
dom-accessibility-api@0.6.3:
resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==}
- dom-serialize@2.2.1:
- resolution: {integrity: sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==}
-
dom-serializer@0.2.2:
resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==}
- dom-serializer@1.4.1:
- resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
-
dom-serializer@2.0.0:
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
@@ -9077,10 +7344,6 @@ packages:
domhandler@2.4.2:
resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==}
- domhandler@4.3.1:
- resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
- engines: {node: '>= 4'}
-
domhandler@5.0.3:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
@@ -9091,9 +7354,6 @@ packages:
domutils@1.7.0:
resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
- domutils@2.8.0:
- resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
-
domutils@3.2.2:
resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
@@ -9101,10 +7361,6 @@ packages:
resolution: {integrity: sha512-MVUtAugQMOff5RnBy2d9N31iG0lNwg1qAoAOn7pOK5wf94WIaE3My2p3uwTQuvS2AcqchkcR3bHByjaM0mmi7Q==}
engines: {node: '>=20'}
- dotenv@10.0.0:
- resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==}
- engines: {node: '>=10'}
-
dotenv@16.6.1:
resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
engines: {node: '>=12'}
@@ -9142,11 +7398,6 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- ejs@3.1.10:
- resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
- engines: {node: '>=0.10.0'}
- hasBin: true
-
electron-to-chromium@1.5.155:
resolution: {integrity: sha512-ps5KcGGmwL8VaeJlvlDlu4fORQpv3+GIcF5I3f9tUKUlJ/wsysh6HU8P5L1XWRYeXfA0oJd4PyM8ds8zTFf6Ng==}
@@ -9156,9 +7407,6 @@ packages:
electron-to-chromium@1.5.321:
resolution: {integrity: sha512-L2C7Q279W2D/J4PLZLk7sebOILDSWos7bMsMNN06rK482umHUrh/3lM8G7IlHFOYip2oAg5nha1rCMxr/rs6ZQ==}
- electron-to-chromium@1.5.47:
- resolution: {integrity: sha512-zS5Yer0MOYw4rtK2iq43cJagHZ8sXN0jDHDKzB+86gSBSAI4v07S97mcq+Gs2vclAxSh1j7vOAHxSVgduiiuVQ==}
-
element-to-path@1.2.1:
resolution: {integrity: sha512-JNFZS0yI3Myywn/ltFj/yTihHNzMTYk0ycHcgcjlvA/dYMUjMIGqvbezPZeXN3U1Klp/aiigr2mpmhVRfudtbg==}
@@ -9174,10 +7422,6 @@ packages:
emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- emojis-list@3.0.0:
- resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
- engines: {node: '>= 4'}
-
encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
@@ -9192,29 +7436,10 @@ packages:
encoding@0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
- end-of-stream@1.4.4:
- resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
-
- engine.io-parser@5.2.3:
- resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==}
- engines: {node: '>=10.0.0'}
-
- engine.io@6.5.5:
- resolution: {integrity: sha512-C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==}
- engines: {node: '>=10.2.0'}
-
- enhanced-resolve@5.18.1:
- resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
- engines: {node: '>=10.13.0'}
-
enquirer@2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
- ent@2.2.1:
- resolution: {integrity: sha512-QHuXVeZx9d+tIQAz/XztU0ZwZf2Agg9CcXcgE1rurqvdBeDBrpSwjl8/6XUqMg7tw2Y7uAdKb2sRv+bSEFqQ5A==}
- engines: {node: '>= 0.4'}
-
entities@1.1.2:
resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==}
@@ -9275,9 +7500,6 @@ packages:
es-html-parser@0.0.9:
resolution: {integrity: sha512-oniQMi+466VFsDzcdron9Ry/sqUJpDJg1bbDn0jFJKDdxXhwIOYDr4DgBnO5/yPLGj2xv+n5yy4L1Q0vAC5TYQ==}
- es-module-lexer@0.9.3:
- resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
-
es-module-lexer@1.6.0:
resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
@@ -9306,263 +7528,6 @@ packages:
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
- es6-promise@3.3.1:
- resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==}
-
- esbuild-android-64@0.14.54:
- resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
- esbuild-android-arm64@0.14.22:
- resolution: {integrity: sha512-k1Uu4uC4UOFgrnTj2zuj75EswFSEBK+H6lT70/DdS4mTAOfs2ECv2I9ZYvr3w0WL0T4YItzJdK7fPNxcPw6YmQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
- esbuild-android-arm64@0.14.54:
- resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
- esbuild-darwin-64@0.14.22:
- resolution: {integrity: sha512-d8Ceuo6Vw6HM3fW218FB6jTY6O3r2WNcTAU0SGsBkXZ3k8SDoRLd3Nrc//EqzdgYnzDNMNtrWegK2Qsss4THhw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
- esbuild-darwin-64@0.14.54:
- resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
- esbuild-darwin-arm64@0.14.22:
- resolution: {integrity: sha512-YAt9Tj3SkIUkswuzHxkaNlT9+sg0xvzDvE75LlBo4DI++ogSgSmKNR6B4eUhU5EUUepVXcXdRIdqMq9ppeRqfw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
- esbuild-darwin-arm64@0.14.54:
- resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
- esbuild-freebsd-64@0.14.22:
- resolution: {integrity: sha512-ek1HUv7fkXMy87Qm2G4IRohN+Qux4IcnrDBPZGXNN33KAL0pEJJzdTv0hB/42+DCYWylSrSKxk3KUXfqXOoH4A==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
-
- esbuild-freebsd-64@0.14.54:
- resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
-
- esbuild-freebsd-arm64@0.14.22:
- resolution: {integrity: sha512-zPh9SzjRvr9FwsouNYTqgqFlsMIW07O8mNXulGeQx6O5ApgGUBZBgtzSlBQXkHi18WjrosYfsvp5nzOKiWzkjQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
- esbuild-freebsd-arm64@0.14.54:
- resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
- esbuild-linux-32@0.14.22:
- resolution: {integrity: sha512-SnpveoE4nzjb9t2hqCIzzTWBM0RzcCINDMBB67H6OXIuDa4KqFqaIgmTchNA9pJKOVLVIKd5FYxNiJStli21qg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
- esbuild-linux-32@0.14.54:
- resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
- esbuild-linux-64@0.14.22:
- resolution: {integrity: sha512-Zcl9Wg7gKhOWWNqAjygyqzB+fJa19glgl2JG7GtuxHyL1uEnWlpSMytTLMqtfbmRykIHdab797IOZeKwk5g0zg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
- esbuild-linux-64@0.14.54:
- resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
- esbuild-linux-arm64@0.14.22:
- resolution: {integrity: sha512-8q/FRBJtV5IHnQChO3LHh/Jf7KLrxJ/RCTGdBvlVZhBde+dk3/qS9fFsUy+rs3dEi49aAsyVitTwlKw1SUFm+A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
- esbuild-linux-arm64@0.14.54:
- resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
- esbuild-linux-arm@0.14.22:
- resolution: {integrity: sha512-soPDdbpt/C0XvOOK45p4EFt8HbH5g+0uHs5nUKjHVExfgR7du734kEkXR/mE5zmjrlymk5AA79I0VIvj90WZ4g==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
- esbuild-linux-arm@0.14.54:
- resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
- esbuild-linux-mips64le@0.14.22:
- resolution: {integrity: sha512-SiNDfuRXhGh1JQLLA9JPprBgPVFOsGuQ0yDfSPTNxztmVJd8W2mX++c4FfLpAwxuJe183mLuKf7qKCHQs5ZnBQ==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
- esbuild-linux-mips64le@0.14.54:
- resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
- esbuild-linux-ppc64le@0.14.22:
- resolution: {integrity: sha512-6t/GI9I+3o1EFm2AyN9+TsjdgWCpg2nwniEhjm2qJWtJyJ5VzTXGUU3alCO3evopu8G0hN2Bu1Jhz2YmZD0kng==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
-
- esbuild-linux-ppc64le@0.14.54:
- resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
-
- esbuild-linux-riscv64@0.14.22:
- resolution: {integrity: sha512-AyJHipZKe88sc+tp5layovquw5cvz45QXw5SaDgAq2M911wLHiCvDtf/07oDx8eweCyzYzG5Y39Ih568amMTCQ==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
- esbuild-linux-riscv64@0.14.54:
- resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
- esbuild-linux-s390x@0.14.22:
- resolution: {integrity: sha512-Sz1NjZewTIXSblQDZWEFZYjOK6p8tV6hrshYdXZ0NHTjWE+lwxpOpWeElUGtEmiPcMT71FiuA9ODplqzzSxkzw==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
- esbuild-linux-s390x@0.14.54:
- resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
- esbuild-netbsd-64@0.14.22:
- resolution: {integrity: sha512-TBbCtx+k32xydImsHxvFgsOCuFqCTGIxhzRNbgSL1Z2CKhzxwT92kQMhxort9N/fZM2CkRCPPs5wzQSamtzEHA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
-
- esbuild-netbsd-64@0.14.54:
- resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
-
- esbuild-openbsd-64@0.14.22:
- resolution: {integrity: sha512-vK912As725haT313ANZZZN+0EysEEQXWC/+YE4rQvOQzLuxAQc2tjbzlAFREx3C8+uMuZj/q7E5gyVB7TzpcTA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
- esbuild-openbsd-64@0.14.54:
- resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
- esbuild-sunos-64@0.14.22:
- resolution: {integrity: sha512-/mbJdXTW7MTcsPhtfDsDyPEOju9EOABvCjeUU2OJ7fWpX/Em/H3WYDa86tzLUbcVg++BScQDzqV/7RYw5XNY0g==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
- esbuild-sunos-64@0.14.54:
- resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
- esbuild-wasm@0.14.22:
- resolution: {integrity: sha512-FOSAM29GN1fWusw0oLMv6JYhoheDIh5+atC72TkJKfIUMID6yISlicoQSd9gsNSFsNBvABvtE2jR4JB1j4FkFw==}
- engines: {node: '>=12'}
- hasBin: true
-
- esbuild-wasm@0.14.54:
- resolution: {integrity: sha512-Lk1Rq6mnHCIgYpUGQGsJn1dgW26w5uV0KYTl6CdoixSF4hD4v8Nyyxmhrqo4lUkV8AQoWLVfIBWYo7l+JTPl9g==}
- engines: {node: '>=12'}
- hasBin: true
-
- esbuild-windows-32@0.14.22:
- resolution: {integrity: sha512-1vRIkuvPTjeSVK3diVrnMLSbkuE36jxA+8zGLUOrT4bb7E/JZvDRhvtbWXWaveUc/7LbhaNFhHNvfPuSw2QOQg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
- esbuild-windows-32@0.14.54:
- resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
- esbuild-windows-64@0.14.22:
- resolution: {integrity: sha512-AxjIDcOmx17vr31C5hp20HIwz1MymtMjKqX4qL6whPj0dT9lwxPexmLj6G1CpR3vFhui6m75EnBEe4QL82SYqw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
- esbuild-windows-64@0.14.54:
- resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
- esbuild-windows-arm64@0.14.22:
- resolution: {integrity: sha512-5wvQ+39tHmRhNpu2Fx04l7QfeK3mQ9tKzDqqGR8n/4WUxsFxnVLfDRBGirIfk4AfWlxk60kqirlODPoT5LqMUg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
- esbuild-windows-arm64@0.14.54:
- resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
- esbuild@0.14.22:
- resolution: {integrity: sha512-CjFCFGgYtbFOPrwZNJf7wsuzesx8kqwAffOlbYcFDLFuUtP8xloK1GH+Ai13Qr0RZQf9tE7LMTHJ2iVGJ1SKZA==}
- engines: {node: '>=12'}
- hasBin: true
-
- esbuild@0.14.54:
- resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
- engines: {node: '>=12'}
- hasBin: true
-
esbuild@0.21.5:
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
engines: {node: '>=12'}
@@ -9603,10 +7568,6 @@ packages:
escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- escape-string-regexp@1.0.5:
- resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
- engines: {node: '>=0.8.0'}
-
escape-string-regexp@2.0.0:
resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
engines: {node: '>=8'}
@@ -9703,10 +7664,6 @@ packages:
'@typescript-eslint/parser':
optional: true
- eslint-scope@5.1.1:
- resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
- engines: {node: '>=8.0.0'}
-
eslint-scope@7.2.2:
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -9715,16 +7672,6 @@ packages:
resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- eslint-utils@3.0.0:
- resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
- engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
- peerDependencies:
- eslint: '>=5'
-
- eslint-visitor-keys@2.1.0:
- resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
- engines: {node: '>=10'}
-
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -9770,17 +7717,10 @@ packages:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
- estraverse@4.3.0:
- resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
- engines: {node: '>=4.0'}
-
estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- estree-walker@1.0.1:
- resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
-
estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
@@ -9805,9 +7745,6 @@ packages:
eventemitter3@2.0.3:
resolution: {integrity: sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==}
- eventemitter3@4.0.7:
- resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
-
eventemitter3@5.0.1:
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
@@ -9857,10 +7794,6 @@ packages:
peerDependencies:
express: '>= 4.11'
- express@4.21.2:
- resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
- engines: {node: '>= 0.10.0'}
-
express@5.2.1:
resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==}
engines: {node: '>= 18'}
@@ -9875,20 +7808,12 @@ packages:
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
- external-editor@3.1.0:
- resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
- engines: {node: '>=4'}
-
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
fast-fifo@1.3.2:
resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
- fast-glob@3.2.7:
- resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==}
- engines: {node: '>=8'}
-
fast-glob@3.3.3:
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
engines: {node: '>=8.6.0'}
@@ -9920,10 +7845,6 @@ packages:
fault@2.0.1:
resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==}
- faye-websocket@0.11.4:
- resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
- engines: {node: '>=0.8.0'}
-
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
@@ -9959,10 +7880,6 @@ packages:
fflate@0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
- figures@3.2.0:
- resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
- engines: {node: '>=8'}
-
file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -9974,9 +7891,6 @@ packages:
file-uri-to-path@1.0.0:
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
- filelist@1.0.4:
- resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
-
filesize@10.1.6:
resolution: {integrity: sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==}
engines: {node: '>= 10.4.0'}
@@ -9989,10 +7903,6 @@ packages:
resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
engines: {node: '>= 0.8'}
- finalhandler@1.3.1:
- resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
- engines: {node: '>= 0.8'}
-
finalhandler@2.1.1:
resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==}
engines: {node: '>= 18.0.0'}
@@ -10001,10 +7911,6 @@ packages:
resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
engines: {node: '>=6'}
- 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'}
@@ -10029,10 +7935,6 @@ packages:
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
- flat@5.0.2:
- resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
- hasBin: true
-
flatted@3.3.3:
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
@@ -10090,9 +7992,6 @@ packages:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
- fraction.js@4.3.7:
- resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
-
framer-motion@12.38.0:
resolution: {integrity: sha512-rFYkY/pigbcswl1XQSb7q424kSTQ8q6eAC+YUsSKooHQYuLdzdHjrt6uxUC+PRAO++q5IS7+TamgIw1AphxR+g==}
peerDependencies:
@@ -10115,9 +8014,6 @@ packages:
resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
engines: {node: '>= 0.8'}
- fs-constants@1.0.0:
- resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
-
fs-extra@11.2.0:
resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
engines: {node: '>=14.14'}
@@ -10130,10 +8026,6 @@ packages:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
- fs-extra@9.1.0:
- resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
- engines: {node: '>=10'}
-
fs-minipass@2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
@@ -10142,9 +8034,6 @@ packages:
resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- fs-monkey@1.0.6:
- resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==}
-
fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
@@ -10172,11 +8061,6 @@ packages:
resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
engines: {node: '>=10'}
- gauge@4.0.4:
- resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This package is no longer supported.
-
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
@@ -10251,14 +8135,6 @@ packages:
resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
engines: {node: 18 || 20 || >=22}
- glob@7.1.4:
- resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==}
- deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
-
- glob@7.2.0:
- resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
- deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
-
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
@@ -10299,10 +8175,6 @@ packages:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- globby@12.2.0:
- resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
globby@16.2.0:
resolution: {integrity: sha512-QrJia2qDf5BB/V6HYlDTs0I0lBahyjLzpGQg3KT7FnCdTonAyPy2RtY802m2k4ALx6Dp752f82WsOczEVr3l6Q==}
engines: {node: '>=20'}
@@ -10331,9 +8203,6 @@ packages:
h3@1.15.11:
resolution: {integrity: sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==}
- handle-thing@2.0.1:
- resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
-
has-bigints@1.1.0:
resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
engines: {node: '>= 0.4'}
@@ -10357,9 +8226,6 @@ packages:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
- has-unicode@2.0.1:
- resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
-
hasown@2.0.2:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
@@ -10426,17 +8292,10 @@ packages:
hookable@5.5.3:
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
- hosted-git-info@4.1.0:
- resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
- engines: {node: '>=10'}
-
hosted-git-info@9.0.2:
resolution: {integrity: sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==}
engines: {node: ^20.17.0 || >=22.9.0}
- hpack.js@2.1.6:
- resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
-
html-encoding-sniffer@3.0.0:
resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
engines: {node: '>=12'}
@@ -10448,9 +8307,6 @@ packages:
html-entities@2.3.3:
resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
- html-entities@2.5.2:
- resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
-
html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
@@ -10472,28 +8328,10 @@ packages:
http-cache-semantics@4.2.0:
resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==}
- http-deceiver@1.2.7:
- resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
-
- http-errors@1.6.3:
- resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
- engines: {node: '>= 0.6'}
-
- http-errors@2.0.0:
- resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
- engines: {node: '>= 0.8'}
-
http-errors@2.0.1:
resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
engines: {node: '>= 0.8'}
- http-parser-js@0.5.8:
- resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
-
- http-proxy-agent@4.0.1:
- resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
- engines: {node: '>= 6'}
-
http-proxy-agent@5.0.0:
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
engines: {node: '>= 6'}
@@ -10502,27 +8340,10 @@ packages:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
- http-proxy-middleware@2.0.7:
- resolution: {integrity: sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- '@types/express': ^4.17.13
- peerDependenciesMeta:
- '@types/express':
- optional: true
-
- http-proxy@1.18.1:
- resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
- engines: {node: '>=8.0.0'}
-
http-shutdown@1.2.2:
resolution: {integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- https-proxy-agent@5.0.0:
- resolution: {integrity: sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==}
- engines: {node: '>= 6'}
-
https-proxy-agent@5.0.1:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
@@ -10542,18 +8363,11 @@ packages:
resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
engines: {node: '>=14.18.0'}
- humanize-ms@1.2.1:
- resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
-
husky@8.0.3:
resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
engines: {node: '>=14'}
hasBin: true
- iconv-lite@0.4.24:
- resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
- engines: {node: '>=0.10.0'}
-
iconv-lite@0.6.3:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
@@ -10562,27 +8376,13 @@ packages:
resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
engines: {node: '>=0.10.0'}
- icss-utils@5.1.0:
- resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore-walk@4.0.1:
- resolution: {integrity: sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==}
- engines: {node: '>=10'}
-
ignore-walk@8.0.0:
resolution: {integrity: sha512-FCeMZT4NiRQGh+YkeKMtWrOmBgWjHjMJ26WQWrRQyoyzqevdaGSakUaJW5xQYmjLlUVk2qUnCjYVBax9EKKg8A==}
engines: {node: ^20.17.0 || >=22.9.0}
- ignore@5.1.9:
- resolution: {integrity: sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==}
- engines: {node: '>= 4'}
-
ignore@5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
@@ -10610,9 +8410,6 @@ packages:
immediate@3.0.6:
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
- immutable@4.3.7:
- resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==}
-
immutable@5.1.5:
resolution: {integrity: sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==}
@@ -10632,26 +8429,16 @@ packages:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
- infer-owner@1.0.4:
- resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
-
inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
- inherits@2.0.3:
- resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
-
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- ini@2.0.0:
- resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
- engines: {node: '>=10'}
-
ini@5.0.0:
resolution: {integrity: sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==}
engines: {node: ^18.17.0 || >=20.5.0}
@@ -10663,10 +8450,6 @@ packages:
injection-js@2.4.0:
resolution: {integrity: sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==}
- inquirer@8.2.0:
- resolution: {integrity: sha512-0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ==}
- engines: {node: '>=8.0.0'}
-
internal-slot@1.1.0:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
@@ -10686,17 +8469,10 @@ packages:
resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
engines: {node: '>= 12'}
- ip@1.1.9:
- resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==}
-
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- ipaddr.js@2.2.0:
- resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==}
- engines: {node: '>= 10'}
-
iron-webcrypto@1.2.1:
resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
@@ -10734,10 +8510,6 @@ packages:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
- is-builtin-module@3.2.1:
- resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
- engines: {node: '>=6'}
-
is-bun-module@2.0.0:
resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
@@ -10820,10 +8592,6 @@ 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'}
@@ -10853,10 +8621,6 @@ packages:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- is-path-cwd@2.2.0:
- resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
- engines: {node: '>=6'}
-
is-path-inside@3.0.3:
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
engines: {node: '>=8'}
@@ -10865,10 +8629,6 @@ packages:
resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==}
engines: {node: '>=12'}
- is-plain-obj@3.0.0:
- resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
- engines: {node: '>=10'}
-
is-plain-obj@4.1.0:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
@@ -10929,10 +8689,6 @@ packages:
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
engines: {node: '>= 0.4'}
- is-unicode-supported@0.1.0:
- resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
- engines: {node: '>=10'}
-
is-unicode-supported@2.1.0:
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
@@ -10974,10 +8730,6 @@ packages:
isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
- isbinaryfile@4.0.10:
- resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==}
- engines: {node: '>= 8.0.0'}
-
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
@@ -11000,10 +8752,6 @@ packages:
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
- istanbul-lib-instrument@4.0.3:
- resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==}
- engines: {node: '>=8'}
-
istanbul-lib-instrument@5.2.1:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
@@ -11016,18 +8764,10 @@ packages:
resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
engines: {node: '>=10'}
- istanbul-lib-source-maps@4.0.1:
- resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
- engines: {node: '>=10'}
-
istanbul-lib-source-maps@5.0.6:
resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==}
engines: {node: '>=10'}
- istanbul-reports@3.1.7:
- resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
- engines: {node: '>=8'}
-
istanbul-reports@3.2.0:
resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==}
engines: {node: '>=8'}
@@ -11039,20 +8779,6 @@ packages:
resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==}
engines: {node: 20 || >=22}
- jake@10.9.2:
- resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==}
- engines: {node: '>=10'}
- hasBin: true
-
- jasmine-core@3.99.1:
- resolution: {integrity: sha512-Hu1dmuoGcZ7AfyynN3LsfruwMbxMALMka+YtZeGoLuDEySVmVAPaonkNoBRIw/ectu8b9tVQCJNgp4a4knp+tg==}
-
- jasmine-core@4.0.1:
- resolution: {integrity: sha512-w+JDABxQCkxbGGxg+a2hUVZyqUS2JKngvIyLGu/xiw2ZwgsoSB0iiecLQsQORSeaKQ6iGrCyWG86RfNDuoA7Lg==}
-
- jasmine-spec-reporter@7.0.0:
- resolution: {integrity: sha512-OtC7JRasiTcjsaCBPtMO0Tl8glCejM4J4/dNuOJdA8lBjz4PmWjYQ6pzb0uzpBNAWJMDudYuj9OdXJWqM2QTJg==}
-
jest-environment-node@29.7.0:
resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -11088,10 +8814,6 @@ packages:
resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- jest-worker@27.5.1:
- resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
- engines: {node: '>= 10.13.0'}
-
jest-worker@29.7.0:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -11176,11 +8898,6 @@ packages:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
- jsesc@2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
- engines: {node: '>=4'}
- hasBin: true
-
jsesc@3.0.2:
resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
engines: {node: '>=6'}
@@ -11197,9 +8914,6 @@ packages:
json-parse-better-errors@1.0.2:
resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
- json-parse-even-better-errors@2.3.1:
- resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
-
json-parse-even-better-errors@5.0.0:
resolution: {integrity: sha512-ZF1nxZ28VhQouRWhUcVlUIN3qwSgPuswK05s/HIaoetAoE/9tngVmCHjSxmSQPav1nd+lPtTL0YZ/2AFdR/iYQ==}
engines: {node: ^20.17.0 || >=22.9.0}
@@ -11232,12 +8946,6 @@ packages:
resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- jsonc-parser@3.0.0:
- resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==}
-
- jsonc-parser@3.2.0:
- resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
-
jsonc-parser@3.3.1:
resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
@@ -11254,34 +8962,6 @@ packages:
jszip@3.10.1:
resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
- karma-chrome-launcher@3.1.1:
- resolution: {integrity: sha512-hsIglcq1vtboGPAN+DGCISCFOxW+ZVnIqhDQcCMqqCp+4dmJ0Qpq5QAjkbA0X2L9Mi6OBkHi2Srrbmm7pUKkzQ==}
-
- karma-coverage@2.1.1:
- resolution: {integrity: sha512-oxeOSBVK/jdZsiX03LhHQkO4eISSQb5GbHi6Nsw3Mw7G4u6yUgacBAftnO7q+emPBLMsrNbz1pGIrj+Jb3z17A==}
- engines: {node: '>=10.0.0'}
-
- karma-jasmine-html-reporter@1.7.0:
- resolution: {integrity: sha512-pzum1TL7j90DTE86eFt48/s12hqwQuiD+e5aXx2Dc9wDEn2LfGq6RoAxEZZjFiN0RDSCOnosEKRZWxbQ+iMpQQ==}
- peerDependencies:
- jasmine-core: '>=3.8'
- karma: '>=0.9'
- karma-jasmine: '>=1.1'
-
- karma-jasmine@4.0.2:
- resolution: {integrity: sha512-ggi84RMNQffSDmWSyyt4zxzh2CQGwsxvYYsprgyR1j8ikzIduEdOlcLvXjZGwXG/0j41KUXOWsUCBfbEHPWP9g==}
- engines: {node: '>= 10'}
- peerDependencies:
- karma: '*'
-
- karma-source-map-support@1.4.0:
- resolution: {integrity: sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==}
-
- karma@6.3.20:
- resolution: {integrity: sha512-HRNQhMuKOwKpjYlWiJP0DUrJOh+QjaI/DTaD8b9rEm4Il3tJ8MijutVZH4ts10LuUFst/CedwTS6vieCN8yTSw==}
- engines: {node: '>= 10'}
- hasBin: true
-
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
@@ -11311,18 +8991,6 @@ packages:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
engines: {node: '>= 0.6.3'}
- less-loader@10.2.0:
- resolution: {integrity: sha512-AV5KHWvCezW27GT90WATaDnfXBv99llDbtaj4bshq6DvAihMdNjaPDcUMa6EXKLRF+P2opFenJp89BXg91XLYg==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- less: ^3.5.0 || ^4.0.0
- webpack: ^5.0.0
-
- less@4.1.2:
- resolution: {integrity: sha512-EoQp/Et7OSOVu0aJknJOtlXZsnr8XE8KwuzTHOLeVSEx8pVWUICc8Q0VYRHgzyjX78nMEyC/oztWFbgyhtNfDA==}
- engines: {node: '>=6'}
- hasBin: true
-
less@4.2.0:
resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==}
engines: {node: '>=6'}
@@ -11336,14 +9004,6 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
- license-webpack-plugin@4.0.2:
- resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==}
- peerDependencies:
- webpack: '*'
- peerDependenciesMeta:
- webpack:
- optional: true
-
lie@3.3.0:
resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
@@ -11357,10 +9017,6 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- lines-and-columns@2.0.4:
- resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
linkedom@0.18.11:
resolution: {integrity: sha512-K03GU3FUlnhBAP0jPb7tN7YJl7LbjZx30Z8h6wgLXusnKF7+BEZvfEbdkN/lO9LfFzxN3S0ZAriDuJ/13dIsLA==}
@@ -11396,18 +9052,6 @@ packages:
load-bmfont@1.4.1:
resolution: {integrity: sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==}
- loader-runner@4.3.0:
- resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
- engines: {node: '>=6.11.5'}
-
- loader-utils@2.0.4:
- resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
- engines: {node: '>=8.9.0'}
-
- loader-utils@3.2.1:
- resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==}
- engines: {node: '>= 12.13.0'}
-
local-pkg@1.1.2:
resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==}
engines: {node: '>=14'}
@@ -11451,10 +9095,6 @@ packages:
lodash@4.18.1:
resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==}
- log-symbols@4.1.0:
- resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
- engines: {node: '>=10'}
-
log-symbols@7.0.1:
resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
engines: {node: '>=18'}
@@ -11467,10 +9107,6 @@ packages:
resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
engines: {node: '>=18'}
- log4js@6.9.1:
- resolution: {integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==}
- engines: {node: '>=8.0'}
-
longest-streak@3.1.0:
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
@@ -11495,25 +9131,10 @@ packages:
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- lru-cache@6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
-
- lru-cache@7.18.3:
- resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
- engines: {node: '>=12'}
-
lz-string@1.5.0:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
- magic-string@0.25.7:
- resolution: {integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==}
-
- magic-string@0.26.7:
- resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==}
- engines: {node: '>=12'}
-
magic-string@0.30.11:
resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
@@ -11530,10 +9151,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'}
@@ -11541,10 +9158,6 @@ packages:
make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- make-fetch-happen@10.2.1:
- resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
make-fetch-happen@13.0.1:
resolution: {integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -11553,10 +9166,6 @@ packages:
resolution: {integrity: sha512-uCbIa8jWWmQZt4dSnEStkVC6gdakiinAm4PiGsywIkguF0eWMdcjDz0ECYhUolFU3pFLOev9VNPCEygydXnddg==}
engines: {node: ^20.17.0 || >=22.9.0}
- make-fetch-happen@9.1.0:
- resolution: {integrity: sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==}
- engines: {node: '>= 10'}
-
makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
@@ -11647,18 +9256,10 @@ packages:
mdurl@2.0.0:
resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
- media-typer@0.3.0:
- resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
- engines: {node: '>= 0.6'}
-
media-typer@1.1.0:
resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
engines: {node: '>= 0.8'}
- memfs@3.5.3:
- resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
- engines: {node: '>= 4.0.0'}
-
memoize-one@5.2.1:
resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==}
@@ -11666,9 +9267,6 @@ packages:
resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==}
engines: {node: '>=12.13'}
- merge-descriptors@1.0.3:
- resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
-
merge-descriptors@2.0.0:
resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
engines: {node: '>=18'}
@@ -11680,10 +9278,6 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- methods@1.1.2:
- resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
- engines: {node: '>= 0.6'}
-
metro-babel-transformer@0.81.5:
resolution: {integrity: sha512-oKCQuajU5srm+ZdDcFg86pG/U8hkSjBlkyFjz380SZ4TTIiI5F+OQB830i53D8hmqmcosa4wR/pnKv8y4Q3dLw==}
engines: {node: '>=18.18'}
@@ -11878,16 +9472,6 @@ packages:
engines: {node: '>=4'}
hasBin: true
- mime@2.5.2:
- resolution: {integrity: sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==}
- engines: {node: '>=4.0.0'}
- hasBin: true
-
- mime@2.6.0:
- resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
- engines: {node: '>=4.0.0'}
- hasBin: true
-
mime@4.1.0:
resolution: {integrity: sha512-X5ju04+cAzsojXKes0B/S4tcYtFAJ6tTMuSPBEn9CPGlrWr8Fiw7qYeLT0XyH80HSoAoqWCaz+MWKh22P7G1cw==}
engines: {node: '>=16'}
@@ -11912,15 +9496,6 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- mini-css-extract-plugin@2.5.3:
- resolution: {integrity: sha512-YseMB8cs8U/KCaAGQoqYmfUuhhGW0a9p9XvWXrxVOkE3/IiISTLw4ALNt7JR5B2eYauFM+PQGSbXMDmVbR7Tfw==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
-
- minimalistic-assert@1.0.1:
- resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
-
minimatch@10.2.4:
resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
engines: {node: 18 || 20 || >=22}
@@ -11929,12 +9504,6 @@ packages:
resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==}
engines: {node: 18 || 20 || >=22}
- minimatch@3.0.5:
- resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==}
-
- minimatch@3.0.8:
- resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
-
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
@@ -11964,22 +9533,10 @@ packages:
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass-collect@1.0.2:
- resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
- engines: {node: '>= 8'}
-
minipass-collect@2.0.1:
resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
engines: {node: '>=16 || 14 >=14.17'}
- minipass-fetch@1.4.1:
- resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==}
- engines: {node: '>=8'}
-
- minipass-fetch@2.1.2:
- resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
minipass-fetch@3.0.4:
resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -11992,9 +9549,6 @@ packages:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
engines: {node: '>= 8'}
- minipass-json-stream@1.0.2:
- resolution: {integrity: sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==}
-
minipass-pipeline@1.2.4:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
engines: {node: '>=8'}
@@ -12084,16 +9638,6 @@ packages:
msgpackr@1.11.9:
resolution: {integrity: sha512-FkoAAyyA6HM8wL882EcEyFZ9s7hVADSwG9xrVx3dxxNQAtgADTrJoEWivID82Iv1zWDsv/OtbrrcZAzGzOMdNw==}
- multicast-dns-service-types@1.1.0:
- resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==}
-
- multicast-dns@6.2.3:
- resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==}
- hasBin: true
-
- mute-stream@0.0.8:
- resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
-
mute-stream@2.0.0:
resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
engines: {node: ^18.17.0 || >=20.5.0}
@@ -12114,17 +9658,9 @@ packages:
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
hasBin: true
- natural-compare-lite@1.4.0:
- resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
-
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- needle@2.9.1:
- resolution: {integrity: sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==}
- engines: {node: '>= 4.4.x'}
- hasBin: true
-
needle@3.3.1:
resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
engines: {node: '>= 4.4.x'}
@@ -12145,15 +9681,6 @@ packages:
resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==}
engines: {node: '>= 10'}
- ng-packagr@13.3.1:
- resolution: {integrity: sha512-RFB6+03qPlhsOZc0wPenkyCceUYU0kRymbO7fIZ4Uz3y7RltXeknfjWKVcN6o5o42Md/lbNabt4gViXNzahhjA==}
- engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0}
- hasBin: true
- peerDependencies:
- '@angular/compiler-cli': ^13.0.0
- tslib: ^2.3.0
- typescript: '>=4.4.0 <4.7'
-
ng-packagr@21.2.1:
resolution: {integrity: sha512-rk0aL0wWkC+FTA4wyzJIfjcUgAKMAEB19ULvP0QkAoAkzjS+3SBEf0n3MS6z7gcOW8SRU9rw1BmsouEAXD+SCw==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
@@ -12243,11 +9770,6 @@ packages:
engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
- node-gyp@8.4.1:
- resolution: {integrity: sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==}
- engines: {node: '>= 10.12.0'}
- hasBin: true
-
node-html-parser@6.1.13:
resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==}
@@ -12257,20 +9779,12 @@ packages:
node-mock-http@1.0.4:
resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==}
- node-releases@2.0.18:
- resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
-
node-releases@2.0.19:
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
node-releases@2.0.36:
resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==}
- nopt@5.0.0:
- resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
- engines: {node: '>=6'}
- hasBin: true
-
nopt@6.0.0:
resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
@@ -12295,28 +9809,14 @@ packages:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- normalize-range@0.1.2:
- resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
- engines: {node: '>=0.10.0'}
-
- npm-bundled@1.1.2:
- resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==}
-
npm-bundled@5.0.0:
resolution: {integrity: sha512-JLSpbzh6UUXIEoqPsYBvVNVmyrjVZ1fzEFbqxKkTJQkWBO3xFzFT+KDnSKQWwOQNbuWRwt5LSD6HOTLGIWzfrw==}
engines: {node: ^20.17.0 || >=22.9.0}
- npm-install-checks@4.0.0:
- resolution: {integrity: sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==}
- engines: {node: '>=10'}
-
npm-install-checks@8.0.0:
resolution: {integrity: sha512-ScAUdMpyzkbpxoNekQ3tNRdFI8SJ86wgKZSQZdUxT+bj0wVFpsEMWnkXP0twVe1gJyNF5apBWDJhhIbgrIViRA==}
engines: {node: ^20.17.0 || >=22.9.0}
- npm-normalize-package-bin@1.0.1:
- resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==}
-
npm-normalize-package-bin@5.0.0:
resolution: {integrity: sha512-CJi3OS4JLsNMmr2u07OJlhcrPxCeOeP/4xq67aWNai6TNWWbTrlNDgl8NcFKVlcBKp18GPj+EzbNIgrBfZhsag==}
engines: {node: ^20.17.0 || >=22.9.0}
@@ -12325,30 +9825,14 @@ packages:
resolution: {integrity: sha512-IciCE3SY3uE84Ld8WZU23gAPPV9rIYod4F+rc+vJ7h7cwAJt9Vk6TVsK60ry7Uj3SRS3bqRRIGuTp9YVlk6WNA==}
engines: {node: ^20.17.0 || >=22.9.0}
- npm-package-arg@8.1.5:
- resolution: {integrity: sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==}
- engines: {node: '>=10'}
-
npm-packlist@10.0.4:
resolution: {integrity: sha512-uMW73iajD8hiH4ZBxEV3HC+eTnppIqwakjOYuvgddnalIw2lJguKviK1pcUJDlIWm1wSJkchpDZDSVVsZEYRng==}
engines: {node: ^20.17.0 || >=22.9.0}
- npm-packlist@3.0.0:
- resolution: {integrity: sha512-L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ==}
- engines: {node: '>=10'}
- hasBin: true
-
npm-pick-manifest@11.0.3:
resolution: {integrity: sha512-buzyCfeoGY/PxKqmBqn1IUJrZnUi1VVJTdSSRPGI60tJdUhUoSQFhs0zycJokDdOznQentgrpf8LayEHyyYlqQ==}
engines: {node: ^20.17.0 || >=22.9.0}
- npm-pick-manifest@6.1.1:
- resolution: {integrity: sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==}
-
- npm-registry-fetch@12.0.2:
- resolution: {integrity: sha512-Df5QT3RaJnXYuOwtXBXS9BWs+tHH2olvkCLh6jcR/b/u3DvPMlp3J0TvvYwplPKxHMOwfg287PYih9QqaVFoKA==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16}
-
npm-registry-fetch@19.1.1:
resolution: {integrity: sha512-TakBap6OM1w0H73VZVDf44iFXsOS3h+L4wVMXmbWOQroZgFhMch0juN6XSzBNlD965yIKvWg2dfu7NSiaYLxtw==}
engines: {node: ^20.17.0 || >=22.9.0}
@@ -12361,11 +9845,6 @@ packages:
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- npmlog@6.0.2:
- resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This package is no longer supported.
-
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
@@ -12385,22 +9864,6 @@ packages:
nwsapi@2.2.7:
resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==}
- nx@13.1.3:
- resolution: {integrity: sha512-clM0NQhQKYkqcNz2E3uYRMLwhp2L/9dBhJhQi9XBX4IAyA2gWAomhRIlLm5Xxg3g4h1xwSpP3eJ5t89VikY8Pw==}
- hasBin: true
-
- nx@15.9.3:
- resolution: {integrity: sha512-GLwbykfTABc7/UZjQEEnV1bQbTVC53W+Zj4xWY640/45I4iZf/TUqKMBCgtLZ9v89gEsKOM4zsx55CqHT3bekA==}
- hasBin: true
- peerDependencies:
- '@swc-node/register': ^1.4.2
- '@swc/core': ^1.2.173
- peerDependenciesMeta:
- '@swc-node/register':
- optional: true
- '@swc/core':
- optional: true
-
ob1@0.81.0:
resolution: {integrity: sha512-6Cvrkxt1tqaRdWqTAMcVYEiO5i1xcF9y7t06nFdjFqkfPsEloCf8WwhXdwBpNUkVYSQlSGS7cDgVQR86miBfBQ==}
engines: {node: '>=18.18'}
@@ -12445,9 +9908,6 @@ packages:
resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
engines: {node: '>= 0.4'}
- obuf@1.1.2:
- resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
-
obug@2.1.1:
resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
@@ -12468,10 +9928,6 @@ packages:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
- on-headers@1.0.2:
- resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
- engines: {node: '>= 0.8'}
-
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
@@ -12510,10 +9966,6 @@ packages:
resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
engines: {node: '>=8'}
- open@8.4.0:
- resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==}
- engines: {node: '>=12'}
-
open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
@@ -12534,10 +9986,6 @@ 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@9.3.0:
resolution: {integrity: sha512-lBX72MWFduWEf7v7uWf5DHp9Jn5BI8bNPGuFgtXMmr2uDz2Gz2749y3am3agSDdkhHPHYmmxEGSKH85ZLGzgXw==}
engines: {node: '>=20'}
@@ -12545,10 +9993,6 @@ packages:
ordered-binary@1.6.1:
resolution: {integrity: sha512-QkCdPooczexPLiXIrbVOPYkR3VO3T6v2OyKRkR1Xbhpy7/LAVXwahnRCgRp78Oe/Ehf0C/HATAxfSr6eA1oX+w==}
- os-tmpdir@1.0.2:
- resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
- engines: {node: '>=0.10.0'}
-
oslllo-potrace@3.0.0:
resolution: {integrity: sha512-ruH77xpa31SGnXuBJB54XYmlvZnsHlfrUgLFiEK6NxvTgsEZ6IAlfVxOkGnzhJq/73H5Nz9feoa4tLkJRsxYAg==}
@@ -12571,9 +10015,6 @@ packages:
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
engines: {node: '>= 0.4'}
- oxc-resolver@1.12.0:
- resolution: {integrity: sha512-YlaCIArvWNKCWZFRrMjhh2l5jK80eXnpYP+bhRc1J/7cW3TiyEY0ngJo73o/5n8hA3+4yLdTmXLNTQ3Ncz50LQ==}
-
p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
@@ -12614,10 +10055,6 @@ packages:
resolution: {integrity: sha512-dWgLE8AH0HjQ9fe74pUkKkvzzYT18Inp4zra3lKHnnwqGvcfcUBrvF2EAVX+envufDNBOzpPq/IBUONDbI7+3g==}
engines: {node: '>=20'}
- p-retry@4.6.2:
- resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
- engines: {node: '>=8'}
-
p-timeout@7.0.1:
resolution: {integrity: sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==}
engines: {node: '>=20'}
@@ -12636,11 +10073,6 @@ packages:
resolution: {integrity: sha512-gFL35q7kbE/zBaPA3UKhp2vSzcPYx2ecbYuwv1ucE9Il6IIgBDweBlH8D68UFGZic2MkllKa2KHCfC1IQBQUYA==}
engines: {node: '>=12'}
- pacote@12.0.3:
- resolution: {integrity: sha512-CdYEl03JDrRO3x18uHjBYA9TyoW8gy+ThVcypcDkxPtKlw76e4ejhYB6i9lJ+/cebbjpqPW/CijjqxwDTts8Ow==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16}
- hasBin: true
-
pacote@21.3.1:
resolution: {integrity: sha512-O0EDXi85LF4AzdjG74GUwEArhdvawi/YOHcsW6IijKNj7wm8IvEWNF5GnfuxNpQ/ZpO3L37+v8hqdVh8GgWYhg==}
engines: {node: ^20.17.0 || >=22.9.0}
@@ -12669,10 +10101,6 @@ packages:
resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
engines: {node: '>=4'}
- parse-json@5.2.0:
- resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
- engines: {node: '>=8'}
-
parse-latin@7.0.0:
resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==}
@@ -12680,30 +10108,18 @@ packages:
resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
engines: {node: '>= 0.10'}
- parse5-html-rewriting-stream@6.0.1:
- resolution: {integrity: sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==}
-
parse5-html-rewriting-stream@8.0.0:
resolution: {integrity: sha512-wzh11mj8KKkno1pZEu+l2EVeWsuKDfR5KNWZOTsslfUX8lPDZx77m9T0kIoAVkFtD1nx6YF8oh4BnPHvxMtNMw==}
- parse5-htmlparser2-tree-adapter@6.0.1:
- resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
-
parse5-htmlparser2-tree-adapter@7.1.0:
resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==}
parse5-parser-stream@7.1.2:
resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==}
- parse5-sax-parser@6.0.1:
- resolution: {integrity: sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==}
-
parse5-sax-parser@8.0.0:
resolution: {integrity: sha512-/dQ8UzHZwnrzs3EvDj6IkKrD/jIZyTlB+8XrHJvcjNgRdmWruNdN9i9RK/JtxakmlUdPwKubKPTCqvbTgzGhrw==}
- parse5@6.0.1:
- resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
-
parse5@7.1.2:
resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
@@ -12754,9 +10170,6 @@ packages:
resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
engines: {node: 18 || 20 || >=22}
- path-to-regexp@0.1.12:
- resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
-
path-to-regexp@6.3.0:
resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
@@ -12783,9 +10196,6 @@ packages:
perfect-debounce@2.1.0:
resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
- periscopic@3.1.0:
- resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
-
phin@2.9.3:
resolution: {integrity: sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==}
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
@@ -12813,10 +10223,6 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
- pify@2.3.0:
- resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
- engines: {node: '>=0.10.0'}
-
pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
@@ -12829,9 +10235,6 @@ packages:
resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
engines: {node: '>= 6'}
- piscina@3.2.0:
- resolution: {integrity: sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==}
-
piscina@4.1.0:
resolution: {integrity: sha512-sjbLMi3sokkie+qmtZpkfMCUJTpbxJm/wvaPzU28vmYSsTSW8xk9JcFUsbqGJdtPpIQ9tuj+iDcTtgZjwnOSig==}
@@ -12851,10 +10254,6 @@ packages:
resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
engines: {node: '>=6'}
- 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'}
@@ -12887,262 +10286,19 @@ packages:
resolution: {integrity: sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow==}
engines: {node: '>=14.19.0'}
- portfinder@1.0.32:
- resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
- engines: {node: '>= 0.12.0'}
-
possible-typed-array-names@1.1.0:
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
engines: {node: '>= 0.4'}
- postcss-attribute-case-insensitive@5.0.2:
- resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-clamp@4.1.0:
- resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==}
- engines: {node: '>=7.6.0'}
- peerDependencies:
- postcss: ^8.4.6
-
- postcss-color-functional-notation@4.2.4:
- resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-color-hex-alpha@8.0.4:
- resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.4
-
- postcss-color-rebeccapurple@7.1.1:
- resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-custom-media@8.0.2:
- resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.3
-
- postcss-custom-properties@12.1.11:
- resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-custom-selectors@6.0.3:
- resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.3
-
- postcss-dir-pseudo-class@6.0.5:
- resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-double-position-gradients@3.1.2:
- resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-env-function@4.0.6:
- resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.4
-
- postcss-focus-visible@6.0.4:
- resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.4
-
- postcss-focus-within@5.0.4:
- resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.4
-
- postcss-font-variant@5.0.0:
- resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-gap-properties@3.0.5:
- resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-image-set-function@4.0.7:
- resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-import@14.0.2:
- resolution: {integrity: sha512-BJ2pVK4KhUyMcqjuKs9RijV5tatNzNa73e/32aBVE/ejYPe37iH+6vAu9WvqUkB5OAYgLHzbSvzHnorybJCm9g==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- postcss: ^8.0.0
-
- postcss-initial@4.0.1:
- resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==}
- peerDependencies:
- postcss: ^8.0.0
-
- postcss-lab-function@4.2.1:
- resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-loader@6.2.1:
- resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- postcss: ^7.0.0 || ^8.0.1
- webpack: ^5.0.0
-
- postcss-logical@5.0.4:
- resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.4
-
- postcss-media-minmax@5.0.0:
- resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- postcss: ^8.1.0
-
postcss-media-query-parser@0.2.3:
resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
- postcss-modules-extract-imports@3.1.0:
- resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-modules-local-by-default@4.0.5:
- resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-modules-scope@3.2.0:
- resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-modules-values@4.0.0:
- resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-nesting@10.2.0:
- resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-opacity-percentage@1.1.3:
- resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-overflow-shorthand@3.0.4:
- resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-page-break@3.0.4:
- resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
- peerDependencies:
- postcss: ^8
-
- postcss-place@7.0.5:
- resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-preset-env@7.2.3:
- resolution: {integrity: sha512-Ok0DhLfwrcNGrBn8sNdy1uZqWRk/9FId0GiQ39W4ILop5GHtjJs8bu1MY9isPwHInpVEPWjb4CEcEaSbBLpfwA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.4
-
- postcss-preset-env@7.8.3:
- resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-pseudo-class-any-link@7.1.6:
- resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-replace-overflow-wrap@4.0.0:
- resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
- peerDependencies:
- postcss: ^8.0.3
-
postcss-safe-parser@7.0.1:
resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==}
engines: {node: '>=18.0'}
peerDependencies:
postcss: ^8.4.31
- postcss-selector-not@5.0.0:
- resolution: {integrity: sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-selector-not@6.0.1:
- resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.2
-
- postcss-selector-parser@6.1.2:
- resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
- engines: {node: '>=4'}
-
- postcss-url@10.1.3:
- resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==}
- engines: {node: '>=10'}
- peerDependencies:
- postcss: ^8.0.0
-
- postcss-value-parser@4.2.0:
- resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
-
- postcss@8.4.41:
- resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==}
- engines: {node: ^10 || ^12 || >=14}
-
- postcss@8.4.5:
- resolution: {integrity: sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==}
- engines: {node: ^10 || ^12 || >=14}
-
postcss@8.5.6:
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
@@ -13190,10 +10346,6 @@ packages:
engines: {node: '>=14'}
hasBin: true
- pretty-bytes@5.6.0:
- resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
- engines: {node: '>=6'}
-
pretty-bytes@7.1.0:
resolution: {integrity: sha512-nODzvTiYVRGRqAOvE84Vk5JDPyyxsVk0/fbA/bq7RqlnhksGpset09XTxbpvLTIjoaF7K8Z8DG8yHtKGTPSYRw==}
engines: {node: '>=20'}
@@ -13225,14 +10377,6 @@ packages:
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
engines: {node: '>= 0.6.0'}
- promise-inflight@1.0.1:
- resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
- peerDependencies:
- bluebird: '*'
- peerDependenciesMeta:
- bluebird:
- optional: true
-
promise-retry@2.0.1:
resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
engines: {node: '>=10'}
@@ -13263,21 +10407,10 @@ packages:
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
engines: {node: '>=6'}
- punycode@1.4.1:
- resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
-
punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- qjobs@1.2.0:
- resolution: {integrity: sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==}
- engines: {node: '>=0.9'}
-
- qs@6.13.0:
- resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
- engines: {node: '>=0.6'}
-
qs@6.15.0:
resolution: {integrity: sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==}
engines: {node: '>=0.6'}
@@ -13297,17 +10430,10 @@ packages:
radix3@1.1.2:
resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
- randombytes@2.1.0:
- resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
-
range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- raw-body@2.5.2:
- resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
- engines: {node: '>= 0.8'}
-
raw-body@3.0.2:
resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==}
engines: {node: '>= 0.10'}
@@ -13367,13 +10493,6 @@ packages:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
- read-cache@1.0.0:
- resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
-
- read-package-json-fast@2.0.3:
- resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==}
- engines: {node: '>=10'}
-
readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
@@ -13423,9 +10542,6 @@ packages:
resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==}
engines: {node: '>=4'}
- reflect-metadata@0.1.14:
- resolution: {integrity: sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==}
-
reflect-metadata@0.2.2:
resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
@@ -13447,18 +10563,9 @@ packages:
regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
- regenerator-runtime@0.13.9:
- resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
-
regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
- regenerator-transform@0.15.2:
- resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
-
- regex-parser@2.3.0:
- resolution: {integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==}
-
regex-recursion@6.0.2:
resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==}
@@ -13475,10 +10582,6 @@ packages:
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
- regexpp@3.2.0:
- resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
- engines: {node: '>=8'}
-
regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
@@ -13562,14 +10665,6 @@ packages:
resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
- resolve-url-loader@5.0.0:
- resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==}
- engines: {node: '>=12'}
-
- resolve@1.22.0:
- resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==}
- hasBin: true
-
resolve@1.22.10:
resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
engines: {node: '>= 0.4'}
@@ -13580,10 +10675,6 @@ packages:
engines: {node: '>= 0.4'}
hasBin: true
- restore-cursor@3.1.0:
- resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
- engines: {node: '>=8'}
-
restore-cursor@4.0.0:
resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -13624,11 +10715,6 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rimraf@2.7.1:
- resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
- deprecated: Rimraf versions prior to v4 are no longer supported
- hasBin: true
-
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -13675,16 +10761,6 @@ packages:
peerDependencies:
rollup: 2.x || 3.x || 4.x
- rollup-plugin-sourcemaps@0.6.3:
- resolution: {integrity: sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- '@types/node': '>=10.0.0'
- rollup: '>=0.31.2'
- peerDependenciesMeta:
- '@types/node':
- optional: true
-
rollup-plugin-summary@3.0.1:
resolution: {integrity: sha512-SSoMQ5dCTD+Xq9E6LwHp7DJOnTZ1Dxe/EW0VJDrim2CAVVAGNmuj+1Qg8u/OyUjWqAgoqt4mXDAearjXVpxGSg==}
engines: {node: '>=20.9.0'}
@@ -13717,11 +10793,6 @@ packages:
rollup:
optional: true
- rollup@2.79.2:
- resolution: {integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==}
- engines: {node: '>=10.0.0'}
- hasBin: true
-
rollup@4.59.0:
resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
@@ -13745,25 +10816,9 @@ packages:
resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
engines: {node: '>=18'}
- run-async@2.4.1:
- resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
- engines: {node: '>=0.12.0'}
-
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- rxjs-for-await@0.0.2:
- resolution: {integrity: sha512-IJ8R/ZCFMHOcDIqoABs82jal00VrZx8Xkgfe7TOKoaRPAW5nH/VFlG23bXpeGdrmtqI9UobFPgUKgCuFc7Lncw==}
- peerDependencies:
- rxjs: ^6.0.0
-
- rxjs@6.6.7:
- resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
- engines: {npm: '>=2.0.0'}
-
- rxjs@7.5.7:
- resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==}
-
rxjs@7.8.2:
resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
@@ -13795,9 +10850,6 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sander@0.5.1:
- resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==}
-
sandpack-vue3@3.1.12:
resolution: {integrity: sha512-3iaWauAbqBsIc1UtVkDeSI617ACkOlH9gATgy705DcYqh8EGFLqn94KvFw3JPfhBHl0H5PSVcHITXYbhUd6Opg==}
engines: {node: '>=16'}
@@ -13810,32 +10862,6 @@ packages:
sass-formatter@0.7.9:
resolution: {integrity: sha512-CWZ8XiSim+fJVG0cFLStwDvft1VI7uvXdCNJYXhDvowiv+DsbD1nXLiQ4zrE5UBvj5DWZJ93cwN0NX5PMsr1Pw==}
- sass-loader@12.4.0:
- resolution: {integrity: sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- fibers: '>= 3.1.0'
- node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
- sass: ^1.3.0
- webpack: ^5.0.0
- peerDependenciesMeta:
- fibers:
- optional: true
- node-sass:
- optional: true
- sass:
- optional: true
-
- sass@1.49.9:
- resolution: {integrity: sha512-YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A==}
- engines: {node: '>=12.0.0'}
- hasBin: true
-
- sass@1.77.8:
- resolution: {integrity: sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==}
- engines: {node: '>=14.0.0'}
- hasBin: true
-
sass@1.97.3:
resolution: {integrity: sha512-fDz1zJpd5GycprAbu4Q2PV/RprsRtKC/0z82z0JLgdytmcq0+ujJbJ/09bPGDxCLkKY3Np5cRAOcWiVkLXJURg==}
engines: {node: '>=14.0.0'}
@@ -13866,22 +10892,6 @@ packages:
scheduler@0.24.0-canary-efb381bbf-20230505:
resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==}
- schema-utils@2.7.1:
- resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
- engines: {node: '>= 8.9.0'}
-
- schema-utils@3.3.0:
- resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
- engines: {node: '>= 10.13.0'}
-
- schema-utils@4.2.0:
- resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
- engines: {node: '>= 12.13.0'}
-
- schema-utils@4.3.0:
- resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
- engines: {node: '>= 10.13.0'}
-
scule@1.3.0:
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
@@ -13892,9 +10902,6 @@ packages:
resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
engines: {node: '>=4'}
- select-hose@2.0.0:
- resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
-
selfsigned@2.4.1:
resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
engines: {node: '>=10'}
@@ -13914,10 +10921,6 @@ packages:
engines: {node: '>=10'}
hasBin: true
- send@0.19.0:
- resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
- engines: {node: '>= 0.8.0'}
-
send@0.19.2:
resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==}
engines: {node: '>= 0.8.0'}
@@ -13930,9 +10933,6 @@ packages:
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
engines: {node: '>=0.10.0'}
- serialize-javascript@6.0.2:
- resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
-
serialize-javascript@7.0.5:
resolution: {integrity: sha512-F4LcB0UqUl1zErq+1nYEEzSHJnIwb3AF2XWB94b+afhrekOUijwooAYqFyRbjYkm2PAKBabx6oYv/xDxNi8IBw==}
engines: {node: '>=20.0.0'}
@@ -13947,17 +10947,9 @@ packages:
resolution: {integrity: sha512-RbcPH1n5cfwKrru7v7+zrZvjLurgHhGyso3HTyGtRivGWgYjbOmGuivCQaORNELjNONoK35nj28EoWul9sb1zQ==}
engines: {node: '>=10'}
- serve-index@1.9.1:
- resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
- engines: {node: '>= 0.8.0'}
-
serve-placeholder@2.0.2:
resolution: {integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==}
- serve-static@1.16.2:
- resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
- engines: {node: '>= 0.8.0'}
-
serve-static@1.16.3:
resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==}
engines: {node: '>= 0.8.0'}
@@ -13966,9 +10958,6 @@ packages:
resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==}
engines: {node: '>= 18'}
- set-blocking@2.0.0:
- resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
-
set-function-length@1.2.2:
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
engines: {node: '>= 0.4'}
@@ -13984,9 +10973,6 @@ packages:
setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
- setprototypeof@1.1.0:
- resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
-
setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
@@ -14071,10 +11057,6 @@ packages:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- slash@4.0.0:
- resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
- engines: {node: '>=12'}
-
slash@5.1.0:
resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
engines: {node: '>=14.16'}
@@ -14103,28 +11085,6 @@ packages:
resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==}
engines: {node: '>= 18'}
- socket.io-adapter@2.5.5:
- resolution: {integrity: sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==}
-
- socket.io-parser@4.2.4:
- resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==}
- engines: {node: '>=10.0.0'}
-
- socket.io@4.7.5:
- resolution: {integrity: sha512-DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA==}
- engines: {node: '>=10.2.0'}
-
- sockjs@0.3.24:
- resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
-
- socks-proxy-agent@6.2.1:
- resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==}
- engines: {node: '>= 10'}
-
- socks-proxy-agent@7.0.0:
- resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==}
- engines: {node: '>= 10'}
-
socks-proxy-agent@8.0.4:
resolution: {integrity: sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==}
engines: {node: '>= 14'}
@@ -14141,20 +11101,10 @@ packages:
peerDependencies:
solid-js: ^1.3
- sorcery@0.11.0:
- resolution: {integrity: sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==}
- hasBin: true
-
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
- source-map-loader@3.0.1:
- resolution: {integrity: sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
-
source-map-resolve@0.6.0:
resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==}
deprecated: See https://github.com/lydell/source-map-resolve#deprecated
@@ -14170,10 +11120,6 @@ packages:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- source-map@0.7.3:
- resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==}
- engines: {node: '>= 8'}
-
source-map@0.7.4:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
@@ -14182,10 +11128,6 @@ packages:
resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
engines: {node: '>= 12'}
- sourcemap-codec@1.4.8:
- resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
- deprecated: Please use @jridgewell/sourcemap-codec instead
-
space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
@@ -14213,13 +11155,6 @@ packages:
spdx-satisfies@5.0.1:
resolution: {integrity: sha512-Nwor6W6gzFp8XX4neaKQ7ChV4wmpSh2sSDemMFSzHxpTw460jxFYeOn+jq4ybnSSw/5sc3pjka9MQPouksQNpw==}
- spdy-transport@3.0.0:
- resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
-
- spdy@4.0.2:
- resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
- engines: {node: '>=6.0.0'}
-
speakingurl@14.0.1:
resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
engines: {node: '>=0.10.0'}
@@ -14238,14 +11173,6 @@ packages:
resolution: {integrity: sha512-QUiRf1+u9wPTL/76GTYlKttDEBWV1ga9ZXW8BG6kfdeyyM8LGPix9gROyg9V2+P0xNyF3X2Go526xKFdMZrHSQ==}
engines: {node: ^20.17.0 || >=22.9.0}
- ssri@8.0.1:
- resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
- engines: {node: '>= 8'}
-
- ssri@9.0.1:
- resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
stable-hash@0.0.5:
resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==}
@@ -14277,10 +11204,6 @@ packages:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
- statuses@2.0.1:
- resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
- engines: {node: '>= 0.8'}
-
statuses@2.0.2:
resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
engines: {node: '>= 0.8'}
@@ -14302,10 +11225,6 @@ packages:
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
engines: {node: '>= 0.4'}
- streamroller@3.1.5:
- resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==}
- engines: {node: '>=8.0'}
-
streamx@2.25.0:
resolution: {integrity: sha512-0nQuG6jf1w+wddNEEXCF4nTg3LtufWINB5eFEN+5TNZW7KWJp6x87+JFL43vaAUPyCfH1wID+mNVyW6OHtFamg==}
@@ -14392,11 +11311,6 @@ packages:
strip-literal@3.1.0:
resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
- strong-log-transformer@2.1.0:
- resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==}
- engines: {node: '>=4'}
- hasBin: true
-
strtok3@6.3.0:
resolution: {integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==}
engines: {node: '>=10'}
@@ -14404,13 +11318,6 @@ packages:
style-mod@4.1.3:
resolution: {integrity: sha512-i/n8VsZydrugj3Iuzll8+x/00GH2vnYsk1eomD8QiRrSAeW6ItbCQDtfXCeJHd0iwiNagqjQkvpvREEPtW3IoQ==}
- stylus-loader@6.2.0:
- resolution: {integrity: sha512-5dsDc7qVQGRoc6pvCL20eYgRUxepZ9FpeK28XhdXaIPP6kXr6nI1zAAKFQgP5OBkOfKaURp4WUpJzspg1f01Gg==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- stylus: '>=0.52.4'
- webpack: ^5.0.0
-
stylus@0.56.0:
resolution: {integrity: sha512-Ev3fOb4bUElwWu4F9P9WjnnaSpc8XB9OFHSFZSKMFL1CE1oM+oFXWEgAqPmmZIyhBihuqIQlFsVTypiiS9RxeA==}
hasBin: true
@@ -14443,12 +11350,6 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- svelte-check@3.8.6:
- resolution: {integrity: sha512-ij0u4Lw/sOTREP13BdWZjiXD/BlHE6/e2e34XzmVmsp5IN4kVa3PWP65NM32JAgwjZlwBg/+JtiNV1MM8khu0Q==}
- hasBin: true
- peerDependencies:
- svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
-
svelte-check@4.3.4:
resolution: {integrity: sha512-DVWvxhBrDsd+0hHWKfjP99lsSXASeOhHJYyuKOFYJcP7ThfSCKgjVarE8XfuMWpS5JV3AlDf+iK1YGGo2TACdw==}
engines: {node: '>= 18.0.0'}
@@ -14457,49 +11358,6 @@ packages:
svelte: ^4.0.0 || ^5.0.0-next.0
typescript: '>=5.0.0'
- svelte-hmr@0.15.3:
- resolution: {integrity: sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==}
- engines: {node: ^12.20 || ^14.13.1 || >= 16}
- peerDependencies:
- svelte: ^3.19.0 || ^4.0.0
-
- svelte-preprocess@5.1.4:
- resolution: {integrity: sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==}
- engines: {node: '>= 16.0.0'}
- peerDependencies:
- '@babel/core': ^7.10.2
- coffeescript: ^2.5.1
- less: ^3.11.3 || ^4.0.0
- postcss: ^7 || ^8
- postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
- pug: ^3.0.0
- sass: ^1.26.8
- stylus: ^0.55.0
- sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0
- svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
- typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- coffeescript:
- optional: true
- less:
- optional: true
- postcss:
- optional: true
- postcss-load-config:
- optional: true
- pug:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- typescript:
- optional: true
-
svelte-preprocess@6.0.3:
resolution: {integrity: sha512-PLG2k05qHdhmRG7zR/dyo5qKvakhm8IJ+hD2eFRQmMLHp7X3eJnjeupUtvuRpbNiF31RjVw45W+abDwHEmP5OA==}
engines: {node: '>= 18.0.0'}
@@ -14543,10 +11401,6 @@ packages:
svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0
typescript: ^4.9.4 || ^5.0.0
- svelte@4.2.20:
- resolution: {integrity: sha512-eeEgGc2DtiUil5ANdtd8vPwt9AgaMdnuUFnPft9F5oMvU/FHu5IHFic+p1dR/UOB7XU2mX2yHW+NcTch4DCh5Q==}
- engines: {node: '>=16'}
-
svelte@5.43.14:
resolution: {integrity: sha512-pHeUrp1A5S6RGaXhJB7PtYjL1VVjbVrJ2EfuAoPu9/1LeoMaJa/pcdCsCSb0gS4eUHAHnhCbUDxORZyvGK6kOQ==}
engines: {node: '>=18'}
@@ -14603,10 +11457,6 @@ packages:
'@types/svg2ttf':
optional: true
- symbol-observable@4.0.0:
- resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==}
- engines: {node: '>=0.10'}
-
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
@@ -14617,14 +11467,6 @@ packages:
resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==}
engines: {node: '>=20'}
- tapable@2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
- engines: {node: '>=6'}
-
- tar-stream@2.2.0:
- resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
- engines: {node: '>=6'}
-
tar-stream@3.2.0:
resolution: {integrity: sha512-ojzvCvVaNp6aOTFmG7jaRD0meowIAuPc3cMMhSgKiVWws1GyHbGd/xvnyuRKcKlMpt3qvxx6r0hreCNITP9hIg==}
@@ -14648,27 +11490,6 @@ packages:
resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
engines: {node: '>=6.0.0'}
- terser-webpack-plugin@5.3.14:
- resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- '@swc/core': '*'
- esbuild: '*'
- uglify-js: '*'
- webpack: ^5.1.0
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- esbuild:
- optional: true
- uglify-js:
- optional: true
-
- terser@5.14.2:
- resolution: {integrity: sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==}
- engines: {node: '>=10'}
- hasBin: true
-
terser@5.39.2:
resolution: {integrity: sha512-yEPUmWve+VA78bI71BW70Dh0TuV4HHd+I5SHOAfS1+QBOmvmCiiffgjR8ryyEd3KIfvPGFqoADt8LdQ6XpXIvg==}
engines: {node: '>=10'}
@@ -14706,12 +11527,6 @@ packages:
through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
- through@2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
-
- thunky@1.1.0:
- resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
-
timm@1.7.1:
resolution: {integrity: sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==}
@@ -14762,18 +11577,6 @@ packages:
resolution: {integrity: sha512-I4FZcVFcqCRuT0ph6dCDpPuO4Xgzvh+spkcTr1gK7peIvxWauoloVO0vuy1FQnijT63ss6AsHB6+OIM4aXHbPg==}
hasBin: true
- tmp@0.0.33:
- resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
- engines: {node: '>=0.6.0'}
-
- tmp@0.2.1:
- resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==}
- engines: {node: '>=8.17.0'}
-
- tmp@0.2.3:
- resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
- engines: {node: '>=14.14'}
-
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
@@ -14822,10 +11625,6 @@ packages:
transformation-matrix@3.0.0:
resolution: {integrity: sha512-C6NlNnD6T8JqDeY4BpGznuve4d8/JlLDZLcJbnnx7gQKoyk01+uk2XYVFjBGqvNsVxJUpUwb3WZpjpdPr+05FQ==}
- tree-kill@1.2.2:
- resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
- hasBin: true
-
trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
@@ -14874,25 +11673,9 @@ packages:
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
- tsconfig-paths@4.2.0:
- resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
- engines: {node: '>=6'}
-
- tslib@1.14.1:
- resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
-
- tslib@2.3.1:
- resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==}
-
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- tsutils@3.21.0:
- resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
- engines: {node: '>= 6'}
- peerDependencies:
- typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
-
ttf2eot@3.1.0:
resolution: {integrity: sha512-aHTbcYosNHVqb2Qtt9Xfta77ae/5y0VfdwNLUS6sGBeGr22cX2JDMo/i5h3uuOf+FAD3akYOr17+fYd5NK8aXw==}
hasBin: true
@@ -14926,10 +11709,6 @@ packages:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
- type-fest@0.21.3:
- resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
- engines: {node: '>=10'}
-
type-fest@0.7.1:
resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
engines: {node: '>=8'}
@@ -14946,10 +11725,6 @@ packages:
resolution: {integrity: sha512-8ZiHFm91orbSAe2PSAiSVBVko18pbhbiB3U9GglSzF/zCGkR+rxpHx6sEMCUm4kxY4LjDIUGgCfUMtwfZfjfUA==}
engines: {node: '>=20'}
- type-is@1.6.18:
- resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
- engines: {node: '>= 0.6'}
-
type-is@2.0.1:
resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==}
engines: {node: '>= 0.6'}
@@ -14970,9 +11745,6 @@ packages:
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
engines: {node: '>= 0.4'}
- typed-assert@1.0.9:
- resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==}
-
typescript-eslint@8.57.1:
resolution: {integrity: sha512-fLvZWf+cAGw3tqMCYzGIU6yR8K+Y9NT2z23RwOjlNFF2HwSB3KhdEFI5lSBv8tNmFkkBShSjsCjzx1vahZfISA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -14980,19 +11752,11 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- typescript@4.6.4:
- resolution: {integrity: sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==}
- engines: {node: '>=4.2.0'}
- hasBin: true
-
typescript@5.9.3:
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
engines: {node: '>=14.17'}
hasBin: true
- ua-parser-js@0.7.38:
- resolution: {integrity: sha512-fYmIy7fKTSFAhG3fuPlubeGaMoAd6r0rSnfEsO5nEY55i26KSLt9EH7PLQiiqPUhNqYIJvSkTy1oArIcXAbPbA==}
-
uc.micro@2.1.0:
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
@@ -15082,24 +11846,10 @@ packages:
oxc-parser:
optional: true
- unique-filename@1.1.1:
- resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
-
- unique-filename@2.0.1:
- resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
unique-filename@3.0.0:
resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- unique-slug@2.0.2:
- resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==}
-
- unique-slug@3.0.0:
- resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
unique-slug@4.0.0:
resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -15248,12 +11998,6 @@ packages:
unwasm@0.5.3:
resolution: {integrity: sha512-keBgTSfp3r6+s9ZcSma+0chwxQdmLbB5+dAD9vjtB21UTMYuKAxHXCU1K2CbCtnP09EaWeRvACnXk0EJtUx+hw==}
- update-browserslist-db@1.1.1:
- resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
-
update-browserslist-db@1.1.3:
resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
hasBin: true
@@ -15285,20 +12029,9 @@ packages:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
- uuid@8.3.2:
- resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
- deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).
- hasBin: true
-
v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
- v8-compile-cache@2.3.0:
- resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
-
- validate-npm-package-name@3.0.0:
- resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==}
-
validate-npm-package-name@7.0.2:
resolution: {integrity: sha512-hVDIBwsRruT73PbK7uP5ebUt+ezEtCmzZz3F59BSr2F6OVFnJ/6h8liuvdLrQ88Xmnk6/+xGGuq+pG9WwTuy3A==}
engines: {node: ^20.17.0 || >=22.9.0}
@@ -15486,14 +12219,6 @@ packages:
yaml:
optional: true
- vitefu@0.2.5:
- resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
- peerDependencies:
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0
- peerDependenciesMeta:
- vite:
- optional: true
-
vitefu@1.0.5:
resolution: {integrity: sha512-h4Vflt9gxODPFNGPwp4zAMZRpZR7eslzwH2c5hn5kNZ5rhnKyRJ50U+yGCdc2IRaBs8O4haIgLNGrV5CrpMsCA==}
peerDependencies:
@@ -15617,10 +12342,6 @@ packages:
vlq@1.0.1:
resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
- void-elements@2.0.1:
- resolution: {integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==}
- engines: {node: '>=0.10.0'}
-
vscode-languageserver-textdocument@1.0.12:
resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
@@ -15666,20 +12387,10 @@ packages:
warn-once@0.1.1:
resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==}
- watchpack@2.4.2:
- resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
- engines: {node: '>=10.13.0'}
-
watchpack@2.5.1:
resolution: {integrity: sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==}
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==}
@@ -15701,62 +12412,9 @@ packages:
resolution: {integrity: sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==}
engines: {node: '>=20'}
- webpack-dev-middleware@5.3.4:
- resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
-
- webpack-dev-server@4.7.3:
- resolution: {integrity: sha512-mlxq2AsIw2ag016nixkzUkdyOE8ST2GTy34uKSABp1c4nhjZvH90D5ZRR+UOLSsG4Z3TFahAi72a3ymRtfRm+Q==}
- engines: {node: '>= 12.13.0'}
- hasBin: true
- peerDependencies:
- webpack: ^4.37.0 || ^5.0.0
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
-
- webpack-merge@5.8.0:
- resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
- engines: {node: '>=10.0.0'}
-
- webpack-sources@3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
- engines: {node: '>=10.13.0'}
-
- webpack-subresource-integrity@5.1.0:
- resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==}
- engines: {node: '>= 12'}
- peerDependencies:
- html-webpack-plugin: '>= 5.0.0-beta.1 < 6'
- webpack: ^5.12.0
- peerDependenciesMeta:
- html-webpack-plugin:
- optional: true
-
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
- webpack@5.76.1:
- resolution: {integrity: sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
-
- websocket-driver@0.7.4:
- resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
- engines: {node: '>=0.8.0'}
-
- websocket-extensions@0.1.4:
- resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
- engines: {node: '>=0.8.0'}
-
whatwg-encoding@2.0.0:
resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
engines: {node: '>=12'}
@@ -15813,10 +12471,6 @@ packages:
resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
engines: {node: '>= 0.4'}
- which@1.3.1:
- resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
- hasBin: true
-
which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
@@ -15837,12 +12491,6 @@ packages:
engines: {node: '>=8'}
hasBin: true
- wide-align@1.1.5:
- resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
-
- wildcard@2.0.1:
- resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
-
word-wrap@1.2.5:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
@@ -15896,18 +12544,6 @@ packages:
utf-8-validate:
optional: true
- ws@8.17.1:
- resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
-
ws@8.18.0:
resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
engines: {node: '>=10.0.0'}
@@ -15978,9 +12614,6 @@ packages:
xxhash-wasm@1.1.0:
resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==}
- xxhashjs@0.2.2:
- resolution: {integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==}
-
y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -15999,10 +12632,6 @@ packages:
resolution: {integrity: sha512-E/+VitOorXSLiAqtTd7Yqax0/pAS3xaYMP+AUUJGOK1OZG3rhcj9fcJOM5HJ2VrP1FrStVCWr1muTfQCdj4tAA==}
engines: {node: ^14.17.0 || >=16.0.0}
- yaml@1.10.2:
- resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
- engines: {node: '>= 6'}
-
yaml@2.3.1:
resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
engines: {node: '>= 14'}
@@ -16017,10 +12646,6 @@ packages:
engines: {node: '>= 14.6'}
hasBin: true
- yargs-parser@20.0.0:
- resolution: {integrity: sha512-8eblPHTL7ZWRkyjIZJjnGf+TijiKJSwA24svzLRVvtgoi/RZiKa9fFQTrlx0OKLnyHSdt/enrdadji6WFfESVA==}
- engines: {node: '>=10'}
-
yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
@@ -16096,9 +12721,6 @@ packages:
zod@4.4.3:
resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
- zone.js@0.11.8:
- resolution: {integrity: sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==}
-
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
@@ -16330,11 +12952,6 @@ snapshots:
dependencies:
'@algolia/client-common': 5.48.1
- '@ampproject/remapping@2.2.0':
- dependencies:
- '@jridgewell/gen-mapping': 0.1.1
- '@jridgewell/trace-mapping': 0.3.31
-
'@ampproject/remapping@2.2.1':
dependencies:
'@jridgewell/gen-mapping': 0.3.13
@@ -16345,13 +12962,6 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
- '@angular-devkit/architect@0.1303.11(chokidar@3.6.0)':
- dependencies:
- '@angular-devkit/core': 13.3.11(chokidar@3.6.0)
- rxjs: 6.6.7
- transitivePeerDependencies:
- - chokidar
-
'@angular-devkit/architect@0.2102.3(chokidar@5.0.0)':
dependencies:
'@angular-devkit/core': 21.2.3(chokidar@5.0.0)
@@ -16359,113 +12969,6 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@angular-devkit/build-angular@13.3.11(@angular/compiler-cli@13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))(@types/express@4.17.21)(chokidar@3.6.0)(karma@6.3.20)(ng-packagr@13.3.1(@angular/compiler-cli@13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4))(@types/node@12.20.55)(tslib@2.8.1)(typescript@4.6.4))(typescript@4.6.4)':
- dependencies:
- '@ampproject/remapping': 2.2.0
- '@angular-devkit/architect': 0.1303.11(chokidar@3.6.0)
- '@angular-devkit/build-webpack': 0.1303.11(chokidar@3.6.0)(webpack-dev-server@4.7.3(@types/express@4.17.21)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)))(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- '@angular-devkit/core': 13.3.11(chokidar@3.6.0)
- '@angular/compiler-cli': 13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4)
- '@babel/core': 7.16.12
- '@babel/generator': 7.16.8
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/plugin-proposal-async-generator-functions': 7.16.8(@babel/core@7.16.12)
- '@babel/plugin-transform-async-to-generator': 7.16.8(@babel/core@7.16.12)
- '@babel/plugin-transform-runtime': 7.16.10(@babel/core@7.16.12)
- '@babel/preset-env': 7.16.11(@babel/core@7.16.12)
- '@babel/runtime': 7.16.7
- '@babel/template': 7.16.7
- '@discoveryjs/json-ext': 0.5.6
- '@ngtools/webpack': 13.3.11(@angular/compiler-cli@13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4))(typescript@4.6.4)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- ansi-colors: 4.1.1
- babel-loader: 8.2.5(@babel/core@7.16.12)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- babel-plugin-istanbul: 6.1.1
- browserslist: 4.23.3
- cacache: 15.3.0
- circular-dependency-plugin: 5.2.2(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- copy-webpack-plugin: 10.2.1(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- core-js: 3.20.3
- critters: 0.0.16
- css-loader: 6.5.1(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- esbuild-wasm: 0.14.22
- glob: 7.2.0
- https-proxy-agent: 5.0.0
- inquirer: 8.2.0
- jsonc-parser: 3.0.0
- karma-source-map-support: 1.4.0
- less: 4.1.2
- less-loader: 10.2.0(less@4.1.2)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- license-webpack-plugin: 4.0.2(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- loader-utils: 3.2.1
- mini-css-extract-plugin: 2.5.3(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- minimatch: 3.0.5
- open: 8.4.0
- ora: 5.4.1
- parse5-html-rewriting-stream: 6.0.1
- piscina: 3.2.0
- postcss: 8.4.5
- postcss-import: 14.0.2(postcss@8.4.5)
- postcss-loader: 6.2.1(postcss@8.4.5)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- postcss-preset-env: 7.2.3(postcss@8.4.5)
- regenerator-runtime: 0.13.9
- resolve-url-loader: 5.0.0
- rxjs: 6.6.7
- sass: 1.49.9
- sass-loader: 12.4.0(sass@1.49.9)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- semver: 7.7.3
- source-map-loader: 3.0.1(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- source-map-support: 0.5.21
- stylus: 0.56.0
- stylus-loader: 6.2.0(stylus@0.56.0)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- terser: 5.14.2
- text-table: 0.2.0
- tree-kill: 1.2.2
- tslib: 2.3.1
- typescript: 4.6.4
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
- webpack-dev-middleware: 5.3.4(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- webpack-dev-server: 4.7.3(@types/express@4.17.21)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- webpack-merge: 5.8.0
- webpack-subresource-integrity: 5.1.0(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- optionalDependencies:
- esbuild: 0.14.22
- karma: 6.3.20
- ng-packagr: 13.3.1(@angular/compiler-cli@13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4))(@types/node@12.20.55)(tslib@2.8.1)(typescript@4.6.4)
- transitivePeerDependencies:
- - '@swc/core'
- - '@types/express'
- - bluebird
- - bufferutil
- - chokidar
- - debug
- - fibers
- - html-webpack-plugin
- - node-sass
- - supports-color
- - uglify-js
- - utf-8-validate
- - webpack-cli
-
- '@angular-devkit/build-webpack@0.1303.11(chokidar@3.6.0)(webpack-dev-server@4.7.3(@types/express@4.17.21)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)))(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))':
- dependencies:
- '@angular-devkit/architect': 0.1303.11(chokidar@3.6.0)
- rxjs: 6.6.7
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
- webpack-dev-server: 4.7.3(@types/express@4.17.21)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- transitivePeerDependencies:
- - chokidar
-
- '@angular-devkit/core@13.3.11(chokidar@3.6.0)':
- dependencies:
- ajv: 8.9.0
- ajv-formats: 2.1.1(ajv@8.9.0)
- fast-json-stable-stringify: 2.1.0
- magic-string: 0.25.7
- rxjs: 6.6.7
- source-map: 0.7.3
- optionalDependencies:
- chokidar: 3.6.0
-
'@angular-devkit/core@21.2.3(chokidar@5.0.0)':
dependencies:
ajv: 8.18.0
@@ -16477,16 +12980,6 @@ snapshots:
optionalDependencies:
chokidar: 5.0.0
- '@angular-devkit/schematics@13.3.11(chokidar@3.6.0)':
- dependencies:
- '@angular-devkit/core': 13.3.11(chokidar@3.6.0)
- jsonc-parser: 3.0.0
- magic-string: 0.25.7
- ora: 5.4.1
- rxjs: 6.6.7
- transitivePeerDependencies:
- - chokidar
-
'@angular-devkit/schematics@21.2.3(chokidar@5.0.0)':
dependencies:
'@angular-devkit/core': 21.2.3(chokidar@5.0.0)
@@ -16497,16 +12990,6 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@angular-eslint/builder@13.0.1(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))(eslint@8.57.1)(typescript@4.6.4)':
- dependencies:
- '@nrwl/devkit': 13.1.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))
- eslint: 8.57.1
- typescript: 4.6.4
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
-
'@angular-eslint/builder@21.1.0(@angular/cli@21.2.3(@types/node@24.10.1)(chokidar@5.0.0))(chokidar@5.0.0)(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@angular-devkit/architect': 0.2102.3(chokidar@5.0.0)
@@ -16517,21 +13000,8 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@angular-eslint/bundled-angular-compiler@13.0.1': {}
-
'@angular-eslint/bundled-angular-compiler@21.1.0': {}
- '@angular-eslint/eslint-plugin-template@13.0.1(eslint@8.57.1)(typescript@4.6.4)':
- dependencies:
- '@angular-eslint/bundled-angular-compiler': 13.0.1
- '@typescript-eslint/experimental-utils': 5.3.0(eslint@8.57.1)(typescript@4.6.4)
- aria-query: 4.2.2
- axobject-query: 2.2.0
- eslint: 8.57.1
- typescript: 4.6.4
- transitivePeerDependencies:
- - supports-color
-
'@angular-eslint/eslint-plugin-template@21.1.0(@angular-eslint/template-parser@21.1.0(eslint@8.57.1)(typescript@5.9.3))(@typescript-eslint/types@8.57.1)(@typescript-eslint/utils@8.57.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 21.1.0
@@ -16544,15 +13014,6 @@ snapshots:
eslint: 8.57.1
typescript: 5.9.3
- '@angular-eslint/eslint-plugin@13.0.1(eslint@8.57.1)(typescript@4.6.4)':
- dependencies:
- '@angular-eslint/utils': 13.0.1(eslint@8.57.1)(typescript@4.6.4)
- '@typescript-eslint/experimental-utils': 5.3.0(eslint@8.57.1)(typescript@4.6.4)
- eslint: 8.57.1
- typescript: 4.6.4
- transitivePeerDependencies:
- - supports-color
-
'@angular-eslint/eslint-plugin@21.1.0(@typescript-eslint/utils@8.57.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 21.1.0
@@ -16562,19 +13023,6 @@ snapshots:
ts-api-utils: 2.5.0(typescript@5.9.3)
typescript: 5.9.3
- '@angular-eslint/schematics@13.0.1(@angular/cli@13.3.11(chokidar@3.6.0))(eslint@8.57.1)(typescript@4.6.4)':
- dependencies:
- '@angular-eslint/eslint-plugin': 13.0.1(eslint@8.57.1)(typescript@4.6.4)
- '@angular-eslint/eslint-plugin-template': 13.0.1(eslint@8.57.1)(typescript@4.6.4)
- '@angular/cli': 13.3.11(chokidar@3.6.0)
- ignore: 5.1.9
- strip-json-comments: 3.1.1
- tmp: 0.2.1
- transitivePeerDependencies:
- - eslint
- - supports-color
- - typescript
-
'@angular-eslint/schematics@21.1.0(@angular-eslint/template-parser@21.1.0(eslint@8.57.1)(typescript@5.9.3))(@angular/cli@21.2.3(@types/node@24.10.1)(chokidar@5.0.0))(@typescript-eslint/types@8.57.1)(@typescript-eslint/utils@8.57.1(eslint@8.57.1)(typescript@5.9.3))(chokidar@5.0.0)(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@angular-devkit/core': 21.2.3(chokidar@5.0.0)
@@ -16593,13 +13041,6 @@ snapshots:
- eslint
- typescript
- '@angular-eslint/template-parser@13.0.1(eslint@8.57.1)(typescript@4.6.4)':
- dependencies:
- '@angular-eslint/bundled-angular-compiler': 13.0.1
- eslint: 8.57.1
- eslint-scope: 5.1.1
- typescript: 4.6.4
-
'@angular-eslint/template-parser@21.1.0(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 21.1.0
@@ -16607,15 +13048,6 @@ snapshots:
eslint-scope: 9.1.2
typescript: 5.9.3
- '@angular-eslint/utils@13.0.1(eslint@8.57.1)(typescript@4.6.4)':
- dependencies:
- '@angular-eslint/bundled-angular-compiler': 13.0.1
- '@typescript-eslint/experimental-utils': 5.3.0(eslint@8.57.1)(typescript@4.6.4)
- eslint: 8.57.1
- typescript: 4.6.4
- transitivePeerDependencies:
- - supports-color
-
'@angular-eslint/utils@21.1.0(@typescript-eslint/utils@8.57.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 21.1.0
@@ -16623,7 +13055,7 @@ snapshots:
eslint: 8.57.1
typescript: 5.9.3
- '@angular/build@21.2.3(@angular/compiler-cli@21.2.5(@angular/compiler@21.2.5)(typescript@5.9.3))(@angular/compiler@21.2.5)(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)))(@types/node@24.10.1)(chokidar@5.0.0)(jiti@2.7.0)(less@4.2.0)(ng-packagr@21.2.1(@angular/compiler-cli@21.2.5(@angular/compiler@21.2.5)(typescript@5.9.3))(tslib@2.8.1)(typescript@5.9.3))(postcss@8.5.8)(stylus@0.56.0)(terser@5.47.1)(tslib@2.8.1)(typescript@5.9.3)(vitest@4.0.12)(yaml@2.8.0)':
+ '@angular/build@21.2.3(@angular/compiler-cli@21.2.5(@angular/compiler@21.2.5)(typescript@5.9.3))(@angular/compiler@21.2.5)(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)))(@types/node@24.10.1)(chokidar@5.0.0)(jiti@2.7.0)(less@4.2.0)(ng-packagr@21.2.1(@angular/compiler-cli@21.2.5(@angular/compiler@21.2.5)(typescript@5.9.3))(tslib@2.8.1)(typescript@5.9.3))(postcss@8.5.8)(stylus@0.56.0)(terser@5.47.1)(tslib@2.8.1)(typescript@5.9.3)(vitest@4.1.1)(yaml@2.8.0)':
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.2102.3(chokidar@5.0.0)
@@ -16663,7 +13095,7 @@ snapshots:
lmdb: 3.5.1
ng-packagr: 21.2.1(@angular/compiler-cli@21.2.5(@angular/compiler@21.2.5)(typescript@5.9.3))(tslib@2.8.1)(typescript@5.9.3)
postcss: 8.5.8
- vitest: 4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jiti@2.7.0)(jsdom@27.4.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
+ vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@27.4.0)(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
transitivePeerDependencies:
- '@types/node'
- chokidar
@@ -16677,32 +13109,6 @@ snapshots:
- tsx
- yaml
- '@angular/cli@13.3.11(chokidar@3.6.0)':
- dependencies:
- '@angular-devkit/architect': 0.1303.11(chokidar@3.6.0)
- '@angular-devkit/core': 13.3.11(chokidar@3.6.0)
- '@angular-devkit/schematics': 13.3.11(chokidar@3.6.0)
- '@schematics/angular': 13.3.11(chokidar@3.6.0)
- '@yarnpkg/lockfile': 1.1.0
- ansi-colors: 4.1.1
- debug: 4.3.3
- ini: 2.0.0
- inquirer: 8.2.0
- jsonc-parser: 3.0.0
- npm-package-arg: 8.1.5
- npm-pick-manifest: 6.1.1
- open: 8.4.0
- ora: 5.4.1
- pacote: 12.0.3
- resolve: 1.22.0
- semver: 7.7.3
- symbol-observable: 4.0.0
- uuid: 8.3.2
- transitivePeerDependencies:
- - bluebird
- - chokidar
- - supports-color
-
'@angular/cli@21.2.3(@types/node@24.10.1)(chokidar@5.0.0)':
dependencies:
'@angular-devkit/architect': 0.2102.3(chokidar@5.0.0)
@@ -16729,35 +13135,12 @@ snapshots:
- chokidar
- supports-color
- '@angular/common@13.3.12(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(rxjs@7.5.7)':
- dependencies:
- '@angular/core': 13.3.12(rxjs@7.5.7)(zone.js@0.11.8)
- rxjs: 7.5.7
- tslib: 2.8.1
-
'@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))(rxjs@7.8.2)':
dependencies:
'@angular/core': 21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/compiler-cli@13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4)':
- dependencies:
- '@angular/compiler': 13.3.12
- '@babel/core': 7.25.2
- chokidar: 3.6.0
- convert-source-map: 1.9.0
- dependency-graph: 0.11.0
- magic-string: 0.26.7
- reflect-metadata: 0.1.14
- semver: 7.7.3
- sourcemap-codec: 1.4.8
- tslib: 2.8.1
- typescript: 4.6.4
- yargs: 17.7.2
- transitivePeerDependencies:
- - supports-color
-
'@angular/compiler-cli@21.2.5(@angular/compiler@21.2.5)(typescript@5.9.3)':
dependencies:
'@angular/compiler': 21.2.5
@@ -16774,20 +13157,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@angular/compiler@13.3.12':
- dependencies:
- tslib: 2.8.1
-
'@angular/compiler@21.2.5':
dependencies:
tslib: 2.8.1
- '@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8)':
- dependencies:
- rxjs: 7.5.7
- tslib: 2.8.1
- zone.js: 0.11.8
-
'@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)':
dependencies:
rxjs: 7.8.2
@@ -16804,20 +13177,6 @@ snapshots:
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/platform-browser-dynamic@13.3.12(@angular/common@13.3.12(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(rxjs@7.5.7))(@angular/compiler@13.3.12)(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(@angular/platform-browser@13.3.12(@angular/common@13.3.12(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(rxjs@7.5.7))(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8)))':
- dependencies:
- '@angular/common': 13.3.12(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(rxjs@7.5.7)
- '@angular/compiler': 13.3.12
- '@angular/core': 13.3.12(rxjs@7.5.7)(zone.js@0.11.8)
- '@angular/platform-browser': 13.3.12(@angular/common@13.3.12(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(rxjs@7.5.7))(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))
- tslib: 2.8.1
-
- '@angular/platform-browser@13.3.12(@angular/common@13.3.12(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(rxjs@7.5.7))(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))':
- dependencies:
- '@angular/common': 13.3.12(@angular/core@13.3.12(rxjs@7.5.7)(zone.js@0.11.8))(rxjs@7.5.7)
- '@angular/core': 13.3.12(rxjs@7.5.7)(zone.js@0.11.8)
- tslib: 2.8.1
-
'@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))':
dependencies:
'@angular/common': 21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2))(rxjs@7.8.2)
@@ -16936,54 +13295,12 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.26.8': {}
-
'@babel/compat-data@7.27.2': {}
'@babel/compat-data@7.28.5': {}
'@babel/compat-data@7.29.0': {}
- '@babel/core@7.16.12':
- dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.27.1
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.16.12)
- '@babel/helpers': 7.26.9
- '@babel/parser': 7.29.0
- '@babel/template': 7.27.1
- '@babel/traverse': 7.27.1
- '@babel/types': 7.28.6
- convert-source-map: 1.9.0
- debug: 4.4.3
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 7.8.0
- source-map: 0.5.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/core@7.25.2':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.27.1
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
- '@babel/helpers': 7.26.9
- '@babel/parser': 7.29.0
- '@babel/template': 7.27.1
- '@babel/traverse': 7.27.1
- '@babel/types': 7.28.6
- convert-source-map: 2.0.0
- debug: 4.4.3
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 7.8.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/core@7.28.0':
dependencies:
'@ampproject/remapping': 2.2.1
@@ -17044,12 +13361,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.16.8':
- dependencies:
- '@babel/types': 7.28.6
- jsesc: 2.5.2
- source-map: 0.5.7
-
'@babel/generator@7.27.1':
dependencies:
'@babel/parser': 7.29.3
@@ -17074,14 +13385,6 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- '@babel/generator@7.28.6':
- dependencies:
- '@babel/parser': 7.29.3
- '@babel/types': 7.29.0
- '@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.31
- jsesc: 3.1.0
-
'@babel/generator@7.29.1':
dependencies:
'@babel/parser': 7.29.3
@@ -17090,29 +13393,10 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- '@babel/helper-annotate-as-pure@7.16.7':
- dependencies:
- '@babel/types': 7.28.6
-
'@babel/helper-annotate-as-pure@7.27.3':
dependencies:
'@babel/types': 7.29.0
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
- dependencies:
- '@babel/traverse': 7.28.6
- '@babel/types': 7.29.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-compilation-targets@7.26.5':
- dependencies:
- '@babel/compat-data': 7.28.5
- '@babel/helper-validator-option': 7.27.1
- browserslist: 4.25.1
- lru-cache: 5.1.1
- semver: 7.8.0
-
'@babel/helper-compilation-targets@7.27.2':
dependencies:
'@babel/compat-data': 7.27.2
@@ -17129,19 +13413,6 @@ snapshots:
lru-cache: 5.1.1
semver: 7.8.0
- '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.16.12)
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.28.5
- semver: 7.8.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17247,13 +13518,6 @@ snapshots:
regexpu-core: 5.3.2
semver: 7.8.0
- '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-annotate-as-pure': 7.27.3
- regexpu-core: 5.3.2
- semver: 7.8.0
-
'@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17268,18 +13532,6 @@ snapshots:
regexpu-core: 6.2.0
semver: 7.8.0
- '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.25.9
- debug: 4.4.3
- lodash.debounce: 4.0.8
- resolve: 1.22.11
- semver: 7.8.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17333,13 +13585,6 @@ snapshots:
dependencies:
'@babel/types': 7.28.6
- '@babel/helper-module-imports@7.25.9':
- dependencies:
- '@babel/traverse': 7.28.5
- '@babel/types': 7.29.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-imports@7.27.1':
dependencies:
'@babel/traverse': 7.28.5
@@ -17354,24 +13599,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.6
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -17381,15 +13608,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17429,15 +13647,6 @@ snapshots:
'@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-wrap-function': 7.25.0
- '@babel/traverse': 7.28.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17456,24 +13665,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.0(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/traverse': 7.28.6
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-replace-supers@7.27.1(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-member-expression-to-functions': 7.27.1
- '@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.28.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-replace-supers@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17492,13 +13683,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-simple-access@7.24.7':
- dependencies:
- '@babel/traverse': 7.28.6
- '@babel/types': 7.29.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
dependencies:
'@babel/traverse': 7.28.5
@@ -17523,18 +13707,8 @@ snapshots:
'@babel/helper-validator-identifier@7.28.5': {}
- '@babel/helper-validator-option@7.25.9': {}
-
'@babel/helper-validator-option@7.27.1': {}
- '@babel/helper-wrap-function@7.25.0':
- dependencies:
- '@babel/template': 7.28.6
- '@babel/traverse': 7.28.6
- '@babel/types': 7.29.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-wrap-function@7.27.1':
dependencies:
'@babel/template': 7.28.6
@@ -17543,11 +13717,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.26.9':
- dependencies:
- '@babel/template': 7.28.6
- '@babel/types': 7.29.0
-
'@babel/helpers@7.28.2':
dependencies:
'@babel/template': 7.27.2
@@ -17596,11 +13765,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17611,15 +13775,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.16.12)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17654,23 +13809,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-async-generator-functions@7.16.8(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.16.12)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.16.12)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17679,86 +13817,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.16.12)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.16.12)
-
'@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.16.12)
-
- '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.16.12)
-
- '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.16.12)
-
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.16.12)
-
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.5)
- '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.16.12)
-
- '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.16.12)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.16.12)
-
- '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.16.12)
-
- '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.16.12)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17768,14 +13837,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17784,27 +13845,6 @@ snapshots:
dependencies:
'@babel/core': 7.29.0
- '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.16.12)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -17815,31 +13855,16 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -17850,11 +13875,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17890,11 +13910,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -17910,21 +13925,11 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17935,41 +13940,21 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -17980,21 +13965,11 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -18022,11 +13997,6 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.29.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18055,15 +14025,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.16.8(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.16.12)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18082,11 +14043,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18097,11 +14053,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-block-scoping@7.28.5(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18144,18 +14095,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.4(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@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.25.0(@babel/core@7.16.12)
- '@babel/traverse': 7.28.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18180,12 +14119,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/template': 7.28.6
-
'@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18198,11 +14131,6 @@ snapshots:
'@babel/helper-plugin-utils': 7.27.1
'@babel/template': 7.27.2
- '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18219,12 +14147,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18237,11 +14159,6 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.29.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18290,14 +14207,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.27.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-exponentiation-operator@7.28.5(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18330,14 +14239,6 @@ snapshots:
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18354,15 +14255,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18391,11 +14283,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-literals@7.25.2(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18416,11 +14303,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18431,14 +14313,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18455,15 +14329,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-simple-access': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18480,16 +14345,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-modules-systemjs@7.28.5(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18510,14 +14365,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18534,12 +14381,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18552,11 +14393,6 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.29.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18609,14 +14445,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.16.12)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18643,14 +14471,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18667,11 +14487,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18716,11 +14531,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18774,12 +14584,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- regenerator-transform: 0.15.2
-
'@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18802,11 +14606,6 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.29.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18817,18 +14616,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-runtime@7.16.10(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.16.12)
- babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.16.12)
- babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.16.12)
- semver: 7.8.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-runtime@7.27.1(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -18841,11 +14628,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18856,14 +14638,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-spread@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18880,11 +14654,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18895,11 +14664,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18910,11 +14674,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18947,11 +14706,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -18974,12 +14728,6 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.29.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.16.12)
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -19004,86 +14752,6 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.29.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/preset-env@7.16.11(@babel/core@7.16.12)':
- dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-validator-option': 7.25.9
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.16.12)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-proposal-async-generator-functions': 7.16.8(@babel/core@7.16.12)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.16.12)
- '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.16.12)
- '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.16.12)
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.16.12)
- '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.16.12)
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.16.12)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.16.12)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.16.12)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.16.12)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.16.12)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.16.12)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.16.12)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.16.12)
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.16.12)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.16.12)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.16.12)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.16.12)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.16.12)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.16.12)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.16.12)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.16.12)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.16.12)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.16.12)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.16.12)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.16.12)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.16.12)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.16.12)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.16.12)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-async-to-generator': 7.16.8(@babel/core@7.16.12)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.16.12)
- '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.16.12)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.16.12)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.16.12)
- '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.16.12)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.16.12)
- '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.16.12)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.16.12)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.16.12)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.16.12)
- '@babel/preset-modules': 0.1.6(@babel/core@7.16.12)
- '@babel/types': 7.28.6
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.16.12)
- babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.16.12)
- babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.16.12)
- core-js-compat: 3.38.1
- semver: 7.8.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/preset-env@7.28.5(@babel/core@7.28.5)':
dependencies:
'@babel/compat-data': 7.28.5
@@ -19243,15 +14911,6 @@ snapshots:
'@babel/helper-validator-option': 7.27.1
'@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.5)
- '@babel/preset-modules@0.1.6(@babel/core@7.16.12)':
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.16.12)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.16.12)
- '@babel/types': 7.29.0
- esutils: 2.0.3
-
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -19288,15 +14947,6 @@ snapshots:
'@babel/regjsgen@0.8.0': {}
- '@babel/runtime-corejs3@7.25.0':
- dependencies:
- core-js-pure: 3.38.1
- regenerator-runtime: 0.14.1
-
- '@babel/runtime@7.16.7':
- dependencies:
- regenerator-runtime: 0.13.11
-
'@babel/runtime@7.22.15':
dependencies:
regenerator-runtime: 0.14.1
@@ -19307,18 +14957,6 @@ snapshots:
'@babel/runtime@7.27.1': {}
- '@babel/template@7.16.7':
- dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/parser': 7.29.0
- '@babel/types': 7.28.6
-
- '@babel/template@7.27.1':
- dependencies:
- '@babel/code-frame': 7.29.0
- '@babel/parser': 7.29.3
- '@babel/types': 7.29.0
-
'@babel/template@7.27.2':
dependencies:
'@babel/code-frame': 7.27.1
@@ -19370,7 +15008,7 @@ snapshots:
'@babel/traverse@7.28.6':
dependencies:
'@babel/code-frame': 7.29.0
- '@babel/generator': 7.28.6
+ '@babel/generator': 7.29.1
'@babel/helper-globals': 7.28.0
'@babel/parser': 7.29.3
'@babel/template': 7.28.6
@@ -19512,11 +15150,13 @@ snapshots:
outvariant: 1.4.0
static-browser-server: 1.0.3
- '@colors/colors@1.5.0': {}
+ '@colors/colors@1.5.0':
+ optional: true
'@cspotcode/source-map-support@0.8.1':
dependencies:
'@jridgewell/trace-mapping': 0.3.9
+ optional: true
'@csstools/color-helpers@6.0.2': {}
@@ -19542,91 +15182,6 @@ snapshots:
'@csstools/css-tokenizer@4.0.0': {}
- '@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.41)':
- dependencies:
- '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2)
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- '@csstools/postcss-color-function@1.1.1(postcss@8.4.41)':
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.41)
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.41)':
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-hwb-function@1.0.2(postcss@8.4.41)':
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-ic-unit@1.0.1(postcss@8.4.41)':
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.41)
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.41)':
- dependencies:
- '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2)
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- '@csstools/postcss-nested-calc@1.0.0(postcss@8.4.41)':
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.41)':
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-oklab-function@1.1.1(postcss@8.4.41)':
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.41)
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.41)':
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.5)':
- dependencies:
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.41)':
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.41)':
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.41)':
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-unset-value@1.0.2(postcss@8.4.41)':
- dependencies:
- postcss: 8.4.41
-
- '@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.1.2)':
- dependencies:
- postcss-selector-parser: 6.1.2
-
- '@discoveryjs/json-ext@0.5.6': {}
-
'@docsearch/css@3.8.2': {}
'@docsearch/js@3.8.2(@algolia/client-search@5.48.1)(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.8.2)':
@@ -19654,12 +15209,6 @@ snapshots:
transitivePeerDependencies:
- '@algolia/client-search'
- '@emnapi/core@1.10.0':
- dependencies:
- '@emnapi/wasi-threads': 1.2.1
- tslib: 2.8.1
- optional: true
-
'@emnapi/core@1.4.3':
dependencies:
'@emnapi/wasi-threads': 1.0.2
@@ -19672,11 +15221,6 @@ snapshots:
tslib: 2.8.1
optional: true
- '@emnapi/runtime@1.10.0':
- dependencies:
- tslib: 2.8.1
- optional: true
-
'@emnapi/runtime@1.8.1':
dependencies:
tslib: 2.8.1
@@ -19692,11 +15236,6 @@ snapshots:
tslib: 2.8.1
optional: true
- '@emnapi/wasi-threads@1.2.1':
- dependencies:
- tslib: 2.8.1
- optional: true
-
'@esbuild/aix-ppc64@0.21.5':
optional: true
@@ -19895,9 +15434,6 @@ snapshots:
'@esbuild/linux-ia32@0.28.0':
optional: true
- '@esbuild/linux-loong64@0.14.54':
- optional: true
-
'@esbuild/linux-loong64@0.21.5':
optional: true
@@ -20238,8 +15774,6 @@ snapshots:
'@gar/promise-retry@1.0.3': {}
- '@gar/promisify@1.1.3': {}
-
'@harperfast/extended-iterable@1.0.3':
optional: true
@@ -20803,11 +16337,6 @@ snapshots:
dependencies:
regenerator-runtime: 0.13.11
- '@jridgewell/gen-mapping@0.1.1':
- dependencies:
- '@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.5.5
-
'@jridgewell/gen-mapping@0.3.13':
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
@@ -20820,8 +16349,6 @@ snapshots:
'@jridgewell/resolve-uri@3.1.2': {}
- '@jridgewell/set-array@1.2.1': {}
-
'@jridgewell/source-map@0.3.11':
dependencies:
'@jridgewell/gen-mapping': 0.3.13
@@ -20831,11 +16358,6 @@ snapshots:
'@jridgewell/sourcemap-codec@1.5.5': {}
- '@jridgewell/trace-mapping@0.3.25':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.5
-
'@jridgewell/trace-mapping@0.3.31':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
@@ -20845,6 +16367,7 @@ snapshots:
dependencies:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.5
+ optional: true
'@kwsites/file-exists@1.1.1':
dependencies:
@@ -21040,13 +16563,6 @@ snapshots:
'@napi-rs/nice-win32-x64-msvc': 1.1.1
optional: true
- '@napi-rs/wasm-runtime@0.2.12':
- dependencies:
- '@emnapi/core': 1.10.0
- '@emnapi/runtime': 1.10.0
- '@tybys/wasm-util': 0.10.2
- optional: true
-
'@napi-rs/wasm-runtime@0.2.9':
dependencies:
'@emnapi/core': 1.4.3
@@ -21061,12 +16577,6 @@ snapshots:
'@tybys/wasm-util': 0.10.1
optional: true
- '@ngtools/webpack@13.3.11(@angular/compiler-cli@13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4))(typescript@4.6.4)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))':
- dependencies:
- '@angular/compiler-cli': 13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4)
- typescript: 4.6.4
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
'@nodelib/fs.scandir@2.1.5':
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -21101,16 +16611,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@npmcli/fs@1.1.1':
- dependencies:
- '@gar/promisify': 1.1.3
- semver: 7.8.0
-
- '@npmcli/fs@2.1.2':
- dependencies:
- '@gar/promisify': 1.1.3
- semver: 7.8.0
-
'@npmcli/fs@3.1.0':
dependencies:
semver: 7.8.0
@@ -21119,19 +16619,6 @@ snapshots:
dependencies:
semver: 7.8.0
- '@npmcli/git@2.1.0':
- dependencies:
- '@npmcli/promise-spawn': 1.3.2
- lru-cache: 6.0.0
- mkdirp: 1.0.4
- npm-pick-manifest: 6.1.1
- promise-inflight: 1.0.1
- promise-retry: 2.0.1
- semver: 7.8.0
- which: 2.0.2
- transitivePeerDependencies:
- - bluebird
-
'@npmcli/git@7.0.2':
dependencies:
'@gar/promise-retry': 1.0.3
@@ -21143,28 +16630,11 @@ snapshots:
semver: 7.8.0
which: 6.0.1
- '@npmcli/installed-package-contents@1.0.7':
- dependencies:
- npm-bundled: 1.1.2
- npm-normalize-package-bin: 1.0.1
-
'@npmcli/installed-package-contents@4.0.0':
dependencies:
npm-bundled: 5.0.0
npm-normalize-package-bin: 5.0.0
- '@npmcli/move-file@1.1.2':
- dependencies:
- mkdirp: 1.0.4
- rimraf: 3.0.2
-
- '@npmcli/move-file@2.0.1':
- dependencies:
- mkdirp: 1.0.4
- rimraf: 3.0.2
-
- '@npmcli/node-gyp@1.0.3': {}
-
'@npmcli/node-gyp@5.0.0': {}
'@npmcli/package-json@7.0.5':
@@ -21177,10 +16647,6 @@ snapshots:
semver: 7.8.0
spdx-expression-parse: 4.0.0
- '@npmcli/promise-spawn@1.3.2':
- dependencies:
- infer-owner: 1.0.4
-
'@npmcli/promise-spawn@9.0.1':
dependencies:
which: 6.0.1
@@ -21197,90 +16663,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@npmcli/run-script@2.0.0':
- dependencies:
- '@npmcli/node-gyp': 1.0.3
- '@npmcli/promise-spawn': 1.3.2
- node-gyp: 8.4.1
- read-package-json-fast: 2.0.3
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
- '@nrwl/cli@15.9.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))':
- dependencies:
- nx: 15.9.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
-
- '@nrwl/devkit@13.1.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))':
- dependencies:
- '@nrwl/tao': 13.1.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))
- ejs: 3.1.10
- ignore: 5.3.2
- rxjs: 6.6.7
- semver: 7.8.0
- tslib: 2.8.1
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
-
- '@nrwl/nx-darwin-arm64@15.9.3':
- optional: true
-
- '@nrwl/nx-darwin-x64@15.9.3':
- optional: true
-
- '@nrwl/nx-linux-arm-gnueabihf@15.9.3':
- optional: true
-
- '@nrwl/nx-linux-arm64-gnu@15.9.3':
- optional: true
-
- '@nrwl/nx-linux-arm64-musl@15.9.3':
- optional: true
-
- '@nrwl/nx-linux-x64-gnu@15.9.3':
- optional: true
-
- '@nrwl/nx-linux-x64-musl@15.9.3':
- optional: true
-
- '@nrwl/nx-win32-arm64-msvc@15.9.3':
- optional: true
-
- '@nrwl/nx-win32-x64-msvc@15.9.3':
- optional: true
-
- '@nrwl/tao@13.1.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))':
- dependencies:
- chalk: 4.1.0
- enquirer: 2.3.6
- fs-extra: 9.1.0
- jsonc-parser: 3.0.0
- nx: 13.1.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))
- rxjs: 6.6.7
- rxjs-for-await: 0.0.2(rxjs@6.6.7)
- semver: 7.8.0
- tmp: 0.2.3
- tslib: 2.8.1
- yargs-parser: 20.0.0
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
-
- '@nrwl/tao@15.9.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))':
- dependencies:
- nx: 15.9.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
-
'@octokit/auth-token@3.0.4': {}
'@octokit/auth-token@4.0.0': {}
@@ -21428,41 +16810,6 @@ snapshots:
'@oxc-project/types@0.113.0': {}
- '@oxc-resolver/binding-darwin-arm64@1.12.0':
- optional: true
-
- '@oxc-resolver/binding-darwin-x64@1.12.0':
- optional: true
-
- '@oxc-resolver/binding-freebsd-x64@1.12.0':
- optional: true
-
- '@oxc-resolver/binding-linux-arm-gnueabihf@1.12.0':
- optional: true
-
- '@oxc-resolver/binding-linux-arm64-gnu@1.12.0':
- optional: true
-
- '@oxc-resolver/binding-linux-arm64-musl@1.12.0':
- optional: true
-
- '@oxc-resolver/binding-linux-x64-gnu@1.12.0':
- optional: true
-
- '@oxc-resolver/binding-linux-x64-musl@1.12.0':
- optional: true
-
- '@oxc-resolver/binding-wasm32-wasi@1.12.0':
- dependencies:
- '@napi-rs/wasm-runtime': 0.2.12
- optional: true
-
- '@oxc-resolver/binding-win32-arm64-msvc@1.12.0':
- optional: true
-
- '@oxc-resolver/binding-win32-x64-msvc@1.12.0':
- optional: true
-
'@parcel/watcher-android-arm64@2.5.1':
optional: true
@@ -21546,11 +16893,6 @@ snapshots:
'@parcel/watcher-win32-x64@2.5.6':
optional: true
- '@parcel/watcher@2.0.4':
- dependencies:
- node-addon-api: 3.2.1
- node-gyp-build: 4.8.4
-
'@parcel/watcher@2.5.1':
dependencies:
detect-libc: 1.0.3
@@ -21882,8 +17224,6 @@ snapshots:
'@rolldown/pluginutils@1.0.0-beta.27': {}
- '@rolldown/pluginutils@1.0.0-beta.50': {}
-
'@rolldown/pluginutils@1.0.0-rc.4': {}
'@rollup/plugin-alias@6.0.0(rollup@4.60.3)':
@@ -21919,11 +17259,6 @@ snapshots:
optionalDependencies:
rollup: 4.60.3
- '@rollup/plugin-json@4.1.0(rollup@2.79.2)':
- dependencies:
- '@rollup/pluginutils': 3.1.0(rollup@2.79.2)
- rollup: 2.79.2
-
'@rollup/plugin-json@6.1.0(rollup@4.59.0)':
dependencies:
'@rollup/pluginutils': 5.3.0(rollup@4.59.0)
@@ -21936,16 +17271,6 @@ snapshots:
optionalDependencies:
rollup: 4.60.3
- '@rollup/plugin-node-resolve@13.3.0(rollup@2.79.2)':
- dependencies:
- '@rollup/pluginutils': 3.1.0(rollup@2.79.2)
- '@types/resolve': 1.17.1
- deepmerge: 4.3.1
- is-builtin-module: 3.2.1
- is-module: 1.0.0
- resolve: 1.22.10
- rollup: 2.79.2
-
'@rollup/plugin-node-resolve@16.0.3(rollup@4.59.0)':
dependencies:
'@rollup/pluginutils': 5.3.0(rollup@4.59.0)
@@ -21988,13 +17313,6 @@ snapshots:
optionalDependencies:
rollup: 4.60.3
- '@rollup/pluginutils@3.1.0(rollup@2.79.2)':
- dependencies:
- '@types/estree': 0.0.39
- estree-walker: 1.0.1
- picomatch: 2.3.2
- rollup: 2.79.2
-
'@rollup/pluginutils@4.2.1':
dependencies:
estree-walker: 2.0.2
@@ -22265,14 +17583,6 @@ snapshots:
'@rtsao/scc@1.1.0': {}
- '@schematics/angular@13.3.11(chokidar@3.6.0)':
- dependencies:
- '@angular-devkit/core': 13.3.11(chokidar@3.6.0)
- '@angular-devkit/schematics': 13.3.11(chokidar@3.6.0)
- jsonc-parser: 3.0.0
- transitivePeerDependencies:
- - chokidar
-
'@schematics/angular@21.2.3(chokidar@5.0.0)':
dependencies:
'@angular-devkit/core': 21.2.3(chokidar@5.0.0)
@@ -22442,8 +17752,6 @@ snapshots:
dependencies:
'@sinonjs/commons': 3.0.1
- '@socket.io/component-emitter@3.1.2': {}
-
'@solidjs/router@0.11.5(solid-js@1.9.10)':
dependencies:
solid-js: 1.9.10
@@ -22468,17 +17776,6 @@ snapshots:
dependencies:
acorn: 8.15.0
- '@sveltejs/package@2.5.6(svelte@4.2.20)(typescript@5.9.3)':
- dependencies:
- chokidar: 4.0.3
- kleur: 4.1.5
- sade: 1.8.1
- semver: 7.7.3
- svelte: 4.2.20
- svelte2tsx: 0.7.39(svelte@4.2.20)(typescript@5.9.3)
- transitivePeerDependencies:
- - typescript
-
'@sveltejs/package@2.5.6(svelte@5.43.14)(typescript@5.9.3)':
dependencies:
chokidar: 4.0.3
@@ -22490,15 +17787,6 @@ snapshots:
transitivePeerDependencies:
- typescript
- '@sveltejs/vite-plugin-svelte-inspector@1.0.4(@sveltejs/vite-plugin-svelte@2.5.3(svelte@4.2.20)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)))(svelte@4.2.20)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))':
- dependencies:
- '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@4.2.20)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
- debug: 4.4.3
- svelte: 4.2.20
- vite: 7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
- transitivePeerDependencies:
- - supports-color
-
'@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.43.14)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)))(svelte@5.43.14)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))':
dependencies:
'@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.43.14)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
@@ -22506,20 +17794,6 @@ snapshots:
svelte: 5.43.14
vite: 6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
- '@sveltejs/vite-plugin-svelte@2.5.3(svelte@4.2.20)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))':
- dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3(svelte@4.2.20)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)))(svelte@4.2.20)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
- debug: 4.4.0
- deepmerge: 4.3.1
- kleur: 4.1.5
- magic-string: 0.30.17
- svelte: 4.2.20
- svelte-hmr: 0.15.3(svelte@4.2.20)
- vite: 7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
- vitefu: 0.2.5(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
- transitivePeerDependencies:
- - supports-color
-
'@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.43.14)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))':
dependencies:
'@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.43.14)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)))(svelte@5.43.14)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
@@ -22530,34 +17804,6 @@ snapshots:
vite: 6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
vitefu: 1.1.1(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
- '@swc-node/core@1.14.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)':
- dependencies:
- '@swc/core': 1.7.23(@swc/helpers@0.5.17)
- '@swc/types': 0.1.26
- optional: true
-
- '@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4)':
- dependencies:
- '@swc-node/core': 1.14.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)
- '@swc-node/sourcemap-support': 0.5.1
- '@swc/core': 1.7.23(@swc/helpers@0.5.17)
- colorette: 2.0.20
- debug: 4.4.3
- oxc-resolver: 1.12.0
- pirates: 4.0.7
- tslib: 2.8.1
- typescript: 4.6.4
- transitivePeerDependencies:
- - '@swc/types'
- - supports-color
- optional: true
-
- '@swc-node/sourcemap-support@0.5.1':
- dependencies:
- source-map-support: 0.5.21
- tslib: 2.8.1
- optional: true
-
'@swc/core-darwin-arm64@1.7.23':
optional: true
@@ -22689,18 +17935,13 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@testing-library/svelte@4.2.3(svelte@4.2.20)':
- dependencies:
- '@testing-library/dom': 9.3.4
- svelte: 4.2.20
-
'@testing-library/svelte@5.2.9(svelte@5.43.14)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.1.1)':
dependencies:
'@testing-library/dom': 10.4.1
svelte: 5.43.14
optionalDependencies:
vite: 6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
- vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jsdom@20.0.3)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
+ vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@20.0.3)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
'@testing-library/vue@8.1.0(@vue/compiler-sfc@3.5.24)(vue@3.5.24(typescript@5.9.3))':
dependencies:
@@ -22715,19 +17956,21 @@ snapshots:
'@tokenizer/token@0.3.0': {}
- '@tootallnate/once@1.1.2': {}
-
'@tootallnate/once@2.0.0': {}
'@trysound/sax@0.2.0': {}
- '@tsconfig/node10@1.0.11': {}
+ '@tsconfig/node10@1.0.11':
+ optional: true
- '@tsconfig/node12@1.0.11': {}
+ '@tsconfig/node12@1.0.11':
+ optional: true
- '@tsconfig/node14@1.0.3': {}
+ '@tsconfig/node14@1.0.3':
+ optional: true
- '@tsconfig/node16@1.0.4': {}
+ '@tsconfig/node16@1.0.4':
+ optional: true
'@tsconfig/svelte@5.0.6': {}
@@ -22743,11 +17986,6 @@ snapshots:
tslib: 2.8.1
optional: true
- '@tybys/wasm-util@0.10.2':
- dependencies:
- tslib: 2.8.1
- optional: true
-
'@tybys/wasm-util@0.9.0':
dependencies:
tslib: 2.8.1
@@ -22776,76 +18014,22 @@ snapshots:
dependencies:
'@babel/types': 7.29.0
- '@types/body-parser@1.19.5':
- dependencies:
- '@types/connect': 3.4.38
- '@types/node': 22.19.1
-
- '@types/bonjour@3.5.13':
- dependencies:
- '@types/node': 22.19.1
-
'@types/chai@5.2.2':
dependencies:
'@types/deep-eql': 4.0.2
- '@types/connect-history-api-fallback@1.5.4':
- dependencies:
- '@types/express-serve-static-core': 4.19.5
- '@types/node': 22.19.1
-
- '@types/connect@3.4.38':
- dependencies:
- '@types/node': 22.19.1
-
- '@types/cookie@0.4.1': {}
-
- '@types/cors@2.8.17':
- dependencies:
- '@types/node': 22.19.1
-
'@types/debug@4.1.12':
dependencies:
'@types/ms': 2.1.0
'@types/deep-eql@4.0.2': {}
- '@types/eslint-scope@3.7.7':
- dependencies:
- '@types/eslint': 9.6.0
- '@types/estree': 1.0.9
-
- '@types/eslint@9.6.0':
- dependencies:
- '@types/estree': 1.0.9
- '@types/json-schema': 7.0.15
-
'@types/esrecurse@4.3.1': {}
- '@types/estree@0.0.39': {}
-
- '@types/estree@0.0.51': {}
-
- '@types/estree@1.0.6': {}
-
'@types/estree@1.0.8': {}
'@types/estree@1.0.9': {}
- '@types/express-serve-static-core@4.19.5':
- dependencies:
- '@types/node': 22.19.1
- '@types/qs': 6.9.15
- '@types/range-parser': 1.2.7
- '@types/send': 0.17.4
-
- '@types/express@4.17.21':
- dependencies:
- '@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.19.5
- '@types/qs': 6.9.15
- '@types/serve-static': 1.15.7
-
'@types/fs-extra@11.0.4':
dependencies:
'@types/jsonfile': 6.1.4
@@ -22868,12 +18052,6 @@ snapshots:
dependencies:
'@types/unist': 3.0.3
- '@types/http-errors@2.0.4': {}
-
- '@types/http-proxy@1.17.17':
- dependencies:
- '@types/node': 22.19.1
-
'@types/istanbul-lib-coverage@2.0.4': {}
'@types/istanbul-lib-report@3.0.0':
@@ -22884,8 +18062,6 @@ snapshots:
dependencies:
'@types/istanbul-lib-report': 3.0.0
- '@types/jasmine@3.10.18': {}
-
'@types/json-schema@7.0.15': {}
'@types/json5@0.0.29': {}
@@ -22907,8 +18083,6 @@ snapshots:
'@types/mdurl@2.0.0': {}
- '@types/mime@1.3.5': {}
-
'@types/minimatch@6.0.0':
dependencies:
minimatch: 10.2.5
@@ -22925,8 +18099,6 @@ snapshots:
dependencies:
'@types/node': 22.19.1
- '@types/node@12.20.55': {}
-
'@types/node@16.9.1': {}
'@types/node@17.0.45': {}
@@ -22939,18 +18111,10 @@ snapshots:
dependencies:
undici-types: 7.16.0
- '@types/parse-json@4.0.2': {}
-
'@types/prop-types@15.7.15': {}
'@types/prop-types@15.7.5': {}
- '@types/pug@2.0.6': {}
-
- '@types/qs@6.9.15': {}
-
- '@types/range-parser@1.2.7': {}
-
'@types/react-dom@18.2.7':
dependencies:
'@types/react': 18.3.27
@@ -22960,39 +18124,14 @@ snapshots:
'@types/prop-types': 15.7.5
csstype: 3.2.3
- '@types/resolve@1.17.1':
- dependencies:
- '@types/node': 22.19.1
-
'@types/resolve@1.20.2': {}
- '@types/retry@0.12.0': {}
-
'@types/sax@1.2.7':
dependencies:
'@types/node': 17.0.45
'@types/semver@7.7.1': {}
- '@types/send@0.17.4':
- dependencies:
- '@types/mime': 1.3.5
- '@types/node': 22.19.1
-
- '@types/serve-index@1.9.4':
- dependencies:
- '@types/express': 4.17.21
-
- '@types/serve-static@1.15.7':
- dependencies:
- '@types/http-errors': 2.0.4
- '@types/node': 22.19.1
- '@types/send': 0.17.4
-
- '@types/sockjs@0.3.36':
- dependencies:
- '@types/node': 22.19.1
-
'@types/stack-utils@2.0.1': {}
'@types/svg2ttf@5.0.1':
@@ -23002,34 +18141,12 @@ snapshots:
'@types/web-bluetooth@0.0.21': {}
- '@types/ws@8.5.12':
- dependencies:
- '@types/node': 22.19.1
-
'@types/yargs-parser@21.0.3': {}
'@types/yargs@17.0.35':
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@5.48.2(@typescript-eslint/parser@5.48.2(eslint@8.57.1)(typescript@4.6.4))(eslint@8.57.1)(typescript@4.6.4)':
- dependencies:
- '@typescript-eslint/parser': 5.48.2(eslint@8.57.1)(typescript@4.6.4)
- '@typescript-eslint/scope-manager': 5.48.2
- '@typescript-eslint/type-utils': 5.48.2(eslint@8.57.1)(typescript@4.6.4)
- '@typescript-eslint/utils': 5.48.2(eslint@8.57.1)(typescript@4.6.4)
- debug: 4.3.6
- eslint: 8.57.1
- ignore: 5.3.2
- natural-compare-lite: 1.4.0
- regexpp: 3.2.0
- semver: 7.7.3
- tsutils: 3.21.0(typescript@4.6.4)
- optionalDependencies:
- typescript: 4.6.4
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
@@ -23066,31 +18183,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/experimental-utils@5.3.0(eslint@8.57.1)(typescript@4.6.4)':
- dependencies:
- '@types/json-schema': 7.0.15
- '@typescript-eslint/scope-manager': 5.3.0
- '@typescript-eslint/types': 5.3.0
- '@typescript-eslint/typescript-estree': 5.3.0(typescript@4.6.4)
- eslint: 8.57.1
- eslint-scope: 5.1.1
- eslint-utils: 3.0.0(eslint@8.57.1)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/parser@5.48.2(eslint@8.57.1)(typescript@4.6.4)':
- dependencies:
- '@typescript-eslint/scope-manager': 5.48.2
- '@typescript-eslint/types': 5.48.2
- '@typescript-eslint/typescript-estree': 5.48.2(typescript@4.6.4)
- debug: 4.3.6
- eslint: 8.57.1
- optionalDependencies:
- typescript: 4.6.4
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@typescript-eslint/scope-manager': 6.21.0
@@ -23125,16 +18217,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@5.3.0':
- dependencies:
- '@typescript-eslint/types': 5.3.0
- '@typescript-eslint/visitor-keys': 5.3.0
-
- '@typescript-eslint/scope-manager@5.48.2':
- dependencies:
- '@typescript-eslint/types': 5.48.2
- '@typescript-eslint/visitor-keys': 5.48.2
-
'@typescript-eslint/scope-manager@6.21.0':
dependencies:
'@typescript-eslint/types': 6.21.0
@@ -23149,18 +18231,6 @@ snapshots:
dependencies:
typescript: 5.9.3
- '@typescript-eslint/type-utils@5.48.2(eslint@8.57.1)(typescript@4.6.4)':
- dependencies:
- '@typescript-eslint/typescript-estree': 5.48.2(typescript@4.6.4)
- '@typescript-eslint/utils': 5.48.2(eslint@8.57.1)(typescript@4.6.4)
- debug: 4.4.3
- eslint: 8.57.1
- tsutils: 3.21.0(typescript@4.6.4)
- optionalDependencies:
- typescript: 4.6.4
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/type-utils@6.21.0(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3)
@@ -23185,42 +18255,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@5.3.0': {}
-
- '@typescript-eslint/types@5.48.2': {}
-
'@typescript-eslint/types@6.21.0': {}
'@typescript-eslint/types@8.57.1': {}
- '@typescript-eslint/typescript-estree@5.3.0(typescript@4.6.4)':
- dependencies:
- '@typescript-eslint/types': 5.3.0
- '@typescript-eslint/visitor-keys': 5.3.0
- debug: 4.4.3
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.8.0
- tsutils: 3.21.0(typescript@4.6.4)
- optionalDependencies:
- typescript: 4.6.4
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/typescript-estree@5.48.2(typescript@4.6.4)':
- dependencies:
- '@typescript-eslint/types': 5.48.2
- '@typescript-eslint/visitor-keys': 5.48.2
- debug: 4.4.3
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.8.0
- tsutils: 3.21.0(typescript@4.6.4)
- optionalDependencies:
- typescript: 4.6.4
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/typescript-estree@6.21.0(typescript@5.9.3)':
dependencies:
'@typescript-eslint/types': 6.21.0
@@ -23251,21 +18289,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@5.48.2(eslint@8.57.1)(typescript@4.6.4)':
- dependencies:
- '@types/json-schema': 7.0.15
- '@types/semver': 7.7.1
- '@typescript-eslint/scope-manager': 5.48.2
- '@typescript-eslint/types': 5.48.2
- '@typescript-eslint/typescript-estree': 5.48.2(typescript@4.6.4)
- eslint: 8.57.1
- eslint-scope: 5.1.1
- eslint-utils: 3.0.0(eslint@8.57.1)
- semver: 7.8.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
'@typescript-eslint/utils@6.21.0(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@eslint-community/eslint-utils': 4.6.1(eslint@8.57.1)
@@ -23291,16 +18314,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@5.3.0':
- dependencies:
- '@typescript-eslint/types': 5.3.0
- eslint-visitor-keys: 3.4.3
-
- '@typescript-eslint/visitor-keys@5.48.2':
- dependencies:
- '@typescript-eslint/types': 5.48.2
- eslint-visitor-keys: 3.4.3
-
'@typescript-eslint/visitor-keys@6.21.0':
dependencies:
'@typescript-eslint/types': 6.21.0
@@ -23425,19 +18438,13 @@ snapshots:
vite: 5.4.21(@types/node@24.10.1)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)
vue: 3.5.24(typescript@5.9.3)
- '@vitejs/plugin-vue@6.0.2(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vue@3.5.24(typescript@5.9.3))':
- dependencies:
- '@rolldown/pluginutils': 1.0.0-beta.50
- vite: 7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
- vue: 3.5.24(typescript@5.9.3)
-
'@vitest/browser-playwright@4.1.1(playwright@1.58.2)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.1.1)':
dependencies:
'@vitest/browser': 4.1.1(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.1.1)
'@vitest/mocker': 4.1.1(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
playwright: 1.58.2
tinyrainbow: 3.0.3
- vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jsdom@20.0.3)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
+ vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@20.0.3)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
transitivePeerDependencies:
- bufferutil
- msw
@@ -23445,13 +18452,13 @@ snapshots:
- vite
optional: true
- '@vitest/browser-playwright@4.1.1(playwright@1.58.2)(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.0.12)':
+ '@vitest/browser-playwright@4.1.1(playwright@1.58.2)(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.1.1)':
dependencies:
- '@vitest/browser': 4.1.1(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.0.12)
+ '@vitest/browser': 4.1.1(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.1.1)
'@vitest/mocker': 4.1.1(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
playwright: 1.58.2
tinyrainbow: 3.0.3
- vitest: 4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jiti@2.7.0)(jsdom@27.4.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
+ vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@27.4.0)(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
transitivePeerDependencies:
- bufferutil
- msw
@@ -23464,7 +18471,7 @@ snapshots:
'@vitest/mocker': 4.1.1(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
playwright: 1.58.2
tinyrainbow: 3.0.3
- vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jsdom@27.4.0)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
+ vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@27.4.0)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
transitivePeerDependencies:
- bufferutil
- msw
@@ -23481,7 +18488,7 @@ snapshots:
pngjs: 7.0.0
sirv: 3.0.2
tinyrainbow: 3.0.3
- vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jsdom@20.0.3)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
+ vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@20.0.3)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
ws: 8.20.0
transitivePeerDependencies:
- bufferutil
@@ -23490,7 +18497,7 @@ snapshots:
- vite
optional: true
- '@vitest/browser@4.1.1(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.0.12)':
+ '@vitest/browser@4.1.1(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.1.1)':
dependencies:
'@blazediff/core': 1.9.1
'@vitest/mocker': 4.1.1(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
@@ -23499,7 +18506,7 @@ snapshots:
pngjs: 7.0.0
sirv: 3.0.2
tinyrainbow: 3.0.3
- vitest: 4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jiti@2.7.0)(jsdom@27.4.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
+ vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@27.4.0)(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
ws: 8.20.0
transitivePeerDependencies:
- bufferutil
@@ -23516,7 +18523,7 @@ snapshots:
pngjs: 7.0.0
sirv: 3.0.2
tinyrainbow: 3.0.3
- vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jsdom@27.4.0)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
+ vitest: 4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@27.4.0)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
ws: 8.20.0
transitivePeerDependencies:
- bufferutil
@@ -23560,14 +18567,6 @@ snapshots:
chai: 6.2.2
tinyrainbow: 3.0.3
- '@vitest/mocker@4.0.12(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))':
- dependencies:
- '@vitest/spy': 4.0.12
- estree-walker: 3.0.3
- magic-string: 0.30.21
- optionalDependencies:
- vite: 7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
-
'@vitest/mocker@4.0.12(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))':
dependencies:
'@vitest/spy': 4.0.12
@@ -23645,7 +18644,7 @@ snapshots:
sirv: 3.0.2
tinyglobby: 0.2.15
tinyrainbow: 3.0.3
- vitest: 4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jiti@2.7.0)(jsdom@27.4.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
+ vitest: 4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/ui@4.0.12)(jiti@2.7.0)(jsdom@27.4.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
'@vitest/utils@4.0.12':
dependencies:
@@ -23800,99 +18799,10 @@ snapshots:
dependencies:
vue: 3.5.24(typescript@5.9.3)
- '@webassemblyjs/ast@1.11.1':
- dependencies:
- '@webassemblyjs/helper-numbers': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
-
- '@webassemblyjs/floating-point-hex-parser@1.11.1': {}
-
- '@webassemblyjs/helper-api-error@1.11.1': {}
-
- '@webassemblyjs/helper-buffer@1.11.1': {}
-
- '@webassemblyjs/helper-numbers@1.11.1':
- dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@xtuc/long': 4.2.2
-
- '@webassemblyjs/helper-wasm-bytecode@1.11.1': {}
-
- '@webassemblyjs/helper-wasm-section@1.11.1':
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
-
- '@webassemblyjs/ieee754@1.11.1':
- dependencies:
- '@xtuc/ieee754': 1.2.0
-
- '@webassemblyjs/leb128@1.11.1':
- dependencies:
- '@xtuc/long': 4.2.2
-
- '@webassemblyjs/utf8@1.11.1': {}
-
- '@webassemblyjs/wasm-edit@1.11.1':
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/helper-wasm-section': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-opt': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- '@webassemblyjs/wast-printer': 1.11.1
-
- '@webassemblyjs/wasm-gen@1.11.1':
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
-
- '@webassemblyjs/wasm-opt@1.11.1':
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
-
- '@webassemblyjs/wasm-parser@1.11.1':
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
-
- '@webassemblyjs/wast-printer@1.11.1':
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@xtuc/long': 4.2.2
-
'@xmldom/xmldom@0.7.13': {}
- '@xtuc/ieee754@1.2.0': {}
-
- '@xtuc/long@4.2.2': {}
-
'@yarnpkg/lockfile@1.1.0': {}
- '@yarnpkg/parsers@3.0.2':
- dependencies:
- js-yaml: 3.14.2
- tslib: 2.8.1
-
- '@zkochan/js-yaml@0.0.6':
- dependencies:
- argparse: 2.0.1
-
a-sync-waterfall@1.0.1: {}
abab@2.0.6: {}
@@ -23924,10 +18834,6 @@ snapshots:
acorn: 8.16.0
acorn-walk: 8.3.3
- acorn-import-assertions@1.9.0(acorn@8.16.0):
- dependencies:
- acorn: 8.16.0
-
acorn-import-attributes@1.9.5(acorn@8.16.0):
dependencies:
acorn: 8.16.0
@@ -23944,8 +18850,6 @@ snapshots:
dependencies:
acorn: 8.16.0
- acorn@8.12.1: {}
-
acorn@8.14.0: {}
acorn@8.14.1: {}
@@ -23954,11 +18858,6 @@ snapshots:
acorn@8.16.0: {}
- adjust-sourcemap-loader@4.0.0:
- dependencies:
- loader-utils: 2.0.4
- regex-parser: 2.3.0
-
agent-base@6.0.2:
dependencies:
debug: 4.4.3
@@ -23973,10 +18872,6 @@ snapshots:
agent-base@7.1.4: {}
- agentkeepalive@4.5.0:
- dependencies:
- humanize-ms: 1.2.1
-
aggregate-error@3.1.0:
dependencies:
clean-stack: 2.2.0
@@ -23994,14 +18889,6 @@ snapshots:
optionalDependencies:
ts-node: 10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)
- ajv-formats@2.1.1(ajv@8.17.1):
- optionalDependencies:
- ajv: 8.17.1
-
- ajv-formats@2.1.1(ajv@8.9.0):
- optionalDependencies:
- ajv: 8.9.0
-
ajv-formats@3.0.1(ajv@8.17.1):
optionalDependencies:
ajv: 8.17.1
@@ -24010,15 +18897,6 @@ snapshots:
optionalDependencies:
ajv: 8.18.0
- ajv-keywords@3.5.2(ajv@6.12.6):
- dependencies:
- ajv: 6.12.6
-
- ajv-keywords@5.1.0(ajv@8.17.1):
- dependencies:
- ajv: 8.17.1
- fast-deep-equal: 3.1.3
-
ajv@6.12.6:
dependencies:
fast-deep-equal: 3.1.3
@@ -24040,13 +18918,6 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- ajv@8.9.0:
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js: 4.4.1
-
algoliasearch@5.44.0:
dependencies:
'@algolia/abtesting': 1.10.0
@@ -24104,14 +18975,8 @@ snapshots:
anser@2.3.3: {}
- ansi-colors@4.1.1: {}
-
ansi-colors@4.1.3: {}
- ansi-escapes@4.3.2:
- dependencies:
- type-fest: 0.21.3
-
ansi-escapes@5.0.0:
dependencies:
type-fest: 1.4.0
@@ -24120,8 +18985,6 @@ snapshots:
dependencies:
environment: 1.1.0
- ansi-html-community@0.0.8: {}
-
ansi-regex@5.0.1: {}
ansi-regex@6.0.1: {}
@@ -24154,8 +19017,6 @@ snapshots:
normalize-path: 3.0.0
picomatch: 2.3.2
- aproba@2.1.0: {}
-
archiver-utils@5.0.2:
dependencies:
glob: 10.5.0
@@ -24180,12 +19041,8 @@ snapshots:
- bare-buffer
- react-native-b4a
- are-we-there-yet@3.0.1:
- dependencies:
- delegates: 1.0.0
- readable-stream: 3.6.2
-
- arg@4.1.3: {}
+ arg@4.1.3:
+ optional: true
arg@5.0.2: {}
@@ -24195,11 +19052,6 @@ snapshots:
argparse@2.0.1: {}
- aria-query@4.2.2:
- dependencies:
- '@babel/runtime': 7.27.1
- '@babel/runtime-corejs3': 7.25.0
-
aria-query@5.1.3:
dependencies:
deep-equal: 2.2.2
@@ -24217,10 +19069,6 @@ snapshots:
array-find-index@1.0.2: {}
- array-flatten@1.1.1: {}
-
- array-flatten@2.1.2: {}
-
array-includes@3.1.9:
dependencies:
call-bind: 1.0.8
@@ -24236,8 +19084,6 @@ snapshots:
array-union@2.1.0: {}
- array-union@3.0.1: {}
-
array.prototype.findlastindex@1.2.6:
dependencies:
call-bind: 1.0.8
@@ -24387,17 +19233,12 @@ snapshots:
async-sema@3.1.1: {}
- async@2.6.4:
- dependencies:
- lodash: 4.18.1
-
async@3.2.6: {}
asynckit@0.4.0: {}
- at-least-node@1.0.0: {}
-
- atob@2.1.2: {}
+ atob@2.1.2:
+ optional: true
auto-config-loader@2.0.2:
dependencies:
@@ -24409,26 +19250,6 @@ snapshots:
toml-eslint-parser: 0.10.0
yaml-eslint-parser: 1.3.0
- autoprefixer@10.4.20(postcss@8.4.41):
- dependencies:
- browserslist: 4.25.1
- caniuse-lite: 1.0.30001673
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.1.1
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- autoprefixer@10.4.20(postcss@8.4.5):
- dependencies:
- browserslist: 4.25.1
- caniuse-lite: 1.0.30001673
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.1.1
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.1.0
@@ -24440,8 +19261,7 @@ snapshots:
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
-
- axobject-query@2.2.0: {}
+ optional: true
axobject-query@4.1.0: {}
@@ -24464,15 +19284,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-loader@8.2.5(@babel/core@7.16.12)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- '@babel/core': 7.16.12
- find-cache-dir: 3.3.2
- loader-utils: 2.0.4
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
babel-plugin-istanbul@6.1.1:
dependencies:
'@babel/helper-plugin-utils': 7.25.9
@@ -24499,15 +19310,6 @@ snapshots:
html-entities: 2.3.3
parse5: 7.3.0
- babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.16.12):
- dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.16.12
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.16.12)
- semver: 7.8.0
- transitivePeerDependencies:
- - supports-color
-
babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.5):
dependencies:
'@babel/compat-data': 7.28.5
@@ -24550,21 +19352,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.5.3(@babel/core@7.16.12):
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.16.12)
- core-js-compat: 3.38.1
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-regenerator@0.3.1(@babel/core@7.16.12):
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.16.12)
- transitivePeerDependencies:
- - supports-color
-
babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.5):
dependencies:
'@babel/core': 7.28.5
@@ -24669,12 +19456,8 @@ snapshots:
base64-js@1.5.1: {}
- base64id@2.0.0: {}
-
baseline-browser-mapping@2.10.10: {}
- batch@0.6.1: {}
-
beasties@0.4.1:
dependencies:
css-select: 6.0.0
@@ -24693,9 +19476,8 @@ snapshots:
dependencies:
require-from-string: 2.0.2
- big.js@5.2.2: {}
-
- binary-extensions@2.3.0: {}
+ binary-extensions@2.3.0:
+ optional: true
bindings@1.5.0:
dependencies:
@@ -24703,31 +19485,8 @@ snapshots:
birpc@2.8.0: {}
- bl@4.1.0:
- dependencies:
- buffer: 5.7.1
- inherits: 2.0.4
- readable-stream: 3.6.2
-
bmp-js@0.1.0: {}
- body-parser@1.20.3:
- dependencies:
- bytes: 3.1.2
- content-type: 1.0.5
- debug: 2.6.9
- depd: 2.0.0
- destroy: 1.2.0
- http-errors: 2.0.0
- iconv-lite: 0.4.24
- on-finished: 2.4.1
- qs: 6.13.0
- raw-body: 2.5.2
- type-is: 1.6.18
- unpipe: 1.0.0
- transitivePeerDependencies:
- - supports-color
-
body-parser@2.2.2:
dependencies:
bytes: 3.1.2
@@ -24742,15 +19501,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- bonjour@3.5.0:
- dependencies:
- array-flatten: 2.1.2
- deep-equal: 1.1.2
- dns-equal: 1.0.0
- dns-txt: 2.0.2
- multicast-dns: 6.2.3
- multicast-dns-service-types: 1.1.0
-
boolbase@1.0.0: {}
brace-expansion@1.1.11:
@@ -24787,13 +19537,6 @@ snapshots:
dependencies:
duplexer: 0.1.1
- browserslist@4.23.3:
- dependencies:
- caniuse-lite: 1.0.30001673
- electron-to-chromium: 1.5.47
- node-releases: 2.0.18
- update-browserslist-db: 1.1.1(browserslist@4.23.3)
-
browserslist@4.24.5:
dependencies:
caniuse-lite: 1.0.30001718
@@ -24820,16 +19563,12 @@ snapshots:
dependencies:
node-int64: 0.4.0
- buffer-crc32@0.2.13: {}
-
buffer-crc32@1.0.0: {}
buffer-equal@0.0.1: {}
buffer-from@1.1.2: {}
- buffer-indexof@1.1.1: {}
-
buffer@5.7.1:
dependencies:
base64-js: 1.5.1
@@ -24845,16 +19584,10 @@ snapshots:
readable-stream: 3.6.2
yerror: 8.0.0
- builtin-modules@3.3.0: {}
-
- builtins@1.0.3: {}
-
bundle-name@4.1.0:
dependencies:
run-applescript: 7.1.0
- bytes@3.0.0: {}
-
bytes@3.1.2: {}
c12@3.3.4(magicast@0.5.2):
@@ -24874,52 +19607,6 @@ snapshots:
optionalDependencies:
magicast: 0.5.2
- cacache@15.3.0:
- dependencies:
- '@npmcli/fs': 1.1.1
- '@npmcli/move-file': 1.1.2
- chownr: 2.0.0
- fs-minipass: 2.1.0
- glob: 7.2.3
- infer-owner: 1.0.4
- lru-cache: 6.0.0
- minipass: 3.3.6
- minipass-collect: 1.0.2
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- mkdirp: 1.0.4
- p-map: 4.0.0
- promise-inflight: 1.0.1
- rimraf: 3.0.2
- ssri: 8.0.1
- tar: 6.2.1
- unique-filename: 1.1.1
- transitivePeerDependencies:
- - bluebird
-
- cacache@16.1.3:
- dependencies:
- '@npmcli/fs': 2.1.2
- '@npmcli/move-file': 2.0.1
- chownr: 2.0.0
- fs-minipass: 2.1.0
- glob: 8.1.0
- infer-owner: 1.0.4
- lru-cache: 7.18.3
- minipass: 3.3.6
- minipass-collect: 1.0.2
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- mkdirp: 1.0.4
- p-map: 4.0.0
- promise-inflight: 1.0.1
- rimraf: 3.0.2
- ssri: 9.0.1
- tar: 6.2.1
- unique-filename: 2.0.1
- transitivePeerDependencies:
- - bluebird
-
cacache@18.0.4:
dependencies:
'@npmcli/fs': 3.1.0
@@ -24981,8 +19668,6 @@ snapshots:
camelcase@6.3.0: {}
- caniuse-lite@1.0.30001673: {}
-
caniuse-lite@1.0.30001718: {}
caniuse-lite@1.0.30001731: {}
@@ -24995,11 +19680,6 @@ snapshots:
chai@6.2.2: {}
- chalk@4.1.0:
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
-
chalk@4.1.2:
dependencies:
ansi-styles: 4.3.0
@@ -25015,8 +19695,6 @@ snapshots:
character-entities@2.0.2: {}
- chardet@0.7.0: {}
-
chardet@2.1.1: {}
cheerio-select@2.1.0:
@@ -25053,6 +19731,7 @@ snapshots:
readdirp: 3.6.0
optionalDependencies:
fsevents: 2.3.3
+ optional: true
chokidar@4.0.3:
dependencies:
@@ -25075,8 +19754,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- chrome-trace-event@1.0.4: {}
-
chromium-edge-launcher@0.2.0:
dependencies:
'@types/node': 22.19.1
@@ -25094,10 +19771,6 @@ snapshots:
ci-info@4.4.0: {}
- circular-dependency-plugin@5.2.2(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
citty@0.1.6:
dependencies:
consola: 3.4.2
@@ -25108,10 +19781,6 @@ snapshots:
clean-stack@2.2.0: {}
- cli-cursor@3.1.0:
- dependencies:
- restore-cursor: 3.1.0
-
cli-cursor@4.0.0:
dependencies:
restore-cursor: 4.0.0
@@ -25124,10 +19793,6 @@ snapshots:
dependencies:
string-width: 4.2.3
- cli-spinners@2.6.1: {}
-
- cli-spinners@2.9.2: {}
-
cli-spinners@3.4.0: {}
cli-table3@0.6.5:
@@ -25146,8 +19811,6 @@ snapshots:
slice-ansi: 8.0.0
string-width: 8.2.0
- cli-width@3.0.0: {}
-
cli-width@4.1.0: {}
cliui@7.0.4:
@@ -25174,36 +19837,22 @@ snapshots:
kind-of: 6.0.3
shallow-clone: 3.0.1
- clone@1.0.4: {}
-
clsx@2.1.1: {}
cluster-key-slot@1.1.2: {}
- code-red@1.0.4:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
- '@types/estree': 1.0.8
- acorn: 8.16.0
- estree-walker: 3.0.3
- periscopic: 3.1.0
-
color-convert@2.0.1:
dependencies:
color-name: 1.1.4
color-name@1.1.4: {}
- color-support@1.1.3: {}
-
colorette@1.4.0: {}
colorette@2.0.20: {}
colors-cli@1.0.32: {}
- colors@1.4.0: {}
-
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
@@ -25228,8 +19877,6 @@ snapshots:
commander@7.2.0: {}
- commander@8.3.0: {}
-
commenting@1.1.0: {}
common-ancestor-path@2.0.0: {}
@@ -25248,22 +19895,6 @@ snapshots:
normalize-path: 3.0.0
readable-stream: 4.7.0
- compressible@2.0.18:
- dependencies:
- mime-db: 1.54.0
-
- compression@1.7.4:
- dependencies:
- accepts: 1.3.8
- bytes: 3.0.0
- compressible: 2.0.18
- debug: 2.6.9
- on-headers: 1.0.2
- safe-buffer: 5.1.2
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
-
concat-map@0.0.1: {}
confbox@0.1.8: {}
@@ -25277,8 +19908,6 @@ snapshots:
confusing-browser-globals@1.0.11: {}
- connect-history-api-fallback@1.6.0: {}
-
connect@3.7.0:
dependencies:
debug: 2.6.9
@@ -25290,12 +19919,6 @@ snapshots:
consola@3.4.2: {}
- console-control-strings@1.1.0: {}
-
- content-disposition@0.5.4:
- dependencies:
- safe-buffer: 5.2.1
-
content-disposition@1.0.1: {}
content-type@1.0.5: {}
@@ -25312,14 +19935,8 @@ snapshots:
cookie-es@3.1.1: {}
- cookie-signature@1.0.6: {}
-
cookie-signature@1.2.2: {}
- cookie@0.4.2: {}
-
- cookie@0.7.1: {}
-
cookie@0.7.2: {}
cookie@1.1.1: {}
@@ -25332,28 +19949,10 @@ snapshots:
dependencies:
is-what: 5.5.0
- copy-webpack-plugin@10.2.1(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- fast-glob: 3.3.3
- glob-parent: 6.0.2
- globby: 12.2.0
- normalize-path: 3.0.0
- schema-utils: 4.2.0
- serialize-javascript: 6.0.2
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
- core-js-compat@3.38.1:
- dependencies:
- browserslist: 4.25.1
-
core-js-compat@3.45.0:
dependencies:
browserslist: 4.25.1
- core-js-pure@3.38.1: {}
-
- core-js@3.20.3: {}
-
core-util-is@1.0.3: {}
cors@2.8.5:
@@ -25368,14 +19967,6 @@ snapshots:
js-yaml: 3.14.2
parse-json: 4.0.0
- cosmiconfig@7.1.0:
- dependencies:
- '@types/parse-json': 4.0.2
- import-fresh: 3.3.1
- parse-json: 5.2.0
- path-type: 4.0.0
- yaml: 1.10.2
-
crc-32@1.2.2: {}
crc32-stream@6.0.0:
@@ -25383,19 +19974,11 @@ snapshots:
crc-32: 1.2.2
readable-stream: 4.7.0
- create-require@1.1.1: {}
+ create-require@1.1.1:
+ optional: true
crelt@1.0.6: {}
- critters@0.0.16:
- dependencies:
- chalk: 4.1.2
- css-select: 4.3.0
- parse5: 6.0.1
- parse5-htmlparser2-tree-adapter: 6.0.1
- postcss: 8.5.9
- pretty-bytes: 5.6.0
-
croner@10.0.1: {}
cross-spawn@7.0.5:
@@ -25408,54 +19991,6 @@ snapshots:
dependencies:
uncrypto: 0.1.3
- css-blank-pseudo@3.0.3(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- css-blank-pseudo@3.0.3(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-selector-parser: 6.1.2
-
- css-has-pseudo@3.0.4(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- css-has-pseudo@3.0.4(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-selector-parser: 6.1.2
-
- css-loader@6.5.1(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- icss-utils: 5.1.0(postcss@8.5.9)
- postcss: 8.5.9
- postcss-modules-extract-imports: 3.1.0(postcss@8.5.9)
- postcss-modules-local-by-default: 4.0.5(postcss@8.5.9)
- postcss-modules-scope: 3.2.0(postcss@8.5.9)
- postcss-modules-values: 4.0.0(postcss@8.5.9)
- postcss-value-parser: 4.2.0
- semver: 7.8.0
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
- css-prefers-color-scheme@6.0.3(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
-
- css-prefers-color-scheme@6.0.3(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
-
- css-select@4.3.0:
- dependencies:
- boolbase: 1.0.0
- css-what: 6.2.2
- domhandler: 4.3.1
- domutils: 2.8.0
- nth-check: 2.1.1
-
css-select@5.1.0:
dependencies:
boolbase: 1.0.0
@@ -25513,12 +20048,7 @@ snapshots:
inherits: 2.0.4
source-map: 0.6.1
source-map-resolve: 0.6.0
-
- cssdb@5.1.0: {}
-
- cssdb@7.11.2: {}
-
- cssesc@3.0.0: {}
+ optional: true
csso@5.0.5:
dependencies:
@@ -25545,10 +20075,6 @@ snapshots:
cubic2quad@1.2.1: {}
- cuint@0.2.2: {}
-
- custom-event@1.0.1: {}
-
data-uri-to-buffer@4.0.1: {}
data-urls@3.0.2:
@@ -25580,8 +20106,6 @@ snapshots:
es-errors: 1.3.0
is-data-view: 1.0.2
- date-format@4.0.14: {}
-
db0@0.3.4: {}
debug@2.6.9:
@@ -25592,10 +20116,6 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.3.3:
- dependencies:
- ms: 2.1.2
-
debug@4.3.4:
dependencies:
ms: 2.1.2
@@ -25608,10 +20128,6 @@ snapshots:
dependencies:
ms: 2.1.2
- debug@4.3.7:
- dependencies:
- ms: 2.1.3
-
debug@4.4.0:
dependencies:
ms: 2.1.3
@@ -25628,19 +20144,11 @@ snapshots:
dependencies:
character-entities: 2.0.2
- decode-uri-component@0.2.2: {}
+ decode-uri-component@0.2.2:
+ optional: true
dedent-js@1.0.1: {}
- deep-equal@1.1.2:
- dependencies:
- is-arguments: 1.1.1
- is-date-object: 1.1.0
- is-regex: 1.2.1
- object-is: 1.1.6
- object-keys: 1.1.1
- regexp.prototype.flags: 1.5.4
-
deep-equal@2.2.2:
dependencies:
array-buffer-byte-length: 1.0.2
@@ -25678,14 +20186,6 @@ snapshots:
bundle-name: 4.1.0
default-browser-id: 5.0.1
- default-gateway@6.0.3:
- 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
@@ -25706,29 +20206,12 @@ snapshots:
defu@6.1.7: {}
- del@6.1.1:
- dependencies:
- globby: 11.1.0
- graceful-fs: 4.2.11
- is-glob: 4.0.3
- is-path-cwd: 2.2.0
- is-path-inside: 3.0.3
- p-map: 4.0.0
- rimraf: 3.0.2
- slash: 3.0.0
-
delayed-stream@1.0.0: {}
- delegates@1.0.0: {}
-
denque@2.1.0: {}
- depd@1.1.2: {}
-
depd@2.0.0: {}
- dependency-graph@0.11.0: {}
-
dependency-graph@1.0.0: {}
deprecation@2.3.1: {}
@@ -25739,24 +20222,19 @@ snapshots:
destroy@1.2.0: {}
- detect-indent@6.1.0: {}
-
detect-libc@1.0.3:
optional: true
detect-libc@2.1.2: {}
- detect-node@2.1.0: {}
-
devalue@5.8.0: {}
devlop@1.1.0:
dependencies:
dequal: 2.0.3
- di@0.0.1: {}
-
- diff@4.0.2: {}
+ diff@4.0.2:
+ optional: true
diff@8.0.4: {}
@@ -25770,17 +20248,6 @@ snapshots:
dlv@1.1.3: {}
- dns-equal@1.0.0: {}
-
- dns-packet@1.3.4:
- dependencies:
- ip: 1.1.9
- safe-buffer: 5.2.1
-
- dns-txt@2.0.2:
- dependencies:
- buffer-indexof: 1.1.1
-
doctrine@2.1.0:
dependencies:
esutils: 2.0.3
@@ -25793,24 +20260,11 @@ snapshots:
dom-accessibility-api@0.6.3: {}
- dom-serialize@2.2.1:
- dependencies:
- custom-event: 1.0.1
- ent: 2.2.1
- extend: 3.0.2
- void-elements: 2.0.1
-
dom-serializer@0.2.2:
dependencies:
domelementtype: 2.3.0
entities: 2.2.0
- dom-serializer@1.4.1:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 4.3.1
- entities: 2.2.0
-
dom-serializer@2.0.0:
dependencies:
domelementtype: 2.3.0
@@ -25831,10 +20285,6 @@ snapshots:
dependencies:
domelementtype: 1.3.1
- domhandler@4.3.1:
- dependencies:
- domelementtype: 2.3.0
-
domhandler@5.0.3:
dependencies:
domelementtype: 2.3.0
@@ -25846,12 +20296,6 @@ snapshots:
dom-serializer: 0.2.2
domelementtype: 1.3.1
- domutils@2.8.0:
- dependencies:
- dom-serializer: 1.4.1
- domelementtype: 2.3.0
- domhandler: 4.3.1
-
domutils@3.2.2:
dependencies:
dom-serializer: 2.0.0
@@ -25862,8 +20306,6 @@ snapshots:
dependencies:
type-fest: 5.6.0
- dotenv@10.0.0: {}
-
dotenv@16.6.1: {}
dotenv@17.2.3: {}
@@ -25893,18 +20335,12 @@ snapshots:
ee-first@1.1.1: {}
- ejs@3.1.10:
- dependencies:
- jake: 10.9.2
-
electron-to-chromium@1.5.155: {}
electron-to-chromium@1.5.198: {}
electron-to-chromium@1.5.321: {}
- electron-to-chromium@1.5.47: {}
-
element-to-path@1.2.1: {}
emoji-regex-xs@1.0.0: {}
@@ -25915,8 +20351,6 @@ snapshots:
emoji-regex@9.2.2: {}
- emojis-list@3.0.0: {}
-
encodeurl@1.0.2: {}
encodeurl@2.0.0: {}
@@ -25931,41 +20365,10 @@ snapshots:
iconv-lite: 0.6.3
optional: true
- end-of-stream@1.4.4:
- dependencies:
- once: 1.4.0
-
- engine.io-parser@5.2.3: {}
-
- engine.io@6.5.5:
- dependencies:
- '@types/cookie': 0.4.1
- '@types/cors': 2.8.17
- '@types/node': 22.19.1
- accepts: 1.3.8
- base64id: 2.0.0
- cookie: 0.4.2
- cors: 2.8.5
- debug: 4.3.7
- engine.io-parser: 5.2.3
- ws: 8.17.1
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- enhanced-resolve@5.18.1:
- dependencies:
- graceful-fs: 4.2.11
- tapable: 2.2.1
-
enquirer@2.3.6:
dependencies:
ansi-colors: 4.1.3
-
- ent@2.2.1:
- dependencies:
- punycode: 1.4.1
+ optional: true
entities@1.1.2: {}
@@ -26125,8 +20528,6 @@ snapshots:
es-html-parser@0.0.9: {}
- es-module-lexer@0.9.3: {}
-
es-module-lexer@1.6.0: {}
es-module-lexer@1.7.0: {}
@@ -26156,177 +20557,6 @@ snapshots:
is-date-object: 1.1.0
is-symbol: 1.1.1
- es6-promise@3.3.1: {}
-
- esbuild-android-64@0.14.54:
- optional: true
-
- esbuild-android-arm64@0.14.22:
- optional: true
-
- esbuild-android-arm64@0.14.54:
- optional: true
-
- esbuild-darwin-64@0.14.22:
- optional: true
-
- esbuild-darwin-64@0.14.54:
- optional: true
-
- esbuild-darwin-arm64@0.14.22:
- optional: true
-
- esbuild-darwin-arm64@0.14.54:
- optional: true
-
- esbuild-freebsd-64@0.14.22:
- optional: true
-
- esbuild-freebsd-64@0.14.54:
- optional: true
-
- esbuild-freebsd-arm64@0.14.22:
- optional: true
-
- esbuild-freebsd-arm64@0.14.54:
- optional: true
-
- esbuild-linux-32@0.14.22:
- optional: true
-
- esbuild-linux-32@0.14.54:
- optional: true
-
- esbuild-linux-64@0.14.22:
- optional: true
-
- esbuild-linux-64@0.14.54:
- optional: true
-
- esbuild-linux-arm64@0.14.22:
- optional: true
-
- esbuild-linux-arm64@0.14.54:
- optional: true
-
- esbuild-linux-arm@0.14.22:
- optional: true
-
- esbuild-linux-arm@0.14.54:
- optional: true
-
- esbuild-linux-mips64le@0.14.22:
- optional: true
-
- esbuild-linux-mips64le@0.14.54:
- optional: true
-
- esbuild-linux-ppc64le@0.14.22:
- optional: true
-
- esbuild-linux-ppc64le@0.14.54:
- optional: true
-
- esbuild-linux-riscv64@0.14.22:
- optional: true
-
- esbuild-linux-riscv64@0.14.54:
- optional: true
-
- esbuild-linux-s390x@0.14.22:
- optional: true
-
- esbuild-linux-s390x@0.14.54:
- optional: true
-
- esbuild-netbsd-64@0.14.22:
- optional: true
-
- esbuild-netbsd-64@0.14.54:
- optional: true
-
- esbuild-openbsd-64@0.14.22:
- optional: true
-
- esbuild-openbsd-64@0.14.54:
- optional: true
-
- esbuild-sunos-64@0.14.22:
- optional: true
-
- esbuild-sunos-64@0.14.54:
- optional: true
-
- esbuild-wasm@0.14.22: {}
-
- esbuild-wasm@0.14.54: {}
-
- esbuild-windows-32@0.14.22:
- optional: true
-
- esbuild-windows-32@0.14.54:
- optional: true
-
- esbuild-windows-64@0.14.22:
- optional: true
-
- esbuild-windows-64@0.14.54:
- optional: true
-
- esbuild-windows-arm64@0.14.22:
- optional: true
-
- esbuild-windows-arm64@0.14.54:
- optional: true
-
- esbuild@0.14.22:
- optionalDependencies:
- esbuild-android-arm64: 0.14.22
- esbuild-darwin-64: 0.14.22
- esbuild-darwin-arm64: 0.14.22
- esbuild-freebsd-64: 0.14.22
- esbuild-freebsd-arm64: 0.14.22
- esbuild-linux-32: 0.14.22
- esbuild-linux-64: 0.14.22
- esbuild-linux-arm: 0.14.22
- esbuild-linux-arm64: 0.14.22
- esbuild-linux-mips64le: 0.14.22
- esbuild-linux-ppc64le: 0.14.22
- esbuild-linux-riscv64: 0.14.22
- esbuild-linux-s390x: 0.14.22
- esbuild-netbsd-64: 0.14.22
- esbuild-openbsd-64: 0.14.22
- esbuild-sunos-64: 0.14.22
- esbuild-windows-32: 0.14.22
- esbuild-windows-64: 0.14.22
- esbuild-windows-arm64: 0.14.22
- optional: true
-
- esbuild@0.14.54:
- optionalDependencies:
- '@esbuild/linux-loong64': 0.14.54
- esbuild-android-64: 0.14.54
- esbuild-android-arm64: 0.14.54
- esbuild-darwin-64: 0.14.54
- esbuild-darwin-arm64: 0.14.54
- esbuild-freebsd-64: 0.14.54
- esbuild-freebsd-arm64: 0.14.54
- esbuild-linux-32: 0.14.54
- esbuild-linux-64: 0.14.54
- esbuild-linux-arm: 0.14.54
- esbuild-linux-arm64: 0.14.54
- esbuild-linux-mips64le: 0.14.54
- esbuild-linux-ppc64le: 0.14.54
- esbuild-linux-riscv64: 0.14.54
- esbuild-linux-s390x: 0.14.54
- esbuild-netbsd-64: 0.14.54
- esbuild-openbsd-64: 0.14.54
- esbuild-sunos-64: 0.14.54
- esbuild-windows-32: 0.14.54
- esbuild-windows-64: 0.14.54
- esbuild-windows-arm64: 0.14.54
- optional: true
-
esbuild@0.21.5:
optionalDependencies:
'@esbuild/aix-ppc64': 0.21.5
@@ -26504,8 +20734,6 @@ snapshots:
escape-html@1.0.3: {}
- escape-string-regexp@1.0.5: {}
-
escape-string-regexp@2.0.0: {}
escape-string-regexp@4.0.0: {}
@@ -26614,11 +20842,6 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-scope@5.1.1:
- dependencies:
- esrecurse: 4.3.0
- estraverse: 4.3.0
-
eslint-scope@7.2.2:
dependencies:
esrecurse: 4.3.0
@@ -26631,13 +20854,6 @@ snapshots:
esrecurse: 4.3.0
estraverse: 5.3.0
- eslint-utils@3.0.0(eslint@8.57.1):
- dependencies:
- eslint: 8.57.1
- eslint-visitor-keys: 2.1.0
-
- eslint-visitor-keys@2.1.0: {}
-
eslint-visitor-keys@3.4.3: {}
eslint-visitor-keys@4.2.1: {}
@@ -26715,12 +20931,8 @@ snapshots:
dependencies:
estraverse: 5.3.0
- estraverse@4.3.0: {}
-
estraverse@5.3.0: {}
- estree-walker@1.0.1: {}
-
estree-walker@2.0.2: {}
estree-walker@3.0.3:
@@ -26737,8 +20949,6 @@ snapshots:
eventemitter3@2.0.3: {}
- eventemitter3@4.0.7: {}
-
eventemitter3@5.0.1: {}
eventemitter3@5.0.4: {}
@@ -26794,42 +21004,6 @@ snapshots:
express: 5.2.1
ip-address: 10.1.0
- express@4.21.2:
- dependencies:
- accepts: 1.3.8
- array-flatten: 1.1.1
- body-parser: 1.20.3
- content-disposition: 0.5.4
- content-type: 1.0.5
- cookie: 0.7.1
- cookie-signature: 1.0.6
- debug: 2.6.9
- depd: 2.0.0
- encodeurl: 2.0.0
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 1.3.1
- fresh: 0.5.2
- http-errors: 2.0.0
- merge-descriptors: 1.0.3
- methods: 1.1.2
- on-finished: 2.4.1
- parseurl: 1.3.3
- path-to-regexp: 0.1.12
- proxy-addr: 2.0.7
- qs: 6.13.0
- range-parser: 1.2.1
- safe-buffer: 5.2.1
- send: 0.19.0
- serve-static: 1.16.2
- setprototypeof: 1.2.0
- statuses: 2.0.1
- type-is: 1.6.18
- utils-merge: 1.0.1
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
-
express@5.2.1:
dependencies:
accepts: 2.0.0
@@ -26871,24 +21045,10 @@ snapshots:
extend@3.0.2: {}
- external-editor@3.1.0:
- dependencies:
- chardet: 0.7.0
- iconv-lite: 0.4.24
- tmp: 0.0.33
-
fast-deep-equal@3.1.3: {}
fast-fifo@1.3.2: {}
- fast-glob@3.2.7:
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.8
-
fast-glob@3.3.3:
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -26923,10 +21083,6 @@ snapshots:
dependencies:
format: 0.2.2
- faye-websocket@0.11.4:
- dependencies:
- websocket-driver: 0.7.4
-
fb-watchman@2.0.2:
dependencies:
bser: 2.1.1
@@ -26954,10 +21110,6 @@ snapshots:
fflate@0.8.2: {}
- figures@3.2.0:
- dependencies:
- escape-string-regexp: 1.0.5
-
file-entry-cache@6.0.1:
dependencies:
flat-cache: 3.2.0
@@ -26970,10 +21122,6 @@ snapshots:
file-uri-to-path@1.0.0: {}
- filelist@1.0.4:
- dependencies:
- minimatch: 5.1.9
-
filesize@10.1.6: {}
fill-range@7.1.1:
@@ -26992,18 +21140,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- finalhandler@1.3.1:
- dependencies:
- debug: 2.6.9
- encodeurl: 2.0.0
- escape-html: 1.0.3
- on-finished: 2.4.1
- parseurl: 1.3.3
- statuses: 2.0.1
- unpipe: 1.0.0
- transitivePeerDependencies:
- - supports-color
-
finalhandler@2.1.1:
dependencies:
debug: 4.4.3
@@ -27021,12 +21157,6 @@ snapshots:
make-dir: 2.1.0
pkg-dir: 3.0.0
- find-cache-dir@3.3.2:
- dependencies:
- commondir: 1.0.1
- make-dir: 3.1.0
- pkg-dir: 4.2.0
-
find-cache-directory@6.0.0:
dependencies:
common-path-prefix: 3.0.0
@@ -27054,8 +21184,6 @@ snapshots:
keyv: 4.5.4
rimraf: 3.0.2
- flat@5.0.2: {}
-
flatted@3.3.3: {}
flattie@1.1.1: {}
@@ -27068,7 +21196,8 @@ snapshots:
dependencies:
tabbable: 6.3.0
- follow-redirects@1.15.6: {}
+ follow-redirects@1.15.6:
+ optional: true
fontace@0.4.1:
dependencies:
@@ -27103,8 +21232,6 @@ snapshots:
forwarded@0.2.0: {}
- fraction.js@4.3.7: {}
-
framer-motion@12.38.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
motion-dom: 12.38.0
@@ -27118,8 +21245,6 @@ snapshots:
fresh@2.0.0: {}
- fs-constants@1.0.0: {}
-
fs-extra@11.2.0:
dependencies:
graceful-fs: 4.2.11
@@ -27138,13 +21263,6 @@ snapshots:
jsonfile: 4.0.0
universalify: 0.1.2
- fs-extra@9.1.0:
- dependencies:
- at-least-node: 1.0.0
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.1
-
fs-minipass@2.1.0:
dependencies:
minipass: 3.3.6
@@ -27153,8 +21271,6 @@ snapshots:
dependencies:
minipass: 7.1.3
- fs-monkey@1.0.6: {}
-
fs.realpath@1.0.0: {}
fsevents@2.3.2:
@@ -27178,17 +21294,6 @@ snapshots:
fuse.js@7.1.0: {}
- gauge@4.0.4:
- dependencies:
- aproba: 2.1.0
- color-support: 1.1.3
- console-control-strings: 1.1.0
- has-unicode: 2.0.1
- signal-exit: 3.0.7
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wide-align: 1.1.5
-
gensync@1.0.0-beta.2: {}
get-caller-file@2.0.5: {}
@@ -27272,24 +21377,6 @@ snapshots:
minipass: 7.1.3
path-scurry: 2.0.2
- glob@7.1.4:
- dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 3.1.5
- once: 1.4.0
- path-is-absolute: 1.0.1
-
- glob@7.2.0:
- dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 3.1.2
- once: 1.4.0
- path-is-absolute: 1.0.1
-
glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
@@ -27347,15 +21434,6 @@ snapshots:
merge2: 1.4.1
slash: 3.0.0
- globby@12.2.0:
- dependencies:
- array-union: 3.0.1
- dir-glob: 3.0.1
- fast-glob: 3.3.3
- ignore: 5.3.2
- merge2: 1.4.1
- slash: 4.0.0
-
globby@16.2.0:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
@@ -27406,8 +21484,6 @@ snapshots:
ufo: 1.6.4
uncrypto: 0.1.3
- handle-thing@2.0.1: {}
-
has-bigints@1.1.0: {}
has-flag@4.0.0: {}
@@ -27426,8 +21502,6 @@ snapshots:
dependencies:
has-symbols: 1.1.0
- has-unicode@2.0.1: {}
-
hasown@2.0.2:
dependencies:
function-bind: 1.1.2
@@ -27547,21 +21621,10 @@ snapshots:
hookable@5.5.3: {}
- hosted-git-info@4.1.0:
- dependencies:
- lru-cache: 6.0.0
-
hosted-git-info@9.0.2:
dependencies:
lru-cache: 11.3.6
- hpack.js@2.1.6:
- dependencies:
- inherits: 2.0.4
- obuf: 1.1.2
- readable-stream: 2.3.8
- wbuf: 1.7.3
-
html-encoding-sniffer@3.0.0:
dependencies:
whatwg-encoding: 2.0.0
@@ -27574,8 +21637,6 @@ snapshots:
html-entities@2.3.3: {}
- html-entities@2.5.2: {}
-
html-escaper@2.0.2: {}
html-escaper@3.0.3: {}
@@ -27607,23 +21668,6 @@ snapshots:
http-cache-semantics@4.2.0: {}
- http-deceiver@1.2.7: {}
-
- http-errors@1.6.3:
- dependencies:
- depd: 1.1.2
- inherits: 2.0.3
- setprototypeof: 1.1.0
- statuses: 1.5.0
-
- http-errors@2.0.0:
- dependencies:
- depd: 2.0.0
- inherits: 2.0.4
- setprototypeof: 1.2.0
- statuses: 2.0.1
- toidentifier: 1.0.1
-
http-errors@2.0.1:
dependencies:
depd: 2.0.0
@@ -27632,16 +21676,6 @@ snapshots:
statuses: 2.0.2
toidentifier: 1.0.1
- http-parser-js@0.5.8: {}
-
- http-proxy-agent@4.0.1:
- dependencies:
- '@tootallnate/once': 1.1.2
- agent-base: 6.0.2
- debug: 4.4.3
- transitivePeerDependencies:
- - supports-color
-
http-proxy-agent@5.0.0:
dependencies:
'@tootallnate/once': 2.0.0
@@ -27657,35 +21691,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
- http-proxy-middleware@2.0.7(@types/express@4.17.21):
- dependencies:
- '@types/http-proxy': 1.17.17
- http-proxy: 1.18.1
- is-glob: 4.0.3
- is-plain-obj: 3.0.0
- micromatch: 4.0.8
- optionalDependencies:
- '@types/express': 4.17.21
- transitivePeerDependencies:
- - debug
-
- http-proxy@1.18.1:
- dependencies:
- eventemitter3: 4.0.7
- follow-redirects: 1.15.6
- requires-port: 1.0.0
- transitivePeerDependencies:
- - debug
-
http-shutdown@1.2.2: {}
- https-proxy-agent@5.0.0:
- dependencies:
- agent-base: 6.0.2
- debug: 4.4.3
- transitivePeerDependencies:
- - supports-color
-
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
@@ -27706,16 +21713,8 @@ snapshots:
human-signals@4.3.1: {}
- humanize-ms@1.2.1:
- dependencies:
- ms: 2.1.3
-
husky@8.0.3: {}
- iconv-lite@0.4.24:
- dependencies:
- safer-buffer: 2.1.2
-
iconv-lite@0.6.3:
dependencies:
safer-buffer: 2.1.2
@@ -27724,22 +21723,12 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.5.9):
- dependencies:
- postcss: 8.5.9
-
ieee754@1.2.1: {}
- ignore-walk@4.0.1:
- dependencies:
- minimatch: 3.1.5
-
ignore-walk@8.0.0:
dependencies:
minimatch: 10.2.5
- ignore@5.1.9: {}
-
ignore@5.3.2: {}
ignore@7.0.5: {}
@@ -27761,8 +21750,6 @@ snapshots:
immediate@3.0.6: {}
- immutable@4.3.7: {}
-
immutable@5.1.5: {}
import-fresh@2.0.0:
@@ -27779,21 +21766,15 @@ snapshots:
indent-string@4.0.0: {}
- infer-owner@1.0.4: {}
-
inflight@1.0.6:
dependencies:
once: 1.4.0
wrappy: 1.0.2
- inherits@2.0.3: {}
-
inherits@2.0.4: {}
ini@1.3.8: {}
- ini@2.0.0: {}
-
ini@5.0.0: {}
ini@6.0.0: {}
@@ -27802,23 +21783,6 @@ snapshots:
dependencies:
tslib: 2.8.1
- inquirer@8.2.0:
- dependencies:
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-width: 3.0.0
- external-editor: 3.1.0
- figures: 3.2.0
- lodash: 4.17.23
- mute-stream: 0.0.8
- ora: 5.4.1
- run-async: 2.4.1
- rxjs: 7.5.7
- string-width: 4.2.3
- strip-ansi: 6.0.1
- through: 2.3.8
-
internal-slot@1.1.0:
dependencies:
es-errors: 1.3.0
@@ -27850,12 +21814,8 @@ snapshots:
jsbn: 1.1.0
sprintf-js: 1.1.3
- ip@1.1.9: {}
-
ipaddr.js@1.9.1: {}
- ipaddr.js@2.2.0: {}
-
iron-webcrypto@1.2.1: {}
is-arguments@1.1.1:
@@ -27886,6 +21846,7 @@ snapshots:
is-binary-path@2.1.0:
dependencies:
binary-extensions: 2.3.0
+ optional: true
is-boolean-object@1.2.2:
dependencies:
@@ -27896,10 +21857,6 @@ snapshots:
is-buffer@2.0.5: {}
- is-builtin-module@3.2.1:
- dependencies:
- builtin-modules: 3.3.0
-
is-bun-module@2.0.0:
dependencies:
semver: 7.8.0
@@ -27964,8 +21921,6 @@ snapshots:
dependencies:
is-docker: 3.0.0
- is-interactive@1.0.0: {}
-
is-interactive@2.0.0: {}
is-lambda@1.0.1: {}
@@ -27985,14 +21940,10 @@ snapshots:
is-number@7.0.0: {}
- is-path-cwd@2.2.0: {}
-
is-path-inside@3.0.3: {}
is-path-inside@4.0.0: {}
- is-plain-obj@3.0.0: {}
-
is-plain-obj@4.1.0: {}
is-plain-object@2.0.4:
@@ -28047,8 +21998,6 @@ snapshots:
dependencies:
which-typed-array: 1.1.19
- is-unicode-supported@0.1.0: {}
-
is-unicode-supported@2.1.0: {}
is-weakmap@2.0.2: {}
@@ -28080,8 +22029,6 @@ snapshots:
isarray@2.0.5: {}
- isbinaryfile@4.0.10: {}
-
isexe@2.0.0: {}
isexe@3.1.1: {}
@@ -28099,15 +22046,6 @@ snapshots:
istanbul-lib-coverage@3.2.2: {}
- istanbul-lib-instrument@4.0.3:
- dependencies:
- '@babel/core': 7.28.5
- '@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.2
- semver: 7.8.0
- transitivePeerDependencies:
- - supports-color
-
istanbul-lib-instrument@5.2.1:
dependencies:
'@babel/core': 7.28.5
@@ -28134,14 +22072,6 @@ snapshots:
make-dir: 4.0.0
supports-color: 7.2.0
- istanbul-lib-source-maps@4.0.1:
- dependencies:
- debug: 4.4.3
- istanbul-lib-coverage: 3.2.2
- source-map: 0.6.1
- transitivePeerDependencies:
- - supports-color
-
istanbul-lib-source-maps@5.0.6:
dependencies:
'@jridgewell/trace-mapping': 0.3.31
@@ -28150,11 +22080,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- istanbul-reports@3.1.7:
- dependencies:
- html-escaper: 2.0.2
- istanbul-lib-report: 3.0.1
-
istanbul-reports@3.2.0:
dependencies:
html-escaper: 2.0.2
@@ -28170,21 +22095,6 @@ snapshots:
dependencies:
'@isaacs/cliui': 8.0.2
- jake@10.9.2:
- dependencies:
- async: 3.2.6
- chalk: 4.1.2
- filelist: 1.0.4
- minimatch: 3.1.5
-
- jasmine-core@3.99.1: {}
-
- jasmine-core@4.0.1: {}
-
- jasmine-spec-reporter@7.0.0:
- dependencies:
- colors: 1.4.0
-
jest-environment-node@29.7.0:
dependencies:
'@jest/environment': 29.7.0
@@ -28254,12 +22164,6 @@ snapshots:
leven: 3.1.0
pretty-format: 29.7.0
- jest-worker@27.5.1:
- dependencies:
- '@types/node': 22.19.1
- merge-stream: 2.0.0
- supports-color: 8.1.1
-
jest-worker@29.7.0:
dependencies:
'@types/node': 22.19.1
@@ -28407,8 +22311,6 @@ snapshots:
jsesc@0.5.0: {}
- jsesc@2.5.2: {}
-
jsesc@3.0.2: {}
jsesc@3.1.0: {}
@@ -28417,8 +22319,6 @@ snapshots:
json-parse-better-errors@1.0.2: {}
- json-parse-even-better-errors@2.3.1: {}
-
json-parse-even-better-errors@5.0.0: {}
json-schema-migrate@2.0.0:
@@ -28446,10 +22346,6 @@ snapshots:
espree: 9.6.1
semver: 7.8.0
- jsonc-parser@3.0.0: {}
-
- jsonc-parser@3.2.0: {}
-
jsonc-parser@3.3.1: {}
jsonfile@4.0.0:
@@ -28471,68 +22367,6 @@ snapshots:
readable-stream: 2.3.8
setimmediate: 1.0.5
- karma-chrome-launcher@3.1.1:
- dependencies:
- which: 1.3.1
-
- karma-coverage@2.1.1:
- dependencies:
- istanbul-lib-coverage: 3.2.2
- istanbul-lib-instrument: 4.0.3
- istanbul-lib-report: 3.0.1
- istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.7
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
-
- karma-jasmine-html-reporter@1.7.0(jasmine-core@4.0.1)(karma-jasmine@4.0.2(karma@6.3.20))(karma@6.3.20):
- dependencies:
- jasmine-core: 4.0.1
- karma: 6.3.20
- karma-jasmine: 4.0.2(karma@6.3.20)
-
- karma-jasmine@4.0.2(karma@6.3.20):
- dependencies:
- jasmine-core: 3.99.1
- karma: 6.3.20
-
- karma-source-map-support@1.4.0:
- dependencies:
- source-map-support: 0.5.21
-
- karma@6.3.20:
- dependencies:
- '@colors/colors': 1.5.0
- body-parser: 1.20.3
- braces: 3.0.3
- chokidar: 3.6.0
- connect: 3.7.0
- di: 0.0.1
- dom-serialize: 2.2.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- http-proxy: 1.18.1
- isbinaryfile: 4.0.10
- lodash: 4.17.23
- log4js: 6.9.1
- mime: 2.6.0
- minimatch: 3.1.2
- mkdirp: 0.5.6
- qjobs: 1.2.0
- range-parser: 1.2.1
- rimraf: 3.0.2
- socket.io: 4.7.5
- source-map: 0.6.1
- tmp: 0.2.3
- ua-parser-js: 0.7.38
- yargs: 16.2.0
- transitivePeerDependencies:
- - bufferutil
- - debug
- - supports-color
- - utf-8-validate
-
keyv@4.5.4:
dependencies:
json-buffer: 3.0.1
@@ -28555,28 +22389,6 @@ snapshots:
dependencies:
readable-stream: 2.3.8
- less-loader@10.2.0(less@4.1.2)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- klona: 2.0.6
- less: 4.1.2
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
- less@4.1.2:
- dependencies:
- copy-anything: 2.0.6
- parse-node-version: 1.0.1
- tslib: 2.8.1
- optionalDependencies:
- errno: 0.1.8
- graceful-fs: 4.2.11
- image-size: 0.5.5
- make-dir: 2.1.0
- mime: 1.6.0
- needle: 2.9.1
- source-map: 0.6.1
- transitivePeerDependencies:
- - supports-color
-
less@4.2.0:
dependencies:
copy-anything: 2.0.6
@@ -28598,12 +22410,6 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- license-webpack-plugin@4.0.2(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- webpack-sources: 3.2.3
- optionalDependencies:
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
lie@3.3.0:
dependencies:
immediate: 3.0.6
@@ -28619,8 +22425,6 @@ snapshots:
lines-and-columns@1.2.4: {}
- lines-and-columns@2.0.4: {}
-
linkedom@0.18.11:
dependencies:
css-select: 5.1.0
@@ -28719,16 +22523,6 @@ snapshots:
xhr: 2.6.0
xtend: 4.0.2
- loader-runner@4.3.0: {}
-
- loader-utils@2.0.4:
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.3
-
- loader-utils@3.2.1: {}
-
local-pkg@1.1.2:
dependencies:
mlly: 1.8.2
@@ -28766,11 +22560,6 @@ snapshots:
lodash@4.18.1: {}
- log-symbols@4.1.0:
- dependencies:
- chalk: 4.1.2
- is-unicode-supported: 0.1.0
-
log-symbols@7.0.1:
dependencies:
is-unicode-supported: 2.1.0
@@ -28792,16 +22581,6 @@ snapshots:
strip-ansi: 7.1.0
wrap-ansi: 9.0.2
- log4js@6.9.1:
- dependencies:
- date-format: 4.0.14
- debug: 4.4.3
- flatted: 3.3.3
- rfdc: 1.4.1
- streamroller: 3.1.5
- transitivePeerDependencies:
- - supports-color
-
longest-streak@3.1.0: {}
loose-envify@1.4.0:
@@ -28822,22 +22601,8 @@ snapshots:
dependencies:
yallist: 3.1.1
- lru-cache@6.0.0:
- dependencies:
- yallist: 4.0.0
-
- lru-cache@7.18.3: {}
-
lz-string@1.5.0: {}
- magic-string@0.25.7:
- dependencies:
- sourcemap-codec: 1.4.8
-
- magic-string@0.26.7:
- dependencies:
- sourcemap-codec: 1.4.8
-
magic-string@0.30.11:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
@@ -28861,37 +22626,12 @@ snapshots:
pify: 4.0.1
semver: 7.8.0
- make-dir@3.1.0:
- dependencies:
- semver: 7.8.0
-
make-dir@4.0.0:
dependencies:
semver: 7.8.0
- make-error@1.3.6: {}
-
- make-fetch-happen@10.2.1:
- dependencies:
- agentkeepalive: 4.5.0
- cacache: 16.1.3
- http-cache-semantics: 4.2.0
- http-proxy-agent: 5.0.0
- https-proxy-agent: 5.0.1
- is-lambda: 1.0.1
- lru-cache: 7.18.3
- minipass: 3.3.6
- minipass-collect: 1.0.2
- minipass-fetch: 2.1.2
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- negotiator: 0.6.3
- promise-retry: 2.0.1
- socks-proxy-agent: 7.0.0
- ssri: 9.0.1
- transitivePeerDependencies:
- - bluebird
- - supports-color
+ make-error@1.3.6:
+ optional: true
make-fetch-happen@13.0.1:
dependencies:
@@ -28927,28 +22667,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- make-fetch-happen@9.1.0:
- dependencies:
- agentkeepalive: 4.5.0
- cacache: 15.3.0
- http-cache-semantics: 4.2.0
- http-proxy-agent: 4.0.1
- https-proxy-agent: 5.0.1
- is-lambda: 1.0.1
- lru-cache: 6.0.0
- minipass: 3.3.6
- minipass-collect: 1.0.2
- minipass-fetch: 1.4.1
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- negotiator: 0.6.3
- promise-retry: 2.0.1
- socks-proxy-agent: 6.2.1
- ssri: 8.0.1
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
makeerror@1.0.12:
dependencies:
tmpl: 1.0.5
@@ -29144,30 +22862,20 @@ snapshots:
mdurl@2.0.0: {}
- media-typer@0.3.0: {}
-
media-typer@1.1.0: {}
- memfs@3.5.3:
- dependencies:
- fs-monkey: 1.0.6
-
memoize-one@5.2.1: {}
merge-anything@5.1.7:
dependencies:
is-what: 4.1.15
- merge-descriptors@1.0.3: {}
-
merge-descriptors@2.0.0: {}
merge-stream@2.0.0: {}
merge2@1.4.1: {}
- methods@1.1.2: {}
-
metro-babel-transformer@0.81.5:
dependencies:
'@babel/core': 7.28.5
@@ -29297,7 +23005,7 @@ snapshots:
metro-transform-plugins@0.81.5:
dependencies:
'@babel/core': 7.28.5
- '@babel/generator': 7.28.6
+ '@babel/generator': 7.29.1
'@babel/template': 7.28.6
'@babel/traverse': 7.28.6
flow-enums-runtime: 0.0.6
@@ -29308,7 +23016,7 @@ snapshots:
metro-transform-worker@0.81.5:
dependencies:
'@babel/core': 7.28.5
- '@babel/generator': 7.28.6
+ '@babel/generator': 7.29.1
'@babel/parser': 7.29.3
'@babel/types': 7.29.0
flow-enums-runtime: 0.0.6
@@ -29600,10 +23308,6 @@ snapshots:
mime@1.6.0: {}
- mime@2.5.2: {}
-
- mime@2.6.0: {}
-
mime@4.1.0: {}
mimic-fn@2.1.0: {}
@@ -29618,13 +23322,6 @@ snapshots:
min-indent@1.0.1: {}
- mini-css-extract-plugin@2.5.3(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- schema-utils: 4.2.0
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
- minimalistic-assert@1.0.1: {}
-
minimatch@10.2.4:
dependencies:
brace-expansion: 5.0.4
@@ -29633,14 +23330,6 @@ snapshots:
dependencies:
brace-expansion: 5.0.6
- minimatch@3.0.5:
- dependencies:
- brace-expansion: 1.1.11
-
- minimatch@3.0.8:
- dependencies:
- brace-expansion: 1.1.11
-
minimatch@3.1.2:
dependencies:
brace-expansion: 1.1.11
@@ -29671,30 +23360,10 @@ snapshots:
minimist@1.2.8: {}
- minipass-collect@1.0.2:
- dependencies:
- minipass: 3.3.6
-
minipass-collect@2.0.1:
dependencies:
minipass: 7.1.3
- minipass-fetch@1.4.1:
- dependencies:
- minipass: 3.3.6
- minipass-sized: 1.0.3
- minizlib: 2.1.2
- optionalDependencies:
- encoding: 0.1.13
-
- minipass-fetch@2.1.2:
- dependencies:
- minipass: 3.3.6
- minipass-sized: 1.0.3
- minizlib: 2.1.2
- optionalDependencies:
- encoding: 0.1.13
-
minipass-fetch@3.0.4:
dependencies:
minipass: 7.1.3
@@ -29715,11 +23384,6 @@ snapshots:
dependencies:
minipass: 3.3.6
- minipass-json-stream@1.0.2:
- dependencies:
- jsonparse: 1.3.1
- minipass: 3.3.6
-
minipass-pipeline@1.2.4:
dependencies:
minipass: 3.3.6
@@ -29813,15 +23477,6 @@ snapshots:
msgpackr-extract: 3.0.3
optional: true
- multicast-dns-service-types@1.1.0: {}
-
- multicast-dns@6.2.3:
- dependencies:
- dns-packet: 1.3.4
- thunky: 1.1.0
-
- mute-stream@0.0.8: {}
-
mute-stream@2.0.0: {}
mz@2.7.0:
@@ -29836,19 +23491,8 @@ snapshots:
napi-postinstall@0.1.5: {}
- natural-compare-lite@1.4.0: {}
-
natural-compare@1.4.0: {}
- needle@2.9.1:
- dependencies:
- debug: 3.2.7
- iconv-lite: 0.4.24
- sax: 1.6.0
- transitivePeerDependencies:
- - supports-color
- optional: true
-
needle@3.3.1:
dependencies:
iconv-lite: 0.6.3
@@ -29863,42 +23507,6 @@ snapshots:
neotraverse@0.6.18: {}
- ng-packagr@13.3.1(@angular/compiler-cli@13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4))(@types/node@12.20.55)(tslib@2.8.1)(typescript@4.6.4):
- dependencies:
- '@angular/compiler-cli': 13.3.12(@angular/compiler@13.3.12)(typescript@4.6.4)
- '@rollup/plugin-json': 4.1.0(rollup@2.79.2)
- '@rollup/plugin-node-resolve': 13.3.0(rollup@2.79.2)
- ajv: 8.17.1
- ansi-colors: 4.1.3
- browserslist: 4.23.3
- cacache: 15.3.0
- chokidar: 3.6.0
- commander: 8.3.0
- dependency-graph: 0.11.0
- esbuild-wasm: 0.14.54
- find-cache-dir: 3.3.2
- glob: 7.2.3
- injection-js: 2.4.0
- jsonc-parser: 3.3.1
- less: 4.2.0
- ora: 5.4.1
- postcss: 8.4.41
- postcss-preset-env: 7.8.3(postcss@8.4.41)
- postcss-url: 10.1.3(postcss@8.4.41)
- rollup: 2.79.2
- rollup-plugin-sourcemaps: 0.6.3(@types/node@12.20.55)(rollup@2.79.2)
- rxjs: 7.5.7
- sass: 1.77.8
- stylus: 0.56.0
- tslib: 2.8.1
- typescript: 4.6.4
- optionalDependencies:
- esbuild: 0.14.54
- transitivePeerDependencies:
- - '@types/node'
- - bluebird
- - supports-color
-
ng-packagr@21.2.1(@angular/compiler-cli@21.2.5(@angular/compiler@21.2.5)(typescript@5.9.3))(tslib@2.8.1)(typescript@5.9.3):
dependencies:
'@ampproject/remapping': 2.3.0
@@ -30049,7 +23657,8 @@ snapshots:
lower-case: 2.0.2
tslib: 2.8.1
- node-addon-api@3.2.1: {}
+ node-addon-api@3.2.1:
+ optional: true
node-addon-api@6.1.0:
optional: true
@@ -30115,22 +23724,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- node-gyp@8.4.1:
- dependencies:
- env-paths: 2.2.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- make-fetch-happen: 9.1.0
- nopt: 5.0.0
- npmlog: 6.0.2
- rimraf: 3.0.2
- semver: 7.8.0
- tar: 6.2.1
- which: 2.0.2
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
node-html-parser@6.1.13:
dependencies:
css-select: 5.2.2
@@ -30140,16 +23733,10 @@ snapshots:
node-mock-http@1.0.4: {}
- node-releases@2.0.18: {}
-
node-releases@2.0.19: {}
node-releases@2.0.36: {}
- nopt@5.0.0:
- dependencies:
- abbrev: 1.1.1
-
nopt@6.0.0:
dependencies:
abbrev: 1.1.1
@@ -30168,26 +23755,14 @@ snapshots:
normalize-path@3.0.0: {}
- normalize-range@0.1.2: {}
-
- npm-bundled@1.1.2:
- dependencies:
- npm-normalize-package-bin: 1.0.1
-
npm-bundled@5.0.0:
dependencies:
npm-normalize-package-bin: 5.0.0
- npm-install-checks@4.0.0:
- dependencies:
- semver: 7.8.0
-
npm-install-checks@8.0.0:
dependencies:
semver: 7.8.0
- npm-normalize-package-bin@1.0.1: {}
-
npm-normalize-package-bin@5.0.0: {}
npm-package-arg@13.0.2:
@@ -30197,24 +23772,11 @@ snapshots:
semver: 7.7.4
validate-npm-package-name: 7.0.2
- npm-package-arg@8.1.5:
- dependencies:
- hosted-git-info: 4.1.0
- semver: 7.8.0
- validate-npm-package-name: 3.0.0
-
npm-packlist@10.0.4:
dependencies:
ignore-walk: 8.0.0
proc-log: 6.1.0
- npm-packlist@3.0.0:
- dependencies:
- glob: 7.2.3
- ignore-walk: 4.0.1
- npm-bundled: 1.1.2
- npm-normalize-package-bin: 1.0.1
-
npm-pick-manifest@11.0.3:
dependencies:
npm-install-checks: 8.0.0
@@ -30222,25 +23784,6 @@ snapshots:
npm-package-arg: 13.0.2
semver: 7.8.0
- npm-pick-manifest@6.1.1:
- dependencies:
- npm-install-checks: 4.0.0
- npm-normalize-package-bin: 1.0.1
- npm-package-arg: 8.1.5
- semver: 7.8.0
-
- npm-registry-fetch@12.0.2:
- dependencies:
- make-fetch-happen: 10.2.1
- minipass: 3.3.6
- minipass-fetch: 1.4.1
- minipass-json-stream: 1.0.2
- minizlib: 2.1.2
- npm-package-arg: 8.1.5
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
npm-registry-fetch@19.1.1:
dependencies:
'@npmcli/redact': 4.0.0
@@ -30262,13 +23805,6 @@ snapshots:
dependencies:
path-key: 4.0.0
- npmlog@6.0.2:
- dependencies:
- are-we-there-yet: 3.0.1
- console-control-strings: 1.1.0
- gauge: 4.0.4
- set-blocking: 2.0.0
-
nth-check@2.1.1:
dependencies:
boolbase: 1.0.0
@@ -30285,66 +23821,6 @@ snapshots:
nwsapi@2.2.7: {}
- nx@13.1.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17)):
- dependencies:
- '@nrwl/cli': 15.9.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
-
- nx@15.9.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17)):
- dependencies:
- '@nrwl/cli': 15.9.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))
- '@nrwl/tao': 15.9.3(@swc-node/register@1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4))(@swc/core@1.7.23(@swc/helpers@0.5.17))
- '@parcel/watcher': 2.0.4
- '@yarnpkg/lockfile': 1.1.0
- '@yarnpkg/parsers': 3.0.2
- '@zkochan/js-yaml': 0.0.6
- axios: 1.13.2
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-spinners: 2.6.1
- cliui: 7.0.4
- dotenv: 10.0.0
- enquirer: 2.3.6
- fast-glob: 3.2.7
- figures: 3.2.0
- flat: 5.0.2
- fs-extra: 11.3.2
- glob: 7.1.4
- ignore: 5.3.2
- js-yaml: 4.1.0
- jsonc-parser: 3.2.0
- lines-and-columns: 2.0.4
- minimatch: 3.0.5
- npm-run-path: 4.0.1
- open: 8.4.2
- semver: 7.8.0
- string-width: 4.2.3
- strong-log-transformer: 2.1.0
- tar-stream: 2.2.0
- tmp: 0.2.3
- tsconfig-paths: 4.2.0
- tslib: 2.8.1
- v8-compile-cache: 2.3.0
- yargs: 17.7.2
- yargs-parser: 21.1.1
- optionalDependencies:
- '@nrwl/nx-darwin-arm64': 15.9.3
- '@nrwl/nx-darwin-x64': 15.9.3
- '@nrwl/nx-linux-arm-gnueabihf': 15.9.3
- '@nrwl/nx-linux-arm64-gnu': 15.9.3
- '@nrwl/nx-linux-arm64-musl': 15.9.3
- '@nrwl/nx-linux-x64-gnu': 15.9.3
- '@nrwl/nx-linux-x64-musl': 15.9.3
- '@nrwl/nx-win32-arm64-msvc': 15.9.3
- '@nrwl/nx-win32-x64-msvc': 15.9.3
- '@swc-node/register': 1.10.9(@swc/core@1.7.23(@swc/helpers@0.5.17))(@swc/types@0.1.26)(typescript@4.6.4)
- '@swc/core': 1.7.23(@swc/helpers@0.5.17)
- transitivePeerDependencies:
- - debug
-
ob1@0.81.0:
dependencies:
flow-enums-runtime: 0.0.6
@@ -30400,8 +23876,6 @@ snapshots:
define-properties: 1.2.1
es-object-atoms: 1.1.1
- obuf@1.1.2: {}
-
obug@2.1.1: {}
ofetch@1.5.1:
@@ -30422,8 +23896,6 @@ snapshots:
dependencies:
ee-first: 1.1.1
- on-headers@1.0.2: {}
-
once@1.4.0:
dependencies:
wrappy: 1.0.2
@@ -30476,12 +23948,6 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- open@8.4.0:
- dependencies:
- define-lazy-prop: 2.0.0
- is-docker: 2.2.1
- is-wsl: 2.2.0
-
open@8.4.2:
dependencies:
define-lazy-prop: 2.0.0
@@ -30502,18 +23968,6 @@ snapshots:
type-check: 0.4.0
word-wrap: 1.2.5
- ora@5.4.1:
- dependencies:
- bl: 4.1.0
- chalk: 4.1.2
- cli-cursor: 3.1.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
-
ora@9.3.0:
dependencies:
chalk: 5.6.2
@@ -30528,8 +23982,6 @@ snapshots:
ordered-binary@1.6.1:
optional: true
- os-tmpdir@1.0.2: {}
-
oslllo-potrace@3.0.0(encoding@0.1.13):
dependencies:
jimp: 0.22.12(encoding@0.1.13)
@@ -30571,21 +24023,6 @@ snapshots:
object-keys: 1.1.1
safe-push-apply: 1.0.0
- oxc-resolver@1.12.0:
- optionalDependencies:
- '@oxc-resolver/binding-darwin-arm64': 1.12.0
- '@oxc-resolver/binding-darwin-x64': 1.12.0
- '@oxc-resolver/binding-freebsd-x64': 1.12.0
- '@oxc-resolver/binding-linux-arm-gnueabihf': 1.12.0
- '@oxc-resolver/binding-linux-arm64-gnu': 1.12.0
- '@oxc-resolver/binding-linux-arm64-musl': 1.12.0
- '@oxc-resolver/binding-linux-x64-gnu': 1.12.0
- '@oxc-resolver/binding-linux-x64-musl': 1.12.0
- '@oxc-resolver/binding-wasm32-wasi': 1.12.0
- '@oxc-resolver/binding-win32-arm64-msvc': 1.12.0
- '@oxc-resolver/binding-win32-x64-msvc': 1.12.0
- optional: true
-
p-limit@2.3.0:
dependencies:
p-try: 2.2.0
@@ -30626,11 +24063,6 @@ snapshots:
eventemitter3: 5.0.4
p-timeout: 7.0.1
- p-retry@4.6.2:
- dependencies:
- '@types/retry': 0.12.0
- retry: 0.13.1
-
p-timeout@7.0.1: {}
p-try@2.2.0: {}
@@ -30641,31 +24073,6 @@ snapshots:
package-name-regex@2.0.6: {}
- pacote@12.0.3:
- dependencies:
- '@npmcli/git': 2.1.0
- '@npmcli/installed-package-contents': 1.0.7
- '@npmcli/promise-spawn': 1.3.2
- '@npmcli/run-script': 2.0.0
- cacache: 15.3.0
- chownr: 2.0.0
- fs-minipass: 2.1.0
- infer-owner: 1.0.4
- minipass: 3.3.6
- mkdirp: 1.0.4
- npm-package-arg: 8.1.5
- npm-packlist: 3.0.0
- npm-pick-manifest: 6.1.1
- npm-registry-fetch: 12.0.2
- promise-retry: 2.0.1
- read-package-json-fast: 2.0.3
- rimraf: 3.0.2
- ssri: 8.0.1
- tar: 6.2.1
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
pacote@21.3.1:
dependencies:
'@npmcli/git': 7.0.2
@@ -30710,13 +24117,6 @@ snapshots:
error-ex: 1.3.2
json-parse-better-errors: 1.0.2
- parse-json@5.2.0:
- dependencies:
- '@babel/code-frame': 7.29.0
- error-ex: 1.3.2
- json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.2.4
-
parse-latin@7.0.0:
dependencies:
'@types/nlcst': 2.0.3
@@ -30728,21 +24128,12 @@ snapshots:
parse-node-version@1.0.1: {}
- parse5-html-rewriting-stream@6.0.1:
- dependencies:
- parse5: 6.0.1
- parse5-sax-parser: 6.0.1
-
parse5-html-rewriting-stream@8.0.0:
dependencies:
entities: 6.0.1
parse5: 8.0.0
parse5-sax-parser: 8.0.0
- parse5-htmlparser2-tree-adapter@6.0.1:
- dependencies:
- parse5: 6.0.1
-
parse5-htmlparser2-tree-adapter@7.1.0:
dependencies:
domhandler: 5.0.3
@@ -30752,16 +24143,10 @@ snapshots:
dependencies:
parse5: 7.3.0
- parse5-sax-parser@6.0.1:
- dependencies:
- parse5: 6.0.1
-
parse5-sax-parser@8.0.0:
dependencies:
parse5: 8.0.0
- parse5@6.0.1: {}
-
parse5@7.1.2:
dependencies:
entities: 4.5.0
@@ -30805,8 +24190,6 @@ snapshots:
lru-cache: 11.3.6
minipass: 7.1.3
- path-to-regexp@0.1.12: {}
-
path-to-regexp@6.3.0: {}
path-to-regexp@8.3.0: {}
@@ -30823,12 +24206,6 @@ snapshots:
perfect-debounce@2.1.0: {}
- periscopic@3.1.0:
- dependencies:
- '@types/estree': 1.0.8
- estree-walker: 3.0.3
- is-reference: 3.0.3
-
phin@2.9.3: {}
piccolore@0.1.3: {}
@@ -30843,22 +24220,12 @@ snapshots:
pidtree@0.6.0: {}
- pify@2.3.0: {}
-
pify@4.0.1: {}
pirates@4.0.6: {}
pirates@4.0.7: {}
- piscina@3.2.0:
- dependencies:
- eventemitter-asyncresource: 1.0.0
- hdr-histogram-js: 2.0.3
- hdr-histogram-percentiles-obj: 3.0.0
- optionalDependencies:
- nice-napi: 1.0.2
-
piscina@4.1.0:
dependencies:
eventemitter-asyncresource: 1.0.0
@@ -30881,10 +24248,6 @@ snapshots:
dependencies:
find-up: 3.0.0
- pkg-dir@4.2.0:
- dependencies:
- find-up: 4.1.0
-
pkg-dir@8.0.0:
dependencies:
find-up-simple: 1.0.1
@@ -30915,436 +24278,14 @@ snapshots:
pngjs@7.0.0: {}
- portfinder@1.0.32:
- dependencies:
- async: 2.6.4
- debug: 3.2.7
- mkdirp: 0.5.6
- transitivePeerDependencies:
- - supports-color
-
possible-typed-array-names@1.1.0: {}
- postcss-attribute-case-insensitive@5.0.2(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- postcss-attribute-case-insensitive@5.0.2(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-selector-parser: 6.1.2
-
- postcss-clamp@4.1.0(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-color-functional-notation@4.2.4(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-color-functional-notation@4.2.4(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- postcss-color-hex-alpha@8.0.4(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-color-hex-alpha@8.0.4(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- postcss-color-rebeccapurple@7.1.1(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-color-rebeccapurple@7.1.1(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- postcss-custom-media@8.0.2(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-custom-media@8.0.2(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- postcss-custom-properties@12.1.11(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-custom-properties@12.1.11(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- postcss-custom-selectors@6.0.3(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- postcss-custom-selectors@6.0.3(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-selector-parser: 6.1.2
-
- postcss-dir-pseudo-class@6.0.5(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- postcss-dir-pseudo-class@6.0.5(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-selector-parser: 6.1.2
-
- postcss-double-position-gradients@3.1.2(postcss@8.4.41):
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.41)
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-double-position-gradients@3.1.2(postcss@8.4.5):
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.5)
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- postcss-env-function@4.0.6(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-env-function@4.0.6(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- postcss-focus-visible@6.0.4(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- postcss-focus-visible@6.0.4(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-selector-parser: 6.1.2
-
- postcss-focus-within@5.0.4(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- postcss-focus-within@5.0.4(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-selector-parser: 6.1.2
-
- postcss-font-variant@5.0.0(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
-
- postcss-font-variant@5.0.0(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
-
- postcss-gap-properties@3.0.5(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
-
- postcss-gap-properties@3.0.5(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
-
- postcss-image-set-function@4.0.7(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-image-set-function@4.0.7(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- postcss-import@14.0.2(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
- read-cache: 1.0.0
- resolve: 1.22.10
-
- postcss-initial@4.0.1(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
-
- postcss-initial@4.0.1(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
-
- postcss-lab-function@4.2.1(postcss@8.4.41):
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.41)
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-lab-function@4.2.1(postcss@8.4.5):
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.5)
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- postcss-loader@6.2.1(postcss@8.4.5)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- cosmiconfig: 7.1.0
- klona: 2.0.6
- postcss: 8.4.5
- semver: 7.8.0
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
- postcss-logical@5.0.4(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
-
- postcss-logical@5.0.4(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
-
- postcss-media-minmax@5.0.0(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
-
- postcss-media-minmax@5.0.0(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
-
postcss-media-query-parser@0.2.3: {}
- postcss-modules-extract-imports@3.1.0(postcss@8.5.9):
- dependencies:
- postcss: 8.5.9
-
- postcss-modules-local-by-default@4.0.5(postcss@8.5.9):
- dependencies:
- icss-utils: 5.1.0(postcss@8.5.9)
- postcss: 8.5.9
- postcss-selector-parser: 6.1.2
- postcss-value-parser: 4.2.0
-
- postcss-modules-scope@3.2.0(postcss@8.5.9):
- dependencies:
- postcss: 8.5.9
- postcss-selector-parser: 6.1.2
-
- postcss-modules-values@4.0.0(postcss@8.5.9):
- dependencies:
- icss-utils: 5.1.0(postcss@8.5.9)
- postcss: 8.5.9
-
- postcss-nesting@10.2.0(postcss@8.4.41):
- dependencies:
- '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2)
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- postcss-nesting@10.2.0(postcss@8.4.5):
- dependencies:
- '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2)
- postcss: 8.4.5
- postcss-selector-parser: 6.1.2
-
- postcss-opacity-percentage@1.1.3(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
-
- postcss-overflow-shorthand@3.0.4(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-overflow-shorthand@3.0.4(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- postcss-page-break@3.0.4(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
-
- postcss-page-break@3.0.4(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
-
- postcss-place@7.0.5(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
-
- postcss-place@7.0.5(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-value-parser: 4.2.0
-
- postcss-preset-env@7.2.3(postcss@8.4.5):
- dependencies:
- autoprefixer: 10.4.20(postcss@8.4.5)
- browserslist: 4.25.1
- caniuse-lite: 1.0.30001673
- css-blank-pseudo: 3.0.3(postcss@8.4.5)
- css-has-pseudo: 3.0.4(postcss@8.4.5)
- css-prefers-color-scheme: 6.0.3(postcss@8.4.5)
- cssdb: 5.1.0
- postcss: 8.4.5
- postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.5)
- postcss-color-functional-notation: 4.2.4(postcss@8.4.5)
- postcss-color-hex-alpha: 8.0.4(postcss@8.4.5)
- postcss-color-rebeccapurple: 7.1.1(postcss@8.4.5)
- postcss-custom-media: 8.0.2(postcss@8.4.5)
- postcss-custom-properties: 12.1.11(postcss@8.4.5)
- postcss-custom-selectors: 6.0.3(postcss@8.4.5)
- postcss-dir-pseudo-class: 6.0.5(postcss@8.4.5)
- postcss-double-position-gradients: 3.1.2(postcss@8.4.5)
- postcss-env-function: 4.0.6(postcss@8.4.5)
- postcss-focus-visible: 6.0.4(postcss@8.4.5)
- postcss-focus-within: 5.0.4(postcss@8.4.5)
- postcss-font-variant: 5.0.0(postcss@8.4.5)
- postcss-gap-properties: 3.0.5(postcss@8.4.5)
- postcss-image-set-function: 4.0.7(postcss@8.4.5)
- postcss-initial: 4.0.1(postcss@8.4.5)
- postcss-lab-function: 4.2.1(postcss@8.4.5)
- postcss-logical: 5.0.4(postcss@8.4.5)
- postcss-media-minmax: 5.0.0(postcss@8.4.5)
- postcss-nesting: 10.2.0(postcss@8.4.5)
- postcss-overflow-shorthand: 3.0.4(postcss@8.4.5)
- postcss-page-break: 3.0.4(postcss@8.4.5)
- postcss-place: 7.0.5(postcss@8.4.5)
- postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.5)
- postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.5)
- postcss-selector-not: 5.0.0(postcss@8.4.5)
-
- postcss-preset-env@7.8.3(postcss@8.4.41):
- dependencies:
- '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.41)
- '@csstools/postcss-color-function': 1.1.1(postcss@8.4.41)
- '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.41)
- '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.41)
- '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.41)
- '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.41)
- '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.41)
- '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.41)
- '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.41)
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.41)
- '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.41)
- '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.41)
- '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.41)
- '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.41)
- autoprefixer: 10.4.20(postcss@8.4.41)
- browserslist: 4.25.1
- css-blank-pseudo: 3.0.3(postcss@8.4.41)
- css-has-pseudo: 3.0.4(postcss@8.4.41)
- css-prefers-color-scheme: 6.0.3(postcss@8.4.41)
- cssdb: 7.11.2
- postcss: 8.4.41
- postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.41)
- postcss-clamp: 4.1.0(postcss@8.4.41)
- postcss-color-functional-notation: 4.2.4(postcss@8.4.41)
- postcss-color-hex-alpha: 8.0.4(postcss@8.4.41)
- postcss-color-rebeccapurple: 7.1.1(postcss@8.4.41)
- postcss-custom-media: 8.0.2(postcss@8.4.41)
- postcss-custom-properties: 12.1.11(postcss@8.4.41)
- postcss-custom-selectors: 6.0.3(postcss@8.4.41)
- postcss-dir-pseudo-class: 6.0.5(postcss@8.4.41)
- postcss-double-position-gradients: 3.1.2(postcss@8.4.41)
- postcss-env-function: 4.0.6(postcss@8.4.41)
- postcss-focus-visible: 6.0.4(postcss@8.4.41)
- postcss-focus-within: 5.0.4(postcss@8.4.41)
- postcss-font-variant: 5.0.0(postcss@8.4.41)
- postcss-gap-properties: 3.0.5(postcss@8.4.41)
- postcss-image-set-function: 4.0.7(postcss@8.4.41)
- postcss-initial: 4.0.1(postcss@8.4.41)
- postcss-lab-function: 4.2.1(postcss@8.4.41)
- postcss-logical: 5.0.4(postcss@8.4.41)
- postcss-media-minmax: 5.0.0(postcss@8.4.41)
- postcss-nesting: 10.2.0(postcss@8.4.41)
- postcss-opacity-percentage: 1.1.3(postcss@8.4.41)
- postcss-overflow-shorthand: 3.0.4(postcss@8.4.41)
- postcss-page-break: 3.0.4(postcss@8.4.41)
- postcss-place: 7.0.5(postcss@8.4.41)
- postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.41)
- postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.41)
- postcss-selector-not: 6.0.1(postcss@8.4.41)
- postcss-value-parser: 4.2.0
-
- postcss-pseudo-class-any-link@7.1.6(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- postcss-pseudo-class-any-link@7.1.6(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
- postcss-selector-parser: 6.1.2
-
- postcss-replace-overflow-wrap@4.0.0(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
-
- postcss-replace-overflow-wrap@4.0.0(postcss@8.4.5):
- dependencies:
- postcss: 8.4.5
-
postcss-safe-parser@7.0.1(postcss@8.5.8):
dependencies:
postcss: 8.5.8
- postcss-selector-not@5.0.0(postcss@8.4.5):
- dependencies:
- balanced-match: 1.0.2
- postcss: 8.4.5
-
- postcss-selector-not@6.0.1(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
-
- postcss-selector-parser@6.1.2:
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
-
- postcss-url@10.1.3(postcss@8.4.41):
- dependencies:
- make-dir: 3.1.0
- mime: 2.5.2
- minimatch: 3.0.8
- postcss: 8.4.41
- xxhashjs: 0.2.2
-
- postcss-value-parser@4.2.0: {}
-
- postcss@8.4.41:
- dependencies:
- nanoid: 3.3.11
- picocolors: 1.1.1
- source-map-js: 1.2.1
-
- postcss@8.4.5:
- dependencies:
- nanoid: 3.3.11
- picocolors: 1.1.1
- source-map-js: 1.2.1
-
postcss@8.5.6:
dependencies:
nanoid: 3.3.11
@@ -31383,8 +24324,6 @@ snapshots:
prettier@3.6.2: {}
- pretty-bytes@5.6.0: {}
-
pretty-bytes@7.1.0: {}
pretty-format@27.5.1:
@@ -31409,8 +24348,6 @@ snapshots:
process@0.11.10: {}
- promise-inflight@1.0.1: {}
-
promise-retry@2.0.1:
dependencies:
err-code: 2.0.3
@@ -31429,7 +24366,8 @@ snapshots:
forwarded: 0.2.0
ipaddr.js: 1.9.1
- proxy-from-env@1.1.0: {}
+ proxy-from-env@1.1.0:
+ optional: true
prr@1.0.1:
optional: true
@@ -31438,16 +24376,8 @@ snapshots:
punycode.js@2.3.1: {}
- punycode@1.4.1: {}
-
punycode@2.3.1: {}
- qjobs@1.2.0: {}
-
- qs@6.13.0:
- dependencies:
- side-channel: 1.1.0
-
qs@6.15.0:
dependencies:
side-channel: 1.1.0
@@ -31464,19 +24394,8 @@ snapshots:
radix3@1.1.2: {}
- randombytes@2.1.0:
- dependencies:
- safe-buffer: 5.2.1
-
range-parser@1.2.1: {}
- raw-body@2.5.2:
- dependencies:
- bytes: 3.1.2
- http-errors: 2.0.0
- iconv-lite: 0.4.24
- unpipe: 1.0.0
-
raw-body@3.0.2:
dependencies:
bytes: 3.1.2
@@ -31585,15 +24504,6 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- read-cache@1.0.0:
- dependencies:
- pify: 2.3.0
-
- read-package-json-fast@2.0.3:
- dependencies:
- json-parse-even-better-errors: 2.3.1
- npm-normalize-package-bin: 1.0.1
-
readable-stream@2.3.8:
dependencies:
core-util-is: 1.0.3
@@ -31629,6 +24539,7 @@ snapshots:
readdirp@3.6.0:
dependencies:
picomatch: 2.3.2
+ optional: true
readdirp@4.1.2: {}
@@ -31654,8 +24565,6 @@ snapshots:
dependencies:
redis-errors: 1.2.0
- reflect-metadata@0.1.14: {}
-
reflect-metadata@0.2.2: {}
reflect.getprototypeof@1.0.10:
@@ -31681,16 +24590,8 @@ snapshots:
regenerator-runtime@0.13.11: {}
- regenerator-runtime@0.13.9: {}
-
regenerator-runtime@0.14.1: {}
- regenerator-transform@0.15.2:
- dependencies:
- '@babel/runtime': 7.27.1
-
- regex-parser@2.3.0: {}
-
regex-recursion@6.0.2:
dependencies:
regex-utilities: 2.3.0
@@ -31714,8 +24615,6 @@ snapshots:
gopd: 1.2.0
set-function-name: 2.0.2
- regexpp@3.2.0: {}
-
regexpu-core@5.3.2:
dependencies:
'@babel/regjsgen': 0.8.0
@@ -31844,20 +24743,6 @@ snapshots:
resolve-pkg-maps@1.0.0: {}
- resolve-url-loader@5.0.0:
- dependencies:
- adjust-sourcemap-loader: 4.0.0
- convert-source-map: 1.9.0
- loader-utils: 2.0.4
- postcss: 8.5.9
- source-map: 0.6.1
-
- resolve@1.22.0:
- dependencies:
- is-core-module: 2.16.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
-
resolve@1.22.10:
dependencies:
is-core-module: 2.16.1
@@ -31870,11 +24755,6 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- restore-cursor@3.1.0:
- dependencies:
- onetime: 5.1.2
- signal-exit: 3.0.7
-
restore-cursor@4.0.0:
dependencies:
onetime: 5.1.2
@@ -31922,10 +24802,6 @@ snapshots:
dependencies:
glob: 7.2.3
- rimraf@2.7.1:
- dependencies:
- glob: 7.2.3
-
rimraf@3.0.2:
dependencies:
glob: 7.2.3
@@ -32007,14 +24883,6 @@ snapshots:
magic-string: 0.30.11
rollup: 4.59.0
- rollup-plugin-sourcemaps@0.6.3(@types/node@12.20.55)(rollup@2.79.2):
- dependencies:
- '@rollup/pluginutils': 3.1.0(rollup@2.79.2)
- rollup: 2.79.2
- source-map-resolve: 0.6.0
- optionalDependencies:
- '@types/node': 12.20.55
-
rollup-plugin-summary@3.0.1(rollup@4.59.0):
dependencies:
'@eslint/eslintrc': 3.3.1
@@ -32049,10 +24917,6 @@ snapshots:
rolldown: 1.0.0-rc.4
rollup: 4.60.3
- rollup@2.79.2:
- optionalDependencies:
- fsevents: 2.3.3
-
rollup@4.59.0:
dependencies:
'@types/estree': 1.0.8
@@ -32158,24 +25022,10 @@ snapshots:
run-applescript@7.1.0: {}
- run-async@2.4.1: {}
-
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
- rxjs-for-await@0.0.2(rxjs@6.6.7):
- dependencies:
- rxjs: 6.6.7
-
- rxjs@6.6.7:
- dependencies:
- tslib: 1.14.1
-
- rxjs@7.5.7:
- dependencies:
- tslib: 2.8.1
-
rxjs@7.8.2:
dependencies:
tslib: 2.8.1
@@ -32211,13 +25061,6 @@ snapshots:
safer-buffer@2.1.2: {}
- sander@0.5.1:
- dependencies:
- es6-promise: 3.3.1
- graceful-fs: 4.2.11
- mkdirp: 0.5.6
- rimraf: 2.7.1
-
sandpack-vue3@3.1.12(vue@3.5.24(typescript@5.9.3)):
dependencies:
'@codemirror/autocomplete': 6.20.0
@@ -32242,26 +25085,6 @@ snapshots:
dependencies:
suf-log: 2.5.3
- sass-loader@12.4.0(sass@1.49.9)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- klona: 2.0.6
- neo-async: 2.6.2
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
- optionalDependencies:
- sass: 1.49.9
-
- sass@1.49.9:
- dependencies:
- chokidar: 3.6.0
- immutable: 4.3.7
- source-map-js: 1.2.1
-
- sass@1.77.8:
- dependencies:
- chokidar: 3.6.0
- immutable: 4.3.7
- source-map-js: 1.2.1
-
sass@1.97.3:
dependencies:
chokidar: 4.0.3
@@ -32278,7 +25101,8 @@ snapshots:
optionalDependencies:
'@parcel/watcher': 2.5.1
- sax@1.2.4: {}
+ sax@1.2.4:
+ optional: true
sax@1.4.3: {}
@@ -32296,32 +25120,6 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- schema-utils@2.7.1:
- dependencies:
- '@types/json-schema': 7.0.15
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
-
- schema-utils@3.3.0:
- dependencies:
- '@types/json-schema': 7.0.15
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
-
- schema-utils@4.2.0:
- dependencies:
- '@types/json-schema': 7.0.15
- ajv: 8.17.1
- ajv-formats: 2.1.1(ajv@8.17.1)
- ajv-keywords: 5.1.0(ajv@8.17.1)
-
- schema-utils@4.3.0:
- dependencies:
- '@types/json-schema': 7.0.15
- ajv: 8.17.1
- ajv-formats: 2.1.1(ajv@8.17.1)
- ajv-keywords: 5.1.0(ajv@8.17.1)
-
scule@1.3.0: {}
search-insights@2.8.2: {}
@@ -32331,8 +25129,6 @@ snapshots:
extend-shallow: 2.0.1
kind-of: 6.0.3
- select-hose@2.0.0: {}
-
selfsigned@2.4.1:
dependencies:
'@types/node-forge': 1.3.11
@@ -32344,24 +25140,6 @@ snapshots:
semver@7.8.0: {}
- send@0.19.0:
- dependencies:
- debug: 2.6.9
- depd: 2.0.0
- destroy: 1.2.0
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- fresh: 0.5.2
- http-errors: 2.0.0
- mime: 1.6.0
- ms: 2.1.3
- on-finished: 2.4.1
- range-parser: 1.2.1
- statuses: 2.0.1
- transitivePeerDependencies:
- - supports-color
-
send@0.19.2:
dependencies:
debug: 2.6.9
@@ -32398,10 +25176,6 @@ snapshots:
serialize-error@2.1.0: {}
- serialize-javascript@6.0.2:
- dependencies:
- randombytes: 2.1.0
-
serialize-javascript@7.0.5: {}
seroval-plugins@1.3.2(seroval@1.3.2):
@@ -32410,31 +25184,10 @@ snapshots:
seroval@1.3.2: {}
- serve-index@1.9.1:
- dependencies:
- accepts: 1.3.8
- batch: 0.6.1
- debug: 2.6.9
- escape-html: 1.0.3
- http-errors: 1.6.3
- mime-types: 2.1.35
- parseurl: 1.3.3
- transitivePeerDependencies:
- - supports-color
-
serve-placeholder@2.0.2:
dependencies:
defu: 6.1.7
- serve-static@1.16.2:
- dependencies:
- encodeurl: 2.0.0
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 0.19.0
- transitivePeerDependencies:
- - supports-color
-
serve-static@1.16.3:
dependencies:
encodeurl: 2.0.0
@@ -32453,8 +25206,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- set-blocking@2.0.0: {}
-
set-function-length@1.2.2:
dependencies:
define-data-property: 1.1.4
@@ -32479,8 +25230,6 @@ snapshots:
setimmediate@1.0.5: {}
- setprototypeof@1.1.0: {}
-
setprototypeof@1.2.0: {}
shallow-clone@3.0.1:
@@ -32635,8 +25384,6 @@ snapshots:
slash@3.0.0: {}
- slash@4.0.0: {}
-
slash@5.1.0: {}
slice-ansi@5.0.0:
@@ -32660,58 +25407,6 @@ snapshots:
smol-toml@1.6.1: {}
- socket.io-adapter@2.5.5:
- dependencies:
- debug: 4.3.7
- ws: 8.17.1
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- socket.io-parser@4.2.4:
- dependencies:
- '@socket.io/component-emitter': 3.1.2
- debug: 4.3.7
- transitivePeerDependencies:
- - supports-color
-
- socket.io@4.7.5:
- dependencies:
- accepts: 1.3.8
- base64id: 2.0.0
- cors: 2.8.5
- debug: 4.3.7
- engine.io: 6.5.5
- socket.io-adapter: 2.5.5
- socket.io-parser: 4.2.4
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- sockjs@0.3.24:
- dependencies:
- faye-websocket: 0.11.4
- uuid: 8.3.2
- websocket-driver: 0.7.4
-
- socks-proxy-agent@6.2.1:
- dependencies:
- agent-base: 6.0.2
- debug: 4.4.3
- socks: 2.8.3
- transitivePeerDependencies:
- - supports-color
-
- socks-proxy-agent@7.0.0:
- dependencies:
- agent-base: 6.0.2
- debug: 4.4.3
- socks: 2.8.3
- transitivePeerDependencies:
- - supports-color
-
socks-proxy-agent@8.0.4:
dependencies:
agent-base: 7.1.1
@@ -32740,26 +25435,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- sorcery@0.11.0:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
- buffer-crc32: 0.2.13
- minimist: 1.2.8
- sander: 0.5.1
-
source-map-js@1.2.1: {}
- source-map-loader@3.0.1(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- abab: 2.0.6
- iconv-lite: 0.6.3
- source-map-js: 1.2.1
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
source-map-resolve@0.6.0:
dependencies:
atob: 2.1.2
decode-uri-component: 0.2.2
+ optional: true
source-map-support@0.5.21:
dependencies:
@@ -32770,14 +25452,10 @@ snapshots:
source-map@0.6.1: {}
- source-map@0.7.3: {}
-
source-map@0.7.4: {}
source-map@0.7.6: {}
- sourcemap-codec@1.4.8: {}
-
space-separated-tokens@2.0.2: {}
spdx-compare@1.0.0:
@@ -32812,27 +25490,6 @@ snapshots:
spdx-expression-parse: 3.0.1
spdx-ranges: 2.1.1
- spdy-transport@3.0.0:
- dependencies:
- debug: 4.4.3
- detect-node: 2.1.0
- hpack.js: 2.1.6
- obuf: 1.1.2
- readable-stream: 3.6.2
- wbuf: 1.7.3
- transitivePeerDependencies:
- - supports-color
-
- spdy@4.0.2:
- dependencies:
- debug: 4.4.3
- handle-thing: 2.0.1
- http-deceiver: 1.2.7
- select-hose: 2.0.0
- spdy-transport: 3.0.0
- transitivePeerDependencies:
- - supports-color
-
speakingurl@14.0.1: {}
sprintf-js@1.0.3: {}
@@ -32847,14 +25504,6 @@ snapshots:
dependencies:
minipass: 7.1.3
- ssri@8.0.1:
- dependencies:
- minipass: 3.3.6
-
- ssri@9.0.1:
- dependencies:
- minipass: 3.3.6
-
stable-hash@0.0.5: {}
stack-trace@1.0.0-pre2: {}
@@ -32882,8 +25531,6 @@ snapshots:
statuses@1.5.0: {}
- statuses@2.0.1: {}
-
statuses@2.0.2: {}
std-env@3.10.0: {}
@@ -32899,14 +25546,6 @@ snapshots:
es-errors: 1.3.0
internal-slot: 1.1.0
- streamroller@3.1.5:
- dependencies:
- date-format: 4.0.14
- debug: 4.4.3
- fs-extra: 8.1.0
- transitivePeerDependencies:
- - supports-color
-
streamx@2.25.0:
dependencies:
events-universal: 1.0.1
@@ -33009,12 +25648,6 @@ snapshots:
dependencies:
js-tokens: 9.0.1
- strong-log-transformer@2.1.0:
- dependencies:
- duplexer: 0.1.2
- minimist: 1.2.8
- through: 2.3.8
-
strtok3@6.3.0:
dependencies:
'@tokenizer/token': 0.3.0
@@ -33022,14 +25655,6 @@ snapshots:
style-mod@4.1.3: {}
- stylus-loader@6.2.0(stylus@0.56.0)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- fast-glob: 3.3.3
- klona: 2.0.6
- normalize-path: 3.0.0
- stylus: 0.56.0
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
stylus@0.56.0:
dependencies:
css: 3.0.0
@@ -33040,6 +25665,7 @@ snapshots:
source-map: 0.7.6
transitivePeerDependencies:
- supports-color
+ optional: true
sucrase@3.35.0:
dependencies:
@@ -33071,26 +25697,6 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- svelte-check@3.8.6(@babel/core@7.29.0)(less@4.2.0)(postcss@8.5.9)(sass@1.98.0)(stylus@0.56.0)(svelte@4.2.20):
- dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- chokidar: 3.6.0
- picocolors: 1.1.1
- sade: 1.8.1
- svelte: 4.2.20
- svelte-preprocess: 5.1.4(@babel/core@7.29.0)(less@4.2.0)(postcss@8.5.9)(sass@1.98.0)(stylus@0.56.0)(svelte@4.2.20)(typescript@5.9.3)
- typescript: 5.9.3
- transitivePeerDependencies:
- - '@babel/core'
- - coffeescript
- - less
- - postcss
- - postcss-load-config
- - pug
- - sass
- - stylus
- - sugarss
-
svelte-check@4.3.4(picomatch@4.0.4)(svelte@5.43.14)(typescript@5.9.3):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
@@ -33103,26 +25709,6 @@ snapshots:
transitivePeerDependencies:
- picomatch
- svelte-hmr@0.15.3(svelte@4.2.20):
- dependencies:
- svelte: 4.2.20
-
- svelte-preprocess@5.1.4(@babel/core@7.29.0)(less@4.2.0)(postcss@8.5.9)(sass@1.98.0)(stylus@0.56.0)(svelte@4.2.20)(typescript@5.9.3):
- dependencies:
- '@types/pug': 2.0.6
- detect-indent: 6.1.0
- magic-string: 0.30.17
- sorcery: 0.11.0
- strip-indent: 3.0.0
- svelte: 4.2.20
- optionalDependencies:
- '@babel/core': 7.29.0
- less: 4.2.0
- postcss: 8.5.9
- sass: 1.98.0
- stylus: 0.56.0
- typescript: 5.9.3
-
svelte-preprocess@6.0.3(@babel/core@7.29.0)(less@4.2.0)(postcss@8.5.9)(sass@1.98.0)(stylus@0.56.0)(svelte@5.43.14)(typescript@5.9.3):
dependencies:
svelte: 5.43.14
@@ -33134,13 +25720,6 @@ snapshots:
stylus: 0.56.0
typescript: 5.9.3
- svelte2tsx@0.7.39(svelte@4.2.20)(typescript@5.9.3):
- dependencies:
- dedent-js: 1.0.1
- pascal-case: 3.1.2
- svelte: 4.2.20
- typescript: 5.9.3
-
svelte2tsx@0.7.39(svelte@5.43.14)(typescript@5.9.3):
dependencies:
dedent-js: 1.0.1
@@ -33148,23 +25727,6 @@ snapshots:
svelte: 5.43.14
typescript: 5.9.3
- svelte@4.2.20:
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.25
- '@types/estree': 1.0.6
- acorn: 8.14.0
- aria-query: 5.3.2
- axobject-query: 4.1.0
- code-red: 1.0.4
- css-tree: 2.3.1
- estree-walker: 3.0.3
- is-reference: 3.0.3
- locate-character: 3.0.0
- magic-string: 0.30.17
- periscopic: 3.1.0
-
svelte@5.43.14:
dependencies:
'@jridgewell/remapping': 2.3.5
@@ -33270,24 +25832,12 @@ snapshots:
- chokidar
- supports-color
- symbol-observable@4.0.0: {}
-
symbol-tree@3.2.4: {}
tabbable@6.3.0: {}
tagged-tag@1.0.0: {}
- tapable@2.2.1: {}
-
- tar-stream@2.2.0:
- dependencies:
- bl: 4.1.0
- end-of-stream: 1.4.4
- fs-constants: 1.0.0
- inherits: 2.0.4
- readable-stream: 3.6.2
-
tar-stream@3.2.0:
dependencies:
b4a: 1.8.1
@@ -33335,25 +25885,6 @@ snapshots:
dependencies:
rimraf: 2.6.3
- terser-webpack-plugin@5.3.14(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- '@jridgewell/trace-mapping': 0.3.31
- jest-worker: 27.5.1
- schema-utils: 4.3.0
- serialize-javascript: 6.0.2
- terser: 5.47.1
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
- optionalDependencies:
- '@swc/core': 1.7.23(@swc/helpers@0.5.17)
- esbuild: 0.14.22
-
- terser@5.14.2:
- dependencies:
- '@jridgewell/source-map': 0.3.11
- acorn: 8.16.0
- commander: 2.20.3
- source-map-support: 0.5.21
-
terser@5.39.2:
dependencies:
'@jridgewell/source-map': 0.3.11
@@ -33399,10 +25930,6 @@ snapshots:
readable-stream: 2.3.8
xtend: 4.0.2
- through@2.3.8: {}
-
- thunky@1.1.0: {}
-
timm@1.7.1: {}
tiny-inflate@1.0.3: {}
@@ -33442,16 +25969,6 @@ snapshots:
dependencies:
tldts-core: 7.0.27
- tmp@0.0.33:
- dependencies:
- os-tmpdir: 1.0.2
-
- tmp@0.2.1:
- dependencies:
- rimraf: 3.0.2
-
- tmp@0.2.3: {}
-
tmpl@1.0.5: {}
to-regex-range@5.0.1:
@@ -33496,8 +26013,6 @@ snapshots:
transformation-matrix@3.0.0: {}
- tree-kill@1.2.2: {}
-
trim-lines@3.0.1: {}
trough@2.2.0: {}
@@ -33512,26 +26027,6 @@ snapshots:
ts-interface-checker@0.1.13: {}
- ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.17))(@types/node@12.20.55)(typescript@4.6.4):
- 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': 12.20.55
- acorn: 8.12.1
- acorn-walk: 8.3.3
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 4.6.4
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- optionalDependencies:
- '@swc/core': 1.7.23(@swc/helpers@0.5.17)
-
ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
@@ -33540,7 +26035,7 @@ snapshots:
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
'@types/node': 24.10.1
- acorn: 8.12.1
+ acorn: 8.16.0
acorn-walk: 8.3.3
arg: 4.1.3
create-require: 1.1.1
@@ -33564,23 +26059,8 @@ snapshots:
minimist: 1.2.8
strip-bom: 3.0.0
- tsconfig-paths@4.2.0:
- dependencies:
- json5: 2.2.3
- minimist: 1.2.8
- strip-bom: 3.0.0
-
- tslib@1.14.1: {}
-
- tslib@2.3.1: {}
-
tslib@2.8.1: {}
- tsutils@3.21.0(typescript@4.6.4):
- dependencies:
- tslib: 1.14.1
- typescript: 4.6.4
-
ttf2eot@3.1.0:
dependencies:
argparse: 2.0.1
@@ -33619,8 +26099,6 @@ snapshots:
type-fest@0.20.2: {}
- type-fest@0.21.3: {}
-
type-fest@0.7.1: {}
type-fest@1.4.0: {}
@@ -33631,11 +26109,6 @@ snapshots:
dependencies:
tagged-tag: 1.0.0
- type-is@1.6.18:
- dependencies:
- media-typer: 0.3.0
- mime-types: 2.1.35
-
type-is@2.0.1:
dependencies:
content-type: 1.0.5
@@ -33675,8 +26148,6 @@ snapshots:
possible-typed-array-names: 1.1.0
reflect.getprototypeof: 1.0.10
- typed-assert@1.0.9: {}
-
typescript-eslint@8.57.1(eslint@8.57.1)(typescript@5.9.3):
dependencies:
'@typescript-eslint/eslint-plugin': 8.57.1(@typescript-eslint/parser@8.57.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)
@@ -33688,12 +26159,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
- typescript@4.6.4: {}
-
typescript@5.9.3: {}
- ua-parser-js@0.7.38: {}
-
uc.micro@2.1.0: {}
ufo@1.6.3: {}
@@ -33786,26 +26253,10 @@ snapshots:
unplugin: 3.0.0
unplugin-utils: 0.3.1
- unique-filename@1.1.1:
- dependencies:
- unique-slug: 2.0.2
-
- unique-filename@2.0.1:
- dependencies:
- unique-slug: 3.0.0
-
unique-filename@3.0.0:
dependencies:
unique-slug: 4.0.0
- unique-slug@2.0.2:
- dependencies:
- imurmurhash: 0.1.4
-
- unique-slug@3.0.0:
- dependencies:
- imurmurhash: 0.1.4
-
unique-slug@4.0.0:
dependencies:
imurmurhash: 0.1.4
@@ -33954,12 +26405,6 @@ snapshots:
pathe: 2.0.3
pkg-types: 2.3.1
- update-browserslist-db@1.1.1(browserslist@4.23.3):
- dependencies:
- browserslist: 4.23.3
- escalade: 3.2.0
- picocolors: 1.1.1
-
update-browserslist-db@1.1.3(browserslist@4.24.5):
dependencies:
browserslist: 4.24.5
@@ -33997,15 +26442,8 @@ snapshots:
utils-merge@1.0.1: {}
- uuid@8.3.2: {}
-
- v8-compile-cache-lib@3.0.1: {}
-
- v8-compile-cache@2.3.0: {}
-
- validate-npm-package-name@3.0.0:
- dependencies:
- builtins: 1.0.3
+ v8-compile-cache-lib@3.0.1:
+ optional: true
validate-npm-package-name@7.0.2: {}
@@ -34102,24 +26540,6 @@ snapshots:
terser: 5.47.1
yaml: 2.8.0
- vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0):
- dependencies:
- esbuild: 0.27.3
- fdir: 6.5.0(picomatch@4.0.4)
- picomatch: 4.0.4
- postcss: 8.5.9
- rollup: 4.60.1
- tinyglobby: 0.2.16
- optionalDependencies:
- '@types/node': 24.10.1
- fsevents: 2.3.3
- jiti: 2.7.0
- less: 4.2.0
- sass: 1.97.3
- stylus: 0.56.0
- terser: 5.47.1
- yaml: 2.8.0
-
vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0):
dependencies:
esbuild: 0.27.3
@@ -34138,10 +26558,6 @@ snapshots:
terser: 5.47.1
yaml: 2.8.0
- vitefu@0.2.5(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)):
- optionalDependencies:
- vite: 7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
-
vitefu@1.0.5(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)):
optionalDependencies:
vite: 7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
@@ -34230,48 +26646,6 @@ snapshots:
- typescript
- universal-cookie
- vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jiti@2.7.0)(jsdom@27.4.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0):
- dependencies:
- '@vitest/expect': 4.0.12
- '@vitest/mocker': 4.0.12(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
- '@vitest/pretty-format': 4.0.12
- '@vitest/runner': 4.0.12
- '@vitest/snapshot': 4.0.12
- '@vitest/spy': 4.0.12
- '@vitest/utils': 4.0.12
- debug: 4.4.3
- es-module-lexer: 1.7.0
- expect-type: 1.2.2
- magic-string: 0.30.21
- pathe: 2.0.3
- picomatch: 4.0.3
- std-env: 3.10.0
- tinybench: 2.9.0
- tinyexec: 0.3.2
- tinyglobby: 0.2.15
- tinyrainbow: 3.0.3
- vite: 7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
- why-is-node-running: 2.3.0
- optionalDependencies:
- '@types/debug': 4.1.12
- '@types/node': 24.10.1
- '@vitest/browser-playwright': 4.1.1(playwright@1.58.2)(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.0.12)
- '@vitest/ui': 4.0.12(vitest@4.0.12)
- jsdom: 27.4.0
- transitivePeerDependencies:
- - jiti
- - less
- - lightningcss
- - msw
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
-
vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/ui@4.0.12)(jiti@2.7.0)(jsdom@27.4.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0):
dependencies:
'@vitest/expect': 4.0.12
@@ -34313,7 +26687,7 @@ snapshots:
- tsx
- yaml
- vitest@4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jsdom@20.0.3)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)):
+ vitest@4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@20.0.3)(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)):
dependencies:
'@vitest/expect': 4.1.1
'@vitest/mocker': 4.1.1(vite@6.4.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
@@ -34344,7 +26718,37 @@ snapshots:
- msw
optional: true
- vitest@4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12)(jsdom@27.4.0)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)):
+ vitest@4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@27.4.0)(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)):
+ dependencies:
+ '@vitest/expect': 4.1.1
+ '@vitest/mocker': 4.1.1(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
+ '@vitest/pretty-format': 4.1.1
+ '@vitest/runner': 4.1.1
+ '@vitest/snapshot': 4.1.1
+ '@vitest/spy': 4.1.1
+ '@vitest/utils': 4.1.1
+ es-module-lexer: 2.0.0
+ expect-type: 1.3.0
+ magic-string: 0.30.21
+ obug: 2.1.1
+ pathe: 2.0.3
+ picomatch: 4.0.3
+ std-env: 4.0.0
+ tinybench: 2.9.0
+ tinyexec: 1.0.2
+ tinyglobby: 0.2.15
+ tinyrainbow: 3.0.3
+ vite: 7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)
+ why-is-node-running: 2.3.0
+ optionalDependencies:
+ '@types/node': 24.10.1
+ '@vitest/browser-playwright': 4.1.1(playwright@1.58.2)(vite@7.3.1(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.97.3)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))(vitest@4.1.1)
+ '@vitest/ui': 4.0.12(vitest@4.0.12)
+ jsdom: 27.4.0
+ transitivePeerDependencies:
+ - msw
+
+ vitest@4.1.1(@types/node@24.10.1)(@vitest/browser-playwright@4.1.1)(@vitest/ui@4.0.12(vitest@4.0.12))(jsdom@27.4.0)(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0)):
dependencies:
'@vitest/expect': 4.1.1
'@vitest/mocker': 4.1.1(vite@7.3.2(@types/node@24.10.1)(jiti@2.7.0)(less@4.2.0)(sass@1.98.0)(stylus@0.56.0)(terser@5.47.1)(yaml@2.8.0))
@@ -34376,8 +26780,6 @@ snapshots:
vlq@1.0.1: {}
- void-elements@2.0.1: {}
-
vscode-languageserver-textdocument@1.0.12: {}
vscode-uri@3.1.0: {}
@@ -34414,24 +26816,11 @@ snapshots:
warn-once@0.1.1: {}
- watchpack@2.4.2:
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
-
watchpack@2.5.1:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
- wbuf@1.7.3:
- dependencies:
- minimalistic-assert: 1.0.1
-
- wcwidth@1.0.1:
- dependencies:
- defaults: 1.0.4
-
weak-lru-cache@1.2.2:
optional: true
@@ -34445,107 +26834,8 @@ snapshots:
webidl-conversions@8.0.1: {}
- webpack-dev-middleware@5.3.4(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- colorette: 2.0.20
- memfs: 3.5.3
- mime-types: 2.1.35
- range-parser: 1.2.1
- schema-utils: 4.3.0
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
- webpack-dev-server@4.7.3(@types/express@4.17.21)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- '@types/bonjour': 3.5.13
- '@types/connect-history-api-fallback': 1.5.4
- '@types/serve-index': 1.9.4
- '@types/sockjs': 0.3.36
- '@types/ws': 8.5.12
- ansi-html-community: 0.0.8
- bonjour: 3.5.0
- chokidar: 3.6.0
- colorette: 2.0.20
- compression: 1.7.4
- connect-history-api-fallback: 1.6.0
- default-gateway: 6.0.3
- del: 6.1.1
- express: 4.21.2
- graceful-fs: 4.2.11
- html-entities: 2.5.2
- http-proxy-middleware: 2.0.7(@types/express@4.17.21)
- ipaddr.js: 2.2.0
- open: 8.4.0
- p-retry: 4.6.2
- portfinder: 1.0.32
- schema-utils: 4.2.0
- selfsigned: 2.4.1
- serve-index: 1.9.1
- sockjs: 0.3.24
- spdy: 4.0.2
- strip-ansi: 7.1.0
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
- webpack-dev-middleware: 5.3.4(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- ws: 8.18.0
- transitivePeerDependencies:
- - '@types/express'
- - bufferutil
- - debug
- - supports-color
- - utf-8-validate
-
- webpack-merge@5.8.0:
- dependencies:
- clone-deep: 4.0.1
- wildcard: 2.0.1
-
- webpack-sources@3.2.3: {}
-
- webpack-subresource-integrity@5.1.0(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)):
- dependencies:
- typed-assert: 1.0.9
- webpack: 5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)
-
webpack-virtual-modules@0.6.2: {}
- webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22):
- dependencies:
- '@types/eslint-scope': 3.7.7
- '@types/estree': 0.0.51
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/wasm-edit': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.16.0
- acorn-import-assertions: 1.9.0(acorn@8.16.0)
- browserslist: 4.25.1
- chrome-trace-event: 1.0.4
- enhanced-resolve: 5.18.1
- es-module-lexer: 0.9.3
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 3.3.0
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.14(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22)(webpack@5.76.1(@swc/core@1.7.23(@swc/helpers@0.5.17))(esbuild@0.14.22))
- watchpack: 2.4.2
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
-
- websocket-driver@0.7.4:
- dependencies:
- http-parser-js: 0.5.8
- safe-buffer: 5.2.1
- websocket-extensions: 0.1.4
-
- websocket-extensions@0.1.4: {}
-
whatwg-encoding@2.0.0:
dependencies:
iconv-lite: 0.6.3
@@ -34620,10 +26910,6 @@ snapshots:
gopd: 1.2.0
has-tostringtag: 1.0.2
- which@1.3.1:
- dependencies:
- isexe: 2.0.0
-
which@2.0.2:
dependencies:
isexe: 2.0.0
@@ -34641,12 +26927,6 @@ snapshots:
siginfo: 2.0.0
stackback: 0.0.2
- wide-align@1.1.5:
- dependencies:
- string-width: 4.2.3
-
- wildcard@2.0.1: {}
-
word-wrap@1.2.5: {}
wrap-ansi@6.2.0:
@@ -34692,8 +26972,6 @@ snapshots:
ws@7.5.10: {}
- ws@8.17.1: {}
-
ws@8.18.0: {}
ws@8.20.0: {}
@@ -34744,10 +27022,6 @@ snapshots:
xxhash-wasm@1.1.0: {}
- xxhashjs@0.2.2:
- dependencies:
- cuint: 0.2.2
-
y18n@5.0.8: {}
yallist@3.1.1: {}
@@ -34761,16 +27035,12 @@ snapshots:
eslint-visitor-keys: 3.4.3
yaml: 2.8.0
- yaml@1.10.2: {}
-
yaml@2.3.1: {}
yaml@2.7.0: {}
yaml@2.8.0: {}
- yargs-parser@20.0.0: {}
-
yargs-parser@20.2.9: {}
yargs-parser@21.1.1: {}
@@ -34808,7 +27078,8 @@ snapshots:
yerror@8.0.0: {}
- yn@3.1.1: {}
+ yn@3.1.1:
+ optional: true
yocto-queue@0.1.0: {}
@@ -34849,8 +27120,4 @@ snapshots:
zod@4.4.3: {}
- zone.js@0.11.8:
- dependencies:
- tslib: 2.8.1
-
zwitch@2.0.4: {}