From 663eca109ffbf0e4cc45f267715508c274260ed9 Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 26 Jan 2025 23:07:58 +0100
Subject: [PATCH 01/18] first draft
---
packages/client-angular/CHANGELOG.md | 1 +
packages/client-angular/LICENSE.md | 21 +
packages/client-angular/README.md | 39 ++
packages/client-angular/package.json | 79 ++++
packages/client-angular/rollup.config.mjs | 30 ++
.../src/__tests__/index.test.ts | 50 +++
.../src/__tests__/utils.test.ts | 189 ++++++++
packages/client-angular/src/index.ts | 210 +++++++++
packages/client-angular/src/types.ts | 218 ++++++++++
packages/client-angular/src/utils.ts | 402 ++++++++++++++++++
packages/client-angular/tsconfig.base.json | 14 +
packages/client-angular/tsconfig.json | 7 +
packages/client-angular/tsup.config.ts | 12 +
packages/client-angular/vitest.config.ts | 14 +
pnpm-lock.yaml | 91 ++--
15 files changed, 1352 insertions(+), 25 deletions(-)
create mode 100644 packages/client-angular/CHANGELOG.md
create mode 100644 packages/client-angular/LICENSE.md
create mode 100644 packages/client-angular/README.md
create mode 100644 packages/client-angular/package.json
create mode 100644 packages/client-angular/rollup.config.mjs
create mode 100644 packages/client-angular/src/__tests__/index.test.ts
create mode 100644 packages/client-angular/src/__tests__/utils.test.ts
create mode 100644 packages/client-angular/src/index.ts
create mode 100644 packages/client-angular/src/types.ts
create mode 100644 packages/client-angular/src/utils.ts
create mode 100644 packages/client-angular/tsconfig.base.json
create mode 100644 packages/client-angular/tsconfig.json
create mode 100644 packages/client-angular/tsup.config.ts
create mode 100644 packages/client-angular/vitest.config.ts
diff --git a/packages/client-angular/CHANGELOG.md b/packages/client-angular/CHANGELOG.md
new file mode 100644
index 000000000..0f9e4d2b0
--- /dev/null
+++ b/packages/client-angular/CHANGELOG.md
@@ -0,0 +1 @@
+# @hey-api/client-angular
diff --git a/packages/client-angular/LICENSE.md b/packages/client-angular/LICENSE.md
new file mode 100644
index 000000000..6acd8004b
--- /dev/null
+++ b/packages/client-angular/LICENSE.md
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) Hey API
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/packages/client-angular/README.md b/packages/client-angular/README.md
new file mode 100644
index 000000000..f006f5c38
--- /dev/null
+++ b/packages/client-angular/README.md
@@ -0,0 +1,39 @@
+
+

+
Fetch API Client
+
🚀 Fetch API client for `@hey-api/openapi-ts` codegen.
+
+
+[Live demo](https://stackblitz.com/edit/hey-api-client-angular-example?file=openapi-ts.config.ts,src%2Fclient%2Fschemas.gen.ts,src%2Fclient%2Fsdk.gen.ts,src%2Fclient%2Ftypes.gen.ts,src%2FApp.tsx)
+
+## Features
+
+- seamless integration with `@hey-api/openapi-ts` ecosystem
+- type-safe response data and errors
+- response data validation and transformation
+- access to the original request and response
+- granular request and response customization options
+- minimal learning curve thanks to extending the underlying technology
+- support bundling inside the generated output
+
+## Documentation
+
+Please visit our [website](https://heyapi.dev/) for documentation, guides, migrating, and more.
+
+## Sponsors
+
+Love Hey API? Become our [sponsor](https://github.com/sponsors/hey-api).
+
+
+
+
+
+
+
+## GitHub Integration (coming soon)
+
+Automatically update your code when the APIs it depends on change. [Find out more](https://heyapi.dev/openapi-ts/integrations.html).
+
+## Migration Guides
+
+[OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating.html#openapi-typescript-codegen)
diff --git a/packages/client-angular/package.json b/packages/client-angular/package.json
new file mode 100644
index 000000000..90e295078
--- /dev/null
+++ b/packages/client-angular/package.json
@@ -0,0 +1,79 @@
+{
+ "name": "@hey-api/client-angular",
+ "version": "0.7.1",
+ "description": "🚀 Fetch API client for `@hey-api/openapi-ts` codegen.",
+ "homepage": "https://heyapi.dev/",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/hey-api/openapi-ts.git"
+ },
+ "bugs": {
+ "url": "https://github.com/hey-api/openapi-ts/issues"
+ },
+ "license": "MIT",
+ "author": {
+ "email": "lubos@heyapi.dev",
+ "name": "Hey API",
+ "url": "https://heyapi.dev"
+ },
+ "funding": "https://github.com/sponsors/hey-api",
+ "keywords": [
+ "client",
+ "fetch",
+ "http",
+ "javascript",
+ "openapi",
+ "angular",
+ "react",
+ "rest",
+ "svelte",
+ "swagger",
+ "typescript",
+ "vue"
+ ],
+ "type": "module",
+ "main": "./dist/index.cjs",
+ "module": "./dist/index.js",
+ "types": "./dist/index.d.ts",
+ "exports": {
+ ".": {
+ "import": {
+ "types": "./dist/index.d.ts",
+ "default": "./dist/index.js"
+ },
+ "require": {
+ "types": "./dist/index.d.cts",
+ "default": "./dist/index.cjs"
+ }
+ },
+ "./package.json": "./package.json"
+ },
+ "sideEffects": false,
+ "files": [
+ "dist",
+ "LICENSE.md",
+ "src"
+ ],
+ "scripts": {
+ "build": "tsup && rollup -c && pnpm check-exports",
+ "check-exports": "attw --pack .",
+ "dev": "tsup --watch",
+ "prepublishOnly": "pnpm build",
+ "test:coverage": "vitest run --coverage",
+ "test:update": "vitest watch --update",
+ "test:watch": "vitest watch",
+ "test": "vitest run",
+ "typecheck": "vitest --typecheck --watch=false"
+ },
+ "devDependencies": {
+ "@angular/common": "19.1.3",
+ "@angular/core": "19.1.3",
+ "@hey-api/client-core": "workspace:*",
+ "rxjs": "7.8.1"
+ },
+ "peerDependencies": {
+ "@angular/common": "19.1.3",
+ "@angular/core": "19.1.3",
+ "rxjs": "7.8.1"
+ }
+}
diff --git a/packages/client-angular/rollup.config.mjs b/packages/client-angular/rollup.config.mjs
new file mode 100644
index 000000000..02907e214
--- /dev/null
+++ b/packages/client-angular/rollup.config.mjs
@@ -0,0 +1,30 @@
+import path from 'node:path';
+
+import { defineConfig } from 'rollup';
+import dts from 'rollup-plugin-dts';
+
+const files = ['index.d.ts', 'index.d.cts'];
+
+export default files.map((file) =>
+ defineConfig({
+ external: (id) => {
+ const normalizedId = id.split(path.sep).join('/');
+ if (normalizedId === '@hey-api/client-core') {
+ return false;
+ }
+ return (
+ !normalizedId.startsWith('/') && !/^[a-zA-Z]:\//.test(normalizedId)
+ );
+ },
+ input: `./dist/${file}`,
+ output: {
+ file: `./dist/${file}`,
+ format: 'es',
+ },
+ plugins: [
+ dts({
+ respectExternal: true,
+ }),
+ ],
+ }),
+);
diff --git a/packages/client-angular/src/__tests__/index.test.ts b/packages/client-angular/src/__tests__/index.test.ts
new file mode 100644
index 000000000..de88d72d3
--- /dev/null
+++ b/packages/client-angular/src/__tests__/index.test.ts
@@ -0,0 +1,50 @@
+import { describe, expect, it } from 'vitest';
+
+import { createClient } from '../index';
+
+describe('buildUrl', () => {
+ const client = createClient();
+
+ const scenarios: {
+ options: Parameters[0];
+ url: string;
+ }[] = [
+ {
+ options: {
+ url: '',
+ },
+ url: '/',
+ },
+ {
+ options: {
+ url: '/foo',
+ },
+ url: '/foo',
+ },
+ {
+ options: {
+ path: {
+ fooId: 1,
+ },
+ url: '/foo/{fooId}',
+ },
+ url: '/foo/1',
+ },
+ {
+ options: {
+ path: {
+ fooId: 1,
+ },
+ query: {
+ bar: 'baz',
+ },
+ url: '/foo/{fooId}',
+ },
+ url: '/foo/1?bar=baz',
+ },
+ ];
+
+ it.each(scenarios)('returns $url', ({ options, url }) => {
+ expect(client.buildUrl(options)).toBe(url);
+ });
+});
diff --git a/packages/client-angular/src/__tests__/utils.test.ts b/packages/client-angular/src/__tests__/utils.test.ts
new file mode 100644
index 000000000..17f378755
--- /dev/null
+++ b/packages/client-angular/src/__tests__/utils.test.ts
@@ -0,0 +1,189 @@
+import type { Auth } from '@hey-api/client-core';
+import { describe, expect, it, vi } from 'vitest';
+
+import { getParseAs, setAuthParams } from '../utils';
+
+describe('getParseAs', () => {
+ const scenarios: Array<{
+ content: Parameters[0];
+ parseAs: ReturnType;
+ }> = [
+ {
+ content: null,
+ parseAs: 'stream',
+ },
+ {
+ content: 'application/json',
+ parseAs: 'json',
+ },
+ {
+ content: 'application/ld+json',
+ parseAs: 'json',
+ },
+ {
+ content: 'application/ld+json;charset=utf-8',
+ parseAs: 'json',
+ },
+ {
+ content: 'application/ld+json; charset=utf-8',
+ parseAs: 'json',
+ },
+ {
+ content: 'multipart/form-data',
+ parseAs: 'formData',
+ },
+ {
+ content: 'application/*',
+ parseAs: 'blob',
+ },
+ {
+ content: 'audio/*',
+ parseAs: 'blob',
+ },
+ {
+ content: 'image/*',
+ parseAs: 'blob',
+ },
+ {
+ content: 'video/*',
+ parseAs: 'blob',
+ },
+ {
+ content: 'text/*',
+ parseAs: 'text',
+ },
+ {
+ content: 'unsupported',
+ parseAs: undefined,
+ },
+ ];
+
+ it.each(scenarios)(
+ 'detects $content as $parseAs',
+ async ({ content, parseAs }) => {
+ expect(getParseAs(content)).toEqual(parseAs);
+ },
+ );
+});
+
+describe('setAuthParams', () => {
+ it('sets bearer token in headers', async () => {
+ const auth = vi.fn().mockReturnValue('foo');
+ const headers = new Headers();
+ const query: Record = {};
+ await setAuthParams({
+ auth,
+ headers,
+ query,
+ security: [
+ {
+ name: 'baz',
+ scheme: 'bearer',
+ type: 'http',
+ },
+ ],
+ });
+ expect(auth).toHaveBeenCalled();
+ expect(headers.get('baz')).toBe('Bearer foo');
+ expect(Object.keys(query).length).toBe(0);
+ });
+
+ it('sets access token in query', async () => {
+ const auth = vi.fn().mockReturnValue('foo');
+ const headers = new Headers();
+ const query: Record = {};
+ await setAuthParams({
+ auth,
+ headers,
+ query,
+ security: [
+ {
+ in: 'query',
+ name: 'baz',
+ scheme: 'bearer',
+ type: 'http',
+ },
+ ],
+ });
+ expect(auth).toHaveBeenCalled();
+ expect(headers.get('baz')).toBeNull();
+ expect(query.baz).toBe('Bearer foo');
+ });
+
+ it('sets Authorization header when `in` and `name` are undefined', async () => {
+ const auth = vi.fn().mockReturnValue('foo');
+ const headers = new Headers();
+ const query: Record = {};
+ await setAuthParams({
+ auth,
+ headers,
+ query,
+ security: [
+ {
+ type: 'http',
+ },
+ ],
+ });
+ expect(auth).toHaveBeenCalled();
+ expect(headers.get('Authorization')).toBe('foo');
+ expect(query).toEqual({});
+ });
+
+ it('sets first scheme only', async () => {
+ const auth = vi.fn().mockReturnValue('foo');
+ const headers = new Headers();
+ const query: Record = {};
+ await setAuthParams({
+ auth,
+ headers,
+ query,
+ security: [
+ {
+ name: 'baz',
+ scheme: 'bearer',
+ type: 'http',
+ },
+ {
+ in: 'query',
+ name: 'baz',
+ scheme: 'bearer',
+ type: 'http',
+ },
+ ],
+ });
+ expect(auth).toHaveBeenCalled();
+ expect(headers.get('baz')).toBe('Bearer foo');
+ expect(Object.keys(query).length).toBe(0);
+ });
+
+ it('sets first scheme with token', async () => {
+ const auth = vi.fn().mockImplementation((auth: Auth) => {
+ if (auth.type === 'apiKey') {
+ return;
+ }
+ return 'foo';
+ });
+ const headers = new Headers();
+ const query: Record = {};
+ await setAuthParams({
+ auth,
+ headers,
+ query,
+ security: [
+ {
+ name: 'baz',
+ type: 'apiKey',
+ },
+ {
+ in: 'query',
+ name: 'baz',
+ scheme: 'bearer',
+ type: 'http',
+ },
+ ],
+ });
+ expect(auth).toHaveBeenCalled();
+ expect(headers.get('baz')).toBeNull();
+ expect(query.baz).toBe('Bearer foo');
+ });
+});
diff --git a/packages/client-angular/src/index.ts b/packages/client-angular/src/index.ts
new file mode 100644
index 000000000..9746f270f
--- /dev/null
+++ b/packages/client-angular/src/index.ts
@@ -0,0 +1,210 @@
+import type { HttpRequest } from '@angular/common/http';
+import { HttpHeaders, HttpResponse } from '@angular/common/http';
+import { firstValueFrom } from 'rxjs';
+
+import type { Client, Config } from './types';
+import {
+ buildUrl,
+ createConfig,
+ getParseAs,
+ mergeConfigs,
+ mergeHeaders,
+} from './utils';
+
+type ReqInit = Omit<
+ Partial>,
+ 'body' | 'headers' | 'observe'
+> & {
+ body?: any;
+ headers: ReturnType;
+};
+
+export const createClient = (config: Config = {}): Client => {
+ let _config = mergeConfigs(createConfig(), config);
+
+ const getConfig = (): Config => ({ ..._config });
+
+ const setConfig = (config: Config): Config => {
+ _config = mergeConfigs(_config, config);
+ return getConfig();
+ };
+
+ // @ts-expect-error
+ const request: Client['request'] = async (options) => {
+ const { method, ...opts } = {
+ ..._config,
+ ...options,
+ // fetch: options.fetch ?? _config.fetch ?? globalThis.fetch,
+ headers: mergeHeaders(_config.headers, options.headers),
+ };
+
+ // TODO: TBD
+ // if (opts.security) {
+ // await setAuthParams({
+ // ...opts,
+ // security: opts.security,
+ // });
+ // }
+
+ // remove Content-Type header if body is empty to avoid sending invalid requests
+ if (!opts.body) {
+ opts.headers.delete('Content-Type');
+ }
+
+ const url = buildUrl(opts);
+ const requestInit: ReqInit = {
+ redirect: 'follow',
+ ...opts,
+ };
+
+ // TODO: TBD - angular has native interceptors
+ // for (const fn of interceptors.request._fns) {
+ // request = await fn(request, opts);
+ // }
+
+ if (!opts.httpClient) {
+ throw new Error('You must provide a HttpClient somewhere.');
+ }
+
+ console.debug(method, url, { requestInit });
+ // TODO: angular hinted multiple times for a promise-based client; let's hope for it
+ const response = await firstValueFrom(
+ opts.httpClient.request(method, url, {
+ // TODO: must be here for the gloriously overtyped constructor calls
+ observe: 'response',
+ responseType: 'blob',
+ ...requestInit,
+ headers: new HttpHeaders(opts.headers),
+ }),
+ );
+
+ if (!isHttpBlobResponse(response)) {
+ throw new Error(
+ `First value of the response stream is not a 'HttpResponse', make sure you configure the HttpClient using 'withFetch()'`,
+ );
+ }
+
+ // TODO: Everything below is kind of useless - but maybe it helps compatabillity?
+
+ // TODO: TBD - angular has native interceptors
+ // for (const fn of interceptors.response._fns) {
+ // response = await fn(response, request, opts);
+ // }
+
+ const result = {
+ request,
+ response,
+ };
+
+ if (response.ok) {
+ if (
+ response.status === 204 ||
+ response.headers.get('Content-Length') === '0'
+ ) {
+ return {
+ data: {},
+ ...result,
+ };
+ }
+
+ const parseAs =
+ (opts.parseAs === 'auto'
+ ? getParseAs(response.headers.get('Content-Type'))
+ : opts.parseAs) ?? 'json';
+
+ if (parseAs === 'stream') {
+ return {
+ data: response.body,
+ ...result,
+ };
+ }
+
+ let data: unknown = response.body;
+
+ if (data) {
+ if (parseAs === 'formData') {
+ throw new Error(
+ "Using parseAs 'formData' is incompatible with the angular client.",
+ );
+ }
+
+ if (parseAs === 'json') {
+ data = JSON.parse(await response.body!.text());
+
+ if (opts.responseValidator) {
+ await opts.responseValidator(data);
+ }
+
+ if (opts.responseTransformer) {
+ data = await opts.responseTransformer(data);
+ }
+ }
+ }
+
+ return {
+ data,
+ ...result,
+ };
+ }
+
+ let error = (await response.body?.text()) ?? '';
+
+ try {
+ error = JSON.parse(error);
+ } catch {
+ // noop
+ }
+
+ let finalError = error;
+
+ finalError = finalError || ({} as string);
+
+ if (opts.throwOnError) {
+ throw finalError;
+ }
+
+ return {
+ error: finalError,
+ ...result,
+ };
+ };
+
+ return {
+ buildUrl,
+ connect: (options) => request({ ...options, method: 'CONNECT' }),
+ delete: (options) => request({ ...options, method: 'DELETE' }),
+ get: (options) => request({ ...options, method: 'GET' }),
+ getConfig,
+ head: (options) => request({ ...options, method: 'HEAD' }),
+ options: (options) => request({ ...options, method: 'OPTIONS' }),
+ patch: (options) => request({ ...options, method: 'PATCH' }),
+ post: (options) => request({ ...options, method: 'POST' }),
+ put: (options) => request({ ...options, method: 'PUT' }),
+ request,
+ setConfig,
+ trace: (options) => request({ ...options, method: 'TRACE' }),
+ };
+};
+
+function isHttpBlobResponse(response: any): response is HttpResponse {
+ return (
+ response instanceof HttpResponse &&
+ (response.body === null || response.body instanceof Blob)
+ );
+}
+
+export type {
+ Client,
+ Config,
+ Options,
+ OptionsLegacyParser,
+ RequestOptions,
+ RequestResult,
+} from './types';
+export { createConfig } from './utils';
+export type { Auth, QuerySerializerOptions } from '@hey-api/client-core';
+export {
+ formDataBodySerializer,
+ jsonBodySerializer,
+ urlSearchParamsBodySerializer,
+} from '@hey-api/client-core';
diff --git a/packages/client-angular/src/types.ts b/packages/client-angular/src/types.ts
new file mode 100644
index 000000000..4d36ef079
--- /dev/null
+++ b/packages/client-angular/src/types.ts
@@ -0,0 +1,218 @@
+import type { HttpClient, HttpHeaders } from '@angular/common/http';
+import type {
+ Auth,
+ QuerySerializer,
+ QuerySerializerOptions,
+} from '@hey-api/client-core';
+
+type OmitKeys = Pick>;
+
+export interface Config
+ extends Omit {
+ /**
+ * Auth token or a function returning auth token. The resolved value will be
+ * added to the request payload as defined by its `security` array.
+ */
+ auth?: ((auth: Auth) => Promise | AuthToken) | AuthToken;
+ /**
+ * Base URL for all requests made by this client.
+ *
+ * @default string what you provided in the app config
+ */
+ baseUrl?: string;
+ /**
+ * An object containing any HTTP headers that you want to pre-populate your
+ * `Headers` object with.
+ *
+ * {@link https://developer.mozilla.org/docs/Web/API/Headers/Headers#init See more}
+ */
+ headers?:
+ | RequestInit['headers']
+ | HttpHeaders
+ | Record<
+ string,
+ | string
+ | number
+ | boolean
+ | (string | number | boolean)[]
+ | null
+ | undefined
+ | unknown
+ >;
+ httpClient?: HttpClient;
+ /**
+ * The request method.
+ *
+ * {@link https://developer.mozilla.org/docs/Web/API/fetch#method See more}
+ */
+ method?:
+ | 'CONNECT'
+ | 'DELETE'
+ | 'GET'
+ | 'HEAD'
+ | 'OPTIONS'
+ | 'PATCH'
+ | 'POST'
+ | 'PUT'
+ | 'TRACE';
+ /**
+ * Return the response data parsed in a specified format. By default, `auto`
+ * will infer the appropriate method from the `Content-Type` response header.
+ * You can override this behavior with any of the {@link Body} methods.
+ * Select `stream` if you don't want to parse response data at all.
+ *
+ * @default 'auto'
+ */
+ parseAs?: Exclude | 'auto' | 'stream';
+ /**
+ * A function for serializing request query parameters. By default, arrays
+ * will be exploded in form style, objects will be exploded in deepObject
+ * style, and reserved characters are percent-encoded.
+ *
+ * {@link https://swagger.io/docs/specification/serialization/#query View examples}
+ */
+ querySerializer?: QuerySerializer | QuerySerializerOptions;
+ /**
+ * A function transforming response data before it's returned. This is useful
+ * for post-processing data, e.g. converting ISO strings into Date objects.
+ */
+ responseTransformer?: (data: unknown) => Promise;
+ /**
+ * A function validating response data. This is useful if you want to ensure
+ * the response conforms to the desired shape, so it can be safely passed to
+ * the transformers and returned to the user.
+ */
+ responseValidator?: (data: unknown) => Promise;
+ /**
+ * Throw an error instead of returning it in the response?
+ *
+ * @default false
+ */
+ throwOnError?: ThrowOnError;
+}
+
+type AuthToken = string | undefined;
+
+export interface RequestOptions<
+ ThrowOnError extends boolean = boolean,
+ Url extends string = string,
+> extends Config {
+ /**
+ * Any body that you want to add to your request.
+ *
+ * {@link https://developer.mozilla.org/docs/Web/API/fetch#body}
+ */
+ body?:
+ | RequestInit['body']
+ | Record
+ | Array>
+ | Array
+ | number;
+ /**
+ * You can provide a client instance returned by `createClient()` instead of
+ * individual options. This might be also useful if you want to implement a
+ * custom client.
+ */
+ client?: Client;
+ path?: Record;
+ query?: Record;
+ /**
+ * Security mechanism(s) to use for the request.
+ */
+ security?: ReadonlyArray;
+ url: Url;
+}
+
+export type RequestResult<
+ TData = unknown,
+ TError = unknown,
+ ThrowOnError extends boolean = boolean,
+> = ThrowOnError extends true
+ ? Promise<{
+ data: TData;
+ request: Request;
+ response: Response;
+ }>
+ : Promise<
+ (
+ | { data: TData; error: undefined }
+ | { data: undefined; error: TError }
+ ) & {
+ request: Request;
+ response: Response;
+ }
+ >;
+
+type MethodFn = <
+ TData = unknown,
+ TError = unknown,
+ ThrowOnError extends boolean = false,
+>(
+ options: Omit, 'method'>,
+) => RequestResult;
+
+type RequestFn = <
+ TData = unknown,
+ TError = unknown,
+ ThrowOnError extends boolean = false,
+>(
+ options: Omit, 'method'> &
+ Pick>, 'method'>,
+) => RequestResult;
+
+export interface Client {
+ /**
+ * Returns the final request URL. This method works only with experimental parser.
+ */
+ buildUrl: <
+ TData extends {
+ body?: unknown;
+ path?: Record;
+ query?: Record;
+ url: string;
+ },
+ >(
+ options: Pick & Options,
+ ) => string;
+ connect: MethodFn;
+ delete: MethodFn;
+ get: MethodFn;
+ getConfig: () => Config;
+ head: MethodFn;
+ options: MethodFn;
+ patch: MethodFn;
+ post: MethodFn;
+ put: MethodFn;
+ request: RequestFn;
+ setConfig: (config: Config) => Config;
+ trace: MethodFn;
+}
+
+interface DataShape {
+ body?: unknown;
+ headers?: unknown;
+ path?: unknown;
+ query?: unknown;
+ url: string;
+}
+
+export type Options<
+ TData extends DataShape = DataShape,
+ ThrowOnError extends boolean = boolean,
+> = OmitKeys, 'body' | 'path' | 'query' | 'url'> &
+ Omit;
+
+export type OptionsLegacyParser<
+ TData = unknown,
+ ThrowOnError extends boolean = boolean,
+> = TData extends { body?: any }
+ ? TData extends { headers?: any }
+ ? OmitKeys, 'body' | 'headers' | 'url'> & TData
+ : OmitKeys, 'body' | 'url'> &
+ TData &
+ Pick, 'headers'>
+ : TData extends { headers?: any }
+ ? OmitKeys, 'headers' | 'url'> &
+ TData &
+ Pick, 'body'>
+ : OmitKeys, 'url'> & TData;
diff --git a/packages/client-angular/src/utils.ts b/packages/client-angular/src/utils.ts
new file mode 100644
index 000000000..f92862cf7
--- /dev/null
+++ b/packages/client-angular/src/utils.ts
@@ -0,0 +1,402 @@
+import type {
+ QuerySerializer,
+ QuerySerializerOptions,
+} from '@hey-api/client-core';
+import {
+ getAuthToken,
+ jsonBodySerializer,
+ serializeArrayParam,
+ serializeObjectParam,
+ serializePrimitiveParam,
+} from '@hey-api/client-core';
+
+import type { Client, Config, RequestOptions } from './types';
+
+interface PathSerializer {
+ path: Record;
+ url: string;
+}
+
+const PATH_PARAM_RE = /\{[^{}]+\}/g;
+
+type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited';
+type MatrixStyle = 'label' | 'matrix' | 'simple';
+type ArraySeparatorStyle = ArrayStyle | MatrixStyle;
+
+const defaultPathSerializer = ({ path, url: _url }: PathSerializer) => {
+ let url = _url;
+ const matches = _url.match(PATH_PARAM_RE);
+ if (matches) {
+ for (const match of matches) {
+ let explode = false;
+ let name = match.substring(1, match.length - 1);
+ let style: ArraySeparatorStyle = 'simple';
+
+ if (name.endsWith('*')) {
+ explode = true;
+ name = name.substring(0, name.length - 1);
+ }
+
+ if (name.startsWith('.')) {
+ name = name.substring(1);
+ style = 'label';
+ } else if (name.startsWith(';')) {
+ name = name.substring(1);
+ style = 'matrix';
+ }
+
+ const value = path[name];
+
+ if (value === undefined || value === null) {
+ continue;
+ }
+
+ if (Array.isArray(value)) {
+ url = url.replace(
+ match,
+ serializeArrayParam({ explode, name, style, value }),
+ );
+ continue;
+ }
+
+ if (typeof value === 'object') {
+ url = url.replace(
+ match,
+ serializeObjectParam({
+ explode,
+ name,
+ style,
+ value: value as Record,
+ }),
+ );
+ continue;
+ }
+
+ if (style === 'matrix') {
+ url = url.replace(
+ match,
+ `;${serializePrimitiveParam({
+ name,
+ value: value as string,
+ })}`,
+ );
+ continue;
+ }
+
+ const replaceValue = encodeURIComponent(
+ style === 'label' ? `.${value as string}` : (value as string),
+ );
+ url = url.replace(match, replaceValue);
+ }
+ }
+ return url;
+};
+
+export const createQuerySerializer = ({
+ allowReserved,
+ array,
+ object,
+}: QuerySerializerOptions = {}) => {
+ const querySerializer = (queryParams: T) => {
+ let search: string[] = [];
+ if (queryParams && typeof queryParams === 'object') {
+ for (const name in queryParams) {
+ const value = queryParams[name];
+
+ if (value === undefined || value === null) {
+ continue;
+ }
+
+ if (Array.isArray(value)) {
+ search = [
+ ...search,
+ serializeArrayParam({
+ allowReserved,
+ explode: true,
+ name,
+ style: 'form',
+ value,
+ ...array,
+ }),
+ ];
+ continue;
+ }
+
+ if (typeof value === 'object') {
+ search = [
+ ...search,
+ serializeObjectParam({
+ allowReserved,
+ explode: true,
+ name,
+ style: 'deepObject',
+ value: value as Record,
+ ...object,
+ }),
+ ];
+ continue;
+ }
+
+ search = [
+ ...search,
+ serializePrimitiveParam({
+ allowReserved,
+ name,
+ value: value as string,
+ }),
+ ];
+ }
+ }
+ return search.join('&');
+ };
+ return querySerializer;
+};
+
+/**
+ * Infers parseAs value from provided Content-Type header.
+ */
+export const getParseAs = (
+ contentType: string | null,
+): Exclude => {
+ if (!contentType) {
+ // If no Content-Type header is provided, the best we can do is return the raw response body,
+ // which is effectively the same as the 'stream' option.
+ return 'stream';
+ }
+
+ const cleanContent = contentType.split(';')[0]?.trim();
+
+ if (!cleanContent) {
+ return;
+ }
+
+ if (
+ cleanContent.startsWith('application/json') ||
+ cleanContent.endsWith('+json')
+ ) {
+ return 'json';
+ }
+
+ if (cleanContent === 'multipart/form-data') {
+ return 'formData';
+ }
+
+ if (
+ ['application/', 'audio/', 'image/', 'video/'].some((type) =>
+ cleanContent.startsWith(type),
+ )
+ ) {
+ return 'blob';
+ }
+
+ if (cleanContent.startsWith('text/')) {
+ return 'text';
+ }
+};
+
+export const setAuthParams = async ({
+ security,
+ ...options
+}: Pick, 'security'> &
+ Pick & {
+ headers: Headers;
+ }) => {
+ for (const auth of security) {
+ const token = await getAuthToken(auth, options.auth);
+
+ if (!token) {
+ continue;
+ }
+
+ const name = auth.name ?? 'Authorization';
+
+ switch (auth.in) {
+ case 'query':
+ if (!options.query) {
+ options.query = {};
+ }
+ options.query[name] = token;
+ break;
+ case 'header':
+ default:
+ options.headers.set(name, token);
+ break;
+ }
+
+ return;
+ }
+};
+
+export const buildUrl: Client['buildUrl'] = (options) => {
+ const url = getUrl({
+ baseUrl: options.baseUrl ?? '',
+ path: options.path,
+ query: options.query,
+ querySerializer:
+ typeof options.querySerializer === 'function'
+ ? options.querySerializer
+ : createQuerySerializer(options.querySerializer),
+ url: options.url,
+ });
+ return url;
+};
+
+export const getUrl = ({
+ baseUrl,
+ path,
+ query,
+ querySerializer,
+ url: _url,
+}: {
+ baseUrl: string;
+ path?: Record;
+ query?: Record;
+ querySerializer: QuerySerializer;
+ url: string;
+}) => {
+ const pathUrl = _url.startsWith('/') ? _url : `/${_url}`;
+ let url = baseUrl + pathUrl;
+ if (path) {
+ url = defaultPathSerializer({ path, url });
+ }
+ let search = query ? querySerializer(query) : '';
+ if (search.startsWith('?')) {
+ search = search.substring(1);
+ }
+ if (search) {
+ url += `?${search}`;
+ }
+ return url;
+};
+
+export const mergeConfigs = (a: Config, b: Config): Config => {
+ const config = { ...a, ...b };
+ if (config.baseUrl?.endsWith('/')) {
+ config.baseUrl = config.baseUrl.substring(0, config.baseUrl.length - 1);
+ }
+ config.headers = mergeHeaders(a.headers, b.headers);
+ return config;
+};
+
+export const mergeHeaders = (
+ ...headers: Array['headers'] | undefined>
+): Headers => {
+ const mergedHeaders = new Headers();
+ for (const header of headers) {
+ if (!header || typeof header !== 'object') {
+ continue;
+ }
+
+ const iterator =
+ header instanceof Headers ? header.entries() : Object.entries(header);
+
+ for (const [key, value] of iterator) {
+ if (value === null) {
+ mergedHeaders.delete(key);
+ } else if (Array.isArray(value)) {
+ for (const v of value) {
+ mergedHeaders.append(key, v as string);
+ }
+ } else if (value !== undefined) {
+ // assume object headers are meant to be JSON stringified, i.e. their
+ // content value in OpenAPI specification is 'application/json'
+ mergedHeaders.set(
+ key,
+ typeof value === 'object' ? JSON.stringify(value) : (value as string),
+ );
+ }
+ }
+ }
+ return mergedHeaders;
+};
+
+type ErrInterceptor = (
+ error: Err,
+ response: Res,
+ request: Req,
+ options: Options,
+) => Err | Promise;
+
+type ReqInterceptor = (
+ request: Req,
+ options: Options,
+) => Req | Promise;
+
+type ResInterceptor = (
+ response: Res,
+ request: Req,
+ options: Options,
+) => Res | Promise;
+
+class Interceptors {
+ _fns: Interceptor[];
+
+ constructor() {
+ this._fns = [];
+ }
+
+ clear() {
+ this._fns = [];
+ }
+
+ exists(fn: Interceptor) {
+ return this._fns.indexOf(fn) !== -1;
+ }
+
+ eject(fn: Interceptor) {
+ const index = this._fns.indexOf(fn);
+ if (index !== -1) {
+ this._fns = [...this._fns.slice(0, index), ...this._fns.slice(index + 1)];
+ }
+ }
+
+ use(fn: Interceptor) {
+ this._fns = [...this._fns, fn];
+ }
+}
+
+// `createInterceptors()` response, meant for external use as it does not
+// expose internals
+export interface Middleware {
+ error: Pick<
+ Interceptors>,
+ 'eject' | 'use'
+ >;
+ request: Pick>, 'eject' | 'use'>;
+ response: Pick<
+ Interceptors>,
+ 'eject' | 'use'
+ >;
+}
+
+// do not add `Middleware` as return type so we can use _fns internally
+export const createInterceptors = () => ({
+ error: new Interceptors>(),
+ request: new Interceptors>(),
+ response: new Interceptors>(),
+});
+
+const defaultQuerySerializer = createQuerySerializer({
+ allowReserved: false,
+ array: {
+ explode: true,
+ style: 'form',
+ },
+ object: {
+ explode: true,
+ style: 'deepObject',
+ },
+});
+
+const defaultHeaders = {
+ 'Content-Type': 'application/json',
+};
+
+export const createConfig = (override: Config = {}): Config => ({
+ ...jsonBodySerializer,
+ baseUrl: '',
+ headers: defaultHeaders,
+ parseAs: 'auto',
+ querySerializer: defaultQuerySerializer,
+ ...override,
+});
diff --git a/packages/client-angular/tsconfig.base.json b/packages/client-angular/tsconfig.base.json
new file mode 100644
index 000000000..4ae154dda
--- /dev/null
+++ b/packages/client-angular/tsconfig.base.json
@@ -0,0 +1,14 @@
+{
+ "compilerOptions": {
+ "declaration": true,
+ "esModuleInterop": true,
+ "module": "ESNext",
+ "moduleResolution": "Bundler",
+ "noImplicitOverride": true,
+ "noUncheckedIndexedAccess": true,
+ "noUnusedLocals": true,
+ "strict": true,
+ "target": "ES2022",
+ "useUnknownInCatchVariables": false
+ }
+}
diff --git a/packages/client-angular/tsconfig.json b/packages/client-angular/tsconfig.json
new file mode 100644
index 000000000..faaf0992f
--- /dev/null
+++ b/packages/client-angular/tsconfig.json
@@ -0,0 +1,7 @@
+{
+ "extends": "./tsconfig.base.json",
+ "compilerOptions": {
+ "declaration": false,
+ "esModuleInterop": true
+ }
+}
diff --git a/packages/client-angular/tsup.config.ts b/packages/client-angular/tsup.config.ts
new file mode 100644
index 000000000..77dfaf864
--- /dev/null
+++ b/packages/client-angular/tsup.config.ts
@@ -0,0 +1,12 @@
+import { defineConfig } from 'tsup';
+
+export default defineConfig((options) => ({
+ clean: true,
+ dts: true,
+ entry: ['src/index.ts'],
+ format: ['cjs', 'esm'],
+ minify: !options.watch,
+ shims: false,
+ sourcemap: true,
+ treeshake: true,
+}));
diff --git a/packages/client-angular/vitest.config.ts b/packages/client-angular/vitest.config.ts
new file mode 100644
index 000000000..0431940e9
--- /dev/null
+++ b/packages/client-angular/vitest.config.ts
@@ -0,0 +1,14 @@
+import { fileURLToPath } from 'node:url';
+
+import { defineConfig } from 'vitest/config';
+
+export default defineConfig({
+ test: {
+ coverage: {
+ exclude: ['dist', 'src/**/*.d.ts'],
+ include: ['src/**/*.ts'],
+ provider: 'v8',
+ },
+ root: fileURLToPath(new URL('./', import.meta.url)),
+ },
+});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 00c996ffb..e3d9b5465 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -398,7 +398,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^19.0.6
- version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(karma@6.4.4)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3)))(typescript@5.5.3)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))
+ version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(karma@6.4.4)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3)))(typescript@5.5.3)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))
'@angular/cli':
specifier: ^19.0.6
version: 19.0.6(@types/node@22.10.5)(chokidar@4.0.3)
@@ -667,6 +667,21 @@ importers:
specifier: 2.2.0
version: 2.2.0(typescript@5.5.3)
+ packages/client-angular:
+ devDependencies:
+ '@angular/common':
+ specifier: 19.1.3
+ version: 19.1.3(@angular/core@19.1.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ '@angular/core':
+ specifier: 19.1.3
+ version: 19.1.3(rxjs@7.8.1)(zone.js@0.15.0)
+ '@hey-api/client-core':
+ specifier: workspace:*
+ version: link:../client-core
+ rxjs:
+ specifier: 7.8.1
+ version: 7.8.1
+
packages/client-axios:
devDependencies:
'@hey-api/client-core':
@@ -717,7 +732,7 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: 19.0.6
- version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(karma@6.4.4)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3)))(typescript@5.5.3)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))
+ version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(karma@6.4.4)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3)))(typescript@5.5.3)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))
'@angular/animations':
specifier: 19.0.5
version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))
@@ -801,7 +816,7 @@ importers:
version: 3.3.2
nuxt:
specifier: 3.15.1
- version: 3.15.1(@parcel/watcher@2.5.0)(@types/node@22.10.5)(db0@0.2.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.31.0)(sass@1.80.7)(terser@5.36.0)(typescript@5.5.3)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))(yaml@2.7.0)
+ version: 3.15.1(@parcel/watcher@2.5.0)(@types/node@22.10.5)(db0@0.2.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.31.0)(sass@1.80.7)(terser@5.36.0)(typescript@5.5.3)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))(yaml@2.7.0)
prettier:
specifier: 3.4.2
version: 3.4.2
@@ -1035,6 +1050,13 @@ packages:
'@angular/core': 19.0.5
rxjs: ^6.5.3 || ^7.4.0
+ '@angular/common@19.1.3':
+ resolution: {integrity: sha512-r1P0W6FKrON83szIJboF8z6UNCVL4HIxyD+nhmHMMT/iJpu4kDHVugaN/+w2jYLb4oelAJK5xzkzA+1IaHpzLg==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ '@angular/core': 19.1.3
+ rxjs: ^6.5.3 || ^7.4.0
+
'@angular/compiler-cli@19.0.5':
resolution: {integrity: sha512-KSzuWCTZlvJsoAenxM9cjTOzNM8mrFxDBInj0KVPz7QU83amGS4rcv1pWO/QGYQcErfskcN84TAdMegaRWWCmA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
@@ -1059,6 +1081,13 @@ packages:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
+ '@angular/core@19.1.3':
+ resolution: {integrity: sha512-Hh1eHvi+y+gsTRODiEEEWnRj5zqv9WNoou1KmQ1mv1NTOf0Pv61Hg9P2rBWDr0mPIXFSzqUKjyzW30BgdQ+AEA==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ rxjs: ^6.5.3 || ^7.4.0
+ zone.js: ~0.15.0
+
'@angular/forms@19.0.5':
resolution: {integrity: sha512-OhNFkfOoguqCDq07vNBV28FFrmTM8S11Z3Cd6PQZJJF9TgAtpV5KtF7A3eXBCN92W4pmqluomPjfK7YyImzIYQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
@@ -10914,6 +10943,12 @@ snapshots:
rxjs: 7.8.1
tslib: 2.8.1
+ '@angular/common@19.1.3(@angular/core@19.1.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)':
+ dependencies:
+ '@angular/core': 19.1.3(rxjs@7.8.1)(zone.js@0.15.0)
+ rxjs: 7.8.1
+ tslib: 2.8.1
+
'@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3)':
dependencies:
'@angular/compiler': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))
@@ -10941,6 +10976,12 @@ snapshots:
tslib: 2.8.1
zone.js: 0.15.0
+ '@angular/core@19.1.3(rxjs@7.8.1)(zone.js@0.15.0)':
+ dependencies:
+ rxjs: 7.8.1
+ tslib: 2.8.1
+ zone.js: 0.15.0
+
'@angular/forms@19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)':
dependencies:
'@angular/common': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
@@ -12771,12 +12812,12 @@ snapshots:
'@nuxt/devalue@2.0.2': {}
- '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(rollup@4.31.0)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))':
+ '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(rollup@4.31.0)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))':
dependencies:
'@nuxt/kit': 3.15.1(magicast@0.3.5)(rollup@4.31.0)
'@nuxt/schema': 3.15.1
execa: 7.2.0
- vite: 6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0)
+ vite: 5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)
transitivePeerDependencies:
- magicast
- rollup
@@ -12806,13 +12847,13 @@ snapshots:
rc9: 2.1.2
semver: 7.6.3
- '@nuxt/devtools@1.7.0(rollup@4.31.0)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
+ '@nuxt/devtools@1.7.0(rollup@4.31.0)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))(vue@3.5.13(typescript@5.5.3))':
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(rollup@4.31.0)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))
+ '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(rollup@4.31.0)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))
'@nuxt/devtools-wizard': 1.7.0
'@nuxt/kit': 3.15.1(magicast@0.3.5)(rollup@4.31.0)
- '@vue/devtools-core': 7.6.8(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
+ '@vue/devtools-core': 7.6.8(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))(vue@3.5.13(typescript@5.5.3))
'@vue/devtools-kit': 7.6.8
birpc: 0.2.19
consola: 3.3.3
@@ -12841,9 +12882,9 @@ snapshots:
sirv: 3.0.0
tinyglobby: 0.2.10
unimport: 3.14.5(rollup@4.31.0)
- vite: 6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0)
- vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.1(magicast@0.3.5)(rollup@4.31.0))(rollup@4.31.0)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))
- vite-plugin-vue-inspector: 5.3.1(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))
+ vite: 5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)
+ vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.1(magicast@0.3.5)(rollup@4.31.0))(rollup@4.31.0)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))
+ vite-plugin-vue-inspector: 5.3.1(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -12903,7 +12944,7 @@ snapshots:
'@nuxt/devtools@1.7.0(rollup@4.31.0)(vue@3.5.13(typescript@5.6.1-rc))':
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(rollup@4.31.0)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))
+ '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(rollup@4.31.0)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))
'@nuxt/devtools-wizard': 1.7.0
'@nuxt/kit': 3.15.1(magicast@0.3.5)(rollup@4.31.0)
'@vue/devtools-core': 7.6.8(vue@3.5.13(typescript@5.6.1-rc))
@@ -12935,8 +12976,8 @@ snapshots:
sirv: 3.0.0
tinyglobby: 0.2.10
unimport: 3.14.5(rollup@4.31.0)
- vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.1(magicast@0.3.5)(rollup@4.31.0))(rollup@4.31.0)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))
- vite-plugin-vue-inspector: 5.3.1(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))
+ vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.1(magicast@0.3.5)(rollup@4.31.0))(rollup@4.31.0)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))
+ vite-plugin-vue-inspector: 5.3.1(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -15027,14 +15068,14 @@ snapshots:
dependencies:
'@vue/devtools-kit': 7.7.0
- '@vue/devtools-core@7.6.8(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
+ '@vue/devtools-core@7.6.8(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))(vue@3.5.13(typescript@5.5.3))':
dependencies:
'@vue/devtools-kit': 7.7.0
'@vue/devtools-shared': 7.7.0
mitt: 3.0.1
nanoid: 5.0.9
pathe: 1.1.2
- vite-hot-client: 0.2.4(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))
+ vite-hot-client: 0.2.4(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))
vue: 3.5.13(typescript@5.5.3)
transitivePeerDependencies:
- vite
@@ -15058,7 +15099,7 @@ snapshots:
mitt: 3.0.1
nanoid: 5.0.9
pathe: 1.1.2
- vite-hot-client: 0.2.4(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))
+ vite-hot-client: 0.2.4(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))
vue: 3.5.13(typescript@5.6.1-rc)
transitivePeerDependencies:
- vite
@@ -18764,10 +18805,10 @@ snapshots:
nuxi@3.19.1: {}
- nuxt@3.15.1(@parcel/watcher@2.5.0)(@types/node@22.10.5)(db0@0.2.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.31.0)(sass@1.80.7)(terser@5.36.0)(typescript@5.5.3)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))(yaml@2.7.0):
+ nuxt@3.15.1(@parcel/watcher@2.5.0)(@types/node@22.10.5)(db0@0.2.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(less@4.2.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.31.0)(sass@1.80.7)(terser@5.36.0)(typescript@5.5.3)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))(yaml@2.7.0):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.7.0(rollup@4.31.0)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
+ '@nuxt/devtools': 1.7.0(rollup@4.31.0)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))(vue@3.5.13(typescript@5.5.3))
'@nuxt/kit': 3.15.1(magicast@0.3.5)(rollup@4.31.0)
'@nuxt/schema': 3.15.1
'@nuxt/telemetry': 2.6.4(magicast@0.3.5)(rollup@4.31.0)
@@ -21517,9 +21558,9 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-hot-client@0.2.4(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0)):
+ vite-hot-client@0.2.4(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)):
dependencies:
- vite: 6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0)
+ vite: 5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)
vite-hot-client@0.2.4(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0)):
dependencies:
@@ -21605,7 +21646,7 @@ snapshots:
optionator: 0.9.4
typescript: 5.6.1-rc
- vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.1(magicast@0.3.5)(rollup@4.31.0))(rollup@4.31.0)(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0)):
+ vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.1(magicast@0.3.5)(rollup@4.31.0))(rollup@4.31.0)(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)):
dependencies:
'@antfu/utils': 0.7.10
'@rollup/pluginutils': 5.1.4(rollup@4.31.0)
@@ -21616,7 +21657,7 @@ snapshots:
perfect-debounce: 1.0.0
picocolors: 1.1.1
sirv: 3.0.0
- vite: 6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0)
+ vite: 5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)
optionalDependencies:
'@nuxt/kit': 3.15.1(magicast@0.3.5)(rollup@4.31.0)
transitivePeerDependencies:
@@ -21657,7 +21698,7 @@ snapshots:
- supports-color
- vue
- vite-plugin-vue-inspector@5.3.1(vite@6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0)):
+ vite-plugin-vue-inspector@5.3.1(vite@5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)):
dependencies:
'@babel/core': 7.26.0
'@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
@@ -21668,7 +21709,7 @@ snapshots:
'@vue/compiler-dom': 3.5.13
kolorist: 1.8.0
magic-string: 0.30.17
- vite: 6.0.11(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)(yaml@2.7.0)
+ vite: 5.4.11(@types/node@22.10.5)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)
transitivePeerDependencies:
- supports-color
From 9cced603bb50b2f9fff20c54893c7f9b4e7220f5 Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Tue, 28 Jan 2025 01:32:36 +0100
Subject: [PATCH 02/18] revert to base just copy
---
packages/client-angular/CHANGELOG.md | 331 ++++++++++++++++++
packages/client-angular/package.json | 13 +-
packages/client-angular/src/index.ts | 118 +++----
packages/client-angular/src/types.ts | 127 ++-----
packages/client-angular/src/utils.ts | 9 +-
.../plugins/@hey-api/client-angular/config.ts | 23 ++
.../plugins/@hey-api/client-angular/index.ts | 2 +
.../plugins/@hey-api/client-angular/plugin.ts | 71 ++++
.../@hey-api/client-angular/types.d.ts | 16 +
.../src/plugins/@hey-api/sdk/plugin.ts | 18 +-
packages/openapi-ts/src/plugins/index.ts | 7 +
packages/openapi-ts/src/plugins/types.d.ts | 1 +
12 files changed, 559 insertions(+), 177 deletions(-)
create mode 100644 packages/openapi-ts/src/plugins/@hey-api/client-angular/config.ts
create mode 100644 packages/openapi-ts/src/plugins/@hey-api/client-angular/index.ts
create mode 100644 packages/openapi-ts/src/plugins/@hey-api/client-angular/plugin.ts
create mode 100644 packages/openapi-ts/src/plugins/@hey-api/client-angular/types.d.ts
diff --git a/packages/client-angular/CHANGELOG.md b/packages/client-angular/CHANGELOG.md
index 0f9e4d2b0..e43bdf3e9 100644
--- a/packages/client-angular/CHANGELOG.md
+++ b/packages/client-angular/CHANGELOG.md
@@ -1 +1,332 @@
# @hey-api/client-angular
+
+## 0.7.2
+
+### Patch Changes
+
+- [#1626](https://github.com/hey-api/openapi-ts/pull/1626) [`8eba19d`](https://github.com/hey-api/openapi-ts/commit/8eba19d4092fc0903572ab9fdadf0b4c26928ba2) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: export CreateClientConfig type
+
+## 0.7.1
+
+### Patch Changes
+
+- [#1600](https://github.com/hey-api/openapi-ts/pull/1600) [`0432418`](https://github.com/hey-api/openapi-ts/commit/0432418d72c94ef94865f8216ed2f723ad5191f9) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: bundle clients from compiled index file
+
+- [#1596](https://github.com/hey-api/openapi-ts/pull/1596) [`4784727`](https://github.com/hey-api/openapi-ts/commit/47847276e8bc854045044dd414382080270dd779) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: add null to valid bodySerializer types
+
+## 0.7.0
+
+### Minor Changes
+
+- [#1568](https://github.com/hey-api/openapi-ts/pull/1568) [`465410c`](https://github.com/hey-api/openapi-ts/commit/465410c201eb19e737e3143ad53a146e95f80107) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: change the default parser
+
+## 0.6.0
+
+### Minor Changes
+
+- **BREAKING**: please update `@hey-api/openapi-ts` to the latest version
+
+ feat: replace accessToken and apiKey functions with auth
+
+ ### Added `auth` option
+
+ Client package functions `accessToken` and `apiKey` were replaced with a single `auth` function for fetching auth tokens. If your API supports multiple auth mechanisms, you can use the `auth` argument to return the appropriate token.
+
+ ```js
+ import { client } from 'client/sdk.gen';
+
+ client.setConfig({
+ accessToken: () => '', // [!code --]
+ apiKey: () => '', // [!code --]
+ auth: (auth) => '', // [!code ++]
+ });
+ ```
+
+- **BREAKING**: rename exported Security interface to Auth
+
+- [#1507](https://github.com/hey-api/openapi-ts/pull/1507) [`e2e1410`](https://github.com/hey-api/openapi-ts/commit/e2e1410b22c0c84c40d1b1803e9650d546350cb7) Thanks [@nimobeeren](https://github.com/nimobeeren)! - **BREAKING**: return raw response body (of type `ReadableStream`) when `Content-Type` response header is not provided and `parseAs` is set to `auto`
+
+## 0.5.7
+
+### Patch Changes
+
+- [#1468](https://github.com/hey-api/openapi-ts/pull/1468) [`20d7497`](https://github.com/hey-api/openapi-ts/commit/20d7497acb6c046f6a4206c2d8137414e17b2263) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: handle indexed access checks
+
+- [#1471](https://github.com/hey-api/openapi-ts/pull/1471) [`f86d293`](https://github.com/hey-api/openapi-ts/commit/f86d293f18f133ef6dd2f4864d037611b81edd26) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: add links to the experimental parser callouts
+
+## 0.5.6
+
+### Patch Changes
+
+- [#1452](https://github.com/hey-api/openapi-ts/pull/1452) [`ba56424`](https://github.com/hey-api/openapi-ts/commit/ba5642486cdd5461c2372c34b63019c02bc6874e) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: export Security interface
+
+## 0.5.5
+
+### Patch Changes
+
+- [#1430](https://github.com/hey-api/openapi-ts/pull/1430) [`9cec9e8`](https://github.com/hey-api/openapi-ts/commit/9cec9e8582c12a8c041b922d9587e16f6f19782a) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: add responseValidator option
+
+## 0.5.4
+
+### Patch Changes
+
+- [#1424](https://github.com/hey-api/openapi-ts/pull/1424) [`cbf4e84`](https://github.com/hey-api/openapi-ts/commit/cbf4e84db7f3a47f19d8c3eaa87c71b27912c1a2) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: assign fetch to variable before sending requests
+
+## 0.5.3
+
+### Patch Changes
+
+- [#1409](https://github.com/hey-api/openapi-ts/pull/1409) [`646064d`](https://github.com/hey-api/openapi-ts/commit/646064d1aecea988d2b4df73bd24b2ee83394ae0) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: support oauth2 and apiKey security schemes
+
+## 0.5.2
+
+### Patch Changes
+
+- [#1394](https://github.com/hey-api/openapi-ts/pull/1394) [`ec48d32`](https://github.com/hey-api/openapi-ts/commit/ec48d323d80de8e6a47ce7ecd732288f0a47e17a) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: disallow additional query parameters in experimental parser output
+
+## 0.5.1
+
+### Patch Changes
+
+- [#1391](https://github.com/hey-api/openapi-ts/pull/1391) [`fa8b0f1`](https://github.com/hey-api/openapi-ts/commit/fa8b0f11ed99c63f694a494944ccc2fbfa9706cc) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: assign default fetch implementation dynamically to work with msw
+
+## 0.5.0
+
+### Minor Changes
+
+- [#1333](https://github.com/hey-api/openapi-ts/pull/1333) [`734a62d`](https://github.com/hey-api/openapi-ts/commit/734a62dd8d594b8266964fe16766a481d37eb7df) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: add buildUrl() method
+
+ ## Build URL
+
+ ::: warning
+ To use this feature, you must opt in to the [experimental parser](/openapi-ts/configuration#parser).
+ :::
+
+ If you need to access the compiled URL, you can use the `buildUrl()` method. It's loosely typed by default to accept almost any value; in practice, you will want to pass a type hint.
+
+ ```ts
+ type FooData = {
+ path: {
+ fooId: number;
+ };
+ query?: {
+ bar?: string;
+ };
+ url: '/foo/{fooId}';
+ };
+
+ const url = client.buildUrl({
+ path: {
+ fooId: 1,
+ },
+ query: {
+ bar: 'baz',
+ },
+ url: '/foo/{fooId}',
+ });
+ console.log(url); // prints '/foo/1?bar=baz'
+ ```
+
+### Patch Changes
+
+- [#1333](https://github.com/hey-api/openapi-ts/pull/1333) [`734a62d`](https://github.com/hey-api/openapi-ts/commit/734a62dd8d594b8266964fe16766a481d37eb7df) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: experimental parser generates url inside data types
+
+## 0.4.4
+
+### Patch Changes
+
+- [#1296](https://github.com/hey-api/openapi-ts/pull/1296) [`4c853d0`](https://github.com/hey-api/openapi-ts/commit/4c853d090b79245854d13831f64731db4a92978b) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: handle charset in auto parseAs detection
+
+## 0.4.3
+
+### Patch Changes
+
+- [#1253](https://github.com/hey-api/openapi-ts/pull/1253) [`01dee3d`](https://github.com/hey-api/openapi-ts/commit/01dee3df879232939e43355231147b3d910fb482) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: update sponsorship links
+
+## 0.4.2
+
+### Patch Changes
+
+- [#1151](https://github.com/hey-api/openapi-ts/pull/1151) [`587791d`](https://github.com/hey-api/openapi-ts/commit/587791dfede0167fbed229281467e4c4875936f5) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: update website domain, add license documentation
+
+## 0.4.1
+
+### Patch Changes
+
+- [#1145](https://github.com/hey-api/openapi-ts/pull/1145) [`a0a5551`](https://github.com/hey-api/openapi-ts/commit/a0a55510d30a1a8dea0ade4908b5b13d51b5f9e6) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: update license field in package.json to match the license, revert client packages license to MIT
+
+## 0.4.0
+
+### Minor Changes
+
+- [#1098](https://github.com/hey-api/openapi-ts/pull/1098) [`df5c690`](https://github.com/hey-api/openapi-ts/commit/df5c69048a03a1c7729a5200c586164287a8a6fa) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: add error interceptors
+
+### Patch Changes
+
+- [#1098](https://github.com/hey-api/openapi-ts/pull/1098) [`df5c690`](https://github.com/hey-api/openapi-ts/commit/df5c69048a03a1c7729a5200c586164287a8a6fa) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: throw raw error when throwOnError is true
+
+## 0.3.4
+
+### Patch Changes
+
+- [#1092](https://github.com/hey-api/openapi-ts/pull/1092) [`7f986c2`](https://github.com/hey-api/openapi-ts/commit/7f986c2c7726ed8fbf16f8b235b7769c7d990502) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: export RequestResult type
+
+## 0.3.3
+
+### Patch Changes
+
+- [#1083](https://github.com/hey-api/openapi-ts/pull/1083) [`fe743c2`](https://github.com/hey-api/openapi-ts/commit/fe743c2d41c23bf7e1706bceedd6319299131197) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: export client-facing types again
+
+## 0.3.2
+
+### Patch Changes
+
+- [#1075](https://github.com/hey-api/openapi-ts/pull/1075) [`11a276a`](https://github.com/hey-api/openapi-ts/commit/11a276a1e35dde0735363e892d8142016fd87eec) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: properly handle dual publishing and type generation
+
+## 0.3.1
+
+### Patch Changes
+
+- [#1057](https://github.com/hey-api/openapi-ts/pull/1057) [`7ae2b1d`](https://github.com/hey-api/openapi-ts/commit/7ae2b1db047f3b6efe917a8b43ac7c851fb86c8f) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: allow responseTransformer property with body and headers
+
+- [#1064](https://github.com/hey-api/openapi-ts/pull/1064) [`2079c6e`](https://github.com/hey-api/openapi-ts/commit/2079c6e83a6b71e157c8e7ea56260b4e9ff8411d) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: encode path params
+
+## 0.3.0
+
+### Minor Changes
+
+- [#1011](https://github.com/hey-api/openapi-ts/pull/1011) [`7ebc1d4`](https://github.com/hey-api/openapi-ts/commit/7ebc1d44af74db2522219d71d240325f6bc5689d) Thanks [@goltra](https://github.com/goltra)! - feat: Function to clear and check if exist an interceptor in client-angular
+
+## 0.2.4
+
+### Patch Changes
+
+- [#899](https://github.com/hey-api/openapi-ts/pull/899) [`a8c84c0`](https://github.com/hey-api/openapi-ts/commit/a8c84c02dbb5ef1a59f5d414dff425e135c7a446) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: preserve key name in Date transformation
+
+- [#901](https://github.com/hey-api/openapi-ts/pull/901) [`7825a2f`](https://github.com/hey-api/openapi-ts/commit/7825a2fba566a76c63775172ef0569ef375406b6) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: export more types to resolve TypeScript errors
+
+## 0.2.3
+
+### Patch Changes
+
+- [#895](https://github.com/hey-api/openapi-ts/pull/895) [`44de8d8`](https://github.com/hey-api/openapi-ts/commit/44de8d89556b3abf48acc4e23c9b9c198059c757) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: define ThrowOnError generic as the last argument
+
+## 0.2.2
+
+### Patch Changes
+
+- [#877](https://github.com/hey-api/openapi-ts/pull/877) [`72e2c4f`](https://github.com/hey-api/openapi-ts/commit/72e2c4fd7d07e532a848078c034bf33b6558ad3c) Thanks [@qqilihq](https://github.com/qqilihq)! - Relax JSON content type check so that e.g. `application/json; charset=utf-8` is properly detected
+
+## 0.2.1
+
+### Patch Changes
+
+- [#864](https://github.com/hey-api/openapi-ts/pull/864) [`ec6bfc8`](https://github.com/hey-api/openapi-ts/commit/ec6bfc8292cce7663dfc6e0fcd89b44c56f08bb4) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: infer response shape based on throwOnError option value
+
+- [#852](https://github.com/hey-api/openapi-ts/pull/852) [`93e2d11`](https://github.com/hey-api/openapi-ts/commit/93e2d11d2a8ddd1f78dde46eceeb5543cae07e36) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: process application types except for application/json as blobs
+
+- [#873](https://github.com/hey-api/openapi-ts/pull/873) [`a73da1c`](https://github.com/hey-api/openapi-ts/commit/a73da1c854503246b6c58f1abea5dd77727eedca) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: export RequestOptionsBase interface
+
+- [#863](https://github.com/hey-api/openapi-ts/pull/863) [`da92c53`](https://github.com/hey-api/openapi-ts/commit/da92c535c14e3217d565472fe65c687243bc0dd8) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: cast query params dates into ISO strings
+
+## 0.2.0
+
+### Minor Changes
+
+- [#830](https://github.com/hey-api/openapi-ts/pull/830) [`babf11a`](https://github.com/hey-api/openapi-ts/commit/babf11ae082af642ac71cfee9c523cc976132a50) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: remove default client export (see migration docs)
+
+- [#830](https://github.com/hey-api/openapi-ts/pull/830) [`babf11a`](https://github.com/hey-api/openapi-ts/commit/babf11ae082af642ac71cfee9c523cc976132a50) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: add `setConfig()` method
+
+## 0.1.14
+
+### Patch Changes
+
+- [#845](https://github.com/hey-api/openapi-ts/pull/845) [`8c9c874`](https://github.com/hey-api/openapi-ts/commit/8c9c8749594622283eed2c37bddfa0f1b8cf23a4) Thanks [@julianklumpers](https://github.com/julianklumpers)! - Expose Config interface to consumers for Typescript augmentation
+
+## 0.1.13
+
+### Patch Changes
+
+- [#842](https://github.com/hey-api/openapi-ts/pull/842) [`8e3c634`](https://github.com/hey-api/openapi-ts/commit/8e3c6343672b9280365c3266f94e4acba533bf29) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: correctly set default parseAs value to "auto"
+
+## 0.1.12
+
+### Patch Changes
+
+- [#816](https://github.com/hey-api/openapi-ts/pull/816) [`0c4ee06`](https://github.com/hey-api/openapi-ts/commit/0c4ee06548f177ce83d73802471c659834c63566) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: remove Content-Type header when there's no request body
+
+## 0.1.11
+
+### Patch Changes
+
+- [#613](https://github.com/hey-api/openapi-ts/pull/613) [`c0ee1e3`](https://github.com/hey-api/openapi-ts/commit/c0ee1e3b56d67ab922491c488233bd89c8902986) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: use opts to get responseTransformer instead of options
+
+## 0.1.10
+
+### Patch Changes
+
+- [#788](https://github.com/hey-api/openapi-ts/pull/788) [`ecd94f2`](https://github.com/hey-api/openapi-ts/commit/ecd94f2adab1dbe10e7a9c310d1fb6d1f170d332) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: handle application/x-www-form-urlencoded content in request body
+
+## 0.1.9
+
+### Patch Changes
+
+- [#779](https://github.com/hey-api/openapi-ts/pull/779) [`e7e98d2`](https://github.com/hey-api/openapi-ts/commit/e7e98d279fe0ee4c71ae72a7b57afdd517a89641) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: always use client options when passed to service
+
+## 0.1.8
+
+### Patch Changes
+
+- [#756](https://github.com/hey-api/openapi-ts/pull/756) [`d546a3f`](https://github.com/hey-api/openapi-ts/commit/d546a3f9fd0a6ff5181deb50ed467acd75370889) Thanks [@jumika](https://github.com/jumika)! - fix: allow number as body type
+
+## 0.1.7
+
+### Patch Changes
+
+- [#736](https://github.com/hey-api/openapi-ts/pull/736) [`8410046`](https://github.com/hey-api/openapi-ts/commit/8410046c45d25db48ba940a0c6c7a7cda9e86b6a) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: handle async response transformers
+
+## 0.1.6
+
+### Patch Changes
+
+- [#700](https://github.com/hey-api/openapi-ts/pull/700) [`aa661a1`](https://github.com/hey-api/openapi-ts/commit/aa661a136d1174eadf4d11538e473b0d96b91b81) Thanks [@lsdch](https://github.com/lsdch)! - export RequestResult type
+
+## 0.1.5
+
+### Patch Changes
+
+- [#698](https://github.com/hey-api/openapi-ts/pull/698) [`fc2b166`](https://github.com/hey-api/openapi-ts/commit/fc2b166c8f683ece948284cf7a629fcd5b096b40) Thanks [@lsdch](https://github.com/lsdch)! - export RequestResult type
+
+## 0.1.4
+
+### Patch Changes
+
+- [#674](https://github.com/hey-api/openapi-ts/pull/674) [`da31b74`](https://github.com/hey-api/openapi-ts/commit/da31b7424b30e00233df5a3867022832c4981312) Thanks [@mlankamp](https://github.com/mlankamp)! - fix: allow non-object array in body
+
+- [#682](https://github.com/hey-api/openapi-ts/pull/682) [`34980a4`](https://github.com/hey-api/openapi-ts/commit/34980a4dc8269c9256d65984ff29270851689c43) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: stronger types for result shape
+
+- [#682](https://github.com/hey-api/openapi-ts/pull/682) [`34980a4`](https://github.com/hey-api/openapi-ts/commit/34980a4dc8269c9256d65984ff29270851689c43) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: generate correct error types
+
+## 0.1.3
+
+### Patch Changes
+
+- [#639](https://github.com/hey-api/openapi-ts/pull/639) [`820002f`](https://github.com/hey-api/openapi-ts/commit/820002ffe687b01c7a9b2250e19ddbafd1aaed71) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: do not widen body type on optional prop
+
+## 0.1.2
+
+### Patch Changes
+
+- fix: JSON stringify object headers ([#616](https://github.com/hey-api/openapi-ts/pull/616))
+
+## 0.1.1
+
+### Patch Changes
+
+- fix: export Client interface ([#610](https://github.com/hey-api/openapi-ts/pull/610))
+
+## 0.1.0
+
+### Minor Changes
+
+- feat: initial release ([#602](https://github.com/hey-api/openapi-ts/pull/602))
diff --git a/packages/client-angular/package.json b/packages/client-angular/package.json
index 90e295078..8b8f033ab 100644
--- a/packages/client-angular/package.json
+++ b/packages/client-angular/package.json
@@ -1,6 +1,6 @@
{
"name": "@hey-api/client-angular",
- "version": "0.7.1",
+ "version": "0.7.2",
"description": "🚀 Fetch API client for `@hey-api/openapi-ts` codegen.",
"homepage": "https://heyapi.dev/",
"repository": {
@@ -23,7 +23,6 @@
"http",
"javascript",
"openapi",
- "angular",
"react",
"rest",
"svelte",
@@ -66,14 +65,6 @@
"typecheck": "vitest --typecheck --watch=false"
},
"devDependencies": {
- "@angular/common": "19.1.3",
- "@angular/core": "19.1.3",
- "@hey-api/client-core": "workspace:*",
- "rxjs": "7.8.1"
- },
- "peerDependencies": {
- "@angular/common": "19.1.3",
- "@angular/core": "19.1.3",
- "rxjs": "7.8.1"
+ "@hey-api/client-core": "workspace:*"
}
}
diff --git a/packages/client-angular/src/index.ts b/packages/client-angular/src/index.ts
index 9746f270f..4a2f0ebe0 100644
--- a/packages/client-angular/src/index.ts
+++ b/packages/client-angular/src/index.ts
@@ -1,20 +1,15 @@
-import type { HttpRequest } from '@angular/common/http';
-import { HttpHeaders, HttpResponse } from '@angular/common/http';
-import { firstValueFrom } from 'rxjs';
-
-import type { Client, Config } from './types';
+import type { Client, Config, RequestOptions } from './types';
import {
buildUrl,
createConfig,
+ createInterceptors,
getParseAs,
mergeConfigs,
mergeHeaders,
+ setAuthParams,
} from './utils';
-type ReqInit = Omit<
- Partial>,
- 'body' | 'headers' | 'observe'
-> & {
+type ReqInit = Omit & {
body?: any;
headers: ReturnType;
};
@@ -29,22 +24,32 @@ export const createClient = (config: Config = {}): Client => {
return getConfig();
};
+ const interceptors = createInterceptors<
+ Request,
+ Response,
+ unknown,
+ RequestOptions
+ >();
+
// @ts-expect-error
const request: Client['request'] = async (options) => {
- const { method, ...opts } = {
+ const opts = {
..._config,
...options,
- // fetch: options.fetch ?? _config.fetch ?? globalThis.fetch,
+ fetch: options.fetch ?? _config.fetch ?? globalThis.fetch,
headers: mergeHeaders(_config.headers, options.headers),
};
- // TODO: TBD
- // if (opts.security) {
- // await setAuthParams({
- // ...opts,
- // security: opts.security,
- // });
- // }
+ if (opts.security) {
+ await setAuthParams({
+ ...opts,
+ security: opts.security,
+ });
+ }
+
+ if (opts.body && opts.bodySerializer) {
+ opts.body = opts.bodySerializer(opts.body);
+ }
// remove Content-Type header if body is empty to avoid sending invalid requests
if (!opts.body) {
@@ -57,39 +62,20 @@ export const createClient = (config: Config = {}): Client => {
...opts,
};
- // TODO: TBD - angular has native interceptors
- // for (const fn of interceptors.request._fns) {
- // request = await fn(request, opts);
- // }
-
- if (!opts.httpClient) {
- throw new Error('You must provide a HttpClient somewhere.');
- }
+ let request = new Request(url, requestInit);
- console.debug(method, url, { requestInit });
- // TODO: angular hinted multiple times for a promise-based client; let's hope for it
- const response = await firstValueFrom(
- opts.httpClient.request(method, url, {
- // TODO: must be here for the gloriously overtyped constructor calls
- observe: 'response',
- responseType: 'blob',
- ...requestInit,
- headers: new HttpHeaders(opts.headers),
- }),
- );
-
- if (!isHttpBlobResponse(response)) {
- throw new Error(
- `First value of the response stream is not a 'HttpResponse', make sure you configure the HttpClient using 'withFetch()'`,
- );
+ for (const fn of interceptors.request._fns) {
+ request = await fn(request, opts);
}
- // TODO: Everything below is kind of useless - but maybe it helps compatabillity?
+ // fetch must be assigned here, otherwise it would throw the error:
+ // TypeError: Failed to execute 'fetch' on 'Window': Illegal invocation
+ const _fetch = opts.fetch!;
+ let response = await _fetch(request);
- // TODO: TBD - angular has native interceptors
- // for (const fn of interceptors.response._fns) {
- // response = await fn(response, request, opts);
- // }
+ for (const fn of interceptors.response._fns) {
+ response = await fn(response, request, opts);
+ }
const result = {
request,
@@ -119,25 +105,14 @@ export const createClient = (config: Config = {}): Client => {
};
}
- let data: unknown = response.body;
-
- if (data) {
- if (parseAs === 'formData') {
- throw new Error(
- "Using parseAs 'formData' is incompatible with the angular client.",
- );
+ let data = await response[parseAs]();
+ if (parseAs === 'json') {
+ if (opts.responseValidator) {
+ await opts.responseValidator(data);
}
- if (parseAs === 'json') {
- data = JSON.parse(await response.body!.text());
-
- if (opts.responseValidator) {
- await opts.responseValidator(data);
- }
-
- if (opts.responseTransformer) {
- data = await opts.responseTransformer(data);
- }
+ if (opts.responseTransformer) {
+ data = await opts.responseTransformer(data);
}
}
@@ -147,7 +122,7 @@ export const createClient = (config: Config = {}): Client => {
};
}
- let error = (await response.body?.text()) ?? '';
+ let error = await response.text();
try {
error = JSON.parse(error);
@@ -157,6 +132,10 @@ export const createClient = (config: Config = {}): Client => {
let finalError = error;
+ for (const fn of interceptors.error._fns) {
+ finalError = (await fn(error, response, request, opts)) as string;
+ }
+
finalError = finalError || ({} as string);
if (opts.throwOnError) {
@@ -176,6 +155,7 @@ export const createClient = (config: Config = {}): Client => {
get: (options) => request({ ...options, method: 'GET' }),
getConfig,
head: (options) => request({ ...options, method: 'HEAD' }),
+ interceptors,
options: (options) => request({ ...options, method: 'OPTIONS' }),
patch: (options) => request({ ...options, method: 'PATCH' }),
post: (options) => request({ ...options, method: 'POST' }),
@@ -186,16 +166,10 @@ export const createClient = (config: Config = {}): Client => {
};
};
-function isHttpBlobResponse(response: any): response is HttpResponse {
- return (
- response instanceof HttpResponse &&
- (response.body === null || response.body instanceof Blob)
- );
-}
-
export type {
Client,
Config,
+ CreateClientConfig,
Options,
OptionsLegacyParser,
RequestOptions,
diff --git a/packages/client-angular/src/types.ts b/packages/client-angular/src/types.ts
index 4d36ef079..5117b85d6 100644
--- a/packages/client-angular/src/types.ts
+++ b/packages/client-angular/src/types.ts
@@ -1,60 +1,27 @@
-import type { HttpClient, HttpHeaders } from '@angular/common/http';
import type {
Auth,
- QuerySerializer,
- QuerySerializerOptions,
+ Client as CoreClient,
+ Config as CoreConfig,
} from '@hey-api/client-core';
-type OmitKeys = Pick>;
+import type { Middleware } from './utils';
export interface Config
- extends Omit {
- /**
- * Auth token or a function returning auth token. The resolved value will be
- * added to the request payload as defined by its `security` array.
- */
- auth?: ((auth: Auth) => Promise | AuthToken) | AuthToken;
+ extends Omit,
+ CoreConfig {
/**
* Base URL for all requests made by this client.
*
- * @default string what you provided in the app config
+ * @default ''
*/
baseUrl?: string;
/**
- * An object containing any HTTP headers that you want to pre-populate your
- * `Headers` object with.
- *
- * {@link https://developer.mozilla.org/docs/Web/API/Headers/Headers#init See more}
- */
- headers?:
- | RequestInit['headers']
- | HttpHeaders
- | Record<
- string,
- | string
- | number
- | boolean
- | (string | number | boolean)[]
- | null
- | undefined
- | unknown
- >;
- httpClient?: HttpClient;
- /**
- * The request method.
+ * Fetch API implementation. You can use this option to provide a custom
+ * fetch instance.
*
- * {@link https://developer.mozilla.org/docs/Web/API/fetch#method See more}
+ * @default globalThis.fetch
*/
- method?:
- | 'CONNECT'
- | 'DELETE'
- | 'GET'
- | 'HEAD'
- | 'OPTIONS'
- | 'PATCH'
- | 'POST'
- | 'PUT'
- | 'TRACE';
+ fetch?: (request: Request) => ReturnType;
/**
* Return the response data parsed in a specified format. By default, `auto`
* will infer the appropriate method from the `Content-Type` response header.
@@ -64,25 +31,6 @@ export interface Config
* @default 'auto'
*/
parseAs?: Exclude | 'auto' | 'stream';
- /**
- * A function for serializing request query parameters. By default, arrays
- * will be exploded in form style, objects will be exploded in deepObject
- * style, and reserved characters are percent-encoded.
- *
- * {@link https://swagger.io/docs/specification/serialization/#query View examples}
- */
- querySerializer?: QuerySerializer | QuerySerializerOptions;
- /**
- * A function transforming response data before it's returned. This is useful
- * for post-processing data, e.g. converting ISO strings into Date objects.
- */
- responseTransformer?: (data: unknown) => Promise;
- /**
- * A function validating response data. This is useful if you want to ensure
- * the response conforms to the desired shape, so it can be safely passed to
- * the transformers and returned to the user.
- */
- responseValidator?: (data: unknown) => Promise;
/**
* Throw an error instead of returning it in the response?
*
@@ -91,8 +39,6 @@ export interface Config
throwOnError?: ThrowOnError;
}
-type AuthToken = string | undefined;
-
export interface RequestOptions<
ThrowOnError extends boolean = boolean,
Url extends string = string,
@@ -160,33 +106,30 @@ type RequestFn = <
Pick>, 'method'>,
) => RequestResult;
-export interface Client {
- /**
- * Returns the final request URL. This method works only with experimental parser.
- */
- buildUrl: <
- TData extends {
- body?: unknown;
- path?: Record;
- query?: Record;
- url: string;
- },
- >(
- options: Pick & Options,
- ) => string;
- connect: MethodFn;
- delete: MethodFn;
- get: MethodFn;
- getConfig: () => Config;
- head: MethodFn;
- options: MethodFn;
- patch: MethodFn;
- post: MethodFn;
- put: MethodFn;
- request: RequestFn;
- setConfig: (config: Config) => Config;
- trace: MethodFn;
-}
+type BuildUrlFn = <
+ TData extends {
+ body?: unknown;
+ path?: Record;
+ query?: Record;
+ url: string;
+ },
+>(
+ options: Pick & Options,
+) => string;
+
+export type Client = CoreClient & {
+ interceptors: Middleware;
+};
+
+/**
+ * The `createClientConfig()` function will be called on client initialization
+ * and the returned object will become the client's initial configuration.
+ *
+ * You may want to initialize your client this way instead of calling
+ * `setConfig()`. This is useful for example if you're using Next.js
+ * to ensure your client always has the correct values.
+ */
+export type CreateClientConfig = (override?: Config) => Config;
interface DataShape {
body?: unknown;
@@ -196,6 +139,8 @@ interface DataShape {
url: string;
}
+type OmitKeys = Pick>;
+
export type Options<
TData extends DataShape = DataShape,
ThrowOnError extends boolean = boolean,
diff --git a/packages/client-angular/src/utils.ts b/packages/client-angular/src/utils.ts
index f92862cf7..7687ff956 100644
--- a/packages/client-angular/src/utils.ts
+++ b/packages/client-angular/src/utils.ts
@@ -10,7 +10,12 @@ import {
serializePrimitiveParam,
} from '@hey-api/client-core';
-import type { Client, Config, RequestOptions } from './types';
+import type {
+ Client,
+ Config,
+ CreateClientConfig,
+ RequestOptions,
+} from './types';
interface PathSerializer {
path: Record;
@@ -392,7 +397,7 @@ const defaultHeaders = {
'Content-Type': 'application/json',
};
-export const createConfig = (override: Config = {}): Config => ({
+export const createConfig: CreateClientConfig = (override = {}) => ({
...jsonBodySerializer,
baseUrl: '',
headers: defaultHeaders,
diff --git a/packages/openapi-ts/src/plugins/@hey-api/client-angular/config.ts b/packages/openapi-ts/src/plugins/@hey-api/client-angular/config.ts
new file mode 100644
index 000000000..ec63e400c
--- /dev/null
+++ b/packages/openapi-ts/src/plugins/@hey-api/client-angular/config.ts
@@ -0,0 +1,23 @@
+import type { Plugin } from '../../types';
+import { handler } from './plugin';
+import type { Config } from './types';
+
+export const defaultConfig: Plugin.Config = {
+ _handler: handler,
+ _handlerLegacy: () => {
+ // TODO: Add error for dx?
+ },
+ _tags: ['client'],
+ bundle: false,
+ name: '@hey-api/client-angular',
+ output: 'client',
+ throwOnError: false,
+};
+
+/**
+ * Type helper for `@hey-api/client-angular` plugin, returns {@link Plugin.Config} object
+ */
+export const defineConfig: Plugin.DefineConfig = (config) => ({
+ ...defaultConfig,
+ ...config,
+});
diff --git a/packages/openapi-ts/src/plugins/@hey-api/client-angular/index.ts b/packages/openapi-ts/src/plugins/@hey-api/client-angular/index.ts
new file mode 100644
index 000000000..3a85a1be8
--- /dev/null
+++ b/packages/openapi-ts/src/plugins/@hey-api/client-angular/index.ts
@@ -0,0 +1,2 @@
+export { defaultConfig, defineConfig } from './config';
+export type { Config } from './types';
diff --git a/packages/openapi-ts/src/plugins/@hey-api/client-angular/plugin.ts b/packages/openapi-ts/src/plugins/@hey-api/client-angular/plugin.ts
new file mode 100644
index 000000000..0f725b326
--- /dev/null
+++ b/packages/openapi-ts/src/plugins/@hey-api/client-angular/plugin.ts
@@ -0,0 +1,71 @@
+import { compiler } from '../../../compiler';
+import { clientModulePath } from '../../../generate/client';
+import { clientId } from '../client-core/utils';
+import type { PluginHandler } from './types';
+
+export const handler: PluginHandler = ({ context, plugin }) => {
+ const file = context.createFile({
+ exportFromIndex: plugin.exportFromIndex,
+ id: clientId,
+ path: plugin.output,
+ });
+ const clientOutput = file.nameWithoutExtension();
+
+ const clientModule = clientModulePath({
+ config: context.config,
+ sourceOutput: clientOutput,
+ });
+ const createClient = file.import({
+ module: clientModule,
+ name: 'createClient',
+ });
+ const createConfig = file.import({
+ module: clientModule,
+ name: 'createConfig',
+ });
+
+ const createClientConfig = plugin.runtimeConfigPath
+ ? file.import({
+ module: file.relativePathToFile({
+ context,
+ id: plugin.runtimeConfigPath,
+ }),
+ name: 'createClientConfig',
+ })
+ : undefined;
+
+ const createConfigParameters = [
+ compiler.callExpression({
+ functionName: createConfig.name,
+ parameters: [
+ 'throwOnError' in plugin && plugin.throwOnError
+ ? compiler.objectExpression({
+ obj: [
+ {
+ key: 'throwOnError',
+ value: true,
+ },
+ ],
+ })
+ : undefined,
+ ],
+ }),
+ ];
+
+ const statement = compiler.constVariable({
+ exportConst: true,
+ expression: compiler.callExpression({
+ functionName: createClient.name,
+ parameters: createClientConfig
+ ? [
+ compiler.callExpression({
+ functionName: createClientConfig.name,
+ parameters: createConfigParameters,
+ }),
+ ]
+ : createConfigParameters,
+ }),
+ name: 'client',
+ });
+ file.add(statement);
+};
diff --git a/packages/openapi-ts/src/plugins/@hey-api/client-angular/types.d.ts b/packages/openapi-ts/src/plugins/@hey-api/client-angular/types.d.ts
new file mode 100644
index 000000000..8c29a31d2
--- /dev/null
+++ b/packages/openapi-ts/src/plugins/@hey-api/client-angular/types.d.ts
@@ -0,0 +1,16 @@
+import type { Client, Plugin } from '../../types';
+
+export interface Config
+ extends Plugin.Name<'@hey-api/client-angular'>,
+ Client.Config {
+ /**
+ * Throw an error instead of returning it in the response?
+ *
+ * @default false
+ */
+ throwOnError?: boolean;
+}
+
+export type PluginHandler = Plugin.Handler;
+
+export type PluginInstance = Plugin.Instance;
diff --git a/packages/openapi-ts/src/plugins/@hey-api/sdk/plugin.ts b/packages/openapi-ts/src/plugins/@hey-api/sdk/plugin.ts
index d503c1758..1acc52593 100644
--- a/packages/openapi-ts/src/plugins/@hey-api/sdk/plugin.ts
+++ b/packages/openapi-ts/src/plugins/@hey-api/sdk/plugin.ts
@@ -561,15 +561,31 @@ const generateClassSdk = ({
});
context.subscribe('after', () => {
+ const injectableDecoratorExpr = 'Injectable';
+
+ if (client.name === '@hey-api/client-angular') {
+ file.import({
+ module: '@angular/core',
+ name: injectableDecoratorExpr,
+ });
+ }
+
for (const [name, nodes] of sdks) {
const node = compiler.classDeclaration({
- decorator: undefined,
+ decorator:
+ client.name === '@hey-api/client-angular'
+ ? {
+ args: [{ providedIn: 'root' }],
+ name: injectableDecoratorExpr,
+ }
+ : undefined,
members: nodes,
name: transformServiceName({
config: context.config,
name,
}),
});
+
file.add(node);
}
});
diff --git a/packages/openapi-ts/src/plugins/index.ts b/packages/openapi-ts/src/plugins/index.ts
index ba6fe54b4..303317da1 100644
--- a/packages/openapi-ts/src/plugins/index.ts
+++ b/packages/openapi-ts/src/plugins/index.ts
@@ -1,3 +1,7 @@
+import {
+ type Config as HeyApiClientAngular,
+ defaultConfig as heyApiClientAngular,
+} from './@hey-api/client-angular';
import {
type Config as HeyApiClientAxios,
defaultConfig as heyApiClientAxios,
@@ -76,6 +80,7 @@ import { type Config as Zod, defaultConfig as zod } from './zod';
export type UserPlugins =
| Plugin.UserConfig
| Plugin.UserConfig
+ | Plugin.UserConfig
| Plugin.UserConfig
| Plugin.UserConfig
| Plugin.UserConfig
@@ -100,6 +105,7 @@ export type UserPlugins =
export type ClientPlugins =
| Plugin.Config
| Plugin.Config
+ | Plugin.Config
| Plugin.Config
| Plugin.Config
| Plugin.Config
@@ -119,6 +125,7 @@ export type ClientPlugins =
| Plugin.Config;
export const defaultPluginConfigs: DefaultPluginConfigs = {
+ '@hey-api/client-angular': heyApiClientAngular,
'@hey-api/client-axios': heyApiClientAxios,
'@hey-api/client-fetch': heyApiClientFetch,
'@hey-api/client-nuxt': heyApiClientNuxt,
diff --git a/packages/openapi-ts/src/plugins/types.d.ts b/packages/openapi-ts/src/plugins/types.d.ts
index 67ee557fd..ec6d3b1ee 100644
--- a/packages/openapi-ts/src/plugins/types.d.ts
+++ b/packages/openapi-ts/src/plugins/types.d.ts
@@ -11,6 +11,7 @@ type OmitUnderscoreKeys = {
export type PluginClientNames =
| '@hey-api/client-axios'
| '@hey-api/client-fetch'
+ | '@hey-api/client-angular'
| '@hey-api/client-nuxt'
| 'legacy/angular'
| 'legacy/axios'
From e3f4b6c262871cb78ddd1d32c307588de7bb2906 Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 9 Mar 2025 12:02:27 +0100
Subject: [PATCH 03/18] thats pretty much it
---
packages/client-angular/package.json | 10 +-
packages/client-angular/src/index.ts | 144 +++++++++---------
packages/client-angular/src/types.ts | 20 ++-
.../src/plugins/@hey-api/sdk/plugin.ts | 1 +
pnpm-lock.yaml | 16 +-
5 files changed, 106 insertions(+), 85 deletions(-)
diff --git a/packages/client-angular/package.json b/packages/client-angular/package.json
index 8b8f033ab..0d5e70c39 100644
--- a/packages/client-angular/package.json
+++ b/packages/client-angular/package.json
@@ -65,6 +65,14 @@
"typecheck": "vitest --typecheck --watch=false"
},
"devDependencies": {
- "@hey-api/client-core": "workspace:*"
+ "@angular/common": "19.1.3",
+ "@angular/core": "19.1.3",
+ "@hey-api/client-core": "workspace:*",
+ "rxjs": "7.8.1"
+ },
+ "peerDependencies": {
+ "@angular/common": "19.1.3",
+ "@angular/core": "19.1.3",
+ "rxjs": "7.8.1"
}
}
diff --git a/packages/client-angular/src/index.ts b/packages/client-angular/src/index.ts
index 4a2f0ebe0..917ae0de3 100644
--- a/packages/client-angular/src/index.ts
+++ b/packages/client-angular/src/index.ts
@@ -1,9 +1,14 @@
+import type { HttpErrorResponse, HttpResponse } from '@angular/common/http';
+import { HttpClient, HttpEventType, HttpRequest } from '@angular/common/http';
+import { assertInInjectionContext, inject } from '@angular/core';
+import { firstValueFrom } from 'rxjs';
+import { filter, map } from 'rxjs/operators';
+
import type { Client, Config, RequestOptions } from './types';
import {
buildUrl,
createConfig,
createInterceptors,
- getParseAs,
mergeConfigs,
mergeHeaders,
setAuthParams,
@@ -25,18 +30,16 @@ export const createClient = (config: Config = {}): Client => {
};
const interceptors = createInterceptors<
- Request,
- Response,
- unknown,
+ HttpRequest,
+ HttpResponse,
+ HttpErrorResponse,
RequestOptions
>();
- // @ts-expect-error
const request: Client['request'] = async (options) => {
const opts = {
..._config,
...options,
- fetch: options.fetch ?? _config.fetch ?? globalThis.fetch,
headers: mergeHeaders(_config.headers, options.headers),
};
@@ -57,56 +60,66 @@ export const createClient = (config: Config = {}): Client => {
}
const url = buildUrl(opts);
- const requestInit: ReqInit = {
+ const { method, ...requestInit }: ReqInit = {
redirect: 'follow',
...opts,
};
- let request = new Request(url, requestInit);
+ let _httpClient = opts.httpClient;
- for (const fn of interceptors.request._fns) {
- request = await fn(request, opts);
+ if (!_httpClient) {
+ assertInInjectionContext(request);
+ _httpClient = inject(HttpClient);
}
- // fetch must be assigned here, otherwise it would throw the error:
- // TypeError: Failed to execute 'fetch' on 'Window': Illegal invocation
- const _fetch = opts.fetch!;
- let response = await _fetch(request);
+ let _request = new HttpRequest(method, url, requestInit);
- for (const fn of interceptors.response._fns) {
- response = await fn(response, request, opts);
+ for (const fn of interceptors.request._fns) {
+ _request = await fn(_request, opts);
}
-
- const result = {
- request,
- response,
- };
-
- if (response.ok) {
- if (
- response.status === 204 ||
- response.headers.get('Content-Length') === '0'
- ) {
- return {
- data: {},
- ...result,
- };
+ try {
+ let response = await firstValueFrom(
+ _httpClient.request(_request).pipe(
+ filter((event) => event.type === HttpEventType.Response),
+ map((event) => event as HttpResponse),
+ ),
+ );
+
+ for (const fn of interceptors.response._fns) {
+ response = await fn(response, _request, opts);
}
- const parseAs =
- (opts.parseAs === 'auto'
- ? getParseAs(response.headers.get('Content-Type'))
- : opts.parseAs) ?? 'json';
+ const result = {
+ request: _request,
+ response,
+ };
- if (parseAs === 'stream') {
- return {
- data: response.body,
- ...result,
- };
- }
+ if (response.ok) {
+ if (
+ response.status === 204 ||
+ response.headers.get('Content-Length') === '0'
+ ) {
+ return {
+ data: {},
+ ...result,
+ };
+ }
- let data = await response[parseAs]();
- if (parseAs === 'json') {
+ // const parseAs =
+ // (opts.parseAs === 'auto'
+ // ? getParseAs(response.headers.get('Content-Type'))
+ // : opts.parseAs) ?? 'json';
+
+ let data = response.body;
+ // if (parseAs === 'stream') {
+ // return {
+ // data: response.body,
+ // ...result,
+ // };
+ // }
+
+ // let data = await response[parseAs]();
+ // if (parseAs === 'json') {
if (opts.responseValidator) {
await opts.responseValidator(data);
}
@@ -114,38 +127,29 @@ export const createClient = (config: Config = {}): Client => {
if (opts.responseTransformer) {
data = await opts.responseTransformer(data);
}
- }
-
- return {
- data,
- ...result,
- };
- }
+ // }
- let error = await response.text();
-
- try {
- error = JSON.parse(error);
- } catch {
- // noop
- }
-
- let finalError = error;
+ return {
+ data,
+ ...result,
+ };
+ }
+ } catch (err) {
+ let finalError = err;
- for (const fn of interceptors.error._fns) {
- finalError = (await fn(error, response, request, opts)) as string;
- }
+ for (const fn of interceptors.error._fns) {
+ finalError = await fn(err, err, _request, opts);
+ }
- finalError = finalError || ({} as string);
+ if (opts.throwOnError) {
+ throw finalError;
+ }
- if (opts.throwOnError) {
- throw finalError;
+ return {
+ error: finalError,
+ ...err,
+ };
}
-
- return {
- error: finalError,
- ...result,
- };
};
return {
diff --git a/packages/client-angular/src/types.ts b/packages/client-angular/src/types.ts
index 5117b85d6..ab721c6ac 100644
--- a/packages/client-angular/src/types.ts
+++ b/packages/client-angular/src/types.ts
@@ -1,3 +1,9 @@
+import type {
+ HttpClient,
+ HttpErrorResponse,
+ HttpRequest,
+ HttpResponse,
+} from '@angular/common/http';
import type {
Auth,
Client as CoreClient,
@@ -16,12 +22,9 @@ export interface Config
*/
baseUrl?: string;
/**
- * Fetch API implementation. You can use this option to provide a custom
- * fetch instance.
- *
- * @default globalThis.fetch
+ * The HTTP client to use for making requests.
*/
- fetch?: (request: Request) => ReturnType;
+ httpClient?: HttpClient;
/**
* Return the response data parsed in a specified format. By default, `auto`
* will infer the appropriate method from the `Content-Type` response header.
@@ -118,7 +121,12 @@ type BuildUrlFn = <
) => string;
export type Client = CoreClient & {
- interceptors: Middleware;
+ interceptors: Middleware<
+ HttpRequest,
+ HttpResponse,
+ HttpErrorResponse,
+ RequestOptions
+ >;
};
/**
diff --git a/packages/openapi-ts/src/plugins/@hey-api/sdk/plugin.ts b/packages/openapi-ts/src/plugins/@hey-api/sdk/plugin.ts
index 1acc52593..cb6478b73 100644
--- a/packages/openapi-ts/src/plugins/@hey-api/sdk/plugin.ts
+++ b/packages/openapi-ts/src/plugins/@hey-api/sdk/plugin.ts
@@ -504,6 +504,7 @@ const generateClassSdk = ({
operation.description && escapeComment(operation.description),
],
isStatic: true,
+ // isStatic: client.name !== '@hey-api/client-angular',
name: serviceFunctionIdentifier({
config: context.config,
handleIllegal: false,
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 1dbea3209..2e987d938 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -17481,8 +17481,8 @@ snapshots:
'@typescript-eslint/parser': 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
eslint: 9.17.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2))
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.17.0(jiti@2.4.2))
eslint-plugin-react: 7.37.4(eslint@9.17.0(jiti@2.4.2))
eslint-plugin-react-hooks: 5.1.0(eslint@9.17.0(jiti@2.4.2))
@@ -17505,7 +17505,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)):
+ eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.4.0(supports-color@9.4.0)
@@ -17517,22 +17517,22 @@ snapshots:
is-glob: 4.0.3
stable-hash: 0.0.4
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2)):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
eslint: 9.17.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2))
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -17543,7 +17543,7 @@ snapshots:
doctrine: 2.1.0
eslint: 9.17.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
From c2f5f07c76e870dc7665ee83011f5e40fbc00df6 Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 9 Mar 2025 12:15:38 +0100
Subject: [PATCH 04/18] update lockfile for some reason
---
pnpm-lock.yaml | 31692 +++++++++++++++++++++++------------------------
1 file changed, 15214 insertions(+), 16478 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3b4bb92b4..ff4f0ee72 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,998 +1,846 @@
-lockfileVersion: '9.0'
-
-settings:
- autoInstallPeers: true
- excludeLinksFromLockfile: false
+lockfileVersion: 5.4
importers:
.:
+ specifiers:
+ '@arethetypeswrong/cli': 0.17.2
+ '@changesets/changelog-github': 0.5.0
+ '@changesets/cli': 2.27.8
+ '@types/node': 22.10.5
+ '@typescript-eslint/eslint-plugin': 7.18.0
+ '@vitest/coverage-v8': 1.6.0
+ eslint: 9.17.0
+ eslint-config-prettier: 9.1.0
+ eslint-plugin-simple-import-sort: 12.1.1
+ eslint-plugin-sort-destructure-keys: 2.0.0
+ eslint-plugin-sort-keys-fix: 1.1.2
+ eslint-plugin-typescript-sort-keys: 3.3.0
+ eslint-plugin-vue: 9.32.0
+ globals: 15.14.0
+ husky: 9.1.7
+ lint-staged: 15.3.0
+ prettier: 3.4.2
+ rollup: 4.31.0
+ rollup-plugin-dts: 6.1.1
+ tsup: 8.3.5
+ turbo: 2.4.0
+ typescript: 5.5.3
+ typescript-eslint: 8.19.1
+ vitest: 1.6.0
devDependencies:
- '@arethetypeswrong/cli':
- specifier: 0.17.2
- version: 0.17.2
- '@changesets/changelog-github':
- specifier: 0.5.0
- version: 0.5.0(encoding@0.1.13)
- '@changesets/cli':
- specifier: 2.27.8
- version: 2.27.8
- '@types/node':
- specifier: 22.10.5
- version: 22.10.5
- '@typescript-eslint/eslint-plugin':
- specifier: 7.18.0
- version: 7.18.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@vitest/coverage-v8':
- specifier: 1.6.0
- version: 1.6.0(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))
- eslint:
- specifier: 9.17.0
- version: 9.17.0(jiti@2.4.2)
- eslint-config-prettier:
- specifier: 9.1.0
- version: 9.1.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-simple-import-sort:
- specifier: 12.1.1
- version: 12.1.1(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-sort-destructure-keys:
- specifier: 2.0.0
- version: 2.0.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-sort-keys-fix:
- specifier: 1.1.2
- version: 1.1.2
- eslint-plugin-typescript-sort-keys:
- specifier: 3.3.0
- version: 3.3.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- eslint-plugin-vue:
- specifier: 9.32.0
- version: 9.32.0(eslint@9.17.0(jiti@2.4.2))
- globals:
- specifier: 15.14.0
- version: 15.14.0
- husky:
- specifier: 9.1.7
- version: 9.1.7
- lint-staged:
- specifier: 15.3.0
- version: 15.3.0
- prettier:
- specifier: 3.4.2
- version: 3.4.2
- rollup:
- specifier: 4.31.0
- version: 4.31.0
- rollup-plugin-dts:
- specifier: 6.1.1
- version: 6.1.1(rollup@4.31.0)(typescript@5.5.3)
- tsup:
- specifier: 8.3.5
- version: 8.3.5(jiti@2.4.2)(postcss@8.5.3)(typescript@5.5.3)(yaml@2.7.0)
- turbo:
- specifier: 2.4.0
- version: 2.4.0
- typescript:
- specifier: 5.5.3
- version: 5.5.3
- typescript-eslint:
- specifier: 8.19.1
- version: 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- vitest:
- specifier: 1.6.0
- version: 1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ '@arethetypeswrong/cli': 0.17.2
+ '@changesets/changelog-github': 0.5.0
+ '@changesets/cli': 2.27.8
+ '@types/node': 22.10.5
+ '@typescript-eslint/eslint-plugin': 7.18.0_ulnpem3vhphymaemnltoyugxr4
+ '@vitest/coverage-v8': 1.6.0_vitest@1.6.0
+ eslint: 9.17.0
+ eslint-config-prettier: 9.1.0_eslint@9.17.0
+ eslint-plugin-simple-import-sort: 12.1.1_eslint@9.17.0
+ eslint-plugin-sort-destructure-keys: 2.0.0_eslint@9.17.0
+ eslint-plugin-sort-keys-fix: 1.1.2
+ eslint-plugin-typescript-sort-keys: 3.3.0_ulnpem3vhphymaemnltoyugxr4
+ eslint-plugin-vue: 9.32.0_eslint@9.17.0
+ globals: 15.14.0
+ husky: 9.1.7
+ lint-staged: 15.3.0
+ prettier: 3.4.2
+ rollup: 4.31.0
+ rollup-plugin-dts: 6.1.1_tvniqcuwx6bs2alzrkuiqowlke
+ tsup: 8.3.5_typescript@5.5.3
+ turbo: 2.4.0
+ typescript: 5.5.3
+ typescript-eslint: 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
+ vitest: 1.6.0_@types+node@22.10.5
docs:
+ specifiers:
+ '@stackblitz/sdk': 1.11.0
+ sharp: 0.33.5
+ vitepress: 1.3.0
+ vue: 3.5.13
dependencies:
- '@stackblitz/sdk':
- specifier: 1.11.0
- version: 1.11.0
+ '@stackblitz/sdk': 1.11.0
devDependencies:
- sharp:
- specifier: 0.33.5
- version: 0.33.5
- vitepress:
- specifier: 1.3.0
- version: 1.3.0(@algolia/client-search@5.20.0)(@types/node@22.13.8)(axios@1.7.9)(less@4.2.2)(postcss@8.5.3)(sass@1.85.0)(search-insights@2.17.3)(terser@5.39.0)(typescript@5.5.3)
- vue:
- specifier: 3.5.13
- version: 3.5.13(typescript@5.5.3)
+ sharp: 0.33.5
+ vitepress: 1.3.0_lf5wzet23pep44me4gg534bzoa
+ vue: 3.5.13
examples/openapi-ts-axios:
+ specifiers:
+ '@hey-api/client-axios': workspace:*
+ '@hey-api/openapi-ts': workspace:*
+ '@radix-ui/react-form': 0.1.1
+ '@radix-ui/react-icons': 1.3.2
+ '@radix-ui/themes': 3.1.6
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ '@typescript-eslint/eslint-plugin': 7.18.0
+ '@typescript-eslint/parser': 7.15.0
+ '@vitejs/plugin-react': 4.3.1
+ autoprefixer: 10.4.19
+ axios: 1.7.9
+ eslint: 9.17.0
+ eslint-plugin-react-hooks: 4.6.2
+ eslint-plugin-react-refresh: 0.4.7
+ postcss: 8.4.41
+ prettier: 3.4.2
+ react: 19.0.0
+ react-dom: 19.0.0
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
+ vite: 6.0.9
dependencies:
- '@hey-api/client-axios':
- specifier: workspace:*
- version: link:../../packages/client-axios
- '@radix-ui/react-form':
- specifier: 0.1.1
- version: 0.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-icons':
- specifier: 1.3.2
- version: 1.3.2(react@19.0.0)
- '@radix-ui/themes':
- specifier: 3.1.6
- version: 3.1.6(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- axios:
- specifier: 1.7.9
- version: 1.7.9
- react:
- specifier: 19.0.0
- version: 19.0.0
- react-dom:
- specifier: 19.0.0
- version: 19.0.0(react@19.0.0)
+ '@hey-api/client-axios': link:../../packages/client-axios
+ '@radix-ui/react-form': 0.1.1_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-icons': 1.3.2_react@19.0.0
+ '@radix-ui/themes': 3.1.6_rwablqpolwkqma5a7gseo64e5i
+ axios: 1.7.9
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
devDependencies:
- '@hey-api/openapi-ts':
- specifier: workspace:*
- version: link:../../packages/openapi-ts
- '@types/react':
- specifier: 19.0.1
- version: 19.0.1
- '@types/react-dom':
- specifier: 19.0.1
- version: 19.0.1
- '@typescript-eslint/eslint-plugin':
- specifier: 7.18.0
- version: 7.18.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/parser':
- specifier: 7.15.0
- version: 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@vitejs/plugin-react':
- specifier: 4.3.1
- version: 4.3.1(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- autoprefixer:
- specifier: 10.4.19
- version: 10.4.19(postcss@8.4.41)
- eslint:
- specifier: 9.17.0
- version: 9.17.0(jiti@2.4.2)
- eslint-plugin-react-hooks:
- specifier: 4.6.2
- version: 4.6.2(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-react-refresh:
- specifier: 0.4.7
- version: 0.4.7(eslint@9.17.0(jiti@2.4.2))
- postcss:
- specifier: 8.4.41
- version: 8.4.41
- prettier:
- specifier: 3.4.2
- version: 3.4.2
- tailwindcss:
- specifier: 3.4.9
- version: 3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3))
- typescript:
- specifier: 5.5.3
- version: 5.5.3
- vite:
- specifier: 6.0.9
- version: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ '@hey-api/openapi-ts': link:../../packages/openapi-ts
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ '@typescript-eslint/eslint-plugin': 7.18.0_cdi53umeqzw6zrbmodqrkqvslu
+ '@typescript-eslint/parser': 7.15.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@vitejs/plugin-react': 4.3.1_vite@6.0.9
+ autoprefixer: 10.4.19_postcss@8.4.41
+ eslint: 9.17.0
+ eslint-plugin-react-hooks: 4.6.2_eslint@9.17.0
+ eslint-plugin-react-refresh: 0.4.7_eslint@9.17.0
+ postcss: 8.4.41
+ prettier: 3.4.2
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
+ vite: 6.0.9
examples/openapi-ts-fastify:
+ specifiers:
+ '@hey-api/client-fetch': workspace:*
+ '@hey-api/openapi-ts': workspace:*
+ eslint: 9.17.0
+ fastify: 5.2.0
+ fastify-openapi-glue: 4.8.0
+ prettier: 3.4.2
+ typescript: 5.5.3
+ vitest: 1.6.0
dependencies:
- '@hey-api/client-fetch':
- specifier: workspace:*
- version: link:../../packages/client-fetch
- fastify:
- specifier: 5.2.0
- version: 5.2.0
- fastify-openapi-glue:
- specifier: 4.8.0
- version: 4.8.0
+ '@hey-api/client-fetch': link:../../packages/client-fetch
+ fastify: 5.2.0
+ fastify-openapi-glue: 4.8.0
devDependencies:
- '@hey-api/openapi-ts':
- specifier: workspace:*
- version: link:../../packages/openapi-ts
- eslint:
- specifier: 9.17.0
- version: 9.17.0(jiti@2.4.2)
- prettier:
- specifier: 3.4.2
- version: 3.4.2
- typescript:
- specifier: 5.5.3
- version: 5.5.3
- vitest:
- specifier: 1.6.0
- version: 1.6.0(@types/node@22.13.8)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ '@hey-api/openapi-ts': link:../../packages/openapi-ts
+ eslint: 9.17.0
+ prettier: 3.4.2
+ typescript: 5.5.3
+ vitest: 1.6.0
examples/openapi-ts-fetch:
+ specifiers:
+ '@hey-api/client-fetch': workspace:*
+ '@hey-api/openapi-ts': workspace:*
+ '@radix-ui/react-form': 0.1.1
+ '@radix-ui/react-icons': 1.3.2
+ '@radix-ui/themes': 3.1.6
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ '@typescript-eslint/eslint-plugin': 7.18.0
+ '@typescript-eslint/parser': 7.15.0
+ '@vitejs/plugin-react': 4.3.1
+ autoprefixer: 10.4.19
+ eslint: 9.17.0
+ eslint-plugin-react-hooks: 4.6.2
+ eslint-plugin-react-refresh: 0.4.7
+ postcss: 8.4.41
+ prettier: 3.4.2
+ react: 19.0.0
+ react-dom: 19.0.0
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
+ vite: 6.0.9
dependencies:
- '@hey-api/client-fetch':
- specifier: workspace:*
- version: link:../../packages/client-fetch
- '@radix-ui/react-form':
- specifier: 0.1.1
- version: 0.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-icons':
- specifier: 1.3.2
- version: 1.3.2(react@19.0.0)
- '@radix-ui/themes':
- specifier: 3.1.6
- version: 3.1.6(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react:
- specifier: 19.0.0
- version: 19.0.0
- react-dom:
- specifier: 19.0.0
- version: 19.0.0(react@19.0.0)
+ '@hey-api/client-fetch': link:../../packages/client-fetch
+ '@radix-ui/react-form': 0.1.1_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-icons': 1.3.2_react@19.0.0
+ '@radix-ui/themes': 3.1.6_rwablqpolwkqma5a7gseo64e5i
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
devDependencies:
- '@hey-api/openapi-ts':
- specifier: workspace:*
- version: link:../../packages/openapi-ts
- '@types/react':
- specifier: 19.0.1
- version: 19.0.1
- '@types/react-dom':
- specifier: 19.0.1
- version: 19.0.1
- '@typescript-eslint/eslint-plugin':
- specifier: 7.18.0
- version: 7.18.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/parser':
- specifier: 7.15.0
- version: 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@vitejs/plugin-react':
- specifier: 4.3.1
- version: 4.3.1(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- autoprefixer:
- specifier: 10.4.19
- version: 10.4.19(postcss@8.4.41)
- eslint:
- specifier: 9.17.0
- version: 9.17.0(jiti@2.4.2)
- eslint-plugin-react-hooks:
- specifier: 4.6.2
- version: 4.6.2(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-react-refresh:
- specifier: 0.4.7
- version: 0.4.7(eslint@9.17.0(jiti@2.4.2))
- postcss:
- specifier: 8.4.41
- version: 8.4.41
- prettier:
- specifier: 3.4.2
- version: 3.4.2
- tailwindcss:
- specifier: 3.4.9
- version: 3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3))
- typescript:
- specifier: 5.5.3
- version: 5.5.3
- vite:
- specifier: 6.0.9
- version: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ '@hey-api/openapi-ts': link:../../packages/openapi-ts
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ '@typescript-eslint/eslint-plugin': 7.18.0_cdi53umeqzw6zrbmodqrkqvslu
+ '@typescript-eslint/parser': 7.15.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@vitejs/plugin-react': 4.3.1_vite@6.0.9
+ autoprefixer: 10.4.19_postcss@8.4.41
+ eslint: 9.17.0
+ eslint-plugin-react-hooks: 4.6.2_eslint@9.17.0
+ eslint-plugin-react-refresh: 0.4.7_eslint@9.17.0
+ postcss: 8.4.41
+ prettier: 3.4.2
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
+ vite: 6.0.9
examples/openapi-ts-next:
+ specifiers:
+ '@hey-api/client-next': workspace:*
+ '@hey-api/openapi-ts': workspace:*
+ '@types/node': 22.10.5
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ eslint: 9.17.0
+ eslint-config-next: 15.1.6
+ next: 15.1.6
+ postcss: 8.4.41
+ react: 19.0.0
+ react-dom: 19.0.0
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
dependencies:
- '@hey-api/client-next':
- specifier: workspace:*
- version: link:../../packages/client-next
- next:
- specifier: 15.1.6
- version: 15.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0)
- react:
- specifier: 19.0.0
- version: 19.0.0
- react-dom:
- specifier: 19.0.0
- version: 19.0.0(react@19.0.0)
+ '@hey-api/client-next': link:../../packages/client-next
+ next: 15.1.6_upmzqgzhjrquwzo2dphtigtdgi
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
devDependencies:
- '@hey-api/openapi-ts':
- specifier: workspace:*
- version: link:../../packages/openapi-ts
- '@types/node':
- specifier: 22.10.5
- version: 22.10.5
- '@types/react':
- specifier: 19.0.1
- version: 19.0.1
- '@types/react-dom':
- specifier: 19.0.1
- version: 19.0.1
- eslint:
- specifier: 9.17.0
- version: 9.17.0(jiti@2.4.2)
- eslint-config-next:
- specifier: 15.1.6
- version: 15.1.6(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- postcss:
- specifier: 8.4.41
- version: 8.4.41
- tailwindcss:
- specifier: 3.4.9
- version: 3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3))
- typescript:
- specifier: 5.5.3
- version: 5.5.3
+ '@hey-api/openapi-ts': link:../../packages/openapi-ts
+ '@types/node': 22.10.5
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ eslint: 9.17.0
+ eslint-config-next: 15.1.6_5ss5apc2uy6gwlbeak2m4uqwhi
+ postcss: 8.4.41
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
examples/openapi-ts-nuxt:
+ specifiers:
+ '@hey-api/client-nuxt': workspace:*
+ '@hey-api/openapi-ts': workspace:*
+ nuxt: 3.14.1592
+ vite: 6.0.9
+ vue: 3.5.13
+ vue-router: 4.5.0
+ zod: 3.23.8
dependencies:
- '@hey-api/client-nuxt':
- specifier: workspace:*
- version: link:../../packages/client-nuxt
- nuxt:
- specifier: 3.14.1592
- version: 3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.13.8)(db0@0.2.3)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.9)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- vue:
- specifier: 3.5.13
- version: 3.5.13(typescript@5.6.1-rc)
- vue-router:
- specifier: 4.5.0
- version: 4.5.0(vue@3.5.13(typescript@5.6.1-rc))
- zod:
- specifier: 3.23.8
- version: 3.23.8
+ '@hey-api/client-nuxt': link:../../packages/client-nuxt
+ nuxt: 3.14.1592_vite@6.0.9
+ vue: 3.5.13
+ vue-router: 4.5.0_vue@3.5.13
+ zod: 3.23.8
devDependencies:
- '@hey-api/openapi-ts':
- specifier: workspace:*
- version: link:../../packages/openapi-ts
- vite:
- specifier: 6.0.9
- version: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ '@hey-api/openapi-ts': link:../../packages/openapi-ts
+ vite: 6.0.9
examples/openapi-ts-sample:
+ specifiers:
+ '@hey-api/client-fetch': workspace:*
+ '@hey-api/openapi-ts': workspace:*
+ '@radix-ui/react-form': 0.1.1
+ '@radix-ui/react-icons': 1.3.2
+ '@radix-ui/themes': 3.1.6
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ '@typescript-eslint/eslint-plugin': 7.18.0
+ '@typescript-eslint/parser': 7.15.0
+ '@vitejs/plugin-react': 4.3.1
+ autoprefixer: 10.4.19
+ eslint: 9.17.0
+ eslint-plugin-react-hooks: 4.6.2
+ eslint-plugin-react-refresh: 0.4.7
+ postcss: 8.4.41
+ prettier: 3.4.2
+ react: 19.0.0
+ react-dom: 19.0.0
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
+ vite: 6.0.9
dependencies:
- '@hey-api/client-fetch':
- specifier: workspace:*
- version: link:../../packages/client-fetch
- '@radix-ui/react-form':
- specifier: 0.1.1
- version: 0.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-icons':
- specifier: 1.3.2
- version: 1.3.2(react@19.0.0)
- '@radix-ui/themes':
- specifier: 3.1.6
- version: 3.1.6(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react:
- specifier: 19.0.0
- version: 19.0.0
- react-dom:
- specifier: 19.0.0
- version: 19.0.0(react@19.0.0)
+ '@hey-api/client-fetch': link:../../packages/client-fetch
+ '@radix-ui/react-form': 0.1.1_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-icons': 1.3.2_react@19.0.0
+ '@radix-ui/themes': 3.1.6_rwablqpolwkqma5a7gseo64e5i
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
devDependencies:
- '@hey-api/openapi-ts':
- specifier: workspace:*
- version: link:../../packages/openapi-ts
- '@types/react':
- specifier: 19.0.1
- version: 19.0.1
- '@types/react-dom':
- specifier: 19.0.1
- version: 19.0.1
- '@typescript-eslint/eslint-plugin':
- specifier: 7.18.0
- version: 7.18.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/parser':
- specifier: 7.15.0
- version: 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@vitejs/plugin-react':
- specifier: 4.3.1
- version: 4.3.1(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- autoprefixer:
- specifier: 10.4.19
- version: 10.4.19(postcss@8.4.41)
- eslint:
- specifier: 9.17.0
- version: 9.17.0(jiti@2.4.2)
- eslint-plugin-react-hooks:
- specifier: 4.6.2
- version: 4.6.2(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-react-refresh:
- specifier: 0.4.7
- version: 0.4.7(eslint@9.17.0(jiti@2.4.2))
- postcss:
- specifier: 8.4.41
- version: 8.4.41
- prettier:
- specifier: 3.4.2
- version: 3.4.2
- tailwindcss:
- specifier: 3.4.9
- version: 3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3))
- typescript:
- specifier: 5.5.3
- version: 5.5.3
- vite:
- specifier: 6.0.9
- version: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ '@hey-api/openapi-ts': link:../../packages/openapi-ts
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ '@typescript-eslint/eslint-plugin': 7.18.0_cdi53umeqzw6zrbmodqrkqvslu
+ '@typescript-eslint/parser': 7.15.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@vitejs/plugin-react': 4.3.1_vite@6.0.9
+ autoprefixer: 10.4.19_postcss@8.4.41
+ eslint: 9.17.0
+ eslint-plugin-react-hooks: 4.6.2_eslint@9.17.0
+ eslint-plugin-react-refresh: 0.4.7_eslint@9.17.0
+ postcss: 8.4.41
+ prettier: 3.4.2
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
+ vite: 6.0.9
examples/openapi-ts-tanstack-angular-query-experimental:
+ specifiers:
+ '@angular-devkit/build-angular': ^19.2.0
+ '@angular/animations': ^19.2.0
+ '@angular/cdk': ^19.2.1
+ '@angular/cli': ^19.2.0
+ '@angular/common': ^19.2.0
+ '@angular/compiler': ^19.2.0
+ '@angular/compiler-cli': ^19.2.0
+ '@angular/core': ^19.2.0
+ '@angular/forms': ^19.2.0
+ '@angular/material': ^19.2.1
+ '@angular/platform-browser': ^19.2.0
+ '@angular/platform-browser-dynamic': ^19.2.0
+ '@angular/router': ^19.2.0
+ '@hey-api/client-fetch': workspace:*
+ '@hey-api/openapi-ts': workspace:*
+ '@tanstack/angular-query-experimental': 5.62.13
+ '@types/jasmine': ~5.1.0
+ jasmine-core: ~5.2.0
+ karma: ~6.4.0
+ karma-chrome-launcher: ~3.2.0
+ karma-coverage: ~2.2.0
+ karma-jasmine: ~5.1.0
+ karma-jasmine-html-reporter: ~2.1.0
+ rxjs: ~7.8.0
+ tslib: ^2.8.1
+ typescript: 5.5.3
+ zone.js: ~0.15.0
dependencies:
- '@angular/animations':
- specifier: ^19.2.0
- version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- '@angular/cdk':
- specifier: ^19.2.1
- version: 19.2.1(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/common':
- specifier: ^19.2.0
- version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/compiler':
- specifier: ^19.2.0
- version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- '@angular/core':
- specifier: ^19.2.0
- version: 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/forms':
- specifier: ^19.2.0
- version: 19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
- '@angular/material':
- specifier: ^19.2.1
- version: 19.2.1(@angular/cdk@19.2.1(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/forms@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
- '@angular/platform-browser':
- specifier: ^19.2.0
- version: 19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- '@angular/platform-browser-dynamic':
- specifier: ^19.2.0
- version: 19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))
- '@angular/router':
- specifier: ^19.2.0
- version: 19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
- '@hey-api/client-fetch':
- specifier: workspace:*
- version: link:../../packages/client-fetch
- '@tanstack/angular-query-experimental':
- specifier: 5.62.13
- version: 5.62.13(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- rxjs:
- specifier: ~7.8.0
- version: 7.8.1
- tslib:
- specifier: ^2.8.1
- version: 2.8.1
- zone.js:
- specifier: ~0.15.0
- version: 0.15.0
+ '@angular/animations': 19.2.1_@angular+core@19.2.1
+ '@angular/cdk': 19.2.2_otimakhjaab5xv3qzlo7dv472e
+ '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
+ '@angular/compiler': 19.2.1_@angular+core@19.2.1
+ '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
+ '@angular/forms': 19.2.1_z4ykjt5nb5xnncujnwph6lwtaq
+ '@angular/material': 19.2.2_suyt3mkhhnm2yhslnogzhg34oe
+ '@angular/platform-browser': 19.2.1_hphkzp5feflrtxibdjypxrpzjq
+ '@angular/platform-browser-dynamic': 19.2.1_oycwoi4ltst7cl6n6fkvn4rfy4
+ '@angular/router': 19.2.1_z4ykjt5nb5xnncujnwph6lwtaq
+ '@hey-api/client-fetch': link:../../packages/client-fetch
+ '@tanstack/angular-query-experimental': 5.62.13_hlzpvcmi6ymvzbfqomco5a3w2q
+ rxjs: 7.8.2
+ tslib: 2.8.1
+ zone.js: 0.15.0
devDependencies:
- '@angular-devkit/build-angular':
- specifier: ^19.2.0
- version: 19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.13.8)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3)))(typescript@5.5.3)(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0)
- '@angular/cli':
- specifier: ^19.2.0
- version: 19.2.0(@types/node@22.13.8)(chokidar@4.0.3)
- '@angular/compiler-cli':
- specifier: ^19.2.0
- version: 19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3)
- '@hey-api/openapi-ts':
- specifier: workspace:*
- version: link:../../packages/openapi-ts
- '@types/jasmine':
- specifier: ~5.1.0
- version: 5.1.5
- jasmine-core:
- specifier: ~5.2.0
- version: 5.2.0
- karma:
- specifier: ~6.4.0
- version: 6.4.4
- karma-chrome-launcher:
- specifier: ~3.2.0
- version: 3.2.0
- karma-coverage:
- specifier: ~2.2.0
- version: 2.2.1
- karma-jasmine:
- specifier: ~5.1.0
- version: 5.1.0(karma@6.4.4)
- karma-jasmine-html-reporter:
- specifier: ~2.1.0
- version: 2.1.0(jasmine-core@5.2.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4)
- typescript:
- specifier: 5.5.3
- version: 5.5.3
+ '@angular-devkit/build-angular': 19.2.1_xuvgtdsp76f6ukkfrnara3b5mi
+ '@angular/cli': 19.2.1
+ '@angular/compiler-cli': 19.2.1_gvbyqgimgk2h6nc52mo4mq53z4
+ '@hey-api/openapi-ts': link:../../packages/openapi-ts
+ '@types/jasmine': 5.1.7
+ jasmine-core: 5.2.0
+ karma: 6.4.4
+ karma-chrome-launcher: 3.2.0
+ karma-coverage: 2.2.1
+ karma-jasmine: 5.1.0_karma@6.4.4
+ karma-jasmine-html-reporter: 2.1.0_jvw23k3cxymogxssauqt35ffa4
+ typescript: 5.5.3
examples/openapi-ts-tanstack-react-query:
- dependencies:
- '@hey-api/client-fetch':
- specifier: workspace:*
- version: link:../../packages/client-fetch
- '@radix-ui/react-form':
- specifier: 0.1.1
- version: 0.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-icons':
- specifier: 1.3.2
- version: 1.3.2(react@19.0.0)
- '@radix-ui/themes':
- specifier: 3.1.6
- version: 3.1.6(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@tanstack/react-query':
- specifier: 5.62.15
- version: 5.62.15(react@19.0.0)
- '@tanstack/react-query-devtools':
- specifier: 5.62.15
- version: 5.62.15(@tanstack/react-query@5.62.15(react@19.0.0))(react@19.0.0)
- react:
- specifier: 19.0.0
- version: 19.0.0
- react-dom:
- specifier: 19.0.0
- version: 19.0.0(react@19.0.0)
+ specifiers:
+ '@hey-api/client-fetch': workspace:*
+ '@hey-api/openapi-ts': workspace:*
+ '@radix-ui/react-form': 0.1.1
+ '@radix-ui/react-icons': 1.3.2
+ '@radix-ui/themes': 3.1.6
+ '@tanstack/react-query': 5.62.15
+ '@tanstack/react-query-devtools': 5.62.15
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ '@typescript-eslint/eslint-plugin': 7.18.0
+ '@typescript-eslint/parser': 7.15.0
+ '@vitejs/plugin-react': 4.3.1
+ autoprefixer: 10.4.19
+ eslint: 9.17.0
+ eslint-plugin-react-hooks: 4.6.2
+ eslint-plugin-react-refresh: 0.4.7
+ postcss: 8.4.41
+ prettier: 3.4.2
+ react: 19.0.0
+ react-dom: 19.0.0
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
+ vite: 6.0.9
+ dependencies:
+ '@hey-api/client-fetch': link:../../packages/client-fetch
+ '@radix-ui/react-form': 0.1.1_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-icons': 1.3.2_react@19.0.0
+ '@radix-ui/themes': 3.1.6_rwablqpolwkqma5a7gseo64e5i
+ '@tanstack/react-query': 5.62.15_react@19.0.0
+ '@tanstack/react-query-devtools': 5.62.15_yiraw4ghf3vgr6ue3dbqy7ghf4
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
devDependencies:
- '@hey-api/openapi-ts':
- specifier: workspace:*
- version: link:../../packages/openapi-ts
- '@types/react':
- specifier: 19.0.1
- version: 19.0.1
- '@types/react-dom':
- specifier: 19.0.1
- version: 19.0.1
- '@typescript-eslint/eslint-plugin':
- specifier: 7.18.0
- version: 7.18.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/parser':
- specifier: 7.15.0
- version: 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@vitejs/plugin-react':
- specifier: 4.3.1
- version: 4.3.1(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- autoprefixer:
- specifier: 10.4.19
- version: 10.4.19(postcss@8.4.41)
- eslint:
- specifier: 9.17.0
- version: 9.17.0(jiti@2.4.2)
- eslint-plugin-react-hooks:
- specifier: 4.6.2
- version: 4.6.2(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-react-refresh:
- specifier: 0.4.7
- version: 0.4.7(eslint@9.17.0(jiti@2.4.2))
- postcss:
- specifier: 8.4.41
- version: 8.4.41
- prettier:
- specifier: 3.4.2
- version: 3.4.2
- tailwindcss:
- specifier: 3.4.9
- version: 3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3))
- typescript:
- specifier: 5.5.3
- version: 5.5.3
- vite:
- specifier: 6.0.9
- version: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ '@hey-api/openapi-ts': link:../../packages/openapi-ts
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ '@typescript-eslint/eslint-plugin': 7.18.0_cdi53umeqzw6zrbmodqrkqvslu
+ '@typescript-eslint/parser': 7.15.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@vitejs/plugin-react': 4.3.1_vite@6.0.9
+ autoprefixer: 10.4.19_postcss@8.4.41
+ eslint: 9.17.0
+ eslint-plugin-react-hooks: 4.6.2_eslint@9.17.0
+ eslint-plugin-react-refresh: 0.4.7_eslint@9.17.0
+ postcss: 8.4.41
+ prettier: 3.4.2
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
+ vite: 6.0.9
examples/openapi-ts-tanstack-svelte-query:
+ specifiers:
+ '@fontsource/fira-mono': 5.0.0
+ '@hey-api/client-fetch': workspace:*
+ '@hey-api/openapi-ts': workspace:*
+ '@neoconfetti/svelte': 2.0.0
+ '@sveltejs/adapter-auto': 4.0.0
+ '@sveltejs/kit': 2.17.1
+ '@sveltejs/vite-plugin-svelte': 5.0.3
+ '@tanstack/svelte-query': 5.62.12
+ '@types/eslint': 9.6.0
+ eslint: 9.17.0
+ eslint-config-prettier: 9.1.0
+ eslint-plugin-svelte: 2.36.0
+ globals: 15.14.0
+ prettier: 3.4.2
+ prettier-plugin-svelte: 3.1.2
+ svelte: 5.19.9
+ svelte-check: 4.1.4
+ typescript: 5.5.3
+ typescript-eslint: 8.19.1
+ vite: 6.0.9
+ vitest: 1.6.0
dependencies:
- '@hey-api/client-fetch':
- specifier: workspace:*
- version: link:../../packages/client-fetch
- '@tanstack/svelte-query':
- specifier: 5.62.12
- version: 5.62.12(svelte@5.19.9)
+ '@hey-api/client-fetch': link:../../packages/client-fetch
+ '@tanstack/svelte-query': 5.62.12_svelte@5.19.9
devDependencies:
- '@fontsource/fira-mono':
- specifier: 5.0.0
- version: 5.0.0
- '@hey-api/openapi-ts':
- specifier: workspace:*
- version: link:../../packages/openapi-ts
- '@neoconfetti/svelte':
- specifier: 2.0.0
- version: 2.0.0
- '@sveltejs/adapter-auto':
- specifier: 4.0.0
- version: 4.0.0(@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)))(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)))
- '@sveltejs/kit':
- specifier: 2.17.1
- version: 2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)))(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- '@sveltejs/vite-plugin-svelte':
- specifier: 5.0.3
- version: 5.0.3(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- '@types/eslint':
- specifier: 9.6.0
- version: 9.6.0
- eslint:
- specifier: 9.17.0
- version: 9.17.0(jiti@2.4.2)
- eslint-config-prettier:
- specifier: 9.1.0
- version: 9.1.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-svelte:
- specifier: 2.36.0
- version: 2.36.0(eslint@9.17.0(jiti@2.4.2))(svelte@5.19.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3))
- globals:
- specifier: 15.14.0
- version: 15.14.0
- prettier:
- specifier: 3.4.2
- version: 3.4.2
- prettier-plugin-svelte:
- specifier: 3.1.2
- version: 3.1.2(prettier@3.4.2)(svelte@5.19.9)
- svelte:
- specifier: 5.19.9
- version: 5.19.9
- svelte-check:
- specifier: 4.1.4
- version: 4.1.4(picomatch@4.0.2)(svelte@5.19.9)(typescript@5.5.3)
- typescript:
- specifier: 5.5.3
- version: 5.5.3
- typescript-eslint:
- specifier: 8.19.1
- version: 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- vite:
- specifier: 6.0.9
- version: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vitest:
- specifier: 1.6.0
- version: 1.6.0(@types/node@22.13.8)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ '@fontsource/fira-mono': 5.0.0
+ '@hey-api/openapi-ts': link:../../packages/openapi-ts
+ '@neoconfetti/svelte': 2.0.0
+ '@sveltejs/adapter-auto': 4.0.0_@sveltejs+kit@2.17.1
+ '@sveltejs/kit': 2.17.1_zecxmjndawzkxr36mrjxufr4u4
+ '@sveltejs/vite-plugin-svelte': 5.0.3_svelte@5.19.9+vite@6.0.9
+ '@types/eslint': 9.6.0
+ eslint: 9.17.0
+ eslint-config-prettier: 9.1.0_eslint@9.17.0
+ eslint-plugin-svelte: 2.36.0_a6a62f7rdcwtb6ednkki4wpcty
+ globals: 15.14.0
+ prettier: 3.4.2
+ prettier-plugin-svelte: 3.1.2_d4fl4iupozqpdh7airl3rcs4ue
+ svelte: 5.19.9
+ svelte-check: 4.1.4_6p6tysakew3sev7ys2p7vrl5ri
+ typescript: 5.5.3
+ typescript-eslint: 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
+ vite: 6.0.9
+ vitest: 1.6.0
examples/openapi-ts-tanstack-vue-query:
- dependencies:
- '@hey-api/client-fetch':
- specifier: workspace:*
- version: link:../../packages/client-fetch
- '@tanstack/vue-query':
- specifier: 5.62.12
- version: 5.62.12(vue@3.5.13(typescript@5.5.3))
- '@tanstack/vue-query-devtools':
- specifier: 5.62.12
- version: 5.62.12(@tanstack/vue-query@5.62.12(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3))
- pinia:
- specifier: 2.3.0
- version: 2.3.0(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3))
- vue:
- specifier: 3.5.13
- version: 3.5.13(typescript@5.5.3)
- vue-router:
- specifier: 4.5.0
- version: 4.5.0(vue@3.5.13(typescript@5.5.3))
+ specifiers:
+ '@hey-api/client-fetch': workspace:*
+ '@hey-api/openapi-ts': workspace:*
+ '@rushstack/eslint-patch': 1.10.5
+ '@tanstack/vue-query': 5.62.12
+ '@tanstack/vue-query-devtools': 5.62.12
+ '@tsconfig/node20': 20.1.4
+ '@types/jsdom': 21.1.7
+ '@types/node': 22.10.5
+ '@vitejs/plugin-vue': 5.2.1
+ '@vitejs/plugin-vue-jsx': 4.1.1
+ '@vue/eslint-config-prettier': 10.1.0
+ '@vue/eslint-config-typescript': 14.2.0
+ '@vue/test-utils': 2.4.6
+ '@vue/tsconfig': 0.7.0
+ autoprefixer: 10.4.20
+ eslint: 9.17.0
+ eslint-plugin-vue: 9.32.0
+ jsdom: 23.0.0
+ npm-run-all2: 6.2.0
+ pinia: 2.3.0
+ postcss: 8.4.41
+ prettier: 3.4.2
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
+ vite: 6.0.9
+ vite-plugin-vue-devtools: 7.7.0
+ vitest: 1.6.0
+ vue: 3.5.13
+ vue-router: 4.5.0
+ vue-tsc: 2.2.0
+ dependencies:
+ '@hey-api/client-fetch': link:../../packages/client-fetch
+ '@tanstack/vue-query': 5.62.12_vue@3.5.13
+ '@tanstack/vue-query-devtools': 5.62.12_xazzx54hlffwcp6dce6seqv4du
+ pinia: 2.3.0_3jdk7euojidjqlkepbdrol3p3i
+ vue: 3.5.13_typescript@5.5.3
+ vue-router: 4.5.0_vue@3.5.13
devDependencies:
- '@hey-api/openapi-ts':
- specifier: workspace:*
- version: link:../../packages/openapi-ts
- '@rushstack/eslint-patch':
- specifier: 1.10.5
- version: 1.10.5
- '@tsconfig/node20':
- specifier: 20.1.4
- version: 20.1.4
- '@types/jsdom':
- specifier: 21.1.7
- version: 21.1.7
- '@types/node':
- specifier: 22.10.5
- version: 22.10.5
- '@vitejs/plugin-vue':
- specifier: 5.2.1
- version: 5.2.1(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
- '@vitejs/plugin-vue-jsx':
- specifier: 4.1.1
- version: 4.1.1(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
- '@vue/eslint-config-prettier':
- specifier: 10.1.0
- version: 10.1.0(@types/eslint@9.6.1)(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2)
- '@vue/eslint-config-typescript':
- specifier: 14.2.0
- version: 14.2.0(eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@vue/test-utils':
- specifier: 2.4.6
- version: 2.4.6
- '@vue/tsconfig':
- specifier: 0.7.0
- version: 0.7.0(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3))
- autoprefixer:
- specifier: 10.4.20
- version: 10.4.20(postcss@8.4.41)
- eslint:
- specifier: 9.17.0
- version: 9.17.0(jiti@2.4.2)
- eslint-plugin-vue:
- specifier: 9.32.0
- version: 9.32.0(eslint@9.17.0(jiti@2.4.2))
- jsdom:
- specifier: 23.0.0
- version: 23.0.0
- npm-run-all2:
- specifier: 6.2.0
- version: 6.2.0
- postcss:
- specifier: 8.4.41
- version: 8.4.41
- prettier:
- specifier: 3.4.2
- version: 3.4.2
- tailwindcss:
- specifier: 3.4.9
- version: 3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3))
- typescript:
- specifier: 5.5.3
- version: 5.5.3
- vite:
- specifier: 6.0.9
- version: 6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vite-plugin-vue-devtools:
- specifier: 7.7.0
- version: 7.7.0(rollup@4.34.9)(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
- vitest:
- specifier: 1.6.0
- version: 1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vue-tsc:
- specifier: 2.2.0
- version: 2.2.0(typescript@5.5.3)
+ '@hey-api/openapi-ts': link:../../packages/openapi-ts
+ '@rushstack/eslint-patch': 1.10.5
+ '@tsconfig/node20': 20.1.4
+ '@types/jsdom': 21.1.7
+ '@types/node': 22.10.5
+ '@vitejs/plugin-vue': 5.2.1_vite@6.0.9+vue@3.5.13
+ '@vitejs/plugin-vue-jsx': 4.1.1_vite@6.0.9+vue@3.5.13
+ '@vue/eslint-config-prettier': 10.1.0_ihiz3eglg54tlp4ip7syowrynq
+ '@vue/eslint-config-typescript': 14.2.0_3tezvrcgwmzx5dts2w5tywkdwq
+ '@vue/test-utils': 2.4.6
+ '@vue/tsconfig': 0.7.0_3jdk7euojidjqlkepbdrol3p3i
+ autoprefixer: 10.4.20_postcss@8.4.41
+ eslint: 9.17.0
+ eslint-plugin-vue: 9.32.0_eslint@9.17.0
+ jsdom: 23.0.0
+ npm-run-all2: 6.2.0
+ postcss: 8.4.41
+ prettier: 3.4.2
+ tailwindcss: 3.4.9
+ typescript: 5.5.3
+ vite: 6.0.9_@types+node@22.10.5
+ vite-plugin-vue-devtools: 7.7.0_vite@6.0.9+vue@3.5.13
+ vitest: 1.6.0_wg5rtkj7xukooy7t3bbdhu2byu
+ vue-tsc: 2.2.0_typescript@5.5.3
packages/client-angular:
+ specifiers:
+ '@angular/common': 19.1.3
+ '@angular/core': 19.1.3
+ '@hey-api/client-core': workspace:*
+ rxjs: 7.8.1
devDependencies:
- '@angular/common':
- specifier: 19.1.3
- version: 19.1.3(@angular/core@19.1.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core':
- specifier: 19.1.3
- version: 19.1.3(rxjs@7.8.1)(zone.js@0.15.0)
- '@hey-api/client-core':
- specifier: workspace:*
- version: link:../client-core
- rxjs:
- specifier: 7.8.1
- version: 7.8.1
+ '@angular/common': 19.1.3_xmrrytzw7ovi657ytoq6a6d5jq
+ '@angular/core': 19.1.3_rxjs@7.8.1+zone.js@0.15.0
+ '@hey-api/client-core': link:../client-core
+ rxjs: 7.8.1
packages/client-axios:
+ specifiers:
+ '@hey-api/client-core': workspace:*
+ axios: 1.7.9
devDependencies:
- '@hey-api/client-core':
- specifier: workspace:*
- version: link:../client-core
- axios:
- specifier: 1.7.9
- version: 1.7.9
+ '@hey-api/client-core': link:../client-core
+ axios: 1.7.9
- packages/client-core: {}
+ packages/client-core:
+ specifiers: {}
packages/client-fetch:
+ specifiers:
+ '@hey-api/client-core': workspace:*
devDependencies:
- '@hey-api/client-core':
- specifier: workspace:*
- version: link:../client-core
+ '@hey-api/client-core': link:../client-core
packages/client-next:
+ specifiers:
+ '@hey-api/client-core': workspace:*
devDependencies:
- '@hey-api/client-core':
- specifier: workspace:*
- version: link:../client-core
+ '@hey-api/client-core': link:../client-core
packages/client-nuxt:
- dependencies:
- nuxt:
- specifier: '>= 3.0.0 < 4'
- version: 3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.13.8)(db0@0.2.3)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.31.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- vue:
- specifier: '>= 3.5.13 < 4'
- version: 3.5.13(typescript@5.6.1-rc)
+ specifiers:
+ '@hey-api/client-core': workspace:*
+ '@nuxt/test-utils': 3.14.0
+ nuxt: '>= 3.0.0 < 4'
+ vite: 6.0.9
+ vue: '>= 3.5.13 < 4'
+ dependencies:
+ nuxt: 3.16.0_vite@6.0.9
devDependencies:
- '@hey-api/client-core':
- specifier: workspace:*
- version: link:../client-core
- '@nuxt/test-utils':
- specifier: 3.14.0
- version: 3.14.0(@vue/test-utils@2.4.6)(h3@1.14.0)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@4.31.0)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.13.8)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
- vite:
- specifier: 6.0.9
- version: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ '@hey-api/client-core': link:../client-core
+ '@nuxt/test-utils': 3.14.0_t42vghp6y4xkqcrv26ib563gve
+ vite: 6.0.9_jiti@2.4.2
+ vue: 3.5.13
packages/openapi-ts:
+ specifiers:
+ '@angular-devkit/build-angular': 19.2.0
+ '@angular/animations': 19.2.0
+ '@angular/cli': 19.2.0
+ '@angular/common': 19.2.0
+ '@angular/compiler': 19.2.0
+ '@angular/compiler-cli': 19.2.0
+ '@angular/core': 19.2.0
+ '@angular/forms': 19.2.0
+ '@angular/platform-browser': 19.2.0
+ '@angular/platform-browser-dynamic': 19.2.0
+ '@angular/router': 19.2.0
+ '@hey-api/client-axios': workspace:*
+ '@hey-api/client-fetch': workspace:*
+ '@hey-api/client-next': workspace:*
+ '@hey-api/client-nuxt': workspace:*
+ '@hey-api/json-schema-ref-parser': 1.0.2
+ '@tanstack/angular-query-experimental': 5.62.13
+ '@tanstack/react-query': 5.62.15
+ '@tanstack/solid-query': 5.51.21
+ '@tanstack/svelte-query': 5.62.12
+ '@tanstack/vue-query': 5.62.12
+ '@types/cross-spawn': 6.0.6
+ '@types/express': 4.17.21
+ axios: 1.7.9
+ c12: 2.0.1
+ commander: 13.0.0
+ cross-spawn: 7.0.5
+ eslint: 9.17.0
+ express: 4.21.0
+ fastify: 5.2.0
+ glob: 10.4.3
+ handlebars: 4.7.8
+ node-fetch: 3.3.2
+ nuxt: 3.14.1592
+ prettier: 3.4.2
+ puppeteer: 22.12.1
+ rxjs: 7.8.1
+ ts-node: 10.9.2
+ tslib: 2.8.1
+ typescript: 5.5.3
+ vue: 3.5.13
+ zod: 3.23.8
dependencies:
- '@hey-api/json-schema-ref-parser':
- specifier: 1.0.2
- version: 1.0.2
- c12:
- specifier: 2.0.1
- version: 2.0.1(magicast@0.3.5)
- commander:
- specifier: 13.0.0
- version: 13.0.0
- handlebars:
- specifier: 4.7.8
- version: 4.7.8
+ '@hey-api/json-schema-ref-parser': 1.0.2
+ c12: 2.0.1
+ commander: 13.0.0
+ handlebars: 4.7.8
devDependencies:
- '@angular-devkit/build-angular':
- specifier: 19.2.0
- version: 19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.13.8)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3)))(typescript@5.5.3)(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0)
- '@angular/animations':
- specifier: 19.2.0
- version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- '@angular/cli':
- specifier: 19.2.0
- version: 19.2.0(@types/node@22.13.8)(chokidar@4.0.3)
- '@angular/common':
- specifier: 19.2.0
- version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/compiler':
- specifier: 19.2.0
- version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- '@angular/compiler-cli':
- specifier: 19.2.0
- version: 19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3)
- '@angular/core':
- specifier: 19.2.0
- version: 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/forms':
- specifier: 19.2.0
- version: 19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
- '@angular/platform-browser':
- specifier: 19.2.0
- version: 19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- '@angular/platform-browser-dynamic':
- specifier: 19.2.0
- version: 19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))
- '@angular/router':
- specifier: 19.2.0
- version: 19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
- '@hey-api/client-axios':
- specifier: workspace:*
- version: link:../client-axios
- '@hey-api/client-fetch':
- specifier: workspace:*
- version: link:../client-fetch
- '@hey-api/client-next':
- specifier: workspace:*
- version: link:../client-next
- '@hey-api/client-nuxt':
- specifier: workspace:*
- version: link:../client-nuxt
- '@tanstack/angular-query-experimental':
- specifier: 5.62.13
- version: 5.62.13(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- '@tanstack/react-query':
- specifier: 5.62.15
- version: 5.62.15(react@19.0.0)
- '@tanstack/solid-query':
- specifier: 5.51.21
- version: 5.51.21(solid-js@1.9.4)
- '@tanstack/svelte-query':
- specifier: 5.62.12
- version: 5.62.12(svelte@5.19.9)
- '@tanstack/vue-query':
- specifier: 5.62.12
- version: 5.62.12(vue@3.5.13(typescript@5.5.3))
- '@types/cross-spawn':
- specifier: 6.0.6
- version: 6.0.6
- '@types/express':
- specifier: 4.17.21
- version: 4.17.21
- axios:
- specifier: 1.7.9
- version: 1.7.9
- cross-spawn:
- specifier: 7.0.5
- version: 7.0.5
- eslint:
- specifier: 9.17.0
- version: 9.17.0(jiti@2.4.2)
- express:
- specifier: 4.21.0
- version: 4.21.0
- fastify:
- specifier: 5.2.0
- version: 5.2.0
- glob:
- specifier: 10.4.3
- version: 10.4.3
- node-fetch:
- specifier: 3.3.2
- version: 3.3.2
- nuxt:
- specifier: 3.14.1592
- version: 3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.13.8)(db0@0.2.3)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.9)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- prettier:
- specifier: 3.4.2
- version: 3.4.2
- puppeteer:
- specifier: 22.12.1
- version: 22.12.1(typescript@5.5.3)
- rxjs:
- specifier: 7.8.1
- version: 7.8.1
- ts-node:
- specifier: 10.9.2
- version: 10.9.2(@types/node@22.13.8)(typescript@5.5.3)
- tslib:
- specifier: 2.8.1
- version: 2.8.1
- typescript:
- specifier: 5.5.3
- version: 5.5.3
- vue:
- specifier: 3.5.13
- version: 3.5.13(typescript@5.5.3)
- zod:
- specifier: 3.23.8
- version: 3.23.8
+ '@angular-devkit/build-angular': 19.2.0_l74kqewy3mgw4kss3d6y3cl35q
+ '@angular/animations': 19.2.0_@angular+core@19.2.0
+ '@angular/cli': 19.2.0_@types+node@22.13.10
+ '@angular/common': 19.2.0_o7lncytynmlvlvkm4hpjy4oxsi
+ '@angular/compiler': 19.2.0_@angular+core@19.2.0
+ '@angular/compiler-cli': 19.2.0_w2w2t63mjpx5wmltkoetyqksa4
+ '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
+ '@angular/forms': 19.2.0_pqzonxg4tmfn73mzgmildkwlou
+ '@angular/platform-browser': 19.2.0_23bjyqnebdjarufkmd6erfixbi
+ '@angular/platform-browser-dynamic': 19.2.0_ojklusrnueraqo35vndeqgdzii
+ '@angular/router': 19.2.0_pqzonxg4tmfn73mzgmildkwlou
+ '@hey-api/client-axios': link:../client-axios
+ '@hey-api/client-fetch': link:../client-fetch
+ '@hey-api/client-next': link:../client-next
+ '@hey-api/client-nuxt': link:../client-nuxt
+ '@tanstack/angular-query-experimental': 5.62.13_zbwjpxkizhludcezaxkdwlu2h4
+ '@tanstack/react-query': 5.62.15_react@19.0.0
+ '@tanstack/solid-query': 5.51.21_solid-js@1.9.5
+ '@tanstack/svelte-query': 5.62.12_svelte@5.22.6
+ '@tanstack/vue-query': 5.62.12_vue@3.5.13
+ '@types/cross-spawn': 6.0.6
+ '@types/express': 4.17.21
+ axios: 1.7.9
+ cross-spawn: 7.0.5
+ eslint: 9.17.0
+ express: 4.21.0
+ fastify: 5.2.0
+ glob: 10.4.3
+ node-fetch: 3.3.2
+ nuxt: 3.14.1592_hfjqjp6w3rvckby5qzzmeb3n4u
+ prettier: 3.4.2
+ puppeteer: 22.12.1_typescript@5.5.3
+ rxjs: 7.8.1
+ ts-node: 10.9.2_vqq2jgqvcrokzxf4leekoaudga
+ tslib: 2.8.1
+ typescript: 5.5.3
+ vue: 3.5.13_typescript@5.5.3
+ zod: 3.23.8
packages:
- '@algolia/autocomplete-core@1.17.9':
+ /@algolia/autocomplete-core/1.17.9_xxmpinlwddpyh675ykryvz2mce:
resolution: {integrity: sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==}
+ dependencies:
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.9_xxmpinlwddpyh675ykryvz2mce
+ '@algolia/autocomplete-shared': 1.17.9_vhprxalrhraqfiwdqogz562eue
+ transitivePeerDependencies:
+ - '@algolia/client-search'
+ - algoliasearch
+ - search-insights
+ dev: true
- '@algolia/autocomplete-plugin-algolia-insights@1.17.9':
+ /@algolia/autocomplete-plugin-algolia-insights/1.17.9_xxmpinlwddpyh675ykryvz2mce:
resolution: {integrity: sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ==}
peerDependencies:
search-insights: '>= 1 < 3'
-
- '@algolia/autocomplete-preset-algolia@1.17.9':
- resolution: {integrity: sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==}
+ dependencies:
+ '@algolia/autocomplete-shared': 1.17.9_vhprxalrhraqfiwdqogz562eue
+ search-insights: 2.17.3
+ transitivePeerDependencies:
+ - '@algolia/client-search'
+ - algoliasearch
+ dev: true
+
+ /@algolia/autocomplete-preset-algolia/1.17.9_vhprxalrhraqfiwdqogz562eue:
+ resolution: {integrity: sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
+ dependencies:
+ '@algolia/autocomplete-shared': 1.17.9_vhprxalrhraqfiwdqogz562eue
+ '@algolia/client-search': 5.20.4
+ algoliasearch: 5.20.4
+ dev: true
- '@algolia/autocomplete-shared@1.17.9':
+ /@algolia/autocomplete-shared/1.17.9_vhprxalrhraqfiwdqogz562eue:
resolution: {integrity: sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
+ dependencies:
+ '@algolia/client-search': 5.20.4
+ algoliasearch: 5.20.4
+ dev: true
- '@algolia/client-abtesting@5.20.0':
- resolution: {integrity: sha512-YaEoNc1Xf2Yk6oCfXXkZ4+dIPLulCx8Ivqj0OsdkHWnsI3aOJChY5qsfyHhDBNSOhqn2ilgHWxSfyZrjxBcAww==}
+ /@algolia/client-abtesting/5.20.4:
+ resolution: {integrity: sha512-OZ3Xvvf+k7NMcwmmioIVX+76E/KKtN607NCMNsBEKe+uHqktZ+I5bmi/EVr2m5VF59Gnh9MTlJCdXtBiGjruxw==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ '@algolia/requester-browser-xhr': 5.20.4
+ '@algolia/requester-fetch': 5.20.4
+ '@algolia/requester-node-http': 5.20.4
+ dev: true
- '@algolia/client-analytics@5.20.0':
- resolution: {integrity: sha512-CIT9ni0+5sYwqehw+t5cesjho3ugKQjPVy/iPiJvtJX4g8Cdb6je6SPt2uX72cf2ISiXCAX9U3cY0nN0efnRDw==}
+ /@algolia/client-analytics/5.20.4:
+ resolution: {integrity: sha512-8pM5zQpHonCIBxKmMyBLgQoaSKUNBE5u741VEIjn2ArujolhoKRXempRAlLwEg5hrORKl9XIlit00ff4g6LWvA==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ '@algolia/requester-browser-xhr': 5.20.4
+ '@algolia/requester-fetch': 5.20.4
+ '@algolia/requester-node-http': 5.20.4
+ dev: true
- '@algolia/client-common@5.20.0':
- resolution: {integrity: sha512-iSTFT3IU8KNpbAHcBUJw2HUrPnMXeXLyGajmCL7gIzWOsYM4GabZDHXOFx93WGiXMti1dymz8k8R+bfHv1YZmA==}
+ /@algolia/client-common/5.20.4:
+ resolution: {integrity: sha512-OCGa8hKAP6kQKBwi+tu9flTXshz4qeCK5P8J6bI1qq8KYs+/TU1xSotT+E7hO+uyDanGU6dT6soiMSi4A38JgA==}
engines: {node: '>= 14.0.0'}
+ dev: true
- '@algolia/client-insights@5.20.0':
- resolution: {integrity: sha512-w9RIojD45z1csvW1vZmAko82fqE/Dm+Ovsy2ElTsjFDB0HMAiLh2FO86hMHbEXDPz6GhHKgGNmBRiRP8dDPgJg==}
+ /@algolia/client-insights/5.20.4:
+ resolution: {integrity: sha512-MroyJStJFLf/cYeCbguCRdrA2U6miDVqbi3t9ZGovBWWTef7BZwVQG0mLyInzp4MIjBfwqu3xTrhxsiiOavX3A==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ '@algolia/requester-browser-xhr': 5.20.4
+ '@algolia/requester-fetch': 5.20.4
+ '@algolia/requester-node-http': 5.20.4
+ dev: true
- '@algolia/client-personalization@5.20.0':
- resolution: {integrity: sha512-p/hftHhrbiHaEcxubYOzqVV4gUqYWLpTwK+nl2xN3eTrSW9SNuFlAvUBFqPXSVBqc6J5XL9dNKn3y8OA1KElSQ==}
+ /@algolia/client-personalization/5.20.4:
+ resolution: {integrity: sha512-bVR5sxFfgCQ+G0ZegGVhBqtaDd7jCfr33m5mGuT43U+bH//xeqAHQyIS4abcmRulwqeIAHNm5Yl2J7grT3z//A==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ '@algolia/requester-browser-xhr': 5.20.4
+ '@algolia/requester-fetch': 5.20.4
+ '@algolia/requester-node-http': 5.20.4
+ dev: true
- '@algolia/client-query-suggestions@5.20.0':
- resolution: {integrity: sha512-m4aAuis5vZi7P4gTfiEs6YPrk/9hNTESj3gEmGFgfJw3hO2ubdS4jSId1URd6dGdt0ax2QuapXufcrN58hPUcw==}
+ /@algolia/client-query-suggestions/5.20.4:
+ resolution: {integrity: sha512-ZHsV0vceNDR87wIVaz7VjxilwCUCkzbuy4QnqIdnQs3NnC43is7KKbEtKueuNw+YGMdx+wmD5kRI2XKip1R93A==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ '@algolia/requester-browser-xhr': 5.20.4
+ '@algolia/requester-fetch': 5.20.4
+ '@algolia/requester-node-http': 5.20.4
+ dev: true
- '@algolia/client-search@5.20.0':
- resolution: {integrity: sha512-KL1zWTzrlN4MSiaK1ea560iCA/UewMbS4ZsLQRPoDTWyrbDKVbztkPwwv764LAqgXk0fvkNZvJ3IelcK7DqhjQ==}
+ /@algolia/client-search/5.20.4:
+ resolution: {integrity: sha512-hXM2LpwTzG5kGQSyq3feIijzzl6vkjYPP+LF3ru1relNUIh7fWJ4uYQay2NMNbWX5LWQzF8Vr9qlIA139doQXg==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ '@algolia/requester-browser-xhr': 5.20.4
+ '@algolia/requester-fetch': 5.20.4
+ '@algolia/requester-node-http': 5.20.4
+ dev: true
- '@algolia/ingestion@1.20.0':
- resolution: {integrity: sha512-shj2lTdzl9un4XJblrgqg54DoK6JeKFO8K8qInMu4XhE2JuB8De6PUuXAQwiRigZupbI0xq8aM0LKdc9+qiLQA==}
+ /@algolia/ingestion/1.20.4:
+ resolution: {integrity: sha512-idAe53XsTlLSSQ7pJcjscUEmc67vEM+VohYkr78Ebfb43vtfKH0ik8ux9OGQpLRNGntaHqpe/lfU5PDRi5/92w==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ '@algolia/requester-browser-xhr': 5.20.4
+ '@algolia/requester-fetch': 5.20.4
+ '@algolia/requester-node-http': 5.20.4
+ dev: true
- '@algolia/monitoring@1.20.0':
- resolution: {integrity: sha512-aF9blPwOhKtWvkjyyXh9P5peqmhCA1XxLBRgItT+K6pbT0q4hBDQrCid+pQZJYy4HFUKjB/NDDwyzFhj/rwKhw==}
+ /@algolia/monitoring/1.20.4:
+ resolution: {integrity: sha512-O6HjdSWtyu5LhHR7gdU83oWbl1vVVRwoTxkENHF61Ar7l9C1Ok91VtnK7RtXB9pJL1kpIMDExwZOT5sEN2Ppfw==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ '@algolia/requester-browser-xhr': 5.20.4
+ '@algolia/requester-fetch': 5.20.4
+ '@algolia/requester-node-http': 5.20.4
+ dev: true
- '@algolia/recommend@5.20.0':
- resolution: {integrity: sha512-T6B/WPdZR3b89/F9Vvk6QCbt/wrLAtrGoL8z4qPXDFApQ8MuTFWbleN/4rHn6APWO3ps+BUePIEbue2rY5MlRw==}
+ /@algolia/recommend/5.20.4:
+ resolution: {integrity: sha512-p8M78pQjPrN6PudO2TnkWiOJbyp/IPhgCFBW8aZrLshhZpPkV9N4u0YsU/w6OoeYDKSxmXntWQrKYiU1dVRWfg==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ '@algolia/requester-browser-xhr': 5.20.4
+ '@algolia/requester-fetch': 5.20.4
+ '@algolia/requester-node-http': 5.20.4
+ dev: true
- '@algolia/requester-browser-xhr@5.20.0':
- resolution: {integrity: sha512-t6//lXsq8E85JMenHrI6mhViipUT5riNhEfCcvtRsTV+KIBpC6Od18eK864dmBhoc5MubM0f+sGpKOqJIlBSCg==}
+ /@algolia/requester-browser-xhr/5.20.4:
+ resolution: {integrity: sha512-Y8GThjDVdhFUurZKKDdzAML/LNKOA/BOydEcaFeb/g4Iv4Iq0qQJs6aIbtdsngUU6cu74qH/2P84kr2h16uVvQ==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ dev: true
- '@algolia/requester-fetch@5.20.0':
- resolution: {integrity: sha512-FHxYGqRY+6bgjKsK4aUsTAg6xMs2S21elPe4Y50GB0Y041ihvw41Vlwy2QS6K9ldoftX4JvXodbKTcmuQxywdQ==}
+ /@algolia/requester-fetch/5.20.4:
+ resolution: {integrity: sha512-OrAUSrvbFi46U7AxOXkyl9QQiaW21XWpixWmcx3D2S65P/DCIGOVE6K2741ZE+WiKIqp+RSYkyDFj3BiFHzLTg==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ dev: true
- '@algolia/requester-node-http@5.20.0':
- resolution: {integrity: sha512-kmtQClq/w3vtPteDSPvaW9SPZL/xrIgMrxZyAgsFwrJk0vJxqyC5/hwHmrCraDnStnGSADnLpBf4SpZnwnkwWw==}
+ /@algolia/requester-node-http/5.20.4:
+ resolution: {integrity: sha512-Jc/bofGBw4P9nBii4oCzCqqusv8DAFFORfUD2Ce1cZk3fvUPk+q/Qnu7i9JpTSHjMc0MWzqApLdq7Nwh1gelLg==}
engines: {node: '>= 14.0.0'}
+ dependencies:
+ '@algolia/client-common': 5.20.4
+ dev: true
- '@alloc/quick-lru@5.2.0':
+ /@alloc/quick-lru/5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
+ dev: true
- '@ampproject/remapping@2.3.0':
+ /@ampproject/remapping/2.3.0:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/trace-mapping': 0.3.25
- '@andrewbranch/untar.js@1.0.3':
+ /@andrewbranch/untar.js/1.0.3:
resolution: {integrity: sha512-Jh15/qVmrLGhkKJBdXlK1+9tY4lZruYjsgkDFj08ZmDiWVBLJcqkok7Z0/R0In+i1rScBpJlSvrTS2Lm41Pbnw==}
+ dev: true
- '@angular-devkit/architect@0.1902.0':
+ /@angular-devkit/architect/0.1902.0:
resolution: {integrity: sha512-F/3O38QOYCwNqECNQauKb56GYdST9SrRSiqTNc5xpnUL//A09kaucmKSZ2VJAVY7K/rktSQn5viiQ3rTJLiZgA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ dependencies:
+ '@angular-devkit/core': 19.2.0
+ rxjs: 7.8.1
+ transitivePeerDependencies:
+ - chokidar
+ dev: true
+
+ /@angular-devkit/architect/0.1902.1:
+ resolution: {integrity: sha512-iCm6F4HYO5aIgjzhjOUPKnyFHcn6yVE8gCpjWFQL8JVqrVzFG27vMZ0wK8b8rMDIDt6/hr2FOSSwChVg/cv9GQ==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ dependencies:
+ '@angular-devkit/core': 19.2.1
+ rxjs: 7.8.1
+ transitivePeerDependencies:
+ - chokidar
+ dev: true
- '@angular-devkit/build-angular@19.2.0':
+ /@angular-devkit/build-angular/19.2.0_l74kqewy3mgw4kss3d6y3cl35q:
resolution: {integrity: sha512-chPiwTKQPYQn34MZ+5spTCSVSY5vha9C5UKPHsEFNiNT0Iw1mQRJkFvDyq9WZnoc4B0w5KRIiR08EjOTNHj/1w==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
@@ -1035,15 +883,249 @@ packages:
optional: true
tailwindcss:
optional: true
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@angular-devkit/architect': 0.1902.0
+ '@angular-devkit/build-webpack': 0.1902.0_5zbyscedqcbhwxffq77lgi6ycy
+ '@angular-devkit/core': 19.2.0
+ '@angular/build': 19.2.0_c6gapkogadnq2yppy5hilczjhy
+ '@angular/compiler-cli': 19.2.0_w2w2t63mjpx5wmltkoetyqksa4
+ '@babel/core': 7.26.9
+ '@babel/generator': 7.26.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/plugin-transform-async-generator-functions': 7.26.8_@babel+core@7.26.9
+ '@babel/plugin-transform-async-to-generator': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-runtime': 7.26.9_@babel+core@7.26.9
+ '@babel/preset-env': 7.26.9_@babel+core@7.26.9
+ '@babel/runtime': 7.26.9
+ '@discoveryjs/json-ext': 0.6.3
+ '@ngtools/webpack': 19.2.0_i65f5ivnszhmjgy6wkusvxxd4i
+ '@vitejs/plugin-basic-ssl': 1.2.0_vite@6.2.1
+ ansi-colors: 4.1.3
+ autoprefixer: 10.4.20_postcss@8.5.2
+ babel-loader: 9.2.1_36thhkzb4fzrlvycd72b4vi7u4
+ browserslist: 4.24.4
+ copy-webpack-plugin: 12.0.2_webpack@5.98.0
+ css-loader: 7.1.2_webpack@5.98.0
+ esbuild-wasm: 0.25.0
+ fast-glob: 3.3.3
+ http-proxy-middleware: 3.0.3
+ istanbul-lib-instrument: 6.0.3
+ jsonc-parser: 3.3.1
+ karma-source-map-support: 1.4.0
+ less: 4.2.2
+ less-loader: 12.2.0_less@4.2.2+webpack@5.98.0
+ license-webpack-plugin: 4.0.2_webpack@5.98.0
+ loader-utils: 3.3.1
+ mini-css-extract-plugin: 2.9.2_webpack@5.98.0
+ open: 10.1.0
+ ora: 5.4.1
+ picomatch: 4.0.2
+ piscina: 4.8.0
+ postcss: 8.5.2
+ postcss-loader: 8.1.1_xs7e2gsbl5bxvzarier6f656oi
+ resolve-url-loader: 5.0.0
+ rxjs: 7.8.1
+ sass: 1.85.0
+ sass-loader: 16.0.5_sass@1.85.0+webpack@5.98.0
+ semver: 7.7.1
+ source-map-loader: 5.0.0_webpack@5.98.0
+ source-map-support: 0.5.21
+ terser: 5.39.0
+ tree-kill: 1.2.2
+ tslib: 2.8.1
+ typescript: 5.5.3
+ webpack: 5.98.0_esbuild@0.25.0
+ webpack-dev-middleware: 7.4.2_webpack@5.98.0
+ webpack-dev-server: 5.2.0_webpack@5.98.0
+ webpack-merge: 6.0.1
+ webpack-subresource-integrity: 5.1.0_webpack@5.98.0
+ optionalDependencies:
+ esbuild: 0.25.0
+ transitivePeerDependencies:
+ - '@angular/compiler'
+ - '@rspack/core'
+ - '@swc/core'
+ - '@types/node'
+ - bufferutil
+ - chokidar
+ - debug
+ - html-webpack-plugin
+ - jiti
+ - lightningcss
+ - node-sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - tsx
+ - uglify-js
+ - utf-8-validate
+ - vite
+ - webpack-cli
+ - yaml
+ dev: true
+
+ /@angular-devkit/build-angular/19.2.1_xuvgtdsp76f6ukkfrnara3b5mi:
+ resolution: {integrity: sha512-YJdHON1005lBzXFFfTJBrcFvbgWMEhvkziQw1IuQpbl+aa2XbkPnBFbT/d5FWjQpIWVpPYRMMMCSVSqeICYUcg==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ '@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0
+ '@angular/localize': ^19.0.0 || ^19.2.0-next.0
+ '@angular/platform-server': ^19.0.0 || ^19.2.0-next.0
+ '@angular/service-worker': ^19.0.0 || ^19.2.0-next.0
+ '@angular/ssr': ^19.2.1
+ '@web/test-runner': ^0.20.0
+ browser-sync: ^3.0.2
+ jest: ^29.5.0
+ jest-environment-jsdom: ^29.5.0
+ karma: ^6.3.0
+ ng-packagr: ^19.0.0 || ^19.2.0-next.0
+ protractor: ^7.0.0
+ tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
+ typescript: '>=5.5 <5.9'
+ peerDependenciesMeta:
+ '@angular/localize':
+ optional: true
+ '@angular/platform-server':
+ optional: true
+ '@angular/service-worker':
+ optional: true
+ '@angular/ssr':
+ optional: true
+ '@web/test-runner':
+ optional: true
+ browser-sync:
+ optional: true
+ jest:
+ optional: true
+ jest-environment-jsdom:
+ optional: true
+ karma:
+ optional: true
+ ng-packagr:
+ optional: true
+ protractor:
+ optional: true
+ tailwindcss:
+ optional: true
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@angular-devkit/architect': 0.1902.1
+ '@angular-devkit/build-webpack': 0.1902.1_5zbyscedqcbhwxffq77lgi6ycy
+ '@angular-devkit/core': 19.2.1
+ '@angular/build': 19.2.1_h7b3gajto663iezu3za2fw32hi
+ '@angular/compiler-cli': 19.2.1_gvbyqgimgk2h6nc52mo4mq53z4
+ '@babel/core': 7.26.9
+ '@babel/generator': 7.26.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/plugin-transform-async-generator-functions': 7.26.8_@babel+core@7.26.9
+ '@babel/plugin-transform-async-to-generator': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-runtime': 7.26.9_@babel+core@7.26.9
+ '@babel/preset-env': 7.26.9_@babel+core@7.26.9
+ '@babel/runtime': 7.26.9
+ '@discoveryjs/json-ext': 0.6.3
+ '@ngtools/webpack': 19.2.1_3aqooojspjxulucedfvoyd7exm
+ '@vitejs/plugin-basic-ssl': 1.2.0_vite@6.2.1
+ ansi-colors: 4.1.3
+ autoprefixer: 10.4.20_postcss@8.5.2
+ babel-loader: 9.2.1_36thhkzb4fzrlvycd72b4vi7u4
+ browserslist: 4.24.4
+ copy-webpack-plugin: 12.0.2_webpack@5.98.0
+ css-loader: 7.1.2_webpack@5.98.0
+ esbuild-wasm: 0.25.0
+ fast-glob: 3.3.3
+ http-proxy-middleware: 3.0.3
+ istanbul-lib-instrument: 6.0.3
+ jsonc-parser: 3.3.1
+ karma: 6.4.4
+ karma-source-map-support: 1.4.0
+ less: 4.2.2
+ less-loader: 12.2.0_less@4.2.2+webpack@5.98.0
+ license-webpack-plugin: 4.0.2_webpack@5.98.0
+ loader-utils: 3.3.1
+ mini-css-extract-plugin: 2.9.2_webpack@5.98.0
+ open: 10.1.0
+ ora: 5.4.1
+ picomatch: 4.0.2
+ piscina: 4.8.0
+ postcss: 8.5.2
+ postcss-loader: 8.1.1_xs7e2gsbl5bxvzarier6f656oi
+ resolve-url-loader: 5.0.0
+ rxjs: 7.8.1
+ sass: 1.85.0
+ sass-loader: 16.0.5_sass@1.85.0+webpack@5.98.0
+ semver: 7.7.1
+ source-map-loader: 5.0.0_webpack@5.98.0
+ source-map-support: 0.5.21
+ terser: 5.39.0
+ tree-kill: 1.2.2
+ tslib: 2.8.1
+ typescript: 5.5.3
+ webpack: 5.98.0_esbuild@0.25.0
+ webpack-dev-middleware: 7.4.2_webpack@5.98.0
+ webpack-dev-server: 5.2.0_webpack@5.98.0
+ webpack-merge: 6.0.1
+ webpack-subresource-integrity: 5.1.0_webpack@5.98.0
+ optionalDependencies:
+ esbuild: 0.25.0
+ transitivePeerDependencies:
+ - '@angular/compiler'
+ - '@rspack/core'
+ - '@swc/core'
+ - '@types/node'
+ - bufferutil
+ - chokidar
+ - debug
+ - html-webpack-plugin
+ - jiti
+ - lightningcss
+ - node-sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - tsx
+ - uglify-js
+ - utf-8-validate
+ - vite
+ - webpack-cli
+ - yaml
+ dev: true
- '@angular-devkit/build-webpack@0.1902.0':
+ /@angular-devkit/build-webpack/0.1902.0_5zbyscedqcbhwxffq77lgi6ycy:
resolution: {integrity: sha512-SZsesHqrFRRUHXo4NZ1yZ+RsH/hGMVFoWb65pk+POSJYR4W6nm4pO0B2Uww2FWzv1MFfqYBOig/rBqhMB+yJ7Q==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^5.0.2
+ dependencies:
+ '@angular-devkit/architect': 0.1902.0
+ rxjs: 7.8.1
+ webpack: 5.98.0_esbuild@0.25.0
+ webpack-dev-server: 5.2.0_webpack@5.98.0
+ transitivePeerDependencies:
+ - chokidar
+ dev: true
+
+ /@angular-devkit/build-webpack/0.1902.1_5zbyscedqcbhwxffq77lgi6ycy:
+ resolution: {integrity: sha512-KXvYkxvdun90GxAzaHIXkIKaYeJY9kQ89xaFXOaaJi6a9a+EkovnkHSPwPQ6uNqJo/zbwU5jKkT/rI/g+5D5Bg==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ webpack: ^5.30.0
+ webpack-dev-server: ^5.0.2
+ dependencies:
+ '@angular-devkit/architect': 0.1902.1
+ rxjs: 7.8.1
+ webpack: 5.98.0_esbuild@0.25.0
+ webpack-dev-server: 5.2.0_webpack@5.98.0
+ transitivePeerDependencies:
+ - chokidar
+ dev: true
- '@angular-devkit/core@19.2.0':
+ /@angular-devkit/core/19.2.0:
resolution: {integrity: sha512-qd2nYoHZOYWRsu4MjXG8KiDtfM9ZDRR2rDGa+rDZ3CYAsngCrPmqOebun10dncUjwAidX49P4S2U2elOmX3VYQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
@@ -1051,18 +1133,79 @@ packages:
peerDependenciesMeta:
chokidar:
optional: true
+ dependencies:
+ ajv: 8.17.1
+ ajv-formats: 3.0.1
+ jsonc-parser: 3.3.1
+ picomatch: 4.0.2
+ rxjs: 7.8.1
+ source-map: 0.7.4
+ dev: true
+
+ /@angular-devkit/core/19.2.1:
+ resolution: {integrity: sha512-DYsoU8emxmBkfIKI693BNUqocwHTVHLjgybyD5nU1qMOH+D/jqEzL5bQbjhUeqeARyrzDg7tyPM5Xno+GsS7KQ==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ chokidar: ^4.0.0
+ peerDependenciesMeta:
+ chokidar:
+ optional: true
+ dependencies:
+ ajv: 8.17.1
+ ajv-formats: 3.0.1
+ jsonc-parser: 3.3.1
+ picomatch: 4.0.2
+ rxjs: 7.8.1
+ source-map: 0.7.4
+ dev: true
- '@angular-devkit/schematics@19.2.0':
+ /@angular-devkit/schematics/19.2.0:
resolution: {integrity: sha512-cGGqUGqBXIGJkeL65l70y0BflDAu/0Zi/ohbYat3hvadFfumRJnVElVfJ59JtWO7FfKQjxcwCVTyuQ/tevX/9A==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ dependencies:
+ '@angular-devkit/core': 19.2.0
+ jsonc-parser: 3.3.1
+ magic-string: 0.30.17
+ ora: 5.4.1
+ rxjs: 7.8.1
+ transitivePeerDependencies:
+ - chokidar
+ dev: true
+
+ /@angular-devkit/schematics/19.2.1:
+ resolution: {integrity: sha512-IVWXGROEACyV+YH/s9xvpbLVblK55GvqldZRCMvpevtXMJy1aubOPOB+8TkHOVBlmAteW/5I7ouDbQWVZjNfww==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ dependencies:
+ '@angular-devkit/core': 19.2.1
+ jsonc-parser: 3.3.1
+ magic-string: 0.30.17
+ ora: 5.4.1
+ rxjs: 7.8.1
+ transitivePeerDependencies:
+ - chokidar
+ dev: true
- '@angular/animations@19.2.0':
+ /@angular/animations/19.2.0_@angular+core@19.2.0:
resolution: {integrity: sha512-GJDwtZ+7XmAAbzCbPSJrR1iMs2l16VoA7myeVl6n5k/KsZywqb4KhPmjzLKpQlAFP0NRjg1LbHc2Fsus7/Ydag==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
'@angular/core': 19.2.0
+ dependencies:
+ '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
+ tslib: 2.8.1
+ dev: true
- '@angular/build@19.2.0':
+ /@angular/animations/19.2.1_@angular+core@19.2.1:
+ resolution: {integrity: sha512-I67XYXBic9bM+yfce6Dqa950TsrEWB6uwSB2l6eIg3Byp48yJxQYbyjvjDbMXPieU2Bzo8FYVSD+lc8cF4+L6A==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ '@angular/core': 19.2.1
+ dependencies:
+ '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
+ tslib: 2.8.1
+ dev: false
+
+ /@angular/build/19.2.0_c6gapkogadnq2yppy5hilczjhy:
resolution: {integrity: sha512-IdTA9SvYReNcANm0tMgEtsx8qdIqKZYoF2xPZw2YDh6TeBWZK8VwoWtpXzkOBWedf9vgcrT7y0Y8gB11pgEP6g==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
@@ -1097,35 +1240,290 @@ packages:
optional: true
tailwindcss:
optional: true
-
- '@angular/cdk@19.2.1':
- resolution: {integrity: sha512-j7dg18PJIbyeU4DTko3vIK3M2OuUv3H0ZViNddOaLlGN5X93cq4QCGcNhcGm3x3r5rUr/AaexYu+KHMyN8PwmA==}
- peerDependencies:
- '@angular/common': ^19.0.0 || ^20.0.0
- '@angular/core': ^19.0.0 || ^20.0.0
- rxjs: ^6.5.3 || ^7.4.0
-
- '@angular/cli@19.2.0':
- resolution: {integrity: sha512-LUxuku6obwigdDJozAvmXyhMcm3rSXFoZK4+Al7r/JE80pjQEE+bGpu7jCb6JsH813DTNauN+BB66qk8bXSgRw==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- hasBin: true
-
- '@angular/common@19.2.0':
- resolution: {integrity: sha512-dm8PR94QY3DucXxltdV5p2Yxyr5bfPlmjOElwLhiTvxWbwCZJTVhPc8dw0TCKzCEu+tKafT48u4BLIB34a0A/g==}
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@angular-devkit/architect': 0.1902.0
+ '@angular/compiler': 19.2.0_@angular+core@19.2.0
+ '@angular/compiler-cli': 19.2.0_w2w2t63mjpx5wmltkoetyqksa4
+ '@babel/core': 7.26.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/plugin-syntax-import-attributes': 7.26.0_@babel+core@7.26.9
+ '@inquirer/confirm': 5.1.6_@types+node@22.13.10
+ '@vitejs/plugin-basic-ssl': 1.2.0_vite@6.1.0
+ beasties: 0.2.0
+ browserslist: 4.24.4
+ esbuild: 0.25.0
+ fast-glob: 3.3.3
+ https-proxy-agent: 7.0.6
+ istanbul-lib-instrument: 6.0.3
+ less: 4.2.2
+ listr2: 8.2.5
+ magic-string: 0.30.17
+ mrmime: 2.0.1
+ parse5-html-rewriting-stream: 7.0.0
+ picomatch: 4.0.2
+ piscina: 4.8.0
+ postcss: 8.5.2
+ rollup: 4.34.8
+ sass: 1.85.0
+ semver: 7.7.1
+ source-map-support: 0.5.21
+ typescript: 5.5.3
+ vite: 6.1.0_4c45tymmfdin4b4i5tudvmn5ny
+ watchpack: 2.4.2
+ optionalDependencies:
+ lmdb: 3.2.6
+ transitivePeerDependencies:
+ - '@types/node'
+ - chokidar
+ - jiti
+ - lightningcss
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+ dev: true
+
+ /@angular/build/19.2.1_h7b3gajto663iezu3za2fw32hi:
+ resolution: {integrity: sha512-+gRcH2F+qGSN/JRT5J650FzXW2kPrhjoSwOMYW06zhSpyX+oDZenFygUxORNhb5CnXJyZf/L5UEj6ypUojx4KQ==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ '@angular/compiler': ^19.0.0 || ^19.2.0-next.0
+ '@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0
+ '@angular/localize': ^19.0.0 || ^19.2.0-next.0
+ '@angular/platform-server': ^19.0.0 || ^19.2.0-next.0
+ '@angular/service-worker': ^19.0.0 || ^19.2.0-next.0
+ '@angular/ssr': ^19.2.1
+ karma: ^6.4.0
+ less: ^4.2.0
+ ng-packagr: ^19.0.0 || ^19.2.0-next.0
+ postcss: ^8.4.0
+ tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
+ typescript: '>=5.5 <5.9'
+ peerDependenciesMeta:
+ '@angular/localize':
+ optional: true
+ '@angular/platform-server':
+ optional: true
+ '@angular/service-worker':
+ optional: true
+ '@angular/ssr':
+ optional: true
+ karma:
+ optional: true
+ less:
+ optional: true
+ ng-packagr:
+ optional: true
+ postcss:
+ optional: true
+ tailwindcss:
+ optional: true
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@angular-devkit/architect': 0.1902.1
+ '@angular/compiler': 19.2.1_@angular+core@19.2.1
+ '@angular/compiler-cli': 19.2.1_gvbyqgimgk2h6nc52mo4mq53z4
+ '@babel/core': 7.26.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/plugin-syntax-import-attributes': 7.26.0_@babel+core@7.26.9
+ '@inquirer/confirm': 5.1.6
+ '@vitejs/plugin-basic-ssl': 1.2.0_vite@6.2.0
+ beasties: 0.2.0
+ browserslist: 4.24.4
+ esbuild: 0.25.0
+ fast-glob: 3.3.3
+ https-proxy-agent: 7.0.6
+ istanbul-lib-instrument: 6.0.3
+ karma: 6.4.4
+ less: 4.2.2
+ listr2: 8.2.5
+ magic-string: 0.30.17
+ mrmime: 2.0.1
+ parse5-html-rewriting-stream: 7.0.0
+ picomatch: 4.0.2
+ piscina: 4.8.0
+ postcss: 8.5.2
+ rollup: 4.34.8
+ sass: 1.85.0
+ semver: 7.7.1
+ source-map-support: 0.5.21
+ typescript: 5.5.3
+ vite: 6.2.0_2ybhmnti7g23zofer2g3osvokq
+ watchpack: 2.4.2
+ optionalDependencies:
+ lmdb: 3.2.6
+ transitivePeerDependencies:
+ - '@types/node'
+ - chokidar
+ - jiti
+ - lightningcss
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+ dev: true
+
+ /@angular/cdk/19.2.2_otimakhjaab5xv3qzlo7dv472e:
+ resolution: {integrity: sha512-YLiydMiTSf7s/LKaLgNeWawspulqdo/47zcjs1sEkHOcmyN1yR2Q0zQdgSbtsvuNikaR4NMNgTybNTDnULl64A==}
+ peerDependencies:
+ '@angular/common': ^19.0.0 || ^20.0.0
+ '@angular/core': ^19.0.0 || ^20.0.0
+ rxjs: ^6.5.3 || ^7.4.0
+ dependencies:
+ '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
+ '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
+ rxjs: 7.8.2
+ tslib: 2.8.1
+ optionalDependencies:
+ parse5: 7.2.1
+ dev: false
+
+ /@angular/cli/19.2.0_@types+node@22.13.10:
+ resolution: {integrity: sha512-LUxuku6obwigdDJozAvmXyhMcm3rSXFoZK4+Al7r/JE80pjQEE+bGpu7jCb6JsH813DTNauN+BB66qk8bXSgRw==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ hasBin: true
+ dependencies:
+ '@angular-devkit/architect': 0.1902.0
+ '@angular-devkit/core': 19.2.0
+ '@angular-devkit/schematics': 19.2.0
+ '@inquirer/prompts': 7.3.2_@types+node@22.13.10
+ '@listr2/prompt-adapter-inquirer': 2.0.18_@inquirer+prompts@7.3.2
+ '@schematics/angular': 19.2.0
+ '@yarnpkg/lockfile': 1.1.0
+ ini: 5.0.0
+ jsonc-parser: 3.3.1
+ listr2: 8.2.5
+ npm-package-arg: 12.0.2
+ npm-pick-manifest: 10.0.0
+ pacote: 20.0.0
+ resolve: 1.22.10
+ semver: 7.7.1
+ symbol-observable: 4.0.0
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - chokidar
+ - supports-color
+ dev: true
+
+ /@angular/cli/19.2.1:
+ resolution: {integrity: sha512-0ioZmuaapsbndXhpoUAew1uA4RFhNEa16kKgYPw5XlouaS2SLLrzC4nLW9DPJv6XrkOsOebf+OpyyHazzdFoSw==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ hasBin: true
+ dependencies:
+ '@angular-devkit/architect': 0.1902.1
+ '@angular-devkit/core': 19.2.1
+ '@angular-devkit/schematics': 19.2.1
+ '@inquirer/prompts': 7.3.2
+ '@listr2/prompt-adapter-inquirer': 2.0.18_@inquirer+prompts@7.3.2
+ '@schematics/angular': 19.2.1
+ '@yarnpkg/lockfile': 1.1.0
+ ini: 5.0.0
+ jsonc-parser: 3.3.1
+ listr2: 8.2.5
+ npm-package-arg: 12.0.2
+ npm-pick-manifest: 10.0.0
+ pacote: 20.0.0
+ resolve: 1.22.10
+ semver: 7.7.1
+ symbol-observable: 4.0.0
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - chokidar
+ - supports-color
+ dev: true
+
+ /@angular/common/19.1.3_xmrrytzw7ovi657ytoq6a6d5jq:
+ resolution: {integrity: sha512-r1P0W6FKrON83szIJboF8z6UNCVL4HIxyD+nhmHMMT/iJpu4kDHVugaN/+w2jYLb4oelAJK5xzkzA+1IaHpzLg==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ '@angular/core': 19.1.3
+ rxjs: ^6.5.3 || ^7.4.0
+ dependencies:
+ '@angular/core': 19.1.3_rxjs@7.8.1+zone.js@0.15.0
+ rxjs: 7.8.1
+ tslib: 2.8.1
+ dev: true
+
+ /@angular/common/19.2.0_o7lncytynmlvlvkm4hpjy4oxsi:
+ resolution: {integrity: sha512-dm8PR94QY3DucXxltdV5p2Yxyr5bfPlmjOElwLhiTvxWbwCZJTVhPc8dw0TCKzCEu+tKafT48u4BLIB34a0A/g==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
'@angular/core': 19.2.0
rxjs: ^6.5.3 || ^7.4.0
+ dependencies:
+ '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
+ rxjs: 7.8.1
+ tslib: 2.8.1
+ dev: true
+
+ /@angular/common/19.2.1_dfwtwytus3tabvekhtq6wbpkuu:
+ resolution: {integrity: sha512-k+ikxn6SlWXxXEtwRmsYZeknf3a6n3Oicde6zTLBrD/Rie/u0+okuoQcuYjntQWGgH//QBQxH4UQpvRw51AR8w==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ '@angular/core': 19.2.1
+ rxjs: ^6.5.3 || ^7.4.0
+ dependencies:
+ '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
+ rxjs: 7.8.2
+ tslib: 2.8.1
+ dev: false
- '@angular/compiler-cli@19.2.0':
+ /@angular/compiler-cli/19.2.0_w2w2t63mjpx5wmltkoetyqksa4:
resolution: {integrity: sha512-IFl3LNfFanspS4gHjn207TPuoJGGieuC9r+j3nDitUcFH49fbShYLGCB6xczvK+j68ZWCqv4voxAOmLyfA/Opw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
hasBin: true
peerDependencies:
'@angular/compiler': 19.2.0
typescript: '>=5.5 <5.9'
+ dependencies:
+ '@angular/compiler': 19.2.0_@angular+core@19.2.0
+ '@babel/core': 7.26.9
+ '@jridgewell/sourcemap-codec': 1.5.0
+ chokidar: 4.0.3
+ convert-source-map: 1.9.0
+ reflect-metadata: 0.2.2
+ semver: 7.7.1
+ tslib: 2.8.1
+ typescript: 5.5.3
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@angular/compiler-cli/19.2.1_gvbyqgimgk2h6nc52mo4mq53z4:
+ resolution: {integrity: sha512-5uuUx0ibX7cQP7eSBaJzfZlU0Hbe0kLwc85uCnH47hfzCsd3u2VU623IZIN7ctaInoOFBjl9fUUqKnFuYibC/w==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@angular/compiler': 19.2.1
+ typescript: '>=5.5 <5.9'
+ dependencies:
+ '@angular/compiler': 19.2.1_@angular+core@19.2.1
+ '@babel/core': 7.26.9
+ '@jridgewell/sourcemap-codec': 1.5.0
+ chokidar: 4.0.3
+ convert-source-map: 1.9.0
+ reflect-metadata: 0.2.2
+ semver: 7.7.1
+ tslib: 2.8.1
+ typescript: 5.5.3
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@angular/compiler@19.2.0':
+ /@angular/compiler/19.2.0_@angular+core@19.2.0:
resolution: {integrity: sha512-xGBD0C9ikH4jVDuQU3XzGqbh9Wovl8UR0wNzNd9rm4fltfC9ipz9NbfetsLPKWpPbfnUqmqMe4/pYjGEgWMonw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
@@ -1133,15 +1531,59 @@ packages:
peerDependenciesMeta:
'@angular/core':
optional: true
+ dependencies:
+ '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
+ tslib: 2.8.1
+ dev: true
+
+ /@angular/compiler/19.2.1_@angular+core@19.2.1:
+ resolution: {integrity: sha512-yCN/lgXMvMsPtEmTChd621zV17RLn+flhcJ6mNZjyGA7zx16m5zity4/00G6phbGfG8WXOtH5vQ/k7nnO7wS4A==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ '@angular/core': 19.2.1
+ peerDependenciesMeta:
+ '@angular/core':
+ optional: true
+ dependencies:
+ '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
+ tslib: 2.8.1
+
+ /@angular/core/19.1.3_rxjs@7.8.1+zone.js@0.15.0:
+ resolution: {integrity: sha512-Hh1eHvi+y+gsTRODiEEEWnRj5zqv9WNoou1KmQ1mv1NTOf0Pv61Hg9P2rBWDr0mPIXFSzqUKjyzW30BgdQ+AEA==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ rxjs: ^6.5.3 || ^7.4.0
+ zone.js: ~0.15.0
+ dependencies:
+ rxjs: 7.8.1
+ tslib: 2.8.1
+ zone.js: 0.15.0
+ dev: true
- '@angular/core@19.2.0':
+ /@angular/core/19.2.0_rxjs@7.8.1+zone.js@0.15.0:
resolution: {integrity: sha512-WKTRltOt3MMWWuhRX7Y9RonKxIYjZeBDE6XRwceHMgaEDS2d8I2D3AIuqizRsgHpJqDPnQnH+vxcek4FivcSGA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
+ dependencies:
+ rxjs: 7.8.1
+ tslib: 2.8.1
+ zone.js: 0.15.0
+ dev: true
+
+ /@angular/core/19.2.1_rxjs@7.8.2+zone.js@0.15.0:
+ resolution: {integrity: sha512-gwdytbZSM9m5v9PhRsvh6Q13vI1Ydcx52QGs93bpWx5ACOGYGp/Y7zc2mcZb1aUM63zGBTpS9Qw9bEsPHeLZPA==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ rxjs: ^6.5.3 || ^7.4.0
+ zone.js: ~0.15.0
+ dependencies:
+ rxjs: 7.8.2
+ tslib: 2.8.1
+ zone.js: 0.15.0
- '@angular/forms@19.2.0':
+ /@angular/forms/19.2.0_pqzonxg4tmfn73mzgmildkwlou:
resolution: {integrity: sha512-/GHQgiDPUr1vMXCB1O8c+O70DcoZykDBzOICCaz3kTu46rp48g6E6iaZVJoozI0iBwB8+rnuTPQnLWJ46w+wVg==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
@@ -1149,18 +1591,50 @@ packages:
'@angular/core': 19.2.0
'@angular/platform-browser': 19.2.0
rxjs: ^6.5.3 || ^7.4.0
+ dependencies:
+ '@angular/common': 19.2.0_o7lncytynmlvlvkm4hpjy4oxsi
+ '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
+ '@angular/platform-browser': 19.2.0_23bjyqnebdjarufkmd6erfixbi
+ rxjs: 7.8.1
+ tslib: 2.8.1
+ dev: true
+
+ /@angular/forms/19.2.1_z4ykjt5nb5xnncujnwph6lwtaq:
+ resolution: {integrity: sha512-a+ifgpX5ie2KgTNI9m8tJWS+ym51u3LZ8Kd67dXX7+CbYe9RzdIgVtuXcTklrP1fmmhfKnQVNmsUqpAYAjrByg==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ '@angular/common': 19.2.1
+ '@angular/core': 19.2.1
+ '@angular/platform-browser': 19.2.1
+ rxjs: ^6.5.3 || ^7.4.0
+ dependencies:
+ '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
+ '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
+ '@angular/platform-browser': 19.2.1_hphkzp5feflrtxibdjypxrpzjq
+ rxjs: 7.8.2
+ tslib: 2.8.1
+ dev: false
- '@angular/material@19.2.1':
- resolution: {integrity: sha512-hA+HVIJn/y72vXv/X1JRbrL/tynW95wYMQF2fV3lIeeAmmFKkkzextBaE9rTaiW6pVN6LXoRvLJl2Vyi9jIHzw==}
+ /@angular/material/19.2.2_suyt3mkhhnm2yhslnogzhg34oe:
+ resolution: {integrity: sha512-ChaxmiQkdtYJZCuTzh/LuOofg3/TLKDM/NtmlPrOA8GCEGX5oHQiu9NgJmdwi8LmGJL0lvFS1ftfVSjBTgHlxA==}
peerDependencies:
- '@angular/cdk': 19.2.1
+ '@angular/cdk': 19.2.2
'@angular/common': ^19.0.0 || ^20.0.0
'@angular/core': ^19.0.0 || ^20.0.0
'@angular/forms': ^19.0.0 || ^20.0.0
'@angular/platform-browser': ^19.0.0 || ^20.0.0
rxjs: ^6.5.3 || ^7.4.0
+ dependencies:
+ '@angular/cdk': 19.2.2_otimakhjaab5xv3qzlo7dv472e
+ '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
+ '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
+ '@angular/forms': 19.2.1_z4ykjt5nb5xnncujnwph6lwtaq
+ '@angular/platform-browser': 19.2.1_hphkzp5feflrtxibdjypxrpzjq
+ rxjs: 7.8.2
+ tslib: 2.8.1
+ dev: false
- '@angular/platform-browser-dynamic@19.2.0':
+ /@angular/platform-browser-dynamic/19.2.0_ojklusrnueraqo35vndeqgdzii:
resolution: {integrity: sha512-664OAYxzRYx9WjZu+o0VT+vMM0OqPOb0OnbwnyvIVNBuufWK7/IxWZ/U+Kh9A/XJYpDPtB5N1WEfeiO8AAzWnQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
@@ -1168,8 +1642,31 @@ packages:
'@angular/compiler': 19.2.0
'@angular/core': 19.2.0
'@angular/platform-browser': 19.2.0
+ dependencies:
+ '@angular/common': 19.2.0_o7lncytynmlvlvkm4hpjy4oxsi
+ '@angular/compiler': 19.2.0_@angular+core@19.2.0
+ '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
+ '@angular/platform-browser': 19.2.0_23bjyqnebdjarufkmd6erfixbi
+ tslib: 2.8.1
+ dev: true
+
+ /@angular/platform-browser-dynamic/19.2.1_oycwoi4ltst7cl6n6fkvn4rfy4:
+ resolution: {integrity: sha512-jYEXI2CymdK8R27YKy/q0O36dZwSdbIyJAjX9vPTgAsORGwX8hdhm5NJwkKlOWT+ccf2ySUatJD7RCElhsEBNA==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ '@angular/common': 19.2.1
+ '@angular/compiler': 19.2.1
+ '@angular/core': 19.2.1
+ '@angular/platform-browser': 19.2.1
+ dependencies:
+ '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
+ '@angular/compiler': 19.2.1_@angular+core@19.2.1
+ '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
+ '@angular/platform-browser': 19.2.1_hphkzp5feflrtxibdjypxrpzjq
+ tslib: 2.8.1
+ dev: false
- '@angular/platform-browser@19.2.0':
+ /@angular/platform-browser/19.2.0_23bjyqnebdjarufkmd6erfixbi:
resolution: {integrity: sha512-rt3byGZWU0jF6QCLxjP+LH94uL0VM5LgtJ+tYclJqCNB1C3fZrpa86GVd9onVbZmDk0ETUOwm7dQHYdef8oiqw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
@@ -1179,8 +1676,31 @@ packages:
peerDependenciesMeta:
'@angular/animations':
optional: true
+ dependencies:
+ '@angular/animations': 19.2.0_@angular+core@19.2.0
+ '@angular/common': 19.2.0_o7lncytynmlvlvkm4hpjy4oxsi
+ '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
+ tslib: 2.8.1
+ dev: true
- '@angular/router@19.2.0':
+ /@angular/platform-browser/19.2.1_hphkzp5feflrtxibdjypxrpzjq:
+ resolution: {integrity: sha512-omBNCMk0Gim+HntrofVQR8dOY2zLCFOW02+FX4y57QvuDBh/FpFfnQ14xxx1Y4qEgGculEcBe914uJlxr4ccIg==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ '@angular/animations': 19.2.1
+ '@angular/common': 19.2.1
+ '@angular/core': 19.2.1
+ peerDependenciesMeta:
+ '@angular/animations':
+ optional: true
+ dependencies:
+ '@angular/animations': 19.2.1_@angular+core@19.2.1
+ '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
+ '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
+ tslib: 2.8.1
+ dev: false
+
+ /@angular/router/19.2.0_pqzonxg4tmfn73mzgmildkwlou:
resolution: {integrity: sha512-Md/zleBpWMi5H6KPMREM0M2EUAkoqe01zkXla0Z0hHoTn7Ty0fv0Te9bGDioVOG7JgHh6wYCrPJ/uJsjKObyvw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
@@ -1188,696 +1708,1434 @@ packages:
'@angular/core': 19.2.0
'@angular/platform-browser': 19.2.0
rxjs: ^6.5.3 || ^7.4.0
+ dependencies:
+ '@angular/common': 19.2.0_o7lncytynmlvlvkm4hpjy4oxsi
+ '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
+ '@angular/platform-browser': 19.2.0_23bjyqnebdjarufkmd6erfixbi
+ rxjs: 7.8.1
+ tslib: 2.8.1
+ dev: true
+
+ /@angular/router/19.2.1_z4ykjt5nb5xnncujnwph6lwtaq:
+ resolution: {integrity: sha512-HZTewSLnHpNbnOnTp9X7r17/eb8h3ex/b8da6z2OPpC3diV7EZsrrjrLpdkzm3wpuapaVATzRgC4I4gN8XwTxA==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ '@angular/common': 19.2.1
+ '@angular/core': 19.2.1
+ '@angular/platform-browser': 19.2.1
+ rxjs: ^6.5.3 || ^7.4.0
+ dependencies:
+ '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
+ '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
+ '@angular/platform-browser': 19.2.1_hphkzp5feflrtxibdjypxrpzjq
+ rxjs: 7.8.2
+ tslib: 2.8.1
+ dev: false
- '@antfu/utils@0.7.10':
+ /@antfu/utils/0.7.10:
resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
- '@arethetypeswrong/cli@0.17.2':
+ /@arethetypeswrong/cli/0.17.2:
resolution: {integrity: sha512-/u2VcQJ8PKc4hcao/vXnHrYLEI/sQqKarbHi+NEIfvdymaW5o62XOCXy2yvalQa/vR+AAD/QNEgAUzHo5f7hrw==}
engines: {node: '>=18'}
hasBin: true
+ dependencies:
+ '@arethetypeswrong/core': 0.17.2
+ chalk: 4.1.2
+ cli-table3: 0.6.5
+ commander: 10.0.1
+ marked: 9.1.6
+ marked-terminal: 7.3.0_marked@9.1.6
+ semver: 7.7.1
+ dev: true
- '@arethetypeswrong/core@0.17.2':
+ /@arethetypeswrong/core/0.17.2:
resolution: {integrity: sha512-JYeLgS4rQ2l3gHCabaka3atsEyskfpx+WqUbo+6l8LApILJgr0/XDb7KNC9Ovevp4iPVF2Q73oshpgOKJ3uDRQ==}
engines: {node: '>=18'}
+ dependencies:
+ '@andrewbranch/untar.js': 1.0.3
+ cjs-module-lexer: 1.4.3
+ fflate: 0.8.2
+ lru-cache: 10.4.3
+ semver: 7.7.1
+ typescript: 5.6.1-rc
+ validate-npm-package-name: 5.0.1
+ dev: true
- '@babel/code-frame@7.26.2':
+ /@babel/code-frame/7.26.2:
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
- '@babel/compat-data@7.26.5':
- resolution: {integrity: sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/compat-data@7.26.8':
+ /@babel/compat-data/7.26.8:
resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.7':
- resolution: {integrity: sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.26.9':
+ /@babel/core/7.26.9:
resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.9
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-module-transforms': 7.26.0_@babel+core@7.26.9
+ '@babel/helpers': 7.26.9
+ '@babel/parser': 7.26.9
+ '@babel/template': 7.26.9
+ '@babel/traverse': 7.26.9
+ '@babel/types': 7.26.9
+ convert-source-map: 2.0.0
+ debug: 4.4.0
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/generator@7.26.5':
- resolution: {integrity: sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.26.9':
+ /@babel/generator/7.26.9:
resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
+ '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 3.1.0
- '@babel/helper-annotate-as-pure@7.25.9':
+ /@babel/helper-annotate-as-pure/7.25.9:
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.26.9
- '@babel/helper-compilation-targets@7.26.5':
+ /@babel/helper-compilation-targets/7.26.5:
resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/compat-data': 7.26.8
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.4
+ lru-cache: 5.1.1
+ semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.9':
- resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-create-class-features-plugin@7.26.9':
+ /@babel/helper-create-class-features-plugin/7.26.9_@babel+core@7.26.9:
resolution: {integrity: sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.26.5_@babel+core@7.26.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.26.9
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-create-regexp-features-plugin@7.26.3':
+ /@babel/helper-create-regexp-features-plugin/7.26.3_@babel+core@7.26.9:
resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ regexpu-core: 6.2.0
+ semver: 6.3.1
+ dev: true
- '@babel/helper-define-polyfill-provider@0.6.3':
+ /@babel/helper-define-polyfill-provider/0.6.3_@babel+core@7.26.9:
resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ debug: 4.4.0
+ lodash.debounce: 4.0.8
+ resolve: 1.22.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/helper-member-expression-to-functions@7.25.9':
+ /@babel/helper-member-expression-to-functions/7.25.9:
resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.26.9
+ '@babel/types': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-module-imports@7.25.9':
+ /@babel/helper-module-imports/7.25.9:
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.26.9
+ '@babel/types': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-module-transforms@7.26.0':
+ /@babel/helper-module-transforms/7.26.0_@babel+core@7.26.9:
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-optimise-call-expression@7.25.9':
+ /@babel/helper-optimise-call-expression/7.25.9:
resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.26.9
- '@babel/helper-plugin-utils@7.26.5':
+ /@babel/helper-plugin-utils/7.26.5:
resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.25.9':
+ /@babel/helper-remap-async-to-generator/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-wrap-function': 7.25.9
+ '@babel/traverse': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/helper-replace-supers@7.26.5':
+ /@babel/helper-replace-supers/7.26.5_@babel+core@7.26.9:
resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ /@babel/helper-skip-transparent-expression-wrappers/7.25.9:
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.26.9
+ '@babel/types': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-split-export-declaration@7.24.7':
+ /@babel/helper-split-export-declaration/7.24.7:
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.26.9
+ dev: true
- '@babel/helper-string-parser@7.25.9':
+ /@babel/helper-string-parser/7.25.9:
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.25.9':
+ /@babel/helper-validator-identifier/7.25.9:
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.9':
+ /@babel/helper-validator-option/7.25.9:
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.25.9':
+ /@babel/helper-wrap-function/7.25.9:
resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.26.9
+ '@babel/traverse': 7.26.9
+ '@babel/types': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/helpers@7.26.7':
- resolution: {integrity: sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helpers@7.26.9':
+ /@babel/helpers/7.26.9:
resolution: {integrity: sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.26.9
+ '@babel/types': 7.26.9
- '@babel/parser@7.26.7':
- resolution: {integrity: sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/parser@7.26.9':
+ /@babel/parser/7.26.9:
resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==}
engines: {node: '>=6.0.0'}
hasBin: true
+ dependencies:
+ '@babel/types': 7.26.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
+ /@babel/plugin-bugfix-firefox-class-in-computed-class-key/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/traverse': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
+ /@babel/plugin-bugfix-safari-class-field-initializer-scope/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9_@babel+core@7.26.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/traverse': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-proposal-decorators@7.25.9':
+ /@babel/plugin-proposal-decorators/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-syntax-decorators': 7.25.9_@babel+core@7.26.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
+ /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.26.9:
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ dev: true
- '@babel/plugin-syntax-decorators@7.25.9':
+ /@babel/plugin-syntax-decorators/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-import-assertions@7.26.0':
+ /@babel/plugin-syntax-import-assertions/7.26.0_@babel+core@7.26.9:
resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-syntax-import-attributes@7.26.0':
+ /@babel/plugin-syntax-import-attributes/7.26.0_@babel+core@7.26.9:
resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-import-meta@7.10.4':
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.26.9:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-jsx@7.25.9':
+ /@babel/plugin-syntax-jsx/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-typescript@7.25.9':
+ /@babel/plugin-syntax-typescript/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6':
+ /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.26.9:
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-arrow-functions@7.25.9':
+ /@babel/plugin-transform-arrow-functions/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-async-generator-functions@7.26.8':
+ /@babel/plugin-transform-async-generator-functions/7.26.8_@babel+core@7.26.9:
resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-remap-async-to-generator': 7.25.9_@babel+core@7.26.9
+ '@babel/traverse': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-async-to-generator@7.25.9':
+ /@babel/plugin-transform-async-to-generator/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-remap-async-to-generator': 7.25.9_@babel+core@7.26.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-block-scoped-functions@7.26.5':
+ /@babel/plugin-transform-block-scoped-functions/7.26.5_@babel+core@7.26.9:
resolution: {integrity: sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-block-scoping@7.25.9':
+ /@babel/plugin-transform-block-scoping/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-class-properties@7.25.9':
+ /@babel/plugin-transform-class-properties/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-class-static-block@7.26.0':
+ /@babel/plugin-transform-class-static-block/7.26.0_@babel+core@7.26.9:
resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-classes@7.25.9':
+ /@babel/plugin-transform-classes/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-replace-supers': 7.26.5_@babel+core@7.26.9
+ '@babel/traverse': 7.26.9
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-computed-properties@7.25.9':
+ /@babel/plugin-transform-computed-properties/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/template': 7.26.9
+ dev: true
- '@babel/plugin-transform-destructuring@7.25.9':
+ /@babel/plugin-transform-destructuring/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-dotall-regex@7.25.9':
+ /@babel/plugin-transform-dotall-regex/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-duplicate-keys@7.25.9':
+ /@babel/plugin-transform-duplicate-keys/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
+ /@babel/plugin-transform-duplicate-named-capturing-groups-regex/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-dynamic-import@7.25.9':
+ /@babel/plugin-transform-dynamic-import/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-exponentiation-operator@7.26.3':
+ /@babel/plugin-transform-exponentiation-operator/7.26.3_@babel+core@7.26.9:
resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-export-namespace-from@7.25.9':
+ /@babel/plugin-transform-export-namespace-from/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-for-of@7.26.9':
+ /@babel/plugin-transform-for-of/7.26.9_@babel+core@7.26.9:
resolution: {integrity: sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-function-name@7.25.9':
+ /@babel/plugin-transform-function-name/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/traverse': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-json-strings@7.25.9':
+ /@babel/plugin-transform-json-strings/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-literals@7.25.9':
+ /@babel/plugin-transform-literals/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-logical-assignment-operators@7.25.9':
+ /@babel/plugin-transform-logical-assignment-operators/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-member-expression-literals@7.25.9':
+ /@babel/plugin-transform-member-expression-literals/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-modules-amd@7.25.9':
+ /@babel/plugin-transform-modules-amd/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-module-transforms': 7.26.0_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-modules-commonjs@7.26.3':
+ /@babel/plugin-transform-modules-commonjs/7.26.3_@babel+core@7.26.9:
resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-module-transforms': 7.26.0_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-modules-systemjs@7.25.9':
+ /@babel/plugin-transform-modules-systemjs/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-module-transforms': 7.26.0_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-modules-umd@7.25.9':
+ /@babel/plugin-transform-modules-umd/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-module-transforms': 7.26.0_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
+ /@babel/plugin-transform-named-capturing-groups-regex/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-new-target@7.25.9':
+ /@babel/plugin-transform-new-target/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-nullish-coalescing-operator@7.26.6':
+ /@babel/plugin-transform-nullish-coalescing-operator/7.26.6_@babel+core@7.26.9:
resolution: {integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-numeric-separator@7.25.9':
+ /@babel/plugin-transform-numeric-separator/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-object-rest-spread@7.25.9':
+ /@babel/plugin-transform-object-rest-spread/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-parameters': 7.25.9_@babel+core@7.26.9
+ dev: true
- '@babel/plugin-transform-object-super@7.25.9':
+ /@babel/plugin-transform-object-super/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-replace-supers': 7.26.5_@babel+core@7.26.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-optional-catch-binding@7.25.9':
+ /@babel/plugin-transform-optional-catch-binding/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-optional-chaining@7.25.9':
+ /@babel/plugin-transform-optional-chaining/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-parameters@7.25.9':
+ /@babel/plugin-transform-parameters/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-private-methods@7.25.9':
+ /@babel/plugin-transform-private-methods/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-private-property-in-object@7.25.9':
+ /@babel/plugin-transform-private-property-in-object/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-property-literals@7.25.9':
+ /@babel/plugin-transform-property-literals/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-react-jsx-self@7.25.9':
+ /@babel/plugin-transform-react-jsx-self/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-react-jsx-source@7.25.9':
+ /@babel/plugin-transform-react-jsx-source/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-regenerator@7.25.9':
+ /@babel/plugin-transform-regenerator/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ regenerator-transform: 0.15.2
+ dev: true
- '@babel/plugin-transform-regexp-modifiers@7.26.0':
+ /@babel/plugin-transform-regexp-modifiers/7.26.0_@babel+core@7.26.9:
resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-reserved-words@7.25.9':
+ /@babel/plugin-transform-reserved-words/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-runtime@7.26.9':
+ /@babel/plugin-transform-runtime/7.26.9_@babel+core@7.26.9:
resolution: {integrity: sha512-Jf+8y9wXQbbxvVYTM8gO5oEF2POdNji0NMltEkG7FtmzD9PVz7/lxpqSdTvwsjTMU5HIHuDVNf2SOxLkWi+wPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
+ babel-plugin-polyfill-corejs2: 0.4.12_@babel+core@7.26.9
+ babel-plugin-polyfill-corejs3: 0.10.6_@babel+core@7.26.9
+ babel-plugin-polyfill-regenerator: 0.6.3_@babel+core@7.26.9
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-shorthand-properties@7.25.9':
+ /@babel/plugin-transform-shorthand-properties/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-spread@7.25.9':
+ /@babel/plugin-transform-spread/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/plugin-transform-sticky-regex@7.25.9':
+ /@babel/plugin-transform-sticky-regex/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-template-literals@7.26.8':
+ /@babel/plugin-transform-template-literals/7.26.8_@babel+core@7.26.9:
resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-typeof-symbol@7.26.7':
+ /@babel/plugin-transform-typeof-symbol/7.26.7_@babel+core@7.26.9:
resolution: {integrity: sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-typescript@7.26.7':
- resolution: {integrity: sha512-5cJurntg+AT+cgelGP9Bt788DKiAw9gIMSMU2NJrLAilnj0m8WZWUNZPSLOmadYsujHutpgElO+50foX+ib/Wg==}
+ /@babel/plugin-transform-typescript/7.26.8_@babel+core@7.26.9:
+ resolution: {integrity: sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.25.9_@babel+core@7.26.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-unicode-escapes@7.25.9':
+ /@babel/plugin-transform-unicode-escapes/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-unicode-property-regex@7.25.9':
+ /@babel/plugin-transform-unicode-property-regex/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-unicode-regex@7.25.9':
+ /@babel/plugin-transform-unicode-regex/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/plugin-transform-unicode-sets-regex@7.25.9':
+ /@babel/plugin-transform-unicode-sets-regex/7.25.9_@babel+core@7.26.9:
resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ dev: true
- '@babel/preset-env@7.26.9':
+ /@babel/preset-env/7.26.9_@babel+core@7.26.9:
resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.26.8
+ '@babel/core': 7.26.9
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.26.9
+ '@babel/plugin-syntax-import-assertions': 7.26.0_@babel+core@7.26.9
+ '@babel/plugin-syntax-import-attributes': 7.26.0_@babel+core@7.26.9
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.26.9
+ '@babel/plugin-transform-arrow-functions': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-async-generator-functions': 7.26.8_@babel+core@7.26.9
+ '@babel/plugin-transform-async-to-generator': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-block-scoped-functions': 7.26.5_@babel+core@7.26.9
+ '@babel/plugin-transform-block-scoping': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-class-properties': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-class-static-block': 7.26.0_@babel+core@7.26.9
+ '@babel/plugin-transform-classes': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-computed-properties': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-destructuring': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-dotall-regex': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-duplicate-keys': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-dynamic-import': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-exponentiation-operator': 7.26.3_@babel+core@7.26.9
+ '@babel/plugin-transform-export-namespace-from': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-for-of': 7.26.9_@babel+core@7.26.9
+ '@babel/plugin-transform-function-name': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-json-strings': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-literals': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-member-expression-literals': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-modules-amd': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-modules-commonjs': 7.26.3_@babel+core@7.26.9
+ '@babel/plugin-transform-modules-systemjs': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-modules-umd': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-new-target': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6_@babel+core@7.26.9
+ '@babel/plugin-transform-numeric-separator': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-object-rest-spread': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-object-super': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-parameters': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-private-methods': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-private-property-in-object': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-property-literals': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-regenerator': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0_@babel+core@7.26.9
+ '@babel/plugin-transform-reserved-words': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-shorthand-properties': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-spread': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-sticky-regex': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-template-literals': 7.26.8_@babel+core@7.26.9
+ '@babel/plugin-transform-typeof-symbol': 7.26.7_@babel+core@7.26.9
+ '@babel/plugin-transform-unicode-escapes': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-unicode-regex': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9_@babel+core@7.26.9
+ '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.26.9
+ babel-plugin-polyfill-corejs2: 0.4.12_@babel+core@7.26.9
+ babel-plugin-polyfill-corejs3: 0.11.1_@babel+core@7.26.9
+ babel-plugin-polyfill-regenerator: 0.6.3_@babel+core@7.26.9
+ core-js-compat: 3.41.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@babel/preset-modules@0.1.6-no-external-plugins':
+ /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.26.9:
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/types': 7.26.9
+ esutils: 2.0.3
+ dev: true
- '@babel/runtime@7.26.9':
+ /@babel/runtime/7.26.9:
resolution: {integrity: sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.14.1
+ dev: true
- '@babel/standalone@7.26.7':
- resolution: {integrity: sha512-Fvdo9Dd20GDUAREzYMIR2EFMKAJ+ccxstgQdb39XV/yvygHL4UPcqgTkiChPyltAe/b+zgq+vUPXeukEZ6aUeA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.25.9':
- resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
+ /@babel/standalone/7.26.9:
+ resolution: {integrity: sha512-UTeQKy0kzJwWRe55kT1uK4G9H6D0lS6G4207hCU/bDaOhA5t2aC0qHN6GmID0Axv3OFLNXm27NdqcWp+BXcGtA==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.26.9':
+ /@babel/template/7.26.9:
resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
- '@babel/traverse@7.26.7':
- resolution: {integrity: sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/traverse@7.26.9':
+ /@babel/traverse/7.26.9:
resolution: {integrity: sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.9
+ '@babel/parser': 7.26.9
+ '@babel/template': 7.26.9
+ '@babel/types': 7.26.9
+ debug: 4.4.0
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/types@7.26.7':
- resolution: {integrity: sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/types@7.26.9':
+ /@babel/types/7.26.9:
resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
- '@bcoe/v8-coverage@0.2.3':
+ /@bcoe/v8-coverage/0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
+ dev: true
- '@changesets/apply-release-plan@7.0.8':
- resolution: {integrity: sha512-qjMUj4DYQ1Z6qHawsn7S71SujrExJ+nceyKKyI9iB+M5p9lCL55afuEd6uLBPRpLGWQwkwvWegDHtwHJb1UjpA==}
+ /@changesets/apply-release-plan/7.0.10:
+ resolution: {integrity: sha512-wNyeIJ3yDsVspYvHnEz1xQDq18D9ifed3lI+wxRQRK4pArUcuHgCTrHv0QRnnwjhVCQACxZ+CBih3wgOct6UXw==}
+ dependencies:
+ '@changesets/config': 3.1.1
+ '@changesets/get-version-range-type': 0.4.0
+ '@changesets/git': 3.0.2
+ '@changesets/should-skip-package': 0.1.2
+ '@changesets/types': 6.1.0
+ '@manypkg/get-packages': 1.1.3
+ detect-indent: 6.1.0
+ fs-extra: 7.0.1
+ lodash.startcase: 4.4.0
+ outdent: 0.5.0
+ prettier: 2.8.8
+ resolve-from: 5.0.0
+ semver: 7.7.1
+ dev: true
- '@changesets/assemble-release-plan@6.0.5':
- resolution: {integrity: sha512-IgvBWLNKZd6k4t72MBTBK3nkygi0j3t3zdC1zrfusYo0KpdsvnDjrMM9vPnTCLCMlfNs55jRL4gIMybxa64FCQ==}
+ /@changesets/assemble-release-plan/6.0.6:
+ resolution: {integrity: sha512-Frkj8hWJ1FRZiY3kzVCKzS0N5mMwWKwmv9vpam7vt8rZjLL1JMthdh6pSDVSPumHPshTTkKZ0VtNbE0cJHZZUg==}
+ dependencies:
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.1.3
+ '@changesets/should-skip-package': 0.1.2
+ '@changesets/types': 6.1.0
+ '@manypkg/get-packages': 1.1.3
+ semver: 7.7.1
+ dev: true
- '@changesets/changelog-git@0.2.0':
- resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
+ /@changesets/changelog-git/0.2.1:
+ resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
+ dependencies:
+ '@changesets/types': 6.1.0
+ dev: true
- '@changesets/changelog-github@0.5.0':
+ /@changesets/changelog-github/0.5.0:
resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==}
+ dependencies:
+ '@changesets/get-github-info': 0.6.0
+ '@changesets/types': 6.1.0
+ dotenv: 8.6.0
+ transitivePeerDependencies:
+ - encoding
+ dev: true
- '@changesets/cli@2.27.8':
+ /@changesets/cli/2.27.8:
resolution: {integrity: sha512-gZNyh+LdSsI82wBSHLQ3QN5J30P4uHKJ4fXgoGwQxfXwYFTJzDdvIJasZn8rYQtmKhyQuiBj4SSnLuKlxKWq4w==}
hasBin: true
+ dependencies:
+ '@changesets/apply-release-plan': 7.0.10
+ '@changesets/assemble-release-plan': 6.0.6
+ '@changesets/changelog-git': 0.2.1
+ '@changesets/config': 3.1.1
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.1.3
+ '@changesets/get-release-plan': 4.0.8
+ '@changesets/git': 3.0.2
+ '@changesets/logger': 0.1.1
+ '@changesets/pre': 2.0.2
+ '@changesets/read': 0.6.3
+ '@changesets/should-skip-package': 0.1.2
+ '@changesets/types': 6.1.0
+ '@changesets/write': 0.3.2
+ '@manypkg/get-packages': 1.1.3
+ '@types/semver': 7.5.8
+ ansi-colors: 4.1.3
+ ci-info: 3.9.0
+ enquirer: 2.4.1
+ external-editor: 3.1.0
+ fs-extra: 7.0.1
+ mri: 1.2.0
+ outdent: 0.5.0
+ p-limit: 2.3.0
+ package-manager-detector: 0.2.11
+ picocolors: 1.1.1
+ resolve-from: 5.0.0
+ semver: 7.7.1
+ spawndamnit: 2.0.0
+ term-size: 2.2.1
+ dev: true
- '@changesets/config@3.0.5':
- resolution: {integrity: sha512-QyXLSSd10GquX7hY0Mt4yQFMEeqnO5z/XLpbIr4PAkNNoQNKwDyiSrx4yd749WddusH1v3OSiA0NRAYmH/APpQ==}
+ /@changesets/config/3.1.1:
+ resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==}
+ dependencies:
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.1.3
+ '@changesets/logger': 0.1.1
+ '@changesets/types': 6.1.0
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
+ micromatch: 4.0.8
+ dev: true
- '@changesets/errors@0.2.0':
+ /@changesets/errors/0.2.0:
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
+ dependencies:
+ extendable-error: 0.1.7
+ dev: true
- '@changesets/get-dependents-graph@2.1.2':
- resolution: {integrity: sha512-sgcHRkiBY9i4zWYBwlVyAjEM9sAzs4wYVwJUdnbDLnVG3QwAaia1Mk5P8M7kraTOZN+vBET7n8KyB0YXCbFRLQ==}
+ /@changesets/get-dependents-graph/2.1.3:
+ resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==}
+ dependencies:
+ '@changesets/types': 6.1.0
+ '@manypkg/get-packages': 1.1.3
+ picocolors: 1.1.1
+ semver: 7.7.1
+ dev: true
- '@changesets/get-github-info@0.6.0':
+ /@changesets/get-github-info/0.6.0:
resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==}
+ dependencies:
+ dataloader: 1.4.0
+ node-fetch: 2.7.0
+ transitivePeerDependencies:
+ - encoding
+ dev: true
- '@changesets/get-release-plan@4.0.6':
- resolution: {integrity: sha512-FHRwBkY7Eili04Y5YMOZb0ezQzKikTka4wL753vfUA5COSebt7KThqiuCN9BewE4/qFGgF/5t3AuzXx1/UAY4w==}
+ /@changesets/get-release-plan/4.0.8:
+ resolution: {integrity: sha512-MM4mq2+DQU1ZT7nqxnpveDMTkMBLnwNX44cX7NSxlXmr7f8hO6/S2MXNiXG54uf/0nYnefv0cfy4Czf/ZL/EKQ==}
+ dependencies:
+ '@changesets/assemble-release-plan': 6.0.6
+ '@changesets/config': 3.1.1
+ '@changesets/pre': 2.0.2
+ '@changesets/read': 0.6.3
+ '@changesets/types': 6.1.0
+ '@manypkg/get-packages': 1.1.3
+ dev: true
- '@changesets/get-version-range-type@0.4.0':
+ /@changesets/get-version-range-type/0.4.0:
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
+ dev: true
- '@changesets/git@3.0.2':
+ /@changesets/git/3.0.2:
resolution: {integrity: sha512-r1/Kju9Y8OxRRdvna+nxpQIsMsRQn9dhhAZt94FLDeu0Hij2hnOozW8iqnHBgvu+KdnJppCveQwK4odwfw/aWQ==}
+ dependencies:
+ '@changesets/errors': 0.2.0
+ '@manypkg/get-packages': 1.1.3
+ is-subdir: 1.2.0
+ micromatch: 4.0.8
+ spawndamnit: 3.0.1
+ dev: true
- '@changesets/logger@0.1.1':
+ /@changesets/logger/0.1.1:
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
+ dependencies:
+ picocolors: 1.1.1
+ dev: true
- '@changesets/parse@0.4.0':
- resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==}
+ /@changesets/parse/0.4.1:
+ resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==}
+ dependencies:
+ '@changesets/types': 6.1.0
+ js-yaml: 3.14.1
+ dev: true
- '@changesets/pre@2.0.1':
- resolution: {integrity: sha512-vvBJ/If4jKM4tPz9JdY2kGOgWmCowUYOi5Ycv8dyLnEE8FgpYYUo1mgJZxcdtGGP3aG8rAQulGLyyXGSLkIMTQ==}
+ /@changesets/pre/2.0.2:
+ resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==}
+ dependencies:
+ '@changesets/errors': 0.2.0
+ '@changesets/types': 6.1.0
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
+ dev: true
- '@changesets/read@0.6.2':
- resolution: {integrity: sha512-wjfQpJvryY3zD61p8jR87mJdyx2FIhEcdXhKUqkja87toMrP/3jtg/Yg29upN+N4Ckf525/uvV7a4tzBlpk6gg==}
+ /@changesets/read/0.6.3:
+ resolution: {integrity: sha512-9H4p/OuJ3jXEUTjaVGdQEhBdqoT2cO5Ts95JTFsQyawmKzpL8FnIeJSyhTDPW1MBRDnwZlHFEM9SpPwJDY5wIg==}
+ dependencies:
+ '@changesets/git': 3.0.2
+ '@changesets/logger': 0.1.1
+ '@changesets/parse': 0.4.1
+ '@changesets/types': 6.1.0
+ fs-extra: 7.0.1
+ p-filter: 2.1.0
+ picocolors: 1.1.1
+ dev: true
- '@changesets/should-skip-package@0.1.1':
- resolution: {integrity: sha512-H9LjLbF6mMHLtJIc/eHR9Na+MifJ3VxtgP/Y+XLn4BF7tDTEN1HNYtH6QMcjP1uxp9sjaFYmW8xqloaCi/ckTg==}
+ /@changesets/should-skip-package/0.1.2:
+ resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==}
+ dependencies:
+ '@changesets/types': 6.1.0
+ '@manypkg/get-packages': 1.1.3
+ dev: true
- '@changesets/types@4.1.0':
+ /@changesets/types/4.1.0:
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
+ dev: true
- '@changesets/types@6.0.0':
- resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==}
+ /@changesets/types/6.1.0:
+ resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==}
+ dev: true
- '@changesets/write@0.3.2':
+ /@changesets/write/0.3.2:
resolution: {integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==}
+ dependencies:
+ '@changesets/types': 6.1.0
+ fs-extra: 7.0.1
+ human-id: 1.0.2
+ prettier: 2.8.8
+ dev: true
- '@cloudflare/kv-asset-handler@0.3.4':
+ /@cloudflare/kv-asset-handler/0.3.4:
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
engines: {node: '>=16.13'}
+ dependencies:
+ mime: 3.0.0
- '@colors/colors@1.5.0':
+ /@colors/colors/1.5.0:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
+ dev: true
- '@cspotcode/source-map-support@0.8.1':
+ /@cspotcode/source-map-support/0.8.1:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.9
+ dev: true
- '@discoveryjs/json-ext@0.6.3':
+ /@discoveryjs/json-ext/0.6.3:
resolution: {integrity: sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==}
engines: {node: '>=14.17.0'}
+ dev: true
- '@docsearch/css@3.8.3':
- resolution: {integrity: sha512-1nELpMV40JDLJ6rpVVFX48R1jsBFIQ6RnEQDsLFGmzOjPWTOMlZqUcXcvRx8VmYV/TqnS1l784Ofz+ZEb+wEOQ==}
+ /@docsearch/css/3.9.0:
+ resolution: {integrity: sha512-cQbnVbq0rrBwNAKegIac/t6a8nWoUAn8frnkLFW6YARaRmAQr5/Eoe6Ln2fqkUCZ40KpdrKbpSAmgrkviOxuWA==}
+ dev: true
- '@docsearch/js@3.8.3':
- resolution: {integrity: sha512-CQsX1zeoPJIWxN3IGoDSWOqzRc0JsOE9Bclegf9llwjYN2rzzJF93zagGcT3uI3tF31oCqTuUOVGW/mVFb7arw==}
+ /@docsearch/js/3.9.0_lf5wzet23pep44me4gg534bzoa:
+ resolution: {integrity: sha512-4bKHcye6EkLgRE8ze0vcdshmEqxeiJM77M0JXjef7lrYZfSlMunrDOCqyLjiZyo1+c0BhUqA2QpFartIjuHIjw==}
+ dependencies:
+ '@docsearch/react': 3.9.0_lf5wzet23pep44me4gg534bzoa
+ preact: 10.26.4
+ transitivePeerDependencies:
+ - '@algolia/client-search'
+ - '@types/react'
+ - react
+ - react-dom
+ - search-insights
+ dev: true
- '@docsearch/react@3.8.3':
- resolution: {integrity: sha512-6UNrg88K7lJWmuS6zFPL/xgL+n326qXqZ7Ybyy4E8P/6Rcblk3GE8RXxeol4Pd5pFpKMhOhBhzABKKwHtbJCIg==}
+ /@docsearch/react/3.9.0_lf5wzet23pep44me4gg534bzoa:
+ resolution: {integrity: sha512-mb5FOZYZIkRQ6s/NWnM98k879vu5pscWqTLubLFBO87igYYT4VzVazh4h5o/zCvTIZgEt3PvsCOMOswOUo9yHQ==}
peerDependencies:
- '@types/react': '>= 16.8.0 < 19.0.0'
- react: '>= 16.8.0 < 19.0.0'
- react-dom: '>= 16.8.0 < 19.0.0'
+ '@types/react': '>= 16.8.0 < 20.0.0'
+ react: '>= 16.8.0 < 20.0.0'
+ react-dom: '>= 16.8.0 < 20.0.0'
search-insights: '>= 1 < 3'
peerDependenciesMeta:
'@types/react':
@@ -1888,655 +3146,996 @@ packages:
optional: true
search-insights:
optional: true
+ dependencies:
+ '@algolia/autocomplete-core': 1.17.9_xxmpinlwddpyh675ykryvz2mce
+ '@algolia/autocomplete-preset-algolia': 1.17.9_vhprxalrhraqfiwdqogz562eue
+ '@docsearch/css': 3.9.0
+ algoliasearch: 5.20.4
+ search-insights: 2.17.3
+ transitivePeerDependencies:
+ - '@algolia/client-search'
+ dev: true
+
+ /@emnapi/core/1.3.1:
+ resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==}
+ requiresBuild: true
+ dependencies:
+ '@emnapi/wasi-threads': 1.0.1
+ tslib: 2.8.1
+ dev: false
+ optional: true
- '@emnapi/runtime@1.3.1':
+ /@emnapi/runtime/1.3.1:
resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
+ requiresBuild: true
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ /@emnapi/wasi-threads/1.0.1:
+ resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
+ requiresBuild: true
+ dependencies:
+ tslib: 2.8.1
+ dev: false
+ optional: true
- '@esbuild/aix-ppc64@0.21.5':
+ /@esbuild/aix-ppc64/0.21.5:
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
+ requiresBuild: true
+ optional: true
- '@esbuild/aix-ppc64@0.24.2':
+ /@esbuild/aix-ppc64/0.24.2:
resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
+ requiresBuild: true
+ optional: true
- '@esbuild/aix-ppc64@0.25.0':
+ /@esbuild/aix-ppc64/0.25.0:
resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
+ requiresBuild: true
+ optional: true
- '@esbuild/android-arm64@0.21.5':
- resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
+ /@esbuild/android-arm/0.21.5:
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [arm]
os: [android]
+ requiresBuild: true
+ optional: true
- '@esbuild/android-arm64@0.24.2':
- resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
+ /@esbuild/android-arm/0.24.2:
+ resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
engines: {node: '>=18'}
- cpu: [arm64]
+ cpu: [arm]
os: [android]
+ requiresBuild: true
+ optional: true
- '@esbuild/android-arm64@0.25.0':
- resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==}
+ /@esbuild/android-arm/0.25.0:
+ resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==}
engines: {node: '>=18'}
- cpu: [arm64]
+ cpu: [arm]
os: [android]
+ requiresBuild: true
+ optional: true
- '@esbuild/android-arm@0.21.5':
- resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
+ /@esbuild/android-arm64/0.21.5:
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
- cpu: [arm]
+ cpu: [arm64]
os: [android]
+ requiresBuild: true
+ optional: true
- '@esbuild/android-arm@0.24.2':
- resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
+ /@esbuild/android-arm64/0.24.2:
+ resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
engines: {node: '>=18'}
- cpu: [arm]
+ cpu: [arm64]
os: [android]
+ requiresBuild: true
+ optional: true
- '@esbuild/android-arm@0.25.0':
- resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==}
+ /@esbuild/android-arm64/0.25.0:
+ resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==}
engines: {node: '>=18'}
- cpu: [arm]
+ cpu: [arm64]
os: [android]
+ requiresBuild: true
+ optional: true
- '@esbuild/android-x64@0.21.5':
+ /@esbuild/android-x64/0.21.5:
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
+ requiresBuild: true
+ optional: true
- '@esbuild/android-x64@0.24.2':
+ /@esbuild/android-x64/0.24.2:
resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
+ requiresBuild: true
+ optional: true
- '@esbuild/android-x64@0.25.0':
+ /@esbuild/android-x64/0.25.0:
resolution: {integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
+ requiresBuild: true
+ optional: true
- '@esbuild/darwin-arm64@0.21.5':
+ /@esbuild/darwin-arm64/0.21.5:
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ optional: true
- '@esbuild/darwin-arm64@0.24.2':
+ /@esbuild/darwin-arm64/0.24.2:
resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ optional: true
- '@esbuild/darwin-arm64@0.25.0':
+ /@esbuild/darwin-arm64/0.25.0:
resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ optional: true
- '@esbuild/darwin-x64@0.21.5':
+ /@esbuild/darwin-x64/0.21.5:
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ optional: true
- '@esbuild/darwin-x64@0.24.2':
+ /@esbuild/darwin-x64/0.24.2:
resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ optional: true
- '@esbuild/darwin-x64@0.25.0':
+ /@esbuild/darwin-x64/0.25.0:
resolution: {integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ optional: true
- '@esbuild/freebsd-arm64@0.21.5':
+ /@esbuild/freebsd-arm64/0.21.5:
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/freebsd-arm64@0.24.2':
+ /@esbuild/freebsd-arm64/0.24.2:
resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/freebsd-arm64@0.25.0':
+ /@esbuild/freebsd-arm64/0.25.0:
resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/freebsd-x64@0.21.5':
+ /@esbuild/freebsd-x64/0.21.5:
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/freebsd-x64@0.24.2':
+ /@esbuild/freebsd-x64/0.24.2:
resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/freebsd-x64@0.25.0':
+ /@esbuild/freebsd-x64/0.25.0:
resolution: {integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-arm64@0.21.5':
- resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
+ /@esbuild/linux-arm/0.21.5:
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [arm]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-arm64@0.24.2':
- resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
+ /@esbuild/linux-arm/0.24.2:
+ resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
engines: {node: '>=18'}
- cpu: [arm64]
+ cpu: [arm]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-arm64@0.25.0':
- resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==}
+ /@esbuild/linux-arm/0.25.0:
+ resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==}
engines: {node: '>=18'}
- cpu: [arm64]
+ cpu: [arm]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-arm@0.21.5':
- resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
+ /@esbuild/linux-arm64/0.21.5:
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
- cpu: [arm]
+ cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-arm@0.24.2':
- resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
+ /@esbuild/linux-arm64/0.24.2:
+ resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
engines: {node: '>=18'}
- cpu: [arm]
+ cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-arm@0.25.0':
- resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==}
+ /@esbuild/linux-arm64/0.25.0:
+ resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==}
engines: {node: '>=18'}
- cpu: [arm]
+ cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-ia32@0.21.5':
+ /@esbuild/linux-ia32/0.21.5:
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-ia32@0.24.2':
+ /@esbuild/linux-ia32/0.24.2:
resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-ia32@0.25.0':
+ /@esbuild/linux-ia32/0.25.0:
resolution: {integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-loong64@0.21.5':
+ /@esbuild/linux-loong64/0.21.5:
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-loong64@0.24.2':
+ /@esbuild/linux-loong64/0.24.2:
resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-loong64@0.25.0':
+ /@esbuild/linux-loong64/0.25.0:
resolution: {integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-mips64el@0.21.5':
+ /@esbuild/linux-mips64el/0.21.5:
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-mips64el@0.24.2':
+ /@esbuild/linux-mips64el/0.24.2:
resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-mips64el@0.25.0':
+ /@esbuild/linux-mips64el/0.25.0:
resolution: {integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-ppc64@0.21.5':
+ /@esbuild/linux-ppc64/0.21.5:
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-ppc64@0.24.2':
+ /@esbuild/linux-ppc64/0.24.2:
resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-ppc64@0.25.0':
+ /@esbuild/linux-ppc64/0.25.0:
resolution: {integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-riscv64@0.21.5':
+ /@esbuild/linux-riscv64/0.21.5:
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-riscv64@0.24.2':
+ /@esbuild/linux-riscv64/0.24.2:
resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-riscv64@0.25.0':
+ /@esbuild/linux-riscv64/0.25.0:
resolution: {integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-s390x@0.21.5':
+ /@esbuild/linux-s390x/0.21.5:
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-s390x@0.24.2':
+ /@esbuild/linux-s390x/0.24.2:
resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-s390x@0.25.0':
+ /@esbuild/linux-s390x/0.25.0:
resolution: {integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-x64@0.21.5':
+ /@esbuild/linux-x64/0.21.5:
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-x64@0.24.2':
+ /@esbuild/linux-x64/0.24.2:
resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/linux-x64@0.25.0':
+ /@esbuild/linux-x64/0.25.0:
resolution: {integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@esbuild/netbsd-arm64@0.24.2':
+ /@esbuild/netbsd-arm64/0.24.2:
resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/netbsd-arm64@0.25.0':
+ /@esbuild/netbsd-arm64/0.25.0:
resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/netbsd-x64@0.21.5':
+ /@esbuild/netbsd-x64/0.21.5:
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/netbsd-x64@0.24.2':
+ /@esbuild/netbsd-x64/0.24.2:
resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/netbsd-x64@0.25.0':
+ /@esbuild/netbsd-x64/0.25.0:
resolution: {integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/openbsd-arm64@0.24.2':
+ /@esbuild/openbsd-arm64/0.24.2:
resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/openbsd-arm64@0.25.0':
+ /@esbuild/openbsd-arm64/0.25.0:
resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/openbsd-x64@0.21.5':
+ /@esbuild/openbsd-x64/0.21.5:
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/openbsd-x64@0.24.2':
+ /@esbuild/openbsd-x64/0.24.2:
resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/openbsd-x64@0.25.0':
+ /@esbuild/openbsd-x64/0.25.0:
resolution: {integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
+ requiresBuild: true
+ optional: true
- '@esbuild/sunos-x64@0.21.5':
+ /@esbuild/sunos-x64/0.21.5:
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
+ requiresBuild: true
+ optional: true
- '@esbuild/sunos-x64@0.24.2':
+ /@esbuild/sunos-x64/0.24.2:
resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
+ requiresBuild: true
+ optional: true
- '@esbuild/sunos-x64@0.25.0':
+ /@esbuild/sunos-x64/0.25.0:
resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
+ requiresBuild: true
+ optional: true
- '@esbuild/win32-arm64@0.21.5':
+ /@esbuild/win32-arm64/0.21.5:
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@esbuild/win32-arm64@0.24.2':
+ /@esbuild/win32-arm64/0.24.2:
resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@esbuild/win32-arm64@0.25.0':
+ /@esbuild/win32-arm64/0.25.0:
resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@esbuild/win32-ia32@0.21.5':
+ /@esbuild/win32-ia32/0.21.5:
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@esbuild/win32-ia32@0.24.2':
+ /@esbuild/win32-ia32/0.24.2:
resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@esbuild/win32-ia32@0.25.0':
+ /@esbuild/win32-ia32/0.25.0:
resolution: {integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@esbuild/win32-x64@0.21.5':
+ /@esbuild/win32-x64/0.21.5:
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@esbuild/win32-x64@0.24.2':
+ /@esbuild/win32-x64/0.24.2:
resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@esbuild/win32-x64@0.25.0':
+ /@esbuild/win32-x64/0.25.0:
resolution: {integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@eslint-community/eslint-utils@4.4.1':
+ /@eslint-community/eslint-utils/4.4.1_eslint@9.17.0:
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ dependencies:
+ eslint: 9.17.0
+ eslint-visitor-keys: 3.4.3
+ dev: true
- '@eslint-community/regexpp@4.12.1':
+ /@eslint-community/regexpp/4.12.1:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ dev: true
- '@eslint/config-array@0.19.1':
- resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==}
+ /@eslint/config-array/0.19.2:
+ resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ '@eslint/object-schema': 2.1.6
+ debug: 4.4.0
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@eslint/core@0.10.0':
- resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==}
+ /@eslint/core/0.12.0:
+ resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ '@types/json-schema': 7.0.15
+ dev: true
- '@eslint/core@0.9.1':
+ /@eslint/core/0.9.1:
resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ '@types/json-schema': 7.0.15
+ dev: true
- '@eslint/eslintrc@3.2.0':
- resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
+ /@eslint/eslintrc/3.3.0:
+ resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.4.0
+ espree: 10.3.0
+ globals: 14.0.0
+ ignore: 5.3.2
+ import-fresh: 3.3.1
+ js-yaml: 4.1.0
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@eslint/js@9.17.0':
+ /@eslint/js/9.17.0:
resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dev: true
- '@eslint/object-schema@2.1.5':
- resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==}
+ /@eslint/object-schema/2.1.6:
+ resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dev: true
- '@eslint/plugin-kit@0.2.5':
- resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==}
+ /@eslint/plugin-kit/0.2.7:
+ resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ '@eslint/core': 0.12.0
+ levn: 0.4.1
+ dev: true
- '@fastify/ajv-compiler@4.0.2':
+ /@fastify/ajv-compiler/4.0.2:
resolution: {integrity: sha512-Rkiu/8wIjpsf46Rr+Fitd3HRP+VsxUFDDeag0hs9L0ksfnwx2g7SPQQTFL0E8Qv+rfXzQOxBJnjUB9ITUDjfWQ==}
+ dependencies:
+ ajv: 8.17.1
+ ajv-formats: 3.0.1
+ fast-uri: 3.0.6
- '@fastify/error@4.0.0':
+ /@fastify/error/4.0.0:
resolution: {integrity: sha512-OO/SA8As24JtT1usTUTKgGH7uLvhfwZPwlptRi2Dp5P4KKmJI3gvsZ8MIHnNwDs4sLf/aai5LzTyl66xr7qMxA==}
- '@fastify/fast-json-stringify-compiler@5.0.2':
+ /@fastify/fast-json-stringify-compiler/5.0.2:
resolution: {integrity: sha512-YdR7gqlLg1xZAQa+SX4sMNzQHY5pC54fu9oC5aYSUqBhyn6fkLkrdtKlpVdCNPlwuUuXA1PjFTEmvMF6ZVXVGw==}
+ dependencies:
+ fast-json-stringify: 6.0.1
- '@fastify/merge-json-schemas@0.2.1':
+ /@fastify/merge-json-schemas/0.2.1:
resolution: {integrity: sha512-OA3KGBCy6KtIvLf8DINC5880o5iBlDX4SxzLQS8HorJAbqluzLRn80UXU0bxZn7UOFhFgpRJDasfwn9nG4FG4A==}
+ dependencies:
+ dequal: 2.0.3
- '@floating-ui/core@1.6.9':
+ /@floating-ui/core/1.6.9:
resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
+ dependencies:
+ '@floating-ui/utils': 0.2.9
+ dev: false
- '@floating-ui/dom@1.6.13':
+ /@floating-ui/dom/1.6.13:
resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
+ dependencies:
+ '@floating-ui/core': 1.6.9
+ '@floating-ui/utils': 0.2.9
+ dev: false
- '@floating-ui/react-dom@2.1.2':
+ /@floating-ui/react-dom/2.1.2_upmzqgzhjrquwzo2dphtigtdgi:
resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
+ dependencies:
+ '@floating-ui/dom': 1.6.13
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@floating-ui/utils@0.2.9':
+ /@floating-ui/utils/0.2.9:
resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
+ dev: false
- '@fontsource/fira-mono@5.0.0':
+ /@fontsource/fira-mono/5.0.0:
resolution: {integrity: sha512-IsinH/oLYJyv/sQv7SbKmjoAXZsSjm6Q1Tz5GBBXCXi3Jg9MzXmKvWm9bSLC8lFI6CDsi8GkH/DAgZ98t8bhTQ==}
+ dev: true
- '@hey-api/json-schema-ref-parser@1.0.2':
+ /@hey-api/json-schema-ref-parser/1.0.2:
resolution: {integrity: sha512-F6LSkttZcT/XiX3ydeDqTY3uRN3BLJMwyMTk4kg/ichZlKUp3+3Odv0WokSmXGSoZGTW/N66FROMYAm5NPdJlA==}
engines: {node: '>= 16'}
+ dependencies:
+ '@jsdevtools/ono': 7.1.3
+ '@types/json-schema': 7.0.15
+ js-yaml: 4.1.0
+ dev: false
- '@humanfs/core@0.19.1':
+ /@humanfs/core/0.19.1:
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
+ dev: true
- '@humanfs/node@0.16.6':
+ /@humanfs/node/0.16.6:
resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
engines: {node: '>=18.18.0'}
+ dependencies:
+ '@humanfs/core': 0.19.1
+ '@humanwhocodes/retry': 0.3.1
+ dev: true
- '@humanwhocodes/module-importer@1.0.1':
+ /@humanwhocodes/module-importer/1.0.1:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
+ dev: true
- '@humanwhocodes/retry@0.3.1':
+ /@humanwhocodes/retry/0.3.1:
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
engines: {node: '>=18.18'}
+ dev: true
- '@humanwhocodes/retry@0.4.1':
- resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
+ /@humanwhocodes/retry/0.4.2:
+ resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
engines: {node: '>=18.18'}
+ dev: true
- '@img/sharp-darwin-arm64@0.33.5':
+ /@img/sharp-darwin-arm64/0.33.5:
resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ optional: true
- '@img/sharp-darwin-x64@0.33.5':
+ /@img/sharp-darwin-x64/0.33.5:
resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ optional: true
- '@img/sharp-libvips-darwin-arm64@1.0.4':
+ /@img/sharp-libvips-darwin-arm64/1.0.4:
resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ optional: true
- '@img/sharp-libvips-darwin-x64@1.0.4':
+ /@img/sharp-libvips-darwin-x64/1.0.4:
resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ optional: true
- '@img/sharp-libvips-linux-arm64@1.0.4':
- resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
- cpu: [arm64]
- os: [linux]
-
- '@img/sharp-libvips-linux-arm@1.0.5':
+ /@img/sharp-libvips-linux-arm/1.0.5:
resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@img/sharp-libvips-linux-arm64/1.0.4:
+ resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
- '@img/sharp-libvips-linux-s390x@1.0.4':
+ /@img/sharp-libvips-linux-s390x/1.0.4:
resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
cpu: [s390x]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@img/sharp-libvips-linux-x64@1.0.4':
+ /@img/sharp-libvips-linux-x64/1.0.4:
resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ /@img/sharp-libvips-linuxmusl-arm64/1.0.4:
resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ /@img/sharp-libvips-linuxmusl-x64/1.0.4:
resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@img/sharp-linux-arm64@0.33.5':
- resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [arm64]
- os: [linux]
-
- '@img/sharp-linux-arm@0.33.5':
+ /@img/sharp-linux-arm/0.33.5:
resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm]
os: [linux]
-
- '@img/sharp-linux-s390x@0.33.5':
- resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ optional: true
+
+ /@img/sharp-linux-arm64/0.33.5:
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ optional: true
+
+ /@img/sharp-linux-s390x/0.33.5:
+ resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [s390x]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ optional: true
- '@img/sharp-linux-x64@0.33.5':
+ /@img/sharp-linux-x64/0.33.5:
resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ optional: true
- '@img/sharp-linuxmusl-arm64@0.33.5':
+ /@img/sharp-linuxmusl-arm64/0.33.5:
resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ optional: true
- '@img/sharp-linuxmusl-x64@0.33.5':
+ /@img/sharp-linuxmusl-x64/0.33.5:
resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ optional: true
- '@img/sharp-wasm32@0.33.5':
+ /@img/sharp-wasm32/0.33.5:
resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [wasm32]
+ requiresBuild: true
+ dependencies:
+ '@emnapi/runtime': 1.3.1
+ optional: true
- '@img/sharp-win32-ia32@0.33.5':
+ /@img/sharp-win32-ia32/0.33.5:
resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [ia32]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@img/sharp-win32-x64@0.33.5':
+ /@img/sharp-win32-x64/0.33.5:
resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /@inquirer/checkbox/4.1.3:
+ resolution: {integrity: sha512-KU1MGwf24iABJjGESxhyj+/rlQYSRoCfcuHDEHXfZ1DENmbuSRfyrUb+LLjHoee5TNOFKwaFxDXc5/zRwJUPMQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5
+ ansi-escapes: 4.3.2
+ yoctocolors-cjs: 2.1.2
+ dev: true
+
+ /@inquirer/checkbox/4.1.3_@types+node@22.13.10:
+ resolution: {integrity: sha512-KU1MGwf24iABJjGESxhyj+/rlQYSRoCfcuHDEHXfZ1DENmbuSRfyrUb+LLjHoee5TNOFKwaFxDXc5/zRwJUPMQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8_@types+node@22.13.10
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ ansi-escapes: 4.3.2
+ yoctocolors-cjs: 2.1.2
+ dev: true
- '@inquirer/checkbox@4.1.2':
- resolution: {integrity: sha512-PL9ixC5YsPXzXhAZFUPmkXGxfgjkdfZdPEPPmt4kFwQ4LBMDG9n/nHXYRGGZSKZJs+d1sGKWgS2GiPzVRKUdtQ==}
+ /@inquirer/confirm/5.1.6:
+ resolution: {integrity: sha512-6ZXYK3M1XmaVBZX6FCfChgtponnL0R6I7k8Nu+kaoNkT828FVZTcca1MqmWQipaW2oNREQl5AaPCUOOCVNdRMw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8
+ '@inquirer/type': 3.0.5
+ dev: true
- '@inquirer/confirm@5.1.6':
+ /@inquirer/confirm/5.1.6_@types+node@22.13.10:
resolution: {integrity: sha512-6ZXYK3M1XmaVBZX6FCfChgtponnL0R6I7k8Nu+kaoNkT828FVZTcca1MqmWQipaW2oNREQl5AaPCUOOCVNdRMw==}
engines: {node: '>=18'}
peerDependencies:
@@ -2544,66 +4143,246 @@ packages:
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8_@types+node@22.13.10
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ dev: true
+
+ /@inquirer/confirm/5.1.7:
+ resolution: {integrity: sha512-Xrfbrw9eSiHb+GsesO8TQIeHSMTP0xyvTCeeYevgZ4sKW+iz9w/47bgfG9b0niQm+xaLY2EWPBINUPldLwvYiw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8
+ '@inquirer/type': 3.0.5
+ dev: true
+
+ /@inquirer/confirm/5.1.7_@types+node@22.13.10:
+ resolution: {integrity: sha512-Xrfbrw9eSiHb+GsesO8TQIeHSMTP0xyvTCeeYevgZ4sKW+iz9w/47bgfG9b0niQm+xaLY2EWPBINUPldLwvYiw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8_@types+node@22.13.10
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ dev: true
+
+ /@inquirer/core/10.1.8:
+ resolution: {integrity: sha512-HpAqR8y715zPpM9e/9Q+N88bnGwqqL8ePgZ0SMv/s3673JLMv3bIkoivGmjPqXlEgisUksSXibweQccUwEx4qQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5
+ ansi-escapes: 4.3.2
+ cli-width: 4.1.0
+ mute-stream: 2.0.0
+ signal-exit: 4.1.0
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.2
+ dev: true
+
+ /@inquirer/core/10.1.8_@types+node@22.13.10:
+ resolution: {integrity: sha512-HpAqR8y715zPpM9e/9Q+N88bnGwqqL8ePgZ0SMv/s3673JLMv3bIkoivGmjPqXlEgisUksSXibweQccUwEx4qQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ ansi-escapes: 4.3.2
+ cli-width: 4.1.0
+ mute-stream: 2.0.0
+ signal-exit: 4.1.0
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.2
+ dev: true
+
+ /@inquirer/editor/4.2.8:
+ resolution: {integrity: sha512-UkGKbMFlQw5k4ZLjDwEi5z8NIVlP/3DAlLHta0o0pSsdpPThNmPtUL8mvGCHUaQtR+QrxR9yRYNWgKMsHkfIUA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8
+ '@inquirer/type': 3.0.5
+ external-editor: 3.1.0
+ dev: true
+
+ /@inquirer/editor/4.2.8_@types+node@22.13.10:
+ resolution: {integrity: sha512-UkGKbMFlQw5k4ZLjDwEi5z8NIVlP/3DAlLHta0o0pSsdpPThNmPtUL8mvGCHUaQtR+QrxR9yRYNWgKMsHkfIUA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8_@types+node@22.13.10
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ external-editor: 3.1.0
+ dev: true
+
+ /@inquirer/expand/4.0.10:
+ resolution: {integrity: sha512-leyBouGJ77ggv51Jb/OJmLGGnU2HYc13MZ2iiPNLwe2VgFgZPVqsrRWSa1RAHKyazjOyvSNKLD1B2K7A/iWi1g==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8
+ '@inquirer/type': 3.0.5
+ yoctocolors-cjs: 2.1.2
+ dev: true
+
+ /@inquirer/expand/4.0.10_@types+node@22.13.10:
+ resolution: {integrity: sha512-leyBouGJ77ggv51Jb/OJmLGGnU2HYc13MZ2iiPNLwe2VgFgZPVqsrRWSa1RAHKyazjOyvSNKLD1B2K7A/iWi1g==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8_@types+node@22.13.10
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ yoctocolors-cjs: 2.1.2
+ dev: true
+
+ /@inquirer/figures/1.0.11:
+ resolution: {integrity: sha512-eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw==}
+ engines: {node: '>=18'}
+ dev: true
- '@inquirer/core@10.1.7':
- resolution: {integrity: sha512-AA9CQhlrt6ZgiSy6qoAigiA1izOa751ugX6ioSjqgJ+/Gd+tEN/TORk5sUYNjXuHWfW0r1n/a6ak4u/NqHHrtA==}
+ /@inquirer/input/4.1.7:
+ resolution: {integrity: sha512-rCQAipJNA14UTH84df/z4jDJ9LZ54H6zzuCAi7WZ0qVqx3CSqLjfXAMd5cpISIxbiHVJCPRB81gZksq6CZsqDg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8
+ '@inquirer/type': 3.0.5
+ dev: true
- '@inquirer/editor@4.2.7':
- resolution: {integrity: sha512-gktCSQtnSZHaBytkJKMKEuswSk2cDBuXX5rxGFv306mwHfBPjg5UAldw9zWGoEyvA9KpRDkeM4jfrx0rXn0GyA==}
+ /@inquirer/input/4.1.7_@types+node@22.13.10:
+ resolution: {integrity: sha512-rCQAipJNA14UTH84df/z4jDJ9LZ54H6zzuCAi7WZ0qVqx3CSqLjfXAMd5cpISIxbiHVJCPRB81gZksq6CZsqDg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8_@types+node@22.13.10
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ dev: true
- '@inquirer/expand@4.0.9':
- resolution: {integrity: sha512-Xxt6nhomWTAmuSX61kVgglLjMEFGa+7+F6UUtdEUeg7fg4r9vaFttUUKrtkViYYrQBA5Ia1tkOJj2koP9BuLig==}
+ /@inquirer/number/3.0.10:
+ resolution: {integrity: sha512-GLsdnxzNefjCJUmWyjaAuNklHgDpCTL4RMllAVhVvAzBwRW9g38eZ5tWgzo1lirtSDTpsh593hqXVhxvdrjfwA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8
+ '@inquirer/type': 3.0.5
+ dev: true
- '@inquirer/figures@1.0.10':
- resolution: {integrity: sha512-Ey6176gZmeqZuY/W/nZiUyvmb1/qInjcpiZjXWi6nON+nxJpD1bxtSoBxNliGISae32n6OwbY+TSXPZ1CfS4bw==}
+ /@inquirer/number/3.0.10_@types+node@22.13.10:
+ resolution: {integrity: sha512-GLsdnxzNefjCJUmWyjaAuNklHgDpCTL4RMllAVhVvAzBwRW9g38eZ5tWgzo1lirtSDTpsh593hqXVhxvdrjfwA==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8_@types+node@22.13.10
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ dev: true
- '@inquirer/input@4.1.6':
- resolution: {integrity: sha512-1f5AIsZuVjPT4ecA8AwaxDFNHny/tSershP/cTvTDxLdiIGTeILNcKozB0LaYt6mojJLUbOYhpIxicaYf7UKIQ==}
+ /@inquirer/password/4.0.10:
+ resolution: {integrity: sha512-JC538ujqeYKkFqLoWZ0ILBteIUO2yajBMVEUZSxjl9x6fiEQtM+I5Rca7M2D8edMDbyHLnXifGH1hJZdh8V5rA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8
+ '@inquirer/type': 3.0.5
+ ansi-escapes: 4.3.2
+ dev: true
- '@inquirer/number@3.0.9':
- resolution: {integrity: sha512-iN2xZvH3tyIYXLXBvlVh0npk1q/aVuKXZo5hj+K3W3D4ngAEq/DkLpofRzx6oebTUhBvOgryZ+rMV0yImKnG3w==}
+ /@inquirer/password/4.0.10_@types+node@22.13.10:
+ resolution: {integrity: sha512-JC538ujqeYKkFqLoWZ0ILBteIUO2yajBMVEUZSxjl9x6fiEQtM+I5Rca7M2D8edMDbyHLnXifGH1hJZdh8V5rA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8_@types+node@22.13.10
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ ansi-escapes: 4.3.2
+ dev: true
- '@inquirer/password@4.0.9':
- resolution: {integrity: sha512-xBEoOw1XKb0rIN208YU7wM7oJEHhIYkfG7LpTJAEW913GZeaoQerzf5U/LSHI45EVvjAdgNXmXgH51cUXKZcJQ==}
+ /@inquirer/prompts/7.3.2:
+ resolution: {integrity: sha512-G1ytyOoHh5BphmEBxSwALin3n1KGNYB6yImbICcRQdzXfOGbuJ9Jske/Of5Sebk339NSGGNfUshnzK8YWkTPsQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/checkbox': 4.1.3
+ '@inquirer/confirm': 5.1.7
+ '@inquirer/editor': 4.2.8
+ '@inquirer/expand': 4.0.10
+ '@inquirer/input': 4.1.7
+ '@inquirer/number': 3.0.10
+ '@inquirer/password': 4.0.10
+ '@inquirer/rawlist': 4.0.10
+ '@inquirer/search': 3.0.10
+ '@inquirer/select': 4.0.10
+ dev: true
- '@inquirer/prompts@7.3.2':
+ /@inquirer/prompts/7.3.2_@types+node@22.13.10:
resolution: {integrity: sha512-G1ytyOoHh5BphmEBxSwALin3n1KGNYB6yImbICcRQdzXfOGbuJ9Jske/Of5Sebk339NSGGNfUshnzK8YWkTPsQ==}
engines: {node: '>=18'}
peerDependencies:
@@ -2611,489 +4390,1290 @@ packages:
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/checkbox': 4.1.3_@types+node@22.13.10
+ '@inquirer/confirm': 5.1.7_@types+node@22.13.10
+ '@inquirer/editor': 4.2.8_@types+node@22.13.10
+ '@inquirer/expand': 4.0.10_@types+node@22.13.10
+ '@inquirer/input': 4.1.7_@types+node@22.13.10
+ '@inquirer/number': 3.0.10_@types+node@22.13.10
+ '@inquirer/password': 4.0.10_@types+node@22.13.10
+ '@inquirer/rawlist': 4.0.10_@types+node@22.13.10
+ '@inquirer/search': 3.0.10_@types+node@22.13.10
+ '@inquirer/select': 4.0.10_@types+node@22.13.10
+ '@types/node': 22.13.10
+ dev: true
+
+ /@inquirer/rawlist/4.0.10:
+ resolution: {integrity: sha512-vOQbQkmhaCsF2bUmjoyRSZJBz77UnIF/F3ZS2LMgwbgyaG2WgwKHh0WKNj0APDB72WDbZijhW5nObQbk+TnbcA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8
+ '@inquirer/type': 3.0.5
+ yoctocolors-cjs: 2.1.2
+ dev: true
+
+ /@inquirer/rawlist/4.0.10_@types+node@22.13.10:
+ resolution: {integrity: sha512-vOQbQkmhaCsF2bUmjoyRSZJBz77UnIF/F3ZS2LMgwbgyaG2WgwKHh0WKNj0APDB72WDbZijhW5nObQbk+TnbcA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8_@types+node@22.13.10
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ yoctocolors-cjs: 2.1.2
+ dev: true
+
+ /@inquirer/search/3.0.10:
+ resolution: {integrity: sha512-EAVKAz6P1LajZOdoL+R+XC3HJYSU261fbJzO4fCkJJ7UPFcm+nP+gzC+DDZWsb2WK9PQvKsnaKiNKsY8B6dBWQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5
+ yoctocolors-cjs: 2.1.2
+ dev: true
- '@inquirer/rawlist@4.0.9':
- resolution: {integrity: sha512-+5t6ebehKqgoxV8fXwE49HkSF2Rc9ijNiVGEQZwvbMI61/Q5RcD+jWD6Gs1tKdz5lkI8GRBL31iO0HjGK1bv+A==}
+ /@inquirer/search/3.0.10_@types+node@22.13.10:
+ resolution: {integrity: sha512-EAVKAz6P1LajZOdoL+R+XC3HJYSU261fbJzO4fCkJJ7UPFcm+nP+gzC+DDZWsb2WK9PQvKsnaKiNKsY8B6dBWQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8_@types+node@22.13.10
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ yoctocolors-cjs: 2.1.2
+ dev: true
- '@inquirer/search@3.0.9':
- resolution: {integrity: sha512-DWmKztkYo9CvldGBaRMr0ETUHgR86zE6sPDVOHsqz4ISe9o1LuiWfgJk+2r75acFclA93J/lqzhT0dTjCzHuoA==}
+ /@inquirer/select/4.0.10:
+ resolution: {integrity: sha512-Tg8S9nESnCfISu5tCZSuXpXq0wHuDVimj7xyHstABgR34zcJnLdq/VbjB2mdZvNAMAehYBnNzSjxB06UE8LLAA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5
+ ansi-escapes: 4.3.2
+ yoctocolors-cjs: 2.1.2
+ dev: true
- '@inquirer/select@4.0.9':
- resolution: {integrity: sha512-BpJyJe7Dkhv2kz7yG7bPSbJLQuu/rqyNlF1CfiiFeFwouegfH+zh13KDyt6+d9DwucKo7hqM3wKLLyJxZMO+Xg==}
+ /@inquirer/select/4.0.10_@types+node@22.13.10:
+ resolution: {integrity: sha512-Tg8S9nESnCfISu5tCZSuXpXq0wHuDVimj7xyHstABgR34zcJnLdq/VbjB2mdZvNAMAehYBnNzSjxB06UE8LLAA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@inquirer/core': 10.1.8_@types+node@22.13.10
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5_@types+node@22.13.10
+ '@types/node': 22.13.10
+ ansi-escapes: 4.3.2
+ yoctocolors-cjs: 2.1.2
+ dev: true
- '@inquirer/type@1.5.5':
+ /@inquirer/type/1.5.5:
resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==}
engines: {node: '>=18'}
+ dependencies:
+ mute-stream: 1.0.0
+ dev: true
+
+ /@inquirer/type/3.0.5:
+ resolution: {integrity: sha512-ZJpeIYYueOz/i/ONzrfof8g89kNdO2hjGuvULROo3O8rlB2CRtSseE5KeirnyE4t/thAn/EwvS/vuQeJCn+NZg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dev: true
- '@inquirer/type@3.0.4':
- resolution: {integrity: sha512-2MNFrDY8jkFYc9Il9DgLsHhMzuHnOYM1+CUYVWbzu9oT0hC7V7EcYvdCKeoll/Fcci04A+ERZ9wcc7cQ8lTkIA==}
+ /@inquirer/type/3.0.5_@types+node@22.13.10:
+ resolution: {integrity: sha512-ZJpeIYYueOz/i/ONzrfof8g89kNdO2hjGuvULROo3O8rlB2CRtSseE5KeirnyE4t/thAn/EwvS/vuQeJCn+NZg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
+ dependencies:
+ '@types/node': 22.13.10
+ dev: true
- '@ioredis/commands@1.2.0':
+ /@ioredis/commands/1.2.0:
resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
- '@isaacs/cliui@8.0.2':
+ /@isaacs/cliui/8.0.2:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
+ dependencies:
+ string-width: 5.1.2
+ string-width-cjs: /string-width/4.2.3
+ strip-ansi: 7.1.0
+ strip-ansi-cjs: /strip-ansi/6.0.1
+ wrap-ansi: 8.1.0
+ wrap-ansi-cjs: /wrap-ansi/7.0.0
- '@isaacs/fs-minipass@4.0.1':
+ /@isaacs/fs-minipass/4.0.1:
resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
engines: {node: '>=18.0.0'}
+ dependencies:
+ minipass: 7.1.2
- '@istanbuljs/schema@0.1.3':
+ /@istanbuljs/schema/0.1.3:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
+ dev: true
- '@jest/schemas@29.6.3':
+ /@jest/schemas/29.6.3:
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@sinclair/typebox': 0.27.8
+ dev: true
- '@jridgewell/gen-mapping@0.3.8':
+ /@jridgewell/gen-mapping/0.3.8:
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/set-array': 1.2.1
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/trace-mapping': 0.3.25
- '@jridgewell/resolve-uri@3.1.2':
+ /@jridgewell/resolve-uri/3.1.2:
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- '@jridgewell/set-array@1.2.1':
+ /@jridgewell/set-array/1.2.1:
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
- '@jridgewell/source-map@0.3.6':
+ /@jridgewell/source-map/0.3.6:
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/trace-mapping': 0.3.25
- '@jridgewell/sourcemap-codec@1.5.0':
+ /@jridgewell/sourcemap-codec/1.5.0:
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
- '@jridgewell/trace-mapping@0.3.25':
+ /@jridgewell/trace-mapping/0.3.25:
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping@0.3.9':
+ /@jridgewell/trace-mapping/0.3.9:
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.0
+ dev: true
- '@jsdevtools/ono@7.1.3':
+ /@jsdevtools/ono/7.1.3:
resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==}
+ dev: false
- '@jsonjoy.com/base64@1.1.2':
+ /@jsonjoy.com/base64/1.1.2_tslib@2.8.1:
resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
+ dependencies:
+ tslib: 2.8.1
+ dev: true
- '@jsonjoy.com/json-pack@1.1.1':
+ /@jsonjoy.com/json-pack/1.1.1_tslib@2.8.1:
resolution: {integrity: sha512-osjeBqMJ2lb/j/M8NCPjs1ylqWIcTRTycIhVB5pt6LgzgeRSb0YRZ7j9RfA8wIUrsr/medIuhVyonXRZWLyfdw==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
+ dependencies:
+ '@jsonjoy.com/base64': 1.1.2_tslib@2.8.1
+ '@jsonjoy.com/util': 1.5.0_tslib@2.8.1
+ hyperdyperid: 1.2.0
+ thingies: 1.21.0_tslib@2.8.1
+ tslib: 2.8.1
+ dev: true
- '@jsonjoy.com/util@1.5.0':
+ /@jsonjoy.com/util/1.5.0_tslib@2.8.1:
resolution: {integrity: sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
+ dependencies:
+ tslib: 2.8.1
+ dev: true
- '@kwsites/file-exists@1.1.1':
+ /@kwsites/file-exists/1.1.1:
resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==}
+ dependencies:
+ debug: 4.4.0
+ transitivePeerDependencies:
+ - supports-color
- '@kwsites/promise-deferred@1.1.1':
+ /@kwsites/promise-deferred/1.1.1:
resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==}
- '@leichtgewicht/ip-codec@2.0.5':
+ /@leichtgewicht/ip-codec/2.0.5:
resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
+ dev: true
- '@listr2/prompt-adapter-inquirer@2.0.18':
+ /@listr2/prompt-adapter-inquirer/2.0.18_@inquirer+prompts@7.3.2:
resolution: {integrity: sha512-0hz44rAcrphyXcA8IS7EJ2SCoaBZD2u5goE8S/e+q/DL+dOGpqpcLidVOFeLG3VgML62SXmfRLAhWt0zL1oW4Q==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@inquirer/prompts': '>= 3 < 8'
+ dependencies:
+ '@inquirer/prompts': 7.3.2_@types+node@22.13.10
+ '@inquirer/type': 1.5.5
+ dev: true
- '@lmdb/lmdb-darwin-arm64@3.2.6':
+ /@lmdb/lmdb-darwin-arm64/3.2.6:
resolution: {integrity: sha512-yF/ih9EJJZc72psFQbwnn8mExIWfTnzWJg+N02hnpXtDPETYLmQswIMBn7+V88lfCaFrMozJsUvcEQIkEPU0Gg==}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@lmdb/lmdb-darwin-x64@3.2.6':
+ /@lmdb/lmdb-darwin-x64/3.2.6:
resolution: {integrity: sha512-5BbCumsFLbCi586Bb1lTWQFkekdQUw8/t8cy++Uq251cl3hbDIGEwD9HAwh8H6IS2F6QA9KdKmO136LmipRNkg==}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@lmdb/lmdb-linux-arm64@3.2.6':
- resolution: {integrity: sha512-l5VmJamJ3nyMmeD1ANBQCQqy7do1ESaJQfKPSm2IG9/ADZryptTyCj8N6QaYgIWewqNUrcbdMkJajRQAt5Qjfg==}
- cpu: [arm64]
- os: [linux]
-
- '@lmdb/lmdb-linux-arm@3.2.6':
+ /@lmdb/lmdb-linux-arm/3.2.6:
resolution: {integrity: sha512-+6XgLpMb7HBoWxXj+bLbiiB4s0mRRcDPElnRS3LpWRzdYSe+gFk5MT/4RrVNqd2MESUDmb53NUXw1+BP69bjiQ==}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@lmdb/lmdb-linux-arm64/3.2.6:
+ resolution: {integrity: sha512-l5VmJamJ3nyMmeD1ANBQCQqy7do1ESaJQfKPSm2IG9/ADZryptTyCj8N6QaYgIWewqNUrcbdMkJajRQAt5Qjfg==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@lmdb/lmdb-linux-x64@3.2.6':
+ /@lmdb/lmdb-linux-x64/3.2.6:
resolution: {integrity: sha512-nDYT8qN9si5+onHYYaI4DiauDMx24OAiuZAUsEqrDy+ja/3EbpXPX/VAkMV8AEaQhy3xc4dRC+KcYIvOFefJ4Q==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@lmdb/lmdb-win32-x64@3.2.6':
+ /@lmdb/lmdb-win32-x64/3.2.6:
resolution: {integrity: sha512-XlqVtILonQnG+9fH2N3Aytria7P/1fwDgDhl29rde96uH2sLB8CHORIf2PfuLVzFQJ7Uqp8py9AYwr3ZUCFfWg==}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@manypkg/find-root@1.1.0':
+ /@manypkg/find-root/1.1.0:
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
+ dependencies:
+ '@babel/runtime': 7.26.9
+ '@types/node': 12.20.55
+ find-up: 4.1.0
+ fs-extra: 8.1.0
+ dev: true
- '@manypkg/get-packages@1.1.3':
+ /@manypkg/get-packages/1.1.3:
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
+ dependencies:
+ '@babel/runtime': 7.26.9
+ '@changesets/types': 4.1.0
+ '@manypkg/find-root': 1.1.0
+ fs-extra: 8.1.0
+ globby: 11.1.0
+ read-yaml-file: 1.1.0
+ dev: true
- '@mapbox/node-pre-gyp@2.0.0':
+ /@mapbox/node-pre-gyp/2.0.0:
resolution: {integrity: sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==}
engines: {node: '>=18'}
hasBin: true
-
- '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
- resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==}
+ dependencies:
+ consola: 3.4.0
+ detect-libc: 2.0.3
+ https-proxy-agent: 7.0.6
+ node-fetch: 2.7.0
+ nopt: 8.1.0
+ semver: 7.7.1
+ tar: 7.4.3
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ /@msgpackr-extract/msgpackr-extract-darwin-arm64/3.0.3:
+ resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
+ /@msgpackr-extract/msgpackr-extract-darwin-x64/3.0.3:
resolution: {integrity: sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
- resolution: {integrity: sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==}
- cpu: [arm64]
- os: [linux]
-
- '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
+ /@msgpackr-extract/msgpackr-extract-linux-arm/3.0.3:
resolution: {integrity: sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@msgpackr-extract/msgpackr-extract-linux-arm64/3.0.3:
+ resolution: {integrity: sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
+ /@msgpackr-extract/msgpackr-extract-linux-x64/3.0.3:
resolution: {integrity: sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
+ /@msgpackr-extract/msgpackr-extract-win32-x64/3.0.3:
resolution: {integrity: sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-android-arm-eabi@1.0.1':
+ /@napi-rs/nice-android-arm-eabi/1.0.1:
resolution: {integrity: sha512-5qpvOu5IGwDo7MEKVqqyAxF90I6aLj4n07OzpARdgDRfz8UbBztTByBp0RC59r3J1Ij8uzYi6jI7r5Lws7nn6w==}
engines: {node: '>= 10'}
cpu: [arm]
os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-android-arm64@1.0.1':
+ /@napi-rs/nice-android-arm64/1.0.1:
resolution: {integrity: sha512-GqvXL0P8fZ+mQqG1g0o4AO9hJjQaeYG84FRfZaYjyJtZZZcMjXW5TwkL8Y8UApheJgyE13TQ4YNUssQaTgTyvA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-darwin-arm64@1.0.1':
+ /@napi-rs/nice-darwin-arm64/1.0.1:
resolution: {integrity: sha512-91k3HEqUl2fsrz/sKkuEkscj6EAj3/eZNCLqzD2AA0TtVbkQi8nqxZCZDMkfklULmxLkMxuUdKe7RvG/T6s2AA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-darwin-x64@1.0.1':
+ /@napi-rs/nice-darwin-x64/1.0.1:
resolution: {integrity: sha512-jXnMleYSIR/+TAN/p5u+NkCA7yidgswx5ftqzXdD5wgy/hNR92oerTXHc0jrlBisbd7DpzoaGY4cFD7Sm5GlgQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-freebsd-x64@1.0.1':
+ /@napi-rs/nice-freebsd-x64/1.0.1:
resolution: {integrity: sha512-j+iJ/ezONXRQsVIB/FJfwjeQXX7A2tf3gEXs4WUGFrJjpe/z2KB7sOv6zpkm08PofF36C9S7wTNuzHZ/Iiccfw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-linux-arm-gnueabihf@1.0.1':
+ /@napi-rs/nice-linux-arm-gnueabihf/1.0.1:
resolution: {integrity: sha512-G8RgJ8FYXYkkSGQwywAUh84m946UTn6l03/vmEXBYNJxQJcD+I3B3k5jmjFG/OPiU8DfvxutOP8bi+F89MCV7Q==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-linux-arm64-gnu@1.0.1':
+ /@napi-rs/nice-linux-arm64-gnu/1.0.1:
resolution: {integrity: sha512-IMDak59/W5JSab1oZvmNbrms3mHqcreaCeClUjwlwDr0m3BoR09ZiN8cKFBzuSlXgRdZ4PNqCYNeGQv7YMTjuA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-linux-arm64-musl@1.0.1':
+ /@napi-rs/nice-linux-arm64-musl/1.0.1:
resolution: {integrity: sha512-wG8fa2VKuWM4CfjOjjRX9YLIbysSVV1S3Kgm2Fnc67ap/soHBeYZa6AGMeR5BJAylYRjnoVOzV19Cmkco3QEPw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-linux-ppc64-gnu@1.0.1':
+ /@napi-rs/nice-linux-ppc64-gnu/1.0.1:
resolution: {integrity: sha512-lxQ9WrBf0IlNTCA9oS2jg/iAjQyTI6JHzABV664LLrLA/SIdD+I1i3Mjf7TsnoUbgopBcCuDztVLfJ0q9ubf6Q==}
engines: {node: '>= 10'}
cpu: [ppc64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-linux-riscv64-gnu@1.0.1':
+ /@napi-rs/nice-linux-riscv64-gnu/1.0.1:
resolution: {integrity: sha512-3xs69dO8WSWBb13KBVex+yvxmUeEsdWexxibqskzoKaWx9AIqkMbWmE2npkazJoopPKX2ULKd8Fm9veEn0g4Ig==}
engines: {node: '>= 10'}
cpu: [riscv64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-linux-s390x-gnu@1.0.1':
+ /@napi-rs/nice-linux-s390x-gnu/1.0.1:
resolution: {integrity: sha512-lMFI3i9rlW7hgToyAzTaEybQYGbQHDrpRkg+1gJWEpH0PLAQoZ8jiY0IzakLfNWnVda1eTYYlxxFYzW8Rqczkg==}
engines: {node: '>= 10'}
cpu: [s390x]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-linux-x64-gnu@1.0.1':
+ /@napi-rs/nice-linux-x64-gnu/1.0.1:
resolution: {integrity: sha512-XQAJs7DRN2GpLN6Fb+ZdGFeYZDdGl2Fn3TmFlqEL5JorgWKrQGRUrpGKbgZ25UeZPILuTKJ+OowG2avN8mThBA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-linux-x64-musl@1.0.1':
+ /@napi-rs/nice-linux-x64-musl/1.0.1:
resolution: {integrity: sha512-/rodHpRSgiI9o1faq9SZOp/o2QkKQg7T+DK0R5AkbnI/YxvAIEHf2cngjYzLMQSQgUhxym+LFr+UGZx4vK4QdQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-win32-arm64-msvc@1.0.1':
+ /@napi-rs/nice-win32-arm64-msvc/1.0.1:
resolution: {integrity: sha512-rEcz9vZymaCB3OqEXoHnp9YViLct8ugF+6uO5McifTedjq4QMQs3DHz35xBEGhH3gJWEsXMUbzazkz5KNM5YUg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-win32-ia32-msvc@1.0.1':
+ /@napi-rs/nice-win32-ia32-msvc/1.0.1:
resolution: {integrity: sha512-t7eBAyPUrWL8su3gDxw9xxxqNwZzAqKo0Szv3IjVQd1GpXXVkb6vBBQUuxfIYaXMzZLwlxRQ7uzM2vdUE9ULGw==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice-win32-x64-msvc@1.0.1':
+ /@napi-rs/nice-win32-x64-msvc/1.0.1:
resolution: {integrity: sha512-JlF+uDcatt3St2ntBG8H02F1mM45i5SF9W+bIKiReVE6wiy3o16oBP/yxt+RZ+N6LbCImJXJ6bXNO2kn9AXicg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@napi-rs/nice@1.0.1':
+ /@napi-rs/nice/1.0.1:
resolution: {integrity: sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ==}
engines: {node: '>= 10'}
+ requiresBuild: true
+ optionalDependencies:
+ '@napi-rs/nice-android-arm-eabi': 1.0.1
+ '@napi-rs/nice-android-arm64': 1.0.1
+ '@napi-rs/nice-darwin-arm64': 1.0.1
+ '@napi-rs/nice-darwin-x64': 1.0.1
+ '@napi-rs/nice-freebsd-x64': 1.0.1
+ '@napi-rs/nice-linux-arm-gnueabihf': 1.0.1
+ '@napi-rs/nice-linux-arm64-gnu': 1.0.1
+ '@napi-rs/nice-linux-arm64-musl': 1.0.1
+ '@napi-rs/nice-linux-ppc64-gnu': 1.0.1
+ '@napi-rs/nice-linux-riscv64-gnu': 1.0.1
+ '@napi-rs/nice-linux-s390x-gnu': 1.0.1
+ '@napi-rs/nice-linux-x64-gnu': 1.0.1
+ '@napi-rs/nice-linux-x64-musl': 1.0.1
+ '@napi-rs/nice-win32-arm64-msvc': 1.0.1
+ '@napi-rs/nice-win32-ia32-msvc': 1.0.1
+ '@napi-rs/nice-win32-x64-msvc': 1.0.1
+ dev: true
+ optional: true
+
+ /@napi-rs/wasm-runtime/0.2.7:
+ resolution: {integrity: sha512-5yximcFK5FNompXfJFoWanu5l8v1hNGqNHh9du1xETp9HWk/B/PzvchX55WYOPaIeNglG8++68AAiauBAtbnzw==}
+ requiresBuild: true
+ dependencies:
+ '@emnapi/core': 1.3.1
+ '@emnapi/runtime': 1.3.1
+ '@tybys/wasm-util': 0.9.0
+ dev: false
+ optional: true
- '@neoconfetti/svelte@2.0.0':
+ /@neoconfetti/svelte/2.0.0:
resolution: {integrity: sha512-n/Uu7/XmHc8w0uBci0QWBjgbRzLhfWsH8yPJ5pMaseIvzSwabXvB30nb3JjzEYNBp9uGt4eCeY7LUmxAjnJV8A==}
+ dev: true
- '@netlify/functions@2.8.2':
- resolution: {integrity: sha512-DeoAQh8LuNPvBE4qsKlezjKj0PyXDryOFJfJKo3Z1qZLKzQ21sT314KQKPVjfvw6knqijj+IO+0kHXy/TJiqNA==}
- engines: {node: '>=14.0.0'}
+ /@netlify/functions/3.0.0:
+ resolution: {integrity: sha512-XXf9mNw4+fkxUzukDpJtzc32bl1+YlXZwEhc5ZgMcTbJPLpgRLDs5WWSPJ4eY/Mv1ZFvtxmMwmfgoQYVt68Qog==}
+ engines: {node: '>=18.0.0'}
+ dependencies:
+ '@netlify/serverless-functions-api': 1.30.1
- '@netlify/node-cookies@0.1.0':
+ /@netlify/node-cookies/0.1.0:
resolution: {integrity: sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==}
engines: {node: ^14.16.0 || >=16.0.0}
- '@netlify/serverless-functions-api@1.26.1':
- resolution: {integrity: sha512-q3L9i3HoNfz0SGpTIS4zTcKBbRkxzCRpd169eyiTuk3IwcPC3/85mzLHranlKo2b+HYT0gu37YxGB45aD8A3Tw==}
+ /@netlify/serverless-functions-api/1.30.1:
+ resolution: {integrity: sha512-JkbaWFeydQdeDHz1mAy4rw+E3bl9YtbCgkntfTxq+IlNX/aIMv2/b1kZnQZcil4/sPoZGL831Dq6E374qRpU1A==}
engines: {node: '>=18.0.0'}
+ dependencies:
+ '@netlify/node-cookies': 0.1.0
+ urlpattern-polyfill: 8.0.2
- '@next/env@15.1.6':
+ /@next/env/15.1.6:
resolution: {integrity: sha512-d9AFQVPEYNr+aqokIiPLNK/MTyt3DWa/dpKveiAaVccUadFbhFEvY6FXYX2LJO2Hv7PHnLBu2oWwB4uBuHjr/w==}
+ dev: false
- '@next/eslint-plugin-next@15.1.6':
+ /@next/eslint-plugin-next/15.1.6:
resolution: {integrity: sha512-+slMxhTgILUntZDGNgsKEYHUvpn72WP1YTlkmEhS51vnVd7S9jEEy0n9YAMcI21vUG4akTw9voWH02lrClt/yw==}
+ dependencies:
+ fast-glob: 3.3.1
+ dev: true
- '@next/swc-darwin-arm64@15.1.6':
+ /@next/swc-darwin-arm64/15.1.6:
resolution: {integrity: sha512-u7lg4Mpl9qWpKgy6NzEkz/w0/keEHtOybmIl0ykgItBxEM5mYotS5PmqTpo+Rhg8FiOiWgwr8USxmKQkqLBCrw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-darwin-x64@15.1.6':
+ /@next/swc-darwin-x64/15.1.6:
resolution: {integrity: sha512-x1jGpbHbZoZ69nRuogGL2MYPLqohlhnT9OCU6E6QFewwup+z+M6r8oU47BTeJcWsF2sdBahp5cKiAcDbwwK/lg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-linux-arm64-gnu@15.1.6':
+ /@next/swc-linux-arm64-gnu/15.1.6:
resolution: {integrity: sha512-jar9sFw0XewXsBzPf9runGzoivajeWJUc/JkfbLTC4it9EhU8v7tCRLH7l5Y1ReTMN6zKJO0kKAGqDk8YSO2bg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-linux-arm64-musl@15.1.6':
+ /@next/swc-linux-arm64-musl/15.1.6:
resolution: {integrity: sha512-+n3u//bfsrIaZch4cgOJ3tXCTbSxz0s6brJtU3SzLOvkJlPQMJ+eHVRi6qM2kKKKLuMY+tcau8XD9CJ1OjeSQQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-linux-x64-gnu@15.1.6':
+ /@next/swc-linux-x64-gnu/15.1.6:
resolution: {integrity: sha512-SpuDEXixM3PycniL4iVCLyUyvcl6Lt0mtv3am08sucskpG0tYkW1KlRhTgj4LI5ehyxriVVcfdoxuuP8csi3kQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-linux-x64-musl@15.1.6':
+ /@next/swc-linux-x64-musl/15.1.6:
resolution: {integrity: sha512-L4druWmdFSZIIRhF+G60API5sFB7suTbDRhYWSjiw0RbE+15igQvE2g2+S973pMGvwN3guw7cJUjA/TmbPWTHQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-win32-arm64-msvc@15.1.6':
+ /@next/swc-win32-arm64-msvc/15.1.6:
resolution: {integrity: sha512-s8w6EeqNmi6gdvM19tqKKWbCyOBvXFbndkGHl+c9YrzsLARRdCHsD9S1fMj8gsXm9v8vhC8s3N8rjuC/XrtkEg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-win32-x64-msvc@15.1.6':
+ /@next/swc-win32-x64-msvc/15.1.6:
resolution: {integrity: sha512-6xomMuu54FAFxttYr5PJbEfu96godcxBTRk1OhAvJq0/EnmFU/Ybiax30Snis4vdWZ9LGpf7Roy5fSs7v/5ROQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@ngtools/webpack@19.2.0':
+ /@ngtools/webpack/19.2.0_i65f5ivnszhmjgy6wkusvxxd4i:
resolution: {integrity: sha512-63/8ys3bNK2h7Py/dKHZ4ZClxQz6xuz3skUgLZIMs9O076KPsHTKDKEDG2oicmwe/nOXjVt6n9Z4wprFaRLbvw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
'@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0
typescript: '>=5.5 <5.9'
webpack: ^5.54.0
+ dependencies:
+ '@angular/compiler-cli': 19.2.0_w2w2t63mjpx5wmltkoetyqksa4
+ typescript: 5.5.3
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
+
+ /@ngtools/webpack/19.2.1_3aqooojspjxulucedfvoyd7exm:
+ resolution: {integrity: sha512-K8b3+eCG+Iz0EXTE/UDuXabr6yOL9NP6sW1CLk9AUdUUnL4AhoQy/vjfaOtxZx1T8qEErAWizJ51dHD25ysXHw==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ '@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0
+ typescript: '>=5.5 <5.9'
+ webpack: ^5.54.0
+ dependencies:
+ '@angular/compiler-cli': 19.2.1_gvbyqgimgk2h6nc52mo4mq53z4
+ typescript: 5.5.3
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
- '@nodelib/fs.scandir@2.1.5':
+ /@nodelib/fs.scandir/2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ run-parallel: 1.2.0
- '@nodelib/fs.stat@2.0.5':
+ /@nodelib/fs.stat/2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- '@nodelib/fs.walk@1.2.8':
+ /@nodelib/fs.walk/1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
+ dependencies:
+ '@nodelib/fs.scandir': 2.1.5
+ fastq: 1.19.1
- '@nolyfill/is-core-module@1.0.39':
+ /@nolyfill/is-core-module/1.0.39:
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
+ dev: true
- '@npmcli/agent@3.0.0':
+ /@npmcli/agent/3.0.0:
resolution: {integrity: sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ agent-base: 7.1.3
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
+ lru-cache: 10.4.3
+ socks-proxy-agent: 8.0.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@npmcli/fs@4.0.0':
+ /@npmcli/fs/4.0.0:
resolution: {integrity: sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ semver: 7.7.1
+ dev: true
- '@npmcli/git@6.0.3':
+ /@npmcli/git/6.0.3:
resolution: {integrity: sha512-GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ '@npmcli/promise-spawn': 8.0.2
+ ini: 5.0.0
+ lru-cache: 10.4.3
+ npm-pick-manifest: 10.0.0
+ proc-log: 5.0.0
+ promise-retry: 2.0.1
+ semver: 7.7.1
+ which: 5.0.0
+ dev: true
- '@npmcli/installed-package-contents@3.0.0':
+ /@npmcli/installed-package-contents/3.0.0:
resolution: {integrity: sha512-fkxoPuFGvxyrH+OQzyTkX2LUEamrF4jZSmxjAtPPHHGO0dqsQ8tTKjnIS8SAnPHdk2I03BDtSMR5K/4loKg79Q==}
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
+ dependencies:
+ npm-bundled: 4.0.0
+ npm-normalize-package-bin: 4.0.0
+ dev: true
- '@npmcli/node-gyp@4.0.0':
+ /@npmcli/node-gyp/4.0.0:
resolution: {integrity: sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dev: true
- '@npmcli/package-json@6.1.1':
+ /@npmcli/package-json/6.1.1:
resolution: {integrity: sha512-d5qimadRAUCO4A/Txw71VM7UrRZzV+NPclxz/dc+M6B2oYwjWTjqh8HA/sGQgs9VZuJ6I/P7XIAlJvgrl27ZOw==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ '@npmcli/git': 6.0.3
+ glob: 10.4.5
+ hosted-git-info: 8.0.2
+ json-parse-even-better-errors: 4.0.0
+ proc-log: 5.0.0
+ semver: 7.7.1
+ validate-npm-package-license: 3.0.4
+ dev: true
- '@npmcli/promise-spawn@8.0.2':
+ /@npmcli/promise-spawn/8.0.2:
resolution: {integrity: sha512-/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ which: 5.0.0
+ dev: true
- '@npmcli/redact@3.1.1':
+ /@npmcli/redact/3.1.1:
resolution: {integrity: sha512-3Hc2KGIkrvJWJqTbvueXzBeZlmvoOxc2jyX00yzr3+sNFquJg0N8hH4SAPLPVrkWIRQICVpVgjrss971awXVnA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dev: true
- '@npmcli/run-script@9.0.2':
- resolution: {integrity: sha512-cJXiUlycdizQwvqE1iaAb4VRUM3RX09/8q46zjvy+ct9GhfZRWd7jXYVc1tn/CfRlGPVkX/u4sstRlepsm7hfw==}
+ /@npmcli/run-script/9.1.0:
+ resolution: {integrity: sha512-aoNSbxtkePXUlbZB+anS1LqsJdctG5n3UVhfU47+CDdwMi6uNTBMF9gPcQRnqghQd2FGzcwwIFBruFMxjhBewg==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ '@npmcli/node-gyp': 4.0.0
+ '@npmcli/package-json': 6.1.1
+ '@npmcli/promise-spawn': 8.0.2
+ node-gyp: 11.1.0
+ proc-log: 5.0.0
+ which: 5.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@nuxt/cli/3.22.5:
+ resolution: {integrity: sha512-vNwmNBQb/T062MxUEqrtSOTvxFHOwSWjzUQSnjUxSqfOrGap/ljx9toT/HngTs1zRHSOBvBz8lxrSju+F/806Q==}
+ engines: {node: ^16.10.0 || >=18.0.0}
+ hasBin: true
+ dependencies:
+ c12: 3.0.2
+ chokidar: 4.0.3
+ citty: 0.1.6
+ clipboardy: 4.0.0
+ consola: 3.4.0
+ defu: 6.1.4
+ fuse.js: 7.1.0
+ giget: 2.0.0
+ h3: 1.15.1
+ httpxy: 0.1.7
+ jiti: 2.4.2
+ listhen: 1.9.0
+ nypm: 0.6.0
+ ofetch: 1.4.1
+ ohash: 2.0.11
+ pathe: 2.0.3
+ perfect-debounce: 1.0.0
+ pkg-types: 2.1.0
+ scule: 1.3.0
+ semver: 7.7.1
+ std-env: 3.8.1
+ tinyexec: 0.3.2
+ ufo: 1.5.4
+ transitivePeerDependencies:
+ - magicast
+ dev: false
- '@nuxt/devalue@2.0.2':
+ /@nuxt/devalue/2.0.2:
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
- '@nuxt/devtools-kit@1.7.0':
+ /@nuxt/devtools-kit/1.7.0_magicast@0.3.5+vite@6.0.9:
+ resolution: {integrity: sha512-+NgZ2uP5BuneqvQbe7EdOEaFEDy8762c99pLABtn7/Ur0ExEsQJMP7pYjjoTfKubhBqecr5Vo9yHkPBj1eHulQ==}
+ peerDependencies:
+ vite: '*'
+ dependencies:
+ '@nuxt/kit': 3.16.0_magicast@0.3.5
+ '@nuxt/schema': 3.16.0
+ execa: 7.2.0
+ vite: 6.0.9
+ transitivePeerDependencies:
+ - magicast
+ dev: false
+
+ /@nuxt/devtools-kit/1.7.0_magicast@0.3.5+vite@6.2.1:
resolution: {integrity: sha512-+NgZ2uP5BuneqvQbe7EdOEaFEDy8762c99pLABtn7/Ur0ExEsQJMP7pYjjoTfKubhBqecr5Vo9yHkPBj1eHulQ==}
peerDependencies:
vite: '*'
+ dependencies:
+ '@nuxt/kit': 3.16.0_magicast@0.3.5
+ '@nuxt/schema': 3.16.0
+ execa: 7.2.0
+ vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
+ transitivePeerDependencies:
+ - magicast
+ dev: true
+
+ /@nuxt/devtools-kit/2.2.1_magicast@0.3.5+vite@6.0.9:
+ resolution: {integrity: sha512-6txRZPOs+YmiuqjaqZy0rls0CjcmNaJPMITZsLS3hTfKAsKOEMslPjgr0jnf4fpFujmkxFZc10txYlG24JZCAA==}
+ peerDependencies:
+ vite: '>=6.0'
+ dependencies:
+ '@nuxt/kit': 3.16.0_magicast@0.3.5
+ '@nuxt/schema': 3.16.0
+ execa: 9.5.2
+ vite: 6.0.9_jiti@2.4.2
+ transitivePeerDependencies:
+ - magicast
+ dev: false
- '@nuxt/devtools-wizard@1.7.0':
+ /@nuxt/devtools-wizard/1.7.0:
resolution: {integrity: sha512-86Gd92uEw0Dh2ErIYT9TMIrMOISE96fCRN4rxeryTvyiowQOsyrbkCeMNYrEehoRL+lohoyK6iDmFajadPNwWQ==}
hasBin: true
+ dependencies:
+ consola: 3.4.0
+ diff: 7.0.0
+ execa: 7.2.0
+ global-directory: 4.0.1
+ magicast: 0.3.5
+ pathe: 1.1.2
+ pkg-types: 1.3.1
+ prompts: 2.4.2
+ rc9: 2.1.2
+ semver: 7.7.1
+
+ /@nuxt/devtools-wizard/2.2.1:
+ resolution: {integrity: sha512-tJGIwFxwIOsDdpefnSPhiVJEjBC5Kr88EORV6PRYVQRPZThiO8if5UM0qhhkwoDYJ5U21nZpyIzKuCQ6svo9vA==}
+ hasBin: true
+ dependencies:
+ consola: 3.4.0
+ diff: 7.0.0
+ execa: 9.5.2
+ magicast: 0.3.5
+ pathe: 2.0.3
+ pkg-types: 2.1.0
+ prompts: 2.4.2
+ semver: 7.7.1
+ dev: false
- '@nuxt/devtools@1.7.0':
+ /@nuxt/devtools/1.7.0_gx3eanpxyarstd2l5jyn7akntm:
resolution: {integrity: sha512-uvnjt5Zowkz7tZmnks2cGreg1XZIiSyVzQ2MYiRXACodlXcwJ0dpUS3WTxu8BR562K+772oRdvKie9AQlyZUgg==}
hasBin: true
peerDependencies:
vite: '*'
+ dependencies:
+ '@antfu/utils': 0.7.10
+ '@nuxt/devtools-kit': 1.7.0_magicast@0.3.5+vite@6.2.1
+ '@nuxt/devtools-wizard': 1.7.0
+ '@nuxt/kit': 3.16.0_magicast@0.3.5
+ '@vue/devtools-core': 7.6.8_vite@6.2.1+vue@3.5.13
+ '@vue/devtools-kit': 7.6.8
+ birpc: 0.2.19
+ consola: 3.4.0
+ cronstrue: 2.56.0
+ destr: 2.0.3
+ error-stack-parser-es: 0.1.5
+ execa: 7.2.0
+ fast-npm-meta: 0.2.2
+ flatted: 3.3.3
+ get-port-please: 3.1.2
+ hookable: 5.5.3
+ image-meta: 0.2.1
+ is-installed-globally: 1.0.0
+ launch-editor: 2.10.0
+ local-pkg: 0.5.1
+ magicast: 0.3.5
+ nypm: 0.4.1
+ ohash: 1.1.6
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.3.1
+ rc9: 2.1.2
+ scule: 1.3.0
+ semver: 7.7.1
+ simple-git: 3.27.0
+ sirv: 3.0.1
+ tinyglobby: 0.2.12
+ unimport: 3.14.6_rollup@4.35.0
+ vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
+ vite-plugin-inspect: 0.8.9_b3axkq6gua4lp3ft5va6c2wj3y
+ vite-plugin-vue-inspector: 5.3.1_vite@6.2.1
+ which: 3.0.1
+ ws: 8.18.1
+ transitivePeerDependencies:
+ - bufferutil
+ - rollup
+ - supports-color
+ - utf-8-validate
+ - vue
+ dev: true
- '@nuxt/kit@3.14.1592':
- resolution: {integrity: sha512-r9r8bISBBisvfcNgNL3dSIQHSBe0v5YkX5zwNblIC2T0CIEgxEVoM5rq9O5wqgb5OEydsHTtT2hL57vdv6VT2w==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
- '@nuxt/kit@3.15.4':
- resolution: {integrity: sha512-dr7I7eZOoRLl4uxdxeL2dQsH0OrbEiVPIyBHnBpA4co24CBnoJoF+JINuP9l3PAM3IhUzc5JIVq3/YY3lEc3Hw==}
- engines: {node: '>=18.12.0'}
-
- '@nuxt/schema@3.14.1592':
- resolution: {integrity: sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
- '@nuxt/schema@3.15.4':
- resolution: {integrity: sha512-pAYZb/3ocSC/db1EFd5y+otmgHqUkvfxfhd9EknDB5DygnJuOIQNuGJ7LMJM6S2c0DYgBIHOdEelLxKHOjwbgQ==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
- '@nuxt/telemetry@2.6.4':
- resolution: {integrity: sha512-2Lgdn07Suraly5dSfVQ4ttBQBMtmjvCTGKGUHpc1UyH87HT9xCm3KLFO0UcVQ8+LNYCgoOaK7lq9qDJOfBfZ5A==}
- engines: {node: '>=18.20.5'}
+ /@nuxt/devtools/1.7.0_vite@6.0.9+vue@3.5.13:
+ resolution: {integrity: sha512-uvnjt5Zowkz7tZmnks2cGreg1XZIiSyVzQ2MYiRXACodlXcwJ0dpUS3WTxu8BR562K+772oRdvKie9AQlyZUgg==}
hasBin: true
-
- '@nuxt/test-utils@3.14.0':
- resolution: {integrity: sha512-8HJOvGChQ70s6RKduKlrNABJXizNCLodBRbgepa4RYA3QFv2KrTxLvlHlhEUwd9r2E55LcQacv9P7Er47Z2GaA==}
- engines: {node: '>=18.20.4'}
peerDependencies:
- '@cucumber/cucumber': ^10.3.1
- '@jest/globals': ^29.5.0
- '@playwright/test': ^1.43.1
- '@testing-library/vue': ^7.0.0 || ^8.0.1
- '@vitest/ui': ^0.34.6 || ^1.0.0 || ^2.0.0
- '@vue/test-utils': ^2.4.2
- h3: '*'
- happy-dom: ^9.10.9 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0
- jsdom: ^22.0.0 || ^23.0.0 || ^24.0.0
- nitropack: '*'
- playwright-core: ^1.43.1
vite: '*'
- vitest: ^0.34.6 || ^1.0.0 || ^2.0.0
- vue: ^3.3.4
- vue-router: ^4.0.0
- peerDependenciesMeta:
- '@cucumber/cucumber':
- optional: true
- '@jest/globals':
+ dependencies:
+ '@antfu/utils': 0.7.10
+ '@nuxt/devtools-kit': 1.7.0_magicast@0.3.5+vite@6.0.9
+ '@nuxt/devtools-wizard': 1.7.0
+ '@nuxt/kit': 3.16.0_magicast@0.3.5
+ '@vue/devtools-core': 7.6.8_vite@6.0.9+vue@3.5.13
+ '@vue/devtools-kit': 7.6.8
+ birpc: 0.2.19
+ consola: 3.4.0
+ cronstrue: 2.56.0
+ destr: 2.0.3
+ error-stack-parser-es: 0.1.5
+ execa: 7.2.0
+ fast-npm-meta: 0.2.2
+ flatted: 3.3.3
+ get-port-please: 3.1.2
+ hookable: 5.5.3
+ image-meta: 0.2.1
+ is-installed-globally: 1.0.0
+ launch-editor: 2.10.0
+ local-pkg: 0.5.1
+ magicast: 0.3.5
+ nypm: 0.4.1
+ ohash: 1.1.6
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.3.1
+ rc9: 2.1.2
+ scule: 1.3.0
+ semver: 7.7.1
+ simple-git: 3.27.0
+ sirv: 3.0.1
+ tinyglobby: 0.2.12
+ unimport: 3.14.6
+ vite: 6.0.9
+ vite-plugin-inspect: 0.8.9_bvsh322jwpdo7ddnjh6oe5rlyq
+ vite-plugin-vue-inspector: 5.3.1_vite@6.0.9
+ which: 3.0.1
+ ws: 8.18.1
+ transitivePeerDependencies:
+ - bufferutil
+ - rollup
+ - supports-color
+ - utf-8-validate
+ - vue
+ dev: false
+
+ /@nuxt/devtools/2.2.1_vite@6.0.9+vue@3.5.13:
+ resolution: {integrity: sha512-JkFRYLWFoklBuf+Zv6GwS9HPOFMuN3nomApWCnsNg8H7XqlFNIvB+wetmm6+u+43bNApjqE0ne7Y//o0V6FSaA==}
+ hasBin: true
+ peerDependencies:
+ vite: '>=6.0'
+ dependencies:
+ '@nuxt/devtools-kit': 2.2.1_magicast@0.3.5+vite@6.0.9
+ '@nuxt/devtools-wizard': 2.2.1
+ '@nuxt/kit': 3.16.0_magicast@0.3.5
+ '@vue/devtools-core': 7.7.2_vite@6.0.9+vue@3.5.13
+ '@vue/devtools-kit': 7.7.2
+ birpc: 2.2.0
+ consola: 3.4.0
+ destr: 2.0.3
+ error-stack-parser-es: 1.0.5
+ execa: 9.5.2
+ fast-npm-meta: 0.3.1
+ get-port-please: 3.1.2
+ hookable: 5.5.3
+ image-meta: 0.2.1
+ is-installed-globally: 1.0.0
+ launch-editor: 2.10.0
+ local-pkg: 1.1.1
+ magicast: 0.3.5
+ nypm: 0.6.0
+ ohash: 2.0.11
+ pathe: 2.0.3
+ perfect-debounce: 1.0.0
+ pkg-types: 2.1.0
+ semver: 7.7.1
+ simple-git: 3.27.0
+ sirv: 3.0.1
+ structured-clone-es: 1.0.0
+ tinyglobby: 0.2.12
+ vite: 6.0.9_jiti@2.4.2
+ vite-plugin-inspect: 11.0.0_bvsh322jwpdo7ddnjh6oe5rlyq
+ vite-plugin-vue-tracer: 0.1.1_vite@6.0.9+vue@3.5.13
+ which: 5.0.0
+ ws: 8.18.1
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ - vue
+ dev: false
+
+ /@nuxt/kit/3.14.1592:
+ resolution: {integrity: sha512-r9r8bISBBisvfcNgNL3dSIQHSBe0v5YkX5zwNblIC2T0CIEgxEVoM5rq9O5wqgb5OEydsHTtT2hL57vdv6VT2w==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ dependencies:
+ '@nuxt/schema': 3.14.1592
+ c12: 2.0.4
+ consola: 3.4.0
+ defu: 6.1.4
+ destr: 2.0.3
+ globby: 14.1.0
+ hash-sum: 2.0.0
+ ignore: 6.0.2
+ jiti: 2.4.2
+ klona: 2.0.6
+ knitwork: 1.2.0
+ mlly: 1.7.4
+ pathe: 1.1.2
+ pkg-types: 1.3.1
+ scule: 1.3.0
+ semver: 7.7.1
+ ufo: 1.5.4
+ unctx: 2.4.1
+ unimport: 3.14.6
+ untyped: 1.5.2
+ transitivePeerDependencies:
+ - magicast
+ - rollup
+ - supports-color
+ dev: false
+
+ /@nuxt/kit/3.14.1592_rollup@4.35.0:
+ resolution: {integrity: sha512-r9r8bISBBisvfcNgNL3dSIQHSBe0v5YkX5zwNblIC2T0CIEgxEVoM5rq9O5wqgb5OEydsHTtT2hL57vdv6VT2w==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ dependencies:
+ '@nuxt/schema': 3.14.1592_rollup@4.35.0
+ c12: 2.0.4
+ consola: 3.4.0
+ defu: 6.1.4
+ destr: 2.0.3
+ globby: 14.1.0
+ hash-sum: 2.0.0
+ ignore: 6.0.2
+ jiti: 2.4.2
+ klona: 2.0.6
+ knitwork: 1.2.0
+ mlly: 1.7.4
+ pathe: 1.1.2
+ pkg-types: 1.3.1
+ scule: 1.3.0
+ semver: 7.7.1
+ ufo: 1.5.4
+ unctx: 2.4.1
+ unimport: 3.14.6_rollup@4.35.0
+ untyped: 1.5.2
+ transitivePeerDependencies:
+ - magicast
+ - rollup
+ - supports-color
+ dev: true
+
+ /@nuxt/kit/3.16.0:
+ resolution: {integrity: sha512-yPfhk58BG6wJhELkGOTCOlkMDbZkizk3IaINcyTKm+hBKiK3SheLt7S9HStNL+qZSfH2Cf7A8sYp6M72lOIEtA==}
+ engines: {node: '>=18.12.0'}
+ dependencies:
+ c12: 3.0.2
+ consola: 3.4.0
+ defu: 6.1.4
+ destr: 2.0.3
+ errx: 0.1.0
+ exsolve: 1.0.4
+ globby: 14.1.0
+ ignore: 7.0.3
+ jiti: 2.4.2
+ klona: 2.0.6
+ knitwork: 1.2.0
+ mlly: 1.7.4
+ ohash: 2.0.11
+ pathe: 2.0.3
+ pkg-types: 2.1.0
+ scule: 1.3.0
+ semver: 7.7.1
+ std-env: 3.8.1
+ ufo: 1.5.4
+ unctx: 2.4.1
+ unimport: 4.1.2
+ untyped: 2.0.0
+ transitivePeerDependencies:
+ - magicast
+
+ /@nuxt/kit/3.16.0_magicast@0.3.5:
+ resolution: {integrity: sha512-yPfhk58BG6wJhELkGOTCOlkMDbZkizk3IaINcyTKm+hBKiK3SheLt7S9HStNL+qZSfH2Cf7A8sYp6M72lOIEtA==}
+ engines: {node: '>=18.12.0'}
+ dependencies:
+ c12: 3.0.2_magicast@0.3.5
+ consola: 3.4.0
+ defu: 6.1.4
+ destr: 2.0.3
+ errx: 0.1.0
+ exsolve: 1.0.4
+ globby: 14.1.0
+ ignore: 7.0.3
+ jiti: 2.4.2
+ klona: 2.0.6
+ knitwork: 1.2.0
+ mlly: 1.7.4
+ ohash: 2.0.11
+ pathe: 2.0.3
+ pkg-types: 2.1.0
+ scule: 1.3.0
+ semver: 7.7.1
+ std-env: 3.8.1
+ ufo: 1.5.4
+ unctx: 2.4.1
+ unimport: 4.1.2
+ untyped: 2.0.0
+ transitivePeerDependencies:
+ - magicast
+
+ /@nuxt/schema/3.14.1592:
+ resolution: {integrity: sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ dependencies:
+ c12: 2.0.4
+ compatx: 0.1.8
+ consola: 3.4.0
+ defu: 6.1.4
+ hookable: 5.5.3
+ pathe: 1.1.2
+ pkg-types: 1.3.1
+ scule: 1.3.0
+ std-env: 3.8.1
+ ufo: 1.5.4
+ uncrypto: 0.1.3
+ unimport: 3.14.6
+ untyped: 1.5.2
+ transitivePeerDependencies:
+ - magicast
+ - rollup
+ - supports-color
+ dev: false
+
+ /@nuxt/schema/3.14.1592_rollup@4.35.0:
+ resolution: {integrity: sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ dependencies:
+ c12: 2.0.4
+ compatx: 0.1.8
+ consola: 3.4.0
+ defu: 6.1.4
+ hookable: 5.5.3
+ pathe: 1.1.2
+ pkg-types: 1.3.1
+ scule: 1.3.0
+ std-env: 3.8.1
+ ufo: 1.5.4
+ uncrypto: 0.1.3
+ unimport: 3.14.6_rollup@4.35.0
+ untyped: 1.5.2
+ transitivePeerDependencies:
+ - magicast
+ - rollup
+ - supports-color
+ dev: true
+
+ /@nuxt/schema/3.16.0:
+ resolution: {integrity: sha512-uCpcqWO6C4P5c4vi1/sq5GyajO0EOp+ZWFtPrnKaJ1pXAhA+W1aMVxAjfi2f18QMJHuRXBz1TouFg1RmWA6FuA==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ dependencies:
+ consola: 3.4.0
+ defu: 6.1.4
+ pathe: 2.0.3
+ std-env: 3.8.1
+
+ /@nuxt/telemetry/2.6.5:
+ resolution: {integrity: sha512-lwMp9OHML/m0mjh7P5iz9PxINnk5smGkGebh88Wh8PjvnRooY1TBsbyq7mlSrNibpwD1BkwqhV5IAZOXWHLxMQ==}
+ engines: {node: '>=18.12.0'}
+ hasBin: true
+ dependencies:
+ '@nuxt/kit': 3.16.0
+ citty: 0.1.6
+ consola: 3.4.0
+ destr: 2.0.3
+ dotenv: 16.4.7
+ git-url-parse: 16.0.1
+ is-docker: 3.0.0
+ ofetch: 1.4.1
+ package-manager-detector: 0.2.11
+ parse-git-config: 3.0.0
+ pathe: 2.0.3
+ rc9: 2.1.2
+ std-env: 3.8.1
+ transitivePeerDependencies:
+ - magicast
+
+ /@nuxt/test-utils/3.14.0_t42vghp6y4xkqcrv26ib563gve:
+ resolution: {integrity: sha512-8HJOvGChQ70s6RKduKlrNABJXizNCLodBRbgepa4RYA3QFv2KrTxLvlHlhEUwd9r2E55LcQacv9P7Er47Z2GaA==}
+ engines: {node: '>=18.20.4'}
+ peerDependencies:
+ '@cucumber/cucumber': ^10.3.1
+ '@jest/globals': ^29.5.0
+ '@playwright/test': ^1.43.1
+ '@testing-library/vue': ^7.0.0 || ^8.0.1
+ '@vitest/ui': ^0.34.6 || ^1.0.0 || ^2.0.0
+ '@vue/test-utils': ^2.4.2
+ h3: '*'
+ happy-dom: ^9.10.9 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0
+ jsdom: ^22.0.0 || ^23.0.0 || ^24.0.0
+ nitropack: '*'
+ playwright-core: ^1.43.1
+ vite: '*'
+ vitest: ^0.34.6 || ^1.0.0 || ^2.0.0
+ vue: ^3.3.4
+ vue-router: ^4.0.0
+ peerDependenciesMeta:
+ '@cucumber/cucumber':
+ optional: true
+ '@jest/globals':
optional: true
'@playwright/test':
optional: true
@@ -3111,131 +5691,623 @@ packages:
optional: true
vitest:
optional: true
+ dependencies:
+ '@nuxt/kit': 3.16.0
+ '@nuxt/schema': 3.16.0
+ c12: 1.11.2
+ consola: 3.4.0
+ defu: 6.1.4
+ destr: 2.0.3
+ estree-walker: 3.0.3
+ execa: 8.0.1
+ fake-indexeddb: 6.0.0
+ get-port-please: 3.1.2
+ h3: 1.15.1
+ local-pkg: 0.5.1
+ magic-string: 0.30.17
+ nitropack: 2.11.6
+ node-fetch-native: 1.6.6
+ ofetch: 1.4.1
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ radix3: 1.1.2
+ scule: 1.3.0
+ std-env: 3.8.1
+ ufo: 1.5.4
+ unenv: 1.10.0
+ unplugin: 1.16.1
+ vite: 6.0.9_jiti@2.4.2
+ vitest-environment-nuxt: 1.0.1
+ vue: 3.5.13
+ vue-router: 4.5.0_vue@3.5.13
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - magicast
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - terser
+ - typescript
+ dev: true
- '@nuxt/vite-builder@3.14.1592':
- resolution: {integrity: sha512-GVS7vkBJAGv13ghmjgGrS2QVyzoqxQ5+cAUrMeMjKbY7GnRY7/uOkoLmznYx8E/U9HBUyHQa+wSN2ZfcSiEytQ==}
- engines: {node: ^14.18.0 || >=16.10.0}
+ /@nuxt/test-utils/3.15.1:
+ resolution: {integrity: sha512-+0MsHsE/F4FZcmirRWSqGSSlEGMeNBHXkdHmYU0cM7UItiFIxyVDdIHLkyW4bBvPfI0IRozQlZc8vht9V/5D7Q==}
+ engines: {node: ^18.20.4 || ^20.9.0 || ^22.0.0 || >=23.0.0}
peerDependencies:
- vue: ^3.3.4
+ '@cucumber/cucumber': ^10.3.1 || ^11.0.0
+ '@jest/globals': ^29.5.0
+ '@playwright/test': ^1.43.1
+ '@testing-library/vue': ^7.0.0 || ^8.0.1
+ '@vitest/ui': '*'
+ '@vue/test-utils': ^2.4.2
+ happy-dom: ^9.10.9 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0
+ jsdom: ^22.0.0 || ^23.0.0 || ^24.0.0 || ^25.0.0
+ playwright-core: ^1.43.1
+ vitest: ^0.34.6 || ^1.0.0 || ^2.0.0
+ peerDependenciesMeta:
+ '@cucumber/cucumber':
+ optional: true
+ '@jest/globals':
+ optional: true
+ '@playwright/test':
+ optional: true
+ '@testing-library/vue':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ '@vue/test-utils':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+ playwright-core:
+ optional: true
+ vitest:
+ optional: true
+ dependencies:
+ '@nuxt/kit': 3.16.0
+ '@nuxt/schema': 3.16.0
+ c12: 2.0.4
+ consola: 3.4.0
+ defu: 6.1.4
+ destr: 2.0.3
+ estree-walker: 3.0.3
+ fake-indexeddb: 6.0.0
+ get-port-please: 3.1.2
+ h3: 1.15.1
+ local-pkg: 0.5.1
+ magic-string: 0.30.17
+ node-fetch-native: 1.6.6
+ ofetch: 1.4.1
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ radix3: 1.1.2
+ scule: 1.3.0
+ std-env: 3.8.1
+ tinyexec: 0.3.2
+ ufo: 1.5.4
+ unenv: 1.10.0
+ unplugin: 2.2.0
+ vite: 5.4.14
+ vitest-environment-nuxt: 1.0.1
+ vue: 3.5.13
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - magicast
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - terser
+ - typescript
+ dev: true
- '@one-ini/wasm@0.1.1':
- resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
+ /@nuxt/vite-builder/3.14.1592_vue@3.5.13:
+ resolution: {integrity: sha512-GVS7vkBJAGv13ghmjgGrS2QVyzoqxQ5+cAUrMeMjKbY7GnRY7/uOkoLmznYx8E/U9HBUyHQa+wSN2ZfcSiEytQ==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ peerDependencies:
+ vue: ^3.3.4
+ dependencies:
+ '@nuxt/kit': 3.14.1592
+ '@rollup/plugin-replace': 6.0.2
+ '@vitejs/plugin-vue': 5.2.1_vite@5.4.14+vue@3.5.13
+ '@vitejs/plugin-vue-jsx': 4.1.1_vite@5.4.14+vue@3.5.13
+ autoprefixer: 10.4.20_postcss@8.5.3
+ clear: 0.1.0
+ consola: 3.4.0
+ cssnano: 7.0.6_postcss@8.5.3
+ defu: 6.1.4
+ esbuild: 0.24.2
+ escape-string-regexp: 5.0.0
+ estree-walker: 3.0.3
+ externality: 1.0.2
+ get-port-please: 3.1.2
+ h3: 1.15.1
+ jiti: 2.4.2
+ knitwork: 1.2.0
+ magic-string: 0.30.17
+ mlly: 1.7.4
+ ohash: 1.1.6
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.3.1
+ postcss: 8.5.3
+ rollup-plugin-visualizer: 5.14.0
+ std-env: 3.8.1
+ strip-literal: 2.1.1
+ ufo: 1.5.4
+ unenv: 1.10.0
+ unplugin: 1.16.1
+ vite: 5.4.14
+ vite-node: 2.1.9
+ vite-plugin-checker: 0.8.0_vite@5.4.14
+ vue: 3.5.13
+ vue-bundle-renderer: 2.1.1
+ transitivePeerDependencies:
+ - '@biomejs/biome'
+ - '@types/node'
+ - eslint
+ - less
+ - lightningcss
+ - magicast
+ - meow
+ - optionator
+ - rolldown
+ - rollup
+ - sass
+ - sass-embedded
+ - stylelint
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - typescript
+ - vls
+ - vti
+ - vue-tsc
+ dev: false
- '@parcel/watcher-android-arm64@2.5.1':
- resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [android]
+ /@nuxt/vite-builder/3.14.1592_yiryvljpiqju3elctnqosjliim:
+ resolution: {integrity: sha512-GVS7vkBJAGv13ghmjgGrS2QVyzoqxQ5+cAUrMeMjKbY7GnRY7/uOkoLmznYx8E/U9HBUyHQa+wSN2ZfcSiEytQ==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ peerDependencies:
+ vue: ^3.3.4
+ dependencies:
+ '@nuxt/kit': 3.14.1592_rollup@4.35.0
+ '@rollup/plugin-replace': 6.0.2_rollup@4.35.0
+ '@vitejs/plugin-vue': 5.2.1_vite@5.4.14+vue@3.5.13
+ '@vitejs/plugin-vue-jsx': 4.1.1_vite@5.4.14+vue@3.5.13
+ autoprefixer: 10.4.20_postcss@8.5.3
+ clear: 0.1.0
+ consola: 3.4.0
+ cssnano: 7.0.6_postcss@8.5.3
+ defu: 6.1.4
+ esbuild: 0.24.2
+ escape-string-regexp: 5.0.0
+ estree-walker: 3.0.3
+ externality: 1.0.2
+ get-port-please: 3.1.2
+ h3: 1.15.1
+ jiti: 2.4.2
+ knitwork: 1.2.0
+ magic-string: 0.30.17
+ mlly: 1.7.4
+ ohash: 1.1.6
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.3.1
+ postcss: 8.5.3
+ rollup-plugin-visualizer: 5.14.0_rollup@4.35.0
+ std-env: 3.8.1
+ strip-literal: 2.1.1
+ ufo: 1.5.4
+ unenv: 1.10.0
+ unplugin: 1.16.1
+ vite: 5.4.14_4c45tymmfdin4b4i5tudvmn5ny
+ vite-node: 2.1.9_4c45tymmfdin4b4i5tudvmn5ny
+ vite-plugin-checker: 0.8.0_g2qas7ygesedvhf2ugjm5sssam
+ vue: 3.5.13_typescript@5.5.3
+ vue-bundle-renderer: 2.1.1
+ transitivePeerDependencies:
+ - '@biomejs/biome'
+ - '@types/node'
+ - eslint
+ - less
+ - lightningcss
+ - magicast
+ - meow
+ - optionator
+ - rolldown
+ - rollup
+ - sass
+ - sass-embedded
+ - stylelint
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - typescript
+ - vls
+ - vti
+ - vue-tsc
+ dev: true
- '@parcel/watcher-darwin-arm64@2.5.1':
- resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
- engines: {node: '>= 10.0.0'}
+ /@nuxt/vite-builder/3.16.0_vue@3.5.13:
+ resolution: {integrity: sha512-H/mRrDmpWWLIiF1J9jguCKITF0ydFxmgcBcbveQac6vVhaOZunBAv9SsKHZgnH8CDM1v5BnuRNyIQ9y4Y9wW8g==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0.0}
+ peerDependencies:
+ vue: ^3.3.4
+ dependencies:
+ '@nuxt/kit': 3.16.0
+ '@rollup/plugin-replace': 6.0.2
+ '@vitejs/plugin-vue': 5.2.1_vite@6.2.1+vue@3.5.13
+ '@vitejs/plugin-vue-jsx': 4.1.1_vite@6.2.1+vue@3.5.13
+ autoprefixer: 10.4.20_postcss@8.5.3
+ consola: 3.4.0
+ cssnano: 7.0.6_postcss@8.5.3
+ defu: 6.1.4
+ esbuild: 0.25.0
+ escape-string-regexp: 5.0.0
+ exsolve: 1.0.4
+ externality: 1.0.2
+ get-port-please: 3.1.2
+ h3: 1.15.1
+ jiti: 2.4.2
+ knitwork: 1.2.0
+ magic-string: 0.30.17
+ mlly: 1.7.4
+ ohash: 2.0.11
+ pathe: 2.0.3
+ perfect-debounce: 1.0.0
+ pkg-types: 2.1.0
+ postcss: 8.5.3
+ rollup-plugin-visualizer: 5.14.0
+ std-env: 3.8.1
+ ufo: 1.5.4
+ unenv: 2.0.0-rc.14
+ unplugin: 2.2.0
+ vite: 6.2.1_jiti@2.4.2
+ vite-node: 3.0.8_jiti@2.4.2
+ vite-plugin-checker: 0.9.0_vite@6.2.1
+ vue: 3.5.13
+ vue-bundle-renderer: 2.1.1
+ transitivePeerDependencies:
+ - '@biomejs/biome'
+ - '@types/node'
+ - eslint
+ - less
+ - lightningcss
+ - magicast
+ - meow
+ - optionator
+ - rolldown
+ - rollup
+ - sass
+ - sass-embedded
+ - stylelint
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - typescript
+ - vls
+ - vti
+ - vue-tsc
+ - yaml
+ dev: false
+
+ /@one-ini/wasm/0.1.1:
+ resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
+ dev: true
+
+ /@oxc-parser/binding-darwin-arm64/0.56.5:
+ resolution: {integrity: sha512-rj4WZqQVJQgLnGnDu2ciIOC5SqcBPc4x11RN0NwuedSGzny5mtBdNVLwt0+8iB15lIjrOKg5pjYJ8GQVPca5HA==}
+ engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@parcel/watcher-darwin-x64@2.5.1':
- resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
- engines: {node: '>= 10.0.0'}
+ /@oxc-parser/binding-darwin-x64/0.56.5:
+ resolution: {integrity: sha512-Rr7aMkqcxGIM6fgkpaj9SJj0u1O1g+AT7mJwmdi5PLSQRPR4CkDKfztEnAj5k+d2blWvh9nPZH8G0OCwxIHk1Q==}
+ engines: {node: '>=14.0.0'}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@parcel/watcher-freebsd-x64@2.5.1':
- resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [freebsd]
-
- '@parcel/watcher-linux-arm-glibc@2.5.1':
- resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm]
- os: [linux]
-
- '@parcel/watcher-linux-arm-musl@2.5.1':
- resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
- engines: {node: '>= 10.0.0'}
+ /@oxc-parser/binding-linux-arm-gnueabihf/0.56.5:
+ resolution: {integrity: sha512-jcFCThrWUt5k1GM43tdmI1m2dEnWUPPHHTWKBJbZBXzXLrJJzkqv5OU87Spf1004rYj9swwpa13kIldFwMzglA==}
+ engines: {node: '>=14.0.0'}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@parcel/watcher-linux-arm64-glibc@2.5.1':
- resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
- engines: {node: '>= 10.0.0'}
+ /@oxc-parser/binding-linux-arm64-gnu/0.56.5:
+ resolution: {integrity: sha512-zo/9RDgWvugKxCpHHcAC5EW0AqoEvODJ4Iv4aT1Xonv6kcydbyPSXJBQhhZUvTXTAFIlQKl6INHl+Xki9Qs3fw==}
+ engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@parcel/watcher-linux-arm64-musl@2.5.1':
- resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
- engines: {node: '>= 10.0.0'}
+ /@oxc-parser/binding-linux-arm64-musl/0.56.5:
+ resolution: {integrity: sha512-SCIqrL5apVbrtMoqOpKX/Ez+c46WmW0Tyhtu+Xby281biH+wYu70m+fux9ZsGmbHc2ojd4FxUcaUdCZtb5uTOQ==}
+ engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@parcel/watcher-linux-x64-glibc@2.5.1':
- resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
- engines: {node: '>= 10.0.0'}
+ /@oxc-parser/binding-linux-x64-gnu/0.56.5:
+ resolution: {integrity: sha512-I2mpX35NWo83hay4wrnzFLk3VuGK1BBwHaqvEdqsCode8iG8slYJRJPICVbCEWlkR3rotlTQ+608JcRU0VqZ5Q==}
+ engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@parcel/watcher-linux-x64-musl@2.5.1':
- resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
- engines: {node: '>= 10.0.0'}
+ /@oxc-parser/binding-linux-x64-musl/0.56.5:
+ resolution: {integrity: sha512-xfzUHGYOh3PGWZdBuY5r1czvE8EGWPAmhTWHqkw3/uAfUVWN/qrrLjMojiaiWyUgl/9XIFg05m5CJH9dnngh5Q==}
+ engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@parcel/watcher-wasm@2.5.1':
- resolution: {integrity: sha512-RJxlQQLkaMMIuWRozy+z2vEqbaQlCuaCgVZIUCzQLYggY22LZbP5Y1+ia+FD724Ids9e+XIyOLXLrLgQSHIthw==}
- engines: {node: '>= 10.0.0'}
- bundledDependencies:
- - napi-wasm
+ /@oxc-parser/binding-wasm32-wasi/0.56.5:
+ resolution: {integrity: sha512-+z3Ofmc1v5kcu8fXgG5vn7T1f52P47ceTTmTXsm5HPY7rq5EMYRUaBnxH6cesXwY1OVVCwYlIZbCiy8Pm1w8zQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+ requiresBuild: true
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.7
+ dev: false
+ optional: true
- '@parcel/watcher-win32-arm64@2.5.1':
- resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
- engines: {node: '>= 10.0.0'}
+ /@oxc-parser/binding-win32-arm64-msvc/0.56.5:
+ resolution: {integrity: sha512-pRg8QrbMh8PgnXBreiONoJBR306u+JN19BXQC7oKIaG4Zxt9Mn8XIyuhUv3ytqjLudSiG2ERWQUoCGLs+yfW0A==}
+ engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@parcel/watcher-win32-ia32@2.5.1':
- resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
- engines: {node: '>= 10.0.0'}
+ /@oxc-parser/binding-win32-x64-msvc/0.56.5:
+ resolution: {integrity: sha512-VALZNcuyw/6rwsxOACQ2YS6rey2d/ym4cNfXqJrHB/MZduAPj4xvij72gHGu3Ywm31KVGLVWk/mrMRiM9CINcA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@oxc-parser/wasm/0.56.5:
+ resolution: {integrity: sha512-9vtn56ok7PHS0elihFP+Q+alveQuGR0vnF6OeZesxkKWLJr8mCk0kZJx5ZxLjibaPA/sxWTmOyn31UMM9jg9fg==}
+ dependencies:
+ '@oxc-project/types': 0.56.5
+ dev: false
+
+ /@oxc-project/types/0.56.5:
+ resolution: {integrity: sha512-skY3kOJwp22W4RkaadH1hZ3hqFHjkRrIIE0uQ4VUg+/Chvbl+2pF+B55IrIk2dgsKXS57YEUsJuN6I6s4rgFjA==}
+ dev: false
+
+ /@parcel/watcher-android-arm64/2.5.1:
+ resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-darwin-arm64/2.5.1:
+ resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-darwin-x64/2.5.1:
+ resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-freebsd-x64/2.5.1:
+ resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-linux-arm-glibc/2.5.1:
+ resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-linux-arm-musl/2.5.1:
+ resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-linux-arm64-glibc/2.5.1:
+ resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-linux-arm64-musl/2.5.1:
+ resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-linux-x64-glibc/2.5.1:
+ resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-linux-x64-musl/2.5.1:
+ resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-wasm/2.5.1:
+ resolution: {integrity: sha512-RJxlQQLkaMMIuWRozy+z2vEqbaQlCuaCgVZIUCzQLYggY22LZbP5Y1+ia+FD724Ids9e+XIyOLXLrLgQSHIthw==}
+ engines: {node: '>= 10.0.0'}
+ dependencies:
+ is-glob: 4.0.3
+ micromatch: 4.0.8
+ bundledDependencies:
+ - napi-wasm
+
+ /@parcel/watcher-win32-arm64/2.5.1:
+ resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-win32-ia32/2.5.1:
+ resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
+ engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@parcel/watcher-win32-x64@2.5.1':
+ /@parcel/watcher-win32-x64/2.5.1:
resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@parcel/watcher@2.5.1':
+ /@parcel/watcher/2.5.1:
resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
engines: {node: '>= 10.0.0'}
+ requiresBuild: true
+ dependencies:
+ detect-libc: 1.0.3
+ is-glob: 4.0.3
+ micromatch: 4.0.8
+ node-addon-api: 7.1.1
+ optionalDependencies:
+ '@parcel/watcher-android-arm64': 2.5.1
+ '@parcel/watcher-darwin-arm64': 2.5.1
+ '@parcel/watcher-darwin-x64': 2.5.1
+ '@parcel/watcher-freebsd-x64': 2.5.1
+ '@parcel/watcher-linux-arm-glibc': 2.5.1
+ '@parcel/watcher-linux-arm-musl': 2.5.1
+ '@parcel/watcher-linux-arm64-glibc': 2.5.1
+ '@parcel/watcher-linux-arm64-musl': 2.5.1
+ '@parcel/watcher-linux-x64-glibc': 2.5.1
+ '@parcel/watcher-linux-x64-musl': 2.5.1
+ '@parcel/watcher-win32-arm64': 2.5.1
+ '@parcel/watcher-win32-ia32': 2.5.1
+ '@parcel/watcher-win32-x64': 2.5.1
- '@pkgjs/parseargs@0.11.0':
+ /@pkgjs/parseargs/0.11.0:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
+ requiresBuild: true
+ optional: true
- '@pkgr/core@0.1.1':
+ /@pkgr/core/0.1.1:
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
+ dev: true
- '@polka/url@1.0.0-next.28':
+ /@polka/url/1.0.0-next.28:
resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
- '@puppeteer/browsers@2.2.3':
+ /@poppinss/colors/4.1.4:
+ resolution: {integrity: sha512-FA+nTU8p6OcSH4tLDY5JilGYr1bVWHpNmcLr7xmMEdbWmKHa+3QZ+DqefrXKmdjO/brHTnQZo20lLSjaO7ydog==}
+ engines: {node: '>=18.16.0'}
+ dependencies:
+ kleur: 4.1.5
+
+ /@poppinss/dumper/0.6.3:
+ resolution: {integrity: sha512-iombbn8ckOixMtuV1p3f8jN6vqhXefNjJttoPaJDMeIk/yIGhkkL3OrHkEjE9SRsgoAx1vBUU2GtgggjvA5hCA==}
+ dependencies:
+ '@poppinss/colors': 4.1.4
+ '@sindresorhus/is': 7.0.1
+ supports-color: 10.0.0
+
+ /@poppinss/exception/1.2.1:
+ resolution: {integrity: sha512-aQypoot0HPSJa6gDPEPTntc1GT6QINrSbgRlRhadGW2WaYqUK3tK4Bw9SBMZXhmxd3GeAlZjVcODHgiu+THY7A==}
+ engines: {node: '>=18'}
+
+ /@puppeteer/browsers/2.2.3:
resolution: {integrity: sha512-bJ0UBsk0ESOs6RFcLXOt99a3yTDcOKlzfjad+rhFwdaG1Lu/Wzq58GHYCDTlZ9z6mldf4g+NTb+TXEfe0PpnsQ==}
engines: {node: '>=18'}
hasBin: true
+ dependencies:
+ debug: 4.3.4
+ extract-zip: 2.0.1
+ progress: 2.0.3
+ proxy-agent: 6.4.0
+ semver: 7.6.0
+ tar-fs: 3.0.5
+ unbzip2-stream: 1.4.3
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - bare-buffer
+ - supports-color
+ dev: true
- '@radix-ui/colors@3.0.0':
+ /@radix-ui/colors/3.0.0:
resolution: {integrity: sha512-FUOsGBkHrYJwCSEtWRCIfQbZG7q1e6DgxCIOe1SUQzDe/7rXXeA47s8yCn6fuTNQAj1Zq4oTFi9Yjp3wzElcxg==}
+ dev: false
- '@radix-ui/number@1.1.0':
+ /@radix-ui/number/1.1.0:
resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
+ dev: false
- '@radix-ui/primitive@1.1.1':
+ /@radix-ui/primitive/1.1.1:
resolution: {integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==}
+ dev: false
- '@radix-ui/react-accessible-icon@1.1.1':
- resolution: {integrity: sha512-DH8vuU7oqHt9RhO3V9Z1b8ek+bOl4+9VLsh0cgL6t7f2WhbuOChm3ft0EmCCsfd4ORi7Cs3II4aNcTXi+bh+wg==}
+ /@radix-ui/react-accessible-icon/1.1.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-+rnMO0SEfzkcHr93RshkQVpOA26MtGOv4pcS9QUnLg4F8+GDmCJ8c2FEPhPz5e7arf31EzbTqJxFbzg3qen14g==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3246,9 +6318,16 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-visually-hidden': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-alert-dialog@1.1.5':
- resolution: {integrity: sha512-1Y2sI17QzSZP58RjGtrklfSGIf3AF7U/HkD3aAcAnhOUJrm7+7GG1wRDFaUlSe0nW5B/t4mYd/+7RNbP2Wexug==}
+ /@radix-ui/react-alert-dialog/1.1.6_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-p4XnPqgej8sZAAReCAKgz1REYZEBLR8hU9Pg27wFnCWIMc8g1ccCs0FjBcy05V15VTu8pAePw/VDYeOm/uZ6yQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3259,9 +6338,21 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-dialog': 1.1.6_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-arrow@1.1.1':
- resolution: {integrity: sha512-NaVpZfmv8SKeZbn4ijN2V3jlHA9ngBG16VnIIm22nUR0Yk8KUALyBxT3KYEUnNuch9sTE8UTsS3whzBgKOL30w==}
+ /@radix-ui/react-arrow/1.1.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-G+KcpzXHq24iH0uGG/pF8LyzpFJYGD4RfLjCIBfGdSLXvjLHST31RUiRVrupIBMvIppMgSzQ6l66iAxl03tdlg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3272,9 +6363,16 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-aspect-ratio@1.1.1':
- resolution: {integrity: sha512-kNU4FIpcFMBLkOUcgeIteH06/8JLBcYY6Le1iKenDGCYNYFX3TQqCZjzkOsz37h7r94/99GTb7YhEr98ZBJibw==}
+ /@radix-ui/react-aspect-ratio/1.1.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-TaJxYoCpxJ7vfEkv2PTNox/6zzmpKXT6ewvCuf2tTOIVN45/Jahhlld29Yw4pciOXS2Xq91/rSGEdmEnUWZCqA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3285,9 +6383,16 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-avatar@1.1.2':
- resolution: {integrity: sha512-GaC7bXQZ5VgZvVvsJ5mu/AEbjYLnhhkoidOboC50Z6FFlLA03wG2ianUoH+zgDQ31/9gCF59bE4+2bBgTyMiig==}
+ /@radix-ui/react-avatar/1.1.3_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-Paen00T4P8L8gd9bNsRMw7Cbaz85oxiv+hzomsRZgFm2byltPFDtfcoqlWJ8GyZlIBWgLssJlzLCnKU0G0302g==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3298,9 +6403,19 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-checkbox@1.1.3':
- resolution: {integrity: sha512-HD7/ocp8f1B3e6OHygH0n7ZKjONkhciy1Nh0yuBgObqThc3oyx+vuMfFHKAknXRHHWVE9XvXStxJFyjUmB8PIw==}
+ /@radix-ui/react-checkbox/1.1.4_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-wP0CPAHq+P5I4INKe3hJrIa1WoNqqrejzW+zoU0rOvo1b9gDEJJFl2rYfO1PYJUQCc2H1WZxIJmyv9BS8i5fLw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3311,9 +6426,23 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-size': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-collection@1.1.1':
- resolution: {integrity: sha512-LwT3pSho9Dljg+wY2KN2mrrh6y3qELfftINERIzBUO9e0N+t0oMTyn3k9iv+ZqgrwGkRnLpNJrsMv9BZlt2yuA==}
+ /@radix-ui/react-collection/1.1.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-9z54IEKRxIa9VityapoEYMuByaG42iSy1ZXlY2KcuLSEtq8x4987/N6m15ppoMffgZX72gER2uHe1D9Y6Unlcw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3324,8 +6453,18 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-compose-refs@1.1.1':
+ /@radix-ui/react-compose-refs/1.1.1_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==}
peerDependencies:
'@types/react': '*'
@@ -3333,9 +6472,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-context-menu@2.2.5':
- resolution: {integrity: sha512-MY5PFCwo/ICaaQtpQBQ0g19AyjzI0mhz+a2GUWA2pJf4XFkvglAdcgDV2Iqm+lLbXn8hb+6rbLgcmRtc6ImPvg==}
+ /@radix-ui/react-context-menu/2.2.6_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-aUP99QZ3VU84NPsHeaFt4cQUNgJqFsLLOt/RbbWXszZ6MP0DpDyjkFZORr4RpAEx3sUBk+Kc8h13yGtC5Qw8dg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3346,8 +6489,20 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-menu': 2.1.6_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-context@1.1.1':
+ /@radix-ui/react-context/1.1.1_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
peerDependencies:
'@types/react': '*'
@@ -3355,9 +6510,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-dialog@1.1.5':
- resolution: {integrity: sha512-LaO3e5h/NOEL4OfXjxD43k9Dx+vn+8n+PCFt6uhX/BADFflllyv3WJG6rgvvSVBxpTch938Qq/LGc2MMxipXPw==}
+ /@radix-ui/react-dialog/1.1.6_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-/IVhJV5AceX620DUJ4uYVMymzsipdKBzo3edo+omeskCKGm9FRHM0ebIdbPnlQVJqyuHbuBltQUOG2mOTq2IYw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3368,8 +6527,28 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-focus-guards': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-focus-scope': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ aria-hidden: 1.2.4
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ react-remove-scroll: 2.6.3_2e3fe46pmji5vpxr5buusdg5gq
+ dev: false
- '@radix-ui/react-direction@1.1.0':
+ /@radix-ui/react-direction/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
peerDependencies:
'@types/react': '*'
@@ -3377,9 +6556,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-dismissable-layer@1.1.4':
- resolution: {integrity: sha512-XDUI0IVYVSwjMXxM6P4Dfti7AH+Y4oS/TB+sglZ/EXc7cqLwGAmp1NlMrcUjj7ks6R5WTZuWKv44FBbLpwU3sA==}
+ /@radix-ui/react-dismissable-layer/1.1.5_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-E4TywXY6UsXNRhFrECa5HAvE5/4BFcGyfTyK36gP+pAW1ed7UTK4vKwdr53gAJYwqbfCWC6ATvJa3J3R/9+Qrg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3390,9 +6573,20 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-escape-keydown': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-dropdown-menu@2.1.5':
- resolution: {integrity: sha512-50ZmEFL1kOuLalPKHrLWvPFMons2fGx9TqQCWlPwDVpbAnaUJ1g4XNcKqFNMQymYU0kKWR4MDDi+9vUQBGFgcQ==}
+ /@radix-ui/react-dropdown-menu/2.1.6_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-no3X7V5fD487wab/ZYSHXq3H37u4NVeLDKI/Ks724X/eEFSSEFYZxWgsIlr1UBeEyDaM29HM5x9p1Nv8DuTYPA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3403,8 +6597,21 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-menu': 2.1.6_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-focus-guards@1.1.1':
+ /@radix-ui/react-focus-guards/1.1.1_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==}
peerDependencies:
'@types/react': '*'
@@ -3412,9 +6619,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-focus-scope@1.1.1':
- resolution: {integrity: sha512-01omzJAYRxXdG2/he/+xy+c8a8gCydoQ1yOxnWNcRhrrBW5W+RQJ22EK1SaO8tb3WoUsuEw7mJjBozPzihDFjA==}
+ /@radix-ui/react-focus-scope/1.1.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-zxwE80FCU7lcXUGWkdt6XpTTCKPitG1XKOwViTxHVKIJhZl9MvIl2dVHeZENCWD9+EdWv05wlaEkRXUykU27RA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3425,8 +6636,17 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-form@0.1.1':
+ /@radix-ui/react-form/0.1.1_rwablqpolwkqma5a7gseo64e5i:
resolution: {integrity: sha512-Ah2TBvzl2trb4DL9DQtyUJgAUfq/djMN7j5CHzdpbdR3W7OL8N4JcJgE80cXMf3ssCE+8yg0zFQoJ0srxqfsFA==}
peerDependencies:
'@types/react': '*'
@@ -3438,9 +6658,21 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-label': 2.1.1_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.1_rwablqpolwkqma5a7gseo64e5i
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-hover-card@1.1.5':
- resolution: {integrity: sha512-0jPlX3ZrUIhtMAY0m1SBn1koI4Yqsizq2UwdUiQF1GseSZLZBPa6b8tNS+m32K94Yb4wxtWFSQs85wujQvwahg==}
+ /@radix-ui/react-hover-card/1.1.6_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-E4ozl35jq0VRlrdc4dhHrNSV0JqBb4Jy73WAhBEK7JoYnQ83ED5r0Rb/XdVKw89ReAJN38N492BAPBZQ57VmqQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3451,13 +6683,31 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-popper': 1.2.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-icons@1.3.2':
+ /@radix-ui/react-icons/1.3.2_react@19.0.0:
resolution: {integrity: sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==}
peerDependencies:
react: ^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc
+ dependencies:
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-id@1.1.0':
+ /@radix-ui/react-id/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
peerDependencies:
'@types/react': '*'
@@ -3465,8 +6715,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-label@2.1.1':
+ /@radix-ui/react-label/2.1.1_rwablqpolwkqma5a7gseo64e5i:
resolution: {integrity: sha512-UUw5E4e/2+4kFMH7+YxORXGWggtY6sM8WIwh5RZchhLuUg2H1hc98Py+pr8HMz6rdaYrK2t296ZEjYLOCO5uUw==}
peerDependencies:
'@types/react': '*'
@@ -3478,9 +6733,16 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.1_rwablqpolwkqma5a7gseo64e5i
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-menu@2.1.5':
- resolution: {integrity: sha512-uH+3w5heoMJtqVCgYOtYVMECk1TOrkUn0OG0p5MqXC0W2ppcuVeESbou8PTHoqAjbdTEK19AGXBWcEtR5WpEQg==}
+ /@radix-ui/react-menu/2.1.6_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-tBBb5CXDJW3t2mo9WlO7r6GTmWV0F0uzHZVFmlRmYpiSK1CDU5IKojP1pm7oknpBOrFZx/YgBRW9oorPO2S/Lg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3491,9 +6753,33 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-focus-guards': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-focus-scope': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-popper': 1.2.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-roving-focus': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ aria-hidden: 1.2.4
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ react-remove-scroll: 2.6.3_2e3fe46pmji5vpxr5buusdg5gq
+ dev: false
- '@radix-ui/react-navigation-menu@1.2.4':
- resolution: {integrity: sha512-wUi01RrTDTOoGtjEPHsxlzPtVzVc3R/AZ5wfh0dyqMAqolhHAHvG5iQjBCTi2AjQqa77FWWbA3kE3RkD+bDMgQ==}
+ /@radix-ui/react-navigation-menu/1.2.5_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-myMHHQUZ3ZLTi8W381/Vu43Ia0NqakkQZ2vzynMmTUtQQ9kNkjzhOwkZC9TAM5R07OZUVIQyHC06f/9JZJpvvA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3504,9 +6790,29 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-visually-hidden': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-popover@1.1.5':
- resolution: {integrity: sha512-YXkTAftOIW2Bt3qKH8vYr6n9gCkVrvyvfiTObVjoHVTHnNj26rmvO87IKa3VgtgCjb8FAQ6qOjNViwl+9iIzlg==}
+ /@radix-ui/react-popover/1.1.6_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-NQouW0x4/GnkFJ/pRqsIS3rM/k97VzKnVb2jB7Gq7VEGPy5g7uNV1ykySFt7eWSp3i2uSGFwaJcvIRJBAHmmFg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3517,9 +6823,30 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-focus-guards': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-focus-scope': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-popper': 1.2.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ aria-hidden: 1.2.4
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ react-remove-scroll: 2.6.3_2e3fe46pmji5vpxr5buusdg5gq
+ dev: false
- '@radix-ui/react-popper@1.2.1':
- resolution: {integrity: sha512-3kn5Me69L+jv82EKRuQCXdYyf1DqHwD2U/sxoNgBGCB7K9TRc3bQamQ+5EPM9EvyPdli0W41sROd+ZU1dTCztw==}
+ /@radix-ui/react-popper/1.2.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-Rvqc3nOpwseCyj/rgjlJDYAgyfw7OC1tTkKn2ivhaMGcYt8FSBlahHOZak2i3QwkRXUXgGgzeEe2RuqeEHuHgA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3530,9 +6857,25 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@floating-ui/react-dom': 2.1.2_upmzqgzhjrquwzo2dphtigtdgi
+ '@radix-ui/react-arrow': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-rect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-size': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/rect': 1.1.0
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-portal@1.1.3':
- resolution: {integrity: sha512-NciRqhXnGojhT93RPyDaMPfLH3ZSl4jjIFbZQ1b/vxvZEdHsBZ49wP9w8L3HzUQwep01LcWtkUvm0OVB5JAHTw==}
+ /@radix-ui/react-portal/1.1.4_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-sn2O9k1rPFYVyKd5LAJfo96JlSGVFpa1fS6UuBJfrZadudiw5tAmru+n1x7aMRQ84qDM71Zh1+SzK5QwU0tJfA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3543,8 +6886,16 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-presence@1.1.2':
+ /@radix-ui/react-presence/1.1.2_rwablqpolwkqma5a7gseo64e5i:
resolution: {integrity: sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==}
peerDependencies:
'@types/react': '*'
@@ -3556,8 +6907,16 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-primitive@2.0.1':
+ /@radix-ui/react-primitive/2.0.1_rwablqpolwkqma5a7gseo64e5i:
resolution: {integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==}
peerDependencies:
'@types/react': '*'
@@ -3569,9 +6928,16 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-slot': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-progress@1.1.1':
- resolution: {integrity: sha512-6diOawA84f/eMxFHcWut0aE1C2kyE9dOyCTQOMRR2C/qPiXz/X0SaiA/RLbapQaXUCmy0/hLMf9meSccD1N0pA==}
+ /@radix-ui/react-primitive/2.0.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-Ec/0d38EIuvDF+GZjcMU/Ze6MxntVJYO/fRlCPhCaVUyPY9WTalHJw54tp9sXeJo3tlShWpy41vQRgLRGOuz+w==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3582,9 +6948,16 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-radio-group@1.2.2':
- resolution: {integrity: sha512-E0MLLGfOP0l8P/NxgVzfXJ8w3Ch8cdO6UDzJfDChu4EJDy+/WdO5LqpdY8PYnCErkmZH3gZhDL1K7kQ41fAHuQ==}
+ /@radix-ui/react-progress/1.1.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-u1IgJFQ4zNAUTjGdDL5dcl/U8ntOR6jsnhxKb5RKp5Ozwl88xKR9EqRZOe/Mk8tnx0x5tNUe2F+MzsyjqMg0MA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3595,9 +6968,17 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-roving-focus@1.1.1':
- resolution: {integrity: sha512-QE1RoxPGJ/Nm8Qmk0PxP8ojmoaS67i0s7hVssS7KuI2FQoc/uzVlZsqKfQvxPE6D8hICCPHJ4D88zNhT3OOmkw==}
+ /@radix-ui/react-radio-group/1.2.3_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-xtCsqt8Rp09FK50ItqEqTJ7Sxanz8EM8dnkVIhJrc/wkMMomSmXHvYbhv3E7Zx4oXh98aaLt9W679SUYXg4IDA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3608,11 +6989,55 @@ packages:
optional: true
'@types/react-dom':
optional: true
-
- '@radix-ui/react-scroll-area@1.2.2':
- resolution: {integrity: sha512-EFI1N/S3YxZEW/lJ/H1jY3njlvTd8tBmgKEn4GHi51+aMm94i6NmAJstsm5cu3yJwYqYc93gpCPm21FeAbFk6g==}
- peerDependencies:
- '@types/react': '*'
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-roving-focus': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-size': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
+
+ /@radix-ui/react-roving-focus/1.1.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-zgMQWkNO169GtGqRvYrzb0Zf8NhMHS2DuEB/TiEmVnpr5OqPU3i8lfbxaAmC2J/KYuIQxyoQQ6DxepyXp61/xw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
+
+ /@radix-ui/react-scroll-area/1.2.3_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-l7+NNBfBYYJa9tNqVcP2AGvxdE3lmE6kFTBXdvHgUaZuy+4wGCL1Cl2AfaR7RKyimj7lZURGLwFO59k4eBnDJQ==}
+ peerDependencies:
+ '@types/react': '*'
'@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -3621,9 +7046,24 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-select@2.1.5':
- resolution: {integrity: sha512-eVV7N8jBXAXnyrc+PsOF89O9AfVgGnbLxUtBb0clJ8y8ENMWLARGMI/1/SBRLz7u4HqxLgN71BJ17eono3wcjA==}
+ /@radix-ui/react-select/2.1.6_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-T6ajELxRvTuAMWH0YmRJ1qez+x4/7Nq7QIx7zJ0VK3qaEWdnWpNbEDnmWldG1zBDwqrLy5aLMUWcoGirVj5kMg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3634,9 +7074,36 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-focus-guards': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-focus-scope': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-popper': 1.2.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-visually-hidden': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ aria-hidden: 1.2.4
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ react-remove-scroll: 2.6.3_2e3fe46pmji5vpxr5buusdg5gq
+ dev: false
- '@radix-ui/react-slider@1.2.2':
- resolution: {integrity: sha512-sNlU06ii1/ZcbHf8I9En54ZPW0Vil/yPVg4vQMcFNjrIx51jsHbFl1HYHQvCIWJSr1q0ZmA+iIs/ZTv8h7HHSA==}
+ /@radix-ui/react-slider/1.2.3_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-nNrLAWLjGESnhqBqcCNW4w2nn7LxudyMzeB6VgdyAnFLC6kfQgnAjSL2v6UkQTnDctJBlxrmxfplWS4iYjdUTw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3647,8 +7114,25 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-size': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-slot@1.1.1':
+ /@radix-ui/react-slot/1.1.1_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==}
peerDependencies:
'@types/react': '*'
@@ -3656,9 +7140,28 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
+
+ /@radix-ui/react-slot/1.1.2_2e3fe46pmji5vpxr5buusdg5gq:
+ resolution: {integrity: sha512-YAKxaiGsSQJ38VzKH86/BPRC4rh+b1Jpa+JneA5LRE7skmLPNAyeG8kPJj/oo4STLvlrs8vkf/iYyc3A5stYCQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-switch@1.1.2':
- resolution: {integrity: sha512-zGukiWHjEdBCRyXvKR6iXAQG6qXm2esuAD6kDOi9Cn+1X6ev3ASo4+CsYaD6Fov9r/AQFekqnD/7+V0Cs6/98g==}
+ /@radix-ui/react-switch/1.1.3_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-1nc+vjEOQkJVsJtWPSiISGT6OKm4SiOdjMo+/icLxo2G4vxz1GntC5MzfL4v8ey9OEfw787QCD1y3mUv0NiFEQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3669,9 +7172,22 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-size': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-tabs@1.1.2':
- resolution: {integrity: sha512-9u/tQJMcC2aGq7KXpGivMm1mgq7oRJKXphDwdypPd/j21j/2znamPU8WkXgnhUaTrSFNIt8XhOyCAupg8/GbwQ==}
+ /@radix-ui/react-tabs/1.1.3_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-9mFyI30cuRDImbmFF6O2KUJdgEOsGh9Vmx9x/Dh9tOhL7BngmQPQfwW4aejKm5OHpfWIdmeV6ySyuxoOGjtNng==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3682,9 +7198,23 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-roving-focus': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-toggle-group@1.1.1':
- resolution: {integrity: sha512-OgDLZEA30Ylyz8YSXvnGqIHtERqnUt1KUYTKdw/y8u7Ci6zGiJfXc02jahmcSNK3YcErqioj/9flWC9S1ihfwg==}
+ /@radix-ui/react-toggle-group/1.1.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-JBm6s6aVG/nwuY5eadhU2zDi/IwYS0sDM5ZWb4nymv/hn3hZdkw+gENn0LP4iY1yCd7+bgJaCwueMYJIU3vk4A==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3695,9 +7225,22 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-roving-focus': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-toggle': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-toggle@1.1.1':
- resolution: {integrity: sha512-i77tcgObYr743IonC1hrsnnPmszDRn8p+EGUsUt+5a/JFn28fxaM88Py6V2mc8J5kELMWishI0rLnuGLFD/nnQ==}
+ /@radix-ui/react-toggle/1.1.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-lntKchNWx3aCHuWKiDY+8WudiegQvBpDRAYL8dKLRvKEH8VOpl0XX6SSU/bUBqIRJbcTy4+MW06Wv8vgp10rzQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3708,9 +7251,18 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-tooltip@1.1.7':
- resolution: {integrity: sha512-ss0s80BC0+g0+Zc53MvilcnTYSOi4mSuFWBPYPuTOFGjx+pUU+ZrmamMNwS56t8MTFlniA5ocjd4jYm/CdhbOg==}
+ /@radix-ui/react-tooltip/1.1.8_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-YAA2cu48EkJZdAMHC0dqo9kialOcRStbtiY4nJPaht7Ptrhcvpo+eDChaM6BIs8kL6a8Z5l5poiqLnXcNduOkA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3721,8 +7273,26 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-popper': 1.2.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-visually-hidden': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/react-use-callback-ref@1.1.0':
+ /@radix-ui/react-use-callback-ref/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
peerDependencies:
'@types/react': '*'
@@ -3730,8 +7300,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-use-controllable-state@1.1.0':
+ /@radix-ui/react-use-controllable-state/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
peerDependencies:
'@types/react': '*'
@@ -3739,8 +7313,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-use-escape-keydown@1.1.0':
+ /@radix-ui/react-use-escape-keydown/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
peerDependencies:
'@types/react': '*'
@@ -3748,8 +7327,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-use-layout-effect@1.1.0':
+ /@radix-ui/react-use-layout-effect/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
peerDependencies:
'@types/react': '*'
@@ -3757,8 +7341,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-use-previous@1.1.0':
+ /@radix-ui/react-use-previous/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
peerDependencies:
'@types/react': '*'
@@ -3766,8 +7354,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-use-rect@1.1.0':
+ /@radix-ui/react-use-rect/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
peerDependencies:
'@types/react': '*'
@@ -3775,8 +7367,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/rect': 1.1.0
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-use-size@1.1.0':
+ /@radix-ui/react-use-size/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
peerDependencies:
'@types/react': '*'
@@ -3784,9 +7381,14 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@types/react': 19.0.1
+ react: 19.0.0
+ dev: false
- '@radix-ui/react-visually-hidden@1.1.1':
- resolution: {integrity: sha512-vVfA2IZ9q/J+gEamvj761Oq1FpWgCDaNOOIfbPVp2MVPLEomUr5+Vf7kJGwQ24YxZSlQVar7Bes8kyTo5Dshpg==}
+ /@radix-ui/react-visually-hidden/1.1.2_rwablqpolwkqma5a7gseo64e5i:
+ resolution: {integrity: sha512-1SzA4ns2M1aRlvxErqhLHsBHoS5eI5UUcI2awAMgGUp4LoaoWOKYmvqDY2s/tltuPkh3Yk77YF/r3IRj+Amx4Q==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3797,11 +7399,19 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ dev: false
- '@radix-ui/rect@1.1.0':
+ /@radix-ui/rect/1.1.0:
resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
+ dev: false
- '@radix-ui/themes@3.1.6':
+ /@radix-ui/themes/3.1.6_rwablqpolwkqma5a7gseo64e5i:
resolution: {integrity: sha512-4uaUK0E+3ZRURohKNqnzG8LciTJcpppuBbYxkp7miLyPiaXBwKTrEttdQpExsp/fP6J+ss+JHy5FJhU5lboQkg==}
peerDependencies:
'@types/react': '*'
@@ -3813,18 +7423,75 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/colors': 3.0.0
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-accessible-icon': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-alert-dialog': 1.1.6_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-aspect-ratio': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-avatar': 1.1.3_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-checkbox': 1.1.4_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-context-menu': 2.2.6_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-dialog': 1.1.6_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-dropdown-menu': 2.1.6_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-hover-card': 1.1.6_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-navigation-menu': 1.2.5_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-popover': 1.1.6_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-progress': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-radio-group': 1.2.3_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-roving-focus': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-scroll-area': 1.2.3_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-select': 2.1.6_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-slider': 1.2.3_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-switch': 1.1.3_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-tabs': 1.1.3_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-toggle-group': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-tooltip': 1.1.8_rwablqpolwkqma5a7gseo64e5i
+ '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
+ '@radix-ui/react-visually-hidden': 1.1.2_rwablqpolwkqma5a7gseo64e5i
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+ classnames: 2.5.1
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ react-remove-scroll-bar: 2.3.8_2e3fe46pmji5vpxr5buusdg5gq
+ dev: false
- '@redocly/ajv@8.11.2':
+ /@redocly/ajv/8.11.2:
resolution: {integrity: sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js-replace: 1.0.1
- '@redocly/config@0.20.3':
- resolution: {integrity: sha512-Nyyv1Bj7GgYwj/l46O0nkH1GTKWbO3Ixe7KFcn021aZipkZd+z8Vlu1BwkhqtVgivcKaClaExtWU/lDHkjBzag==}
+ /@redocly/config/0.22.1:
+ resolution: {integrity: sha512-1CqQfiG456v9ZgYBG9xRQHnpXjt8WoSnDwdkX6gxktuK69v2037hTAR1eh0DGIqpZ1p4k82cGH8yTNwt7/pI9g==}
- '@redocly/openapi-core@1.27.2':
- resolution: {integrity: sha512-qVrDc27DHpeO2NRCMeRdb4299nijKQE3BY0wrA+WUHlOLScorIi/y7JzammLk22IaTvjR9Mv9aTAdjE1aUwJnA==}
- engines: {node: '>=14.19.0', npm: '>=7.0.0'}
+ /@redocly/openapi-core/1.33.0_supports-color@9.4.0:
+ resolution: {integrity: sha512-MUB1jPxYX2NmgiobICcvyrkSbPSaGAb/P/MsxSW+UT9hxpQvDCX81bstGg68BcKIdeFvVRKcoyG4xiTgDOEBfQ==}
+ engines: {node: '>=18.17.0', npm: '>=9.5.0'}
+ dependencies:
+ '@redocly/ajv': 8.11.2
+ '@redocly/config': 0.22.1
+ colorette: 1.4.0
+ https-proxy-agent: 7.0.6_supports-color@9.4.0
+ js-levenshtein: 1.1.6
+ js-yaml: 4.1.0
+ minimatch: 5.1.6
+ pluralize: 8.0.0
+ yaml-ast-parser: 0.0.43
+ transitivePeerDependencies:
+ - supports-color
- '@rollup/plugin-alias@5.1.1':
+ /@rollup/plugin-alias/5.1.1_rollup@4.35.0:
resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3832,17 +7499,28 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
+ dependencies:
+ rollup: 4.35.0
- '@rollup/plugin-commonjs@28.0.2':
- resolution: {integrity: sha512-BEFI2EDqzl+vA1rl97IDRZ61AIwGH093d9nz8+dThxJNH8oSoB7MjWvPCX3dkaK1/RCJ/1v/R1XB15FuSs0fQw==}
+ /@rollup/plugin-commonjs/28.0.3_rollup@4.35.0:
+ resolution: {integrity: sha512-pyltgilam1QPdn+Zd9gaCfOLcnjMEJ9gV+bTw6/r73INdvzf1ah9zLIJBm+kW7R6IUFIQ1YO+VqZtYxZNWFPEQ==}
engines: {node: '>=16.0.0 || 14 >= 14.17'}
peerDependencies:
rollup: ^2.68.0||^3.0.0||^4.0.0
peerDependenciesMeta:
rollup:
optional: true
+ dependencies:
+ '@rollup/pluginutils': 5.1.4_rollup@4.35.0
+ commondir: 1.0.1
+ estree-walker: 2.0.2
+ fdir: 6.4.3_picomatch@4.0.2
+ is-reference: 1.2.1
+ magic-string: 0.30.17
+ picomatch: 4.0.2
+ rollup: 4.35.0
- '@rollup/plugin-inject@5.0.5':
+ /@rollup/plugin-inject/5.0.5_rollup@4.35.0:
resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3850,8 +7528,13 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
+ dependencies:
+ '@rollup/pluginutils': 5.1.4_rollup@4.35.0
+ estree-walker: 2.0.2
+ magic-string: 0.30.17
+ rollup: 4.35.0
- '@rollup/plugin-json@6.1.0':
+ /@rollup/plugin-json/6.1.0_rollup@4.35.0:
resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3859,17 +7542,40 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
+ dependencies:
+ '@rollup/pluginutils': 5.1.4_rollup@4.35.0
+ rollup: 4.35.0
- '@rollup/plugin-node-resolve@15.3.1':
- resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==}
+ /@rollup/plugin-node-resolve/16.0.0_rollup@4.35.0:
+ resolution: {integrity: sha512-0FPvAeVUT/zdWoO0jnb/V5BlBsUSNfkIOtFHzMO4H9MOklrmQFY6FduVHKucNb/aTFxvnGhj4MNj/T1oNdDfNg==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^2.78.0||^3.0.0||^4.0.0
peerDependenciesMeta:
rollup:
optional: true
+ dependencies:
+ '@rollup/pluginutils': 5.1.4_rollup@4.35.0
+ '@types/resolve': 1.20.2
+ deepmerge: 4.3.1
+ is-module: 1.0.0
+ resolve: 1.22.10
+ rollup: 4.35.0
+
+ /@rollup/plugin-replace/6.0.2:
+ resolution: {integrity: sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+ dependencies:
+ '@rollup/pluginutils': 5.1.4
+ magic-string: 0.30.17
+ dev: false
- '@rollup/plugin-replace@6.0.2':
+ /@rollup/plugin-replace/6.0.2_rollup@4.35.0:
resolution: {integrity: sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3877,8 +7583,12 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
+ dependencies:
+ '@rollup/pluginutils': 5.1.4_rollup@4.35.0
+ magic-string: 0.30.17
+ rollup: 4.35.0
- '@rollup/plugin-terser@0.4.4':
+ /@rollup/plugin-terser/0.4.4_rollup@4.35.0:
resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3886,8 +7596,26 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
+ dependencies:
+ rollup: 4.35.0
+ serialize-javascript: 6.0.2
+ smob: 1.5.0
+ terser: 5.39.0
+
+ /@rollup/pluginutils/5.1.4:
+ resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+ dependencies:
+ '@types/estree': 1.0.6
+ estree-walker: 2.0.2
+ picomatch: 4.0.2
- '@rollup/pluginutils@5.1.4':
+ /@rollup/pluginutils/5.1.4_rollup@4.35.0:
resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3895,384 +7623,649 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
+ dependencies:
+ '@types/estree': 1.0.6
+ estree-walker: 2.0.2
+ picomatch: 4.0.2
+ rollup: 4.35.0
- '@rollup/rollup-android-arm-eabi@4.31.0':
+ /@rollup/rollup-android-arm-eabi/4.31.0:
resolution: {integrity: sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==}
cpu: [arm]
os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-android-arm-eabi@4.34.8':
+ /@rollup/rollup-android-arm-eabi/4.34.8:
resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==}
cpu: [arm]
os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-android-arm-eabi@4.34.9':
- resolution: {integrity: sha512-qZdlImWXur0CFakn2BJ2znJOdqYZKiedEPEVNTBrpfPjc/YuTGcaYZcdmNFTkUj3DU0ZM/AElcM8Ybww3xVLzA==}
+ /@rollup/rollup-android-arm-eabi/4.35.0:
+ resolution: {integrity: sha512-uYQ2WfPaqz5QtVgMxfN6NpLD+no0MYHDBywl7itPYd3K5TjjSghNKmX8ic9S8NU8w81NVhJv/XojcHptRly7qQ==}
cpu: [arm]
os: [android]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-android-arm64@4.31.0':
+ /@rollup/rollup-android-arm64/4.31.0:
resolution: {integrity: sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==}
cpu: [arm64]
os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-android-arm64@4.34.8':
+ /@rollup/rollup-android-arm64/4.34.8:
resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==}
cpu: [arm64]
os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-android-arm64@4.34.9':
- resolution: {integrity: sha512-4KW7P53h6HtJf5Y608T1ISKvNIYLWRKMvfnG0c44M6In4DQVU58HZFEVhWINDZKp7FZps98G3gxwC1sb0wXUUg==}
+ /@rollup/rollup-android-arm64/4.35.0:
+ resolution: {integrity: sha512-FtKddj9XZudurLhdJnBl9fl6BwCJ3ky8riCXjEw3/UIbjmIY58ppWwPEvU3fNu+W7FUsAsB1CdH+7EQE6CXAPA==}
cpu: [arm64]
os: [android]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-darwin-arm64@4.31.0':
+ /@rollup/rollup-darwin-arm64/4.31.0:
resolution: {integrity: sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-darwin-arm64@4.34.8':
+ /@rollup/rollup-darwin-arm64/4.34.8:
resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-darwin-arm64@4.34.9':
- resolution: {integrity: sha512-0CY3/K54slrzLDjOA7TOjN1NuLKERBgk9nY5V34mhmuu673YNb+7ghaDUs6N0ujXR7fz5XaS5Aa6d2TNxZd0OQ==}
+ /@rollup/rollup-darwin-arm64/4.35.0:
+ resolution: {integrity: sha512-Uk+GjOJR6CY844/q6r5DR/6lkPFOw0hjfOIzVx22THJXMxktXG6CbejseJFznU8vHcEBLpiXKY3/6xc+cBm65Q==}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-darwin-x64@4.31.0':
+ /@rollup/rollup-darwin-x64/4.31.0:
resolution: {integrity: sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-darwin-x64@4.34.8':
+ /@rollup/rollup-darwin-x64/4.34.8:
resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-darwin-x64@4.34.9':
- resolution: {integrity: sha512-eOojSEAi/acnsJVYRxnMkPFqcxSMFfrw7r2iD9Q32SGkb/Q9FpUY1UlAu1DH9T7j++gZ0lHjnm4OyH2vCI7l7Q==}
+ /@rollup/rollup-darwin-x64/4.35.0:
+ resolution: {integrity: sha512-3IrHjfAS6Vkp+5bISNQnPogRAW5GAV1n+bNCrDwXmfMHbPl5EhTmWtfmwlJxFRUCBZ+tZ/OxDyU08aF6NI/N5Q==}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-freebsd-arm64@4.31.0':
+ /@rollup/rollup-freebsd-arm64/4.31.0:
resolution: {integrity: sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==}
cpu: [arm64]
os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-freebsd-arm64@4.34.8':
+ /@rollup/rollup-freebsd-arm64/4.34.8:
resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==}
cpu: [arm64]
os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-freebsd-arm64@4.34.9':
- resolution: {integrity: sha512-2lzjQPJbN5UnHm7bHIUKFMulGTQwdvOkouJDpPysJS+QFBGDJqcfh+CxxtG23Ik/9tEvnebQiylYoazFMAgrYw==}
+ /@rollup/rollup-freebsd-arm64/4.35.0:
+ resolution: {integrity: sha512-sxjoD/6F9cDLSELuLNnY0fOrM9WA0KrM0vWm57XhrIMf5FGiN8D0l7fn+bpUeBSU7dCgPV2oX4zHAsAXyHFGcQ==}
cpu: [arm64]
os: [freebsd]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-freebsd-x64@4.31.0':
+ /@rollup/rollup-freebsd-x64/4.31.0:
resolution: {integrity: sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==}
cpu: [x64]
os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-freebsd-x64@4.34.8':
+ /@rollup/rollup-freebsd-x64/4.34.8:
resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==}
cpu: [x64]
os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-freebsd-x64@4.34.9':
- resolution: {integrity: sha512-SLl0hi2Ah2H7xQYd6Qaiu01kFPzQ+hqvdYSoOtHYg/zCIFs6t8sV95kaoqjzjFwuYQLtOI0RZre/Ke0nPaQV+g==}
+ /@rollup/rollup-freebsd-x64/4.35.0:
+ resolution: {integrity: sha512-2mpHCeRuD1u/2kruUiHSsnjWtHjqVbzhBkNVQ1aVD63CcexKVcQGwJ2g5VphOd84GvxfSvnnlEyBtQCE5hxVVw==}
cpu: [x64]
os: [freebsd]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.31.0':
+ /@rollup/rollup-linux-arm-gnueabihf/4.31.0:
resolution: {integrity: sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
+ /@rollup/rollup-linux-arm-gnueabihf/4.34.8:
resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.34.9':
- resolution: {integrity: sha512-88I+D3TeKItrw+Y/2ud4Tw0+3CxQ2kLgu3QvrogZ0OfkmX/DEppehus7L3TS2Q4lpB+hYyxhkQiYPJ6Mf5/dPg==}
+ /@rollup/rollup-linux-arm-gnueabihf/4.35.0:
+ resolution: {integrity: sha512-mrA0v3QMy6ZSvEuLs0dMxcO2LnaCONs1Z73GUDBHWbY8tFFocM6yl7YyMu7rz4zS81NDSqhrUuolyZXGi8TEqg==}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.31.0':
+ /@rollup/rollup-linux-arm-musleabihf/4.31.0:
resolution: {integrity: sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.34.8':
+ /@rollup/rollup-linux-arm-musleabihf/4.34.8:
resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.34.9':
- resolution: {integrity: sha512-3qyfWljSFHi9zH0KgtEPG4cBXHDFhwD8kwg6xLfHQ0IWuH9crp005GfoUUh/6w9/FWGBwEHg3lxK1iHRN1MFlA==}
+ /@rollup/rollup-linux-arm-musleabihf/4.35.0:
+ resolution: {integrity: sha512-DnYhhzcvTAKNexIql8pFajr0PiDGrIsBYPRvCKlA5ixSS3uwo/CWNZxB09jhIapEIg945KOzcYEAGGSmTSpk7A==}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-linux-arm64-gnu@4.31.0':
+ /@rollup/rollup-linux-arm64-gnu/4.31.0:
resolution: {integrity: sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-arm64-gnu@4.34.8':
+ /@rollup/rollup-linux-arm64-gnu/4.34.8:
resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-arm64-gnu@4.34.9':
- resolution: {integrity: sha512-6TZjPHjKZUQKmVKMUowF3ewHxctrRR09eYyvT5eFv8w/fXarEra83A2mHTVJLA5xU91aCNOUnM+DWFMSbQ0Nxw==}
+ /@rollup/rollup-linux-arm64-gnu/4.35.0:
+ resolution: {integrity: sha512-uagpnH2M2g2b5iLsCTZ35CL1FgyuzzJQ8L9VtlJ+FckBXroTwNOaD0z0/UF+k5K3aNQjbm8LIVpxykUOQt1m/A==}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-linux-arm64-musl@4.31.0':
+ /@rollup/rollup-linux-arm64-musl/4.31.0:
resolution: {integrity: sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-arm64-musl@4.34.8':
+ /@rollup/rollup-linux-arm64-musl/4.34.8:
resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-arm64-musl@4.34.9':
- resolution: {integrity: sha512-LD2fytxZJZ6xzOKnMbIpgzFOuIKlxVOpiMAXawsAZ2mHBPEYOnLRK5TTEsID6z4eM23DuO88X0Tq1mErHMVq0A==}
+ /@rollup/rollup-linux-arm64-musl/4.35.0:
+ resolution: {integrity: sha512-XQxVOCd6VJeHQA/7YcqyV0/88N6ysSVzRjJ9I9UA/xXpEsjvAgDTgH3wQYz5bmr7SPtVK2TsP2fQ2N9L4ukoUg==}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.31.0':
+ /@rollup/rollup-linux-loongarch64-gnu/4.31.0:
resolution: {integrity: sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==}
cpu: [loong64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
+ /@rollup/rollup-linux-loongarch64-gnu/4.34.8:
resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==}
cpu: [loong64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.34.9':
- resolution: {integrity: sha512-dRAgTfDsn0TE0HI6cmo13hemKpVHOEyeciGtvlBTkpx/F65kTvShtY/EVyZEIfxFkV5JJTuQ9tP5HGBS0hfxIg==}
+ /@rollup/rollup-linux-loongarch64-gnu/4.35.0:
+ resolution: {integrity: sha512-5pMT5PzfgwcXEwOaSrqVsz/LvjDZt+vQ8RT/70yhPU06PTuq8WaHhfT1LW+cdD7mW6i/J5/XIkX/1tCAkh1W6g==}
cpu: [loong64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.31.0':
+ /@rollup/rollup-linux-powerpc64le-gnu/4.31.0:
resolution: {integrity: sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==}
cpu: [ppc64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
+ /@rollup/rollup-linux-powerpc64le-gnu/4.34.8:
resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==}
cpu: [ppc64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.9':
- resolution: {integrity: sha512-PHcNOAEhkoMSQtMf+rJofwisZqaU8iQ8EaSps58f5HYll9EAY5BSErCZ8qBDMVbq88h4UxaNPlbrKqfWP8RfJA==}
+ /@rollup/rollup-linux-powerpc64le-gnu/4.35.0:
+ resolution: {integrity: sha512-c+zkcvbhbXF98f4CtEIP1EBA/lCic5xB0lToneZYvMeKu5Kamq3O8gqrxiYYLzlZH6E3Aq+TSW86E4ay8iD8EA==}
cpu: [ppc64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.31.0':
+ /@rollup/rollup-linux-riscv64-gnu/4.31.0:
resolution: {integrity: sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==}
cpu: [riscv64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.34.8':
+ /@rollup/rollup-linux-riscv64-gnu/4.34.8:
resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==}
cpu: [riscv64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.34.9':
- resolution: {integrity: sha512-Z2i0Uy5G96KBYKjeQFKbbsB54xFOL5/y1P5wNBsbXB8yE+At3oh0DVMjQVzCJRJSfReiB2tX8T6HUFZ2k8iaKg==}
+ /@rollup/rollup-linux-riscv64-gnu/4.35.0:
+ resolution: {integrity: sha512-s91fuAHdOwH/Tad2tzTtPX7UZyytHIRR6V4+2IGlV0Cej5rkG0R61SX4l4y9sh0JBibMiploZx3oHKPnQBKe4g==}
cpu: [riscv64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-linux-s390x-gnu@4.31.0':
+ /@rollup/rollup-linux-s390x-gnu/4.31.0:
resolution: {integrity: sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==}
cpu: [s390x]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-s390x-gnu@4.34.8':
+ /@rollup/rollup-linux-s390x-gnu/4.34.8:
resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==}
cpu: [s390x]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-s390x-gnu@4.34.9':
- resolution: {integrity: sha512-U+5SwTMoeYXoDzJX5dhDTxRltSrIax8KWwfaaYcynuJw8mT33W7oOgz0a+AaXtGuvhzTr2tVKh5UO8GVANTxyQ==}
+ /@rollup/rollup-linux-s390x-gnu/4.35.0:
+ resolution: {integrity: sha512-hQRkPQPLYJZYGP+Hj4fR9dDBMIM7zrzJDWFEMPdTnTy95Ljnv0/4w/ixFw3pTBMEuuEuoqtBINYND4M7ujcuQw==}
cpu: [s390x]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-linux-x64-gnu@4.31.0':
+ /@rollup/rollup-linux-x64-gnu/4.31.0:
resolution: {integrity: sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-x64-gnu@4.34.8':
+ /@rollup/rollup-linux-x64-gnu/4.34.8:
resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-x64-gnu@4.34.9':
- resolution: {integrity: sha512-FwBHNSOjUTQLP4MG7y6rR6qbGw4MFeQnIBrMe161QGaQoBQLqSUEKlHIiVgF3g/mb3lxlxzJOpIBhaP+C+KP2A==}
+ /@rollup/rollup-linux-x64-gnu/4.35.0:
+ resolution: {integrity: sha512-Pim1T8rXOri+0HmV4CdKSGrqcBWX0d1HoPnQ0uw0bdp1aP5SdQVNBy8LjYncvnLgu3fnnCt17xjWGd4cqh8/hA==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-linux-x64-musl@4.31.0':
+ /@rollup/rollup-linux-x64-musl/4.31.0:
resolution: {integrity: sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-x64-musl@4.34.8':
+ /@rollup/rollup-linux-x64-musl/4.34.8:
resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-linux-x64-musl@4.34.9':
- resolution: {integrity: sha512-cYRpV4650z2I3/s6+5/LONkjIz8MBeqrk+vPXV10ORBnshpn8S32bPqQ2Utv39jCiDcO2eJTuSlPXpnvmaIgRA==}
+ /@rollup/rollup-linux-x64-musl/4.35.0:
+ resolution: {integrity: sha512-QysqXzYiDvQWfUiTm8XmJNO2zm9yC9P/2Gkrwg2dH9cxotQzunBHYr6jk4SujCTqnfGxduOmQcI7c2ryuW8XVg==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-win32-arm64-msvc@4.31.0':
+ /@rollup/rollup-win32-arm64-msvc/4.31.0:
resolution: {integrity: sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-win32-arm64-msvc@4.34.8':
+ /@rollup/rollup-win32-arm64-msvc/4.34.8:
resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-win32-arm64-msvc@4.34.9':
- resolution: {integrity: sha512-z4mQK9dAN6byRA/vsSgQiPeuO63wdiDxZ9yg9iyX2QTzKuQM7T4xlBoeUP/J8uiFkqxkcWndWi+W7bXdPbt27Q==}
+ /@rollup/rollup-win32-arm64-msvc/4.35.0:
+ resolution: {integrity: sha512-OUOlGqPkVJCdJETKOCEf1mw848ZyJ5w50/rZ/3IBQVdLfR5jk/6Sr5m3iO2tdPgwo0x7VcncYuOvMhBWZq8ayg==}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-win32-ia32-msvc@4.31.0':
+ /@rollup/rollup-win32-ia32-msvc/4.31.0:
resolution: {integrity: sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==}
cpu: [ia32]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-win32-ia32-msvc@4.34.8':
+ /@rollup/rollup-win32-ia32-msvc/4.34.8:
resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==}
cpu: [ia32]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-win32-ia32-msvc@4.34.9':
- resolution: {integrity: sha512-KB48mPtaoHy1AwDNkAJfHXvHp24H0ryZog28spEs0V48l3H1fr4i37tiyHsgKZJnCmvxsbATdZGBpbmxTE3a9w==}
+ /@rollup/rollup-win32-ia32-msvc/4.35.0:
+ resolution: {integrity: sha512-2/lsgejMrtwQe44glq7AFFHLfJBPafpsTa6JvP2NGef/ifOa4KBoglVf7AKN7EV9o32evBPRqfg96fEHzWo5kw==}
cpu: [ia32]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@rollup/rollup-win32-x64-msvc@4.31.0':
+ /@rollup/rollup-win32-x64-msvc/4.31.0:
resolution: {integrity: sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-win32-x64-msvc@4.34.8':
+ /@rollup/rollup-win32-x64-msvc/4.34.8:
resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@rollup/rollup-win32-x64-msvc@4.34.9':
- resolution: {integrity: sha512-AyleYRPU7+rgkMWbEh71fQlrzRfeP6SyMnRf9XX4fCdDPAJumdSBqYEcWPMzVQ4ScAl7E4oFfK0GUVn77xSwbw==}
+ /@rollup/rollup-win32-x64-msvc/4.35.0:
+ resolution: {integrity: sha512-PIQeY5XDkrOysbQblSW7v3l1MDZzkTEzAfTPkj5VAu3FW8fS4ynyLg2sINp0fp3SjZ8xkRYpLqoKcYqAkhU1dw==}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ optional: true
- '@rtsao/scc@1.1.0':
+ /@rtsao/scc/1.1.0:
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+ dev: true
- '@rushstack/eslint-patch@1.10.5':
+ /@rushstack/eslint-patch/1.10.5:
resolution: {integrity: sha512-kkKUDVlII2DQiKy7UstOR1ErJP8kUKAQ4oa+SQtM0K+lPdmmjj0YnnxBgtTVYH7mUKtbsxeFC9y0AmK7Yb78/A==}
+ dev: true
- '@schematics/angular@19.2.0':
+ /@schematics/angular/19.2.0:
resolution: {integrity: sha512-/gdrYTr1DSUNmrUmpmne6uBnIBpJ/obHtccvz5sZckKni/KMPAr3CgGZ8JrHer3I732ucb1We9nbdtXvz+2glg==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ dependencies:
+ '@angular-devkit/core': 19.2.0
+ '@angular-devkit/schematics': 19.2.0
+ jsonc-parser: 3.3.1
+ transitivePeerDependencies:
+ - chokidar
+ dev: true
+
+ /@schematics/angular/19.2.1:
+ resolution: {integrity: sha512-QYYGVR2n+YtLzqo0IsQq7OUnBMeP6OjyuVlGdjsAnSDCKQ9kUcqZDwjxxh5NUj25R4vvu+5aVaa6W6iTxfHadQ==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ dependencies:
+ '@angular-devkit/core': 19.2.1
+ '@angular-devkit/schematics': 19.2.1
+ jsonc-parser: 3.3.1
+ transitivePeerDependencies:
+ - chokidar
+ dev: true
- '@sec-ant/readable-stream@0.4.1':
+ /@sec-ant/readable-stream/0.4.1:
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
- '@seriousme/openapi-schema-validator@2.3.1':
+ /@seriousme/openapi-schema-validator/2.3.1:
resolution: {integrity: sha512-szUXBZJUhq+Yw+vUro2QeltSIoZvMDQi3MLqJhIKcRcRYyFt9B6dyjMD1RVf3nFvNAHkWqa48NJA46ti2P8smA==}
hasBin: true
+ dependencies:
+ ajv: 8.17.1
+ ajv-draft-04: 1.0.0_ajv@8.17.1
+ ajv-formats: 3.0.1
+ js-yaml: 4.1.0
+ minimist: 1.2.8
+ dev: false
- '@shikijs/core@1.29.1':
- resolution: {integrity: sha512-Mo1gGGkuOYjDu5H8YwzmOuly9vNr8KDVkqj9xiKhhhFS8jisAtDSEWB9hzqRHLVQgFdA310e8XRJcW4tYhRB2A==}
+ /@shikijs/core/1.29.2:
+ resolution: {integrity: sha512-vju0lY9r27jJfOY4Z7+Rt/nIOjzJpZ3y+nYpqtUZInVoXQ/TJZcfGnNOGnKjFdVZb8qexiCuSlZRKcGfhhTTZQ==}
+ dependencies:
+ '@shikijs/engine-javascript': 1.29.2
+ '@shikijs/engine-oniguruma': 1.29.2
+ '@shikijs/types': 1.29.2
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.4
+ hast-util-to-html: 9.0.5
+ dev: true
- '@shikijs/engine-javascript@1.29.1':
- resolution: {integrity: sha512-Hpi8k9x77rCQ7F/7zxIOUruNkNidMyBnP5qAGbLFqg4kRrg1HZhkB8btib5EXbQWTtLb5gBHOdBwshk20njD7Q==}
+ /@shikijs/engine-javascript/1.29.2:
+ resolution: {integrity: sha512-iNEZv4IrLYPv64Q6k7EPpOCE/nuvGiKl7zxdq0WFuRPF5PAE9PRo2JGq/d8crLusM59BRemJ4eOqrFrC4wiQ+A==}
+ dependencies:
+ '@shikijs/types': 1.29.2
+ '@shikijs/vscode-textmate': 10.0.2
+ oniguruma-to-es: 2.3.0
+ dev: true
- '@shikijs/engine-oniguruma@1.29.1':
- resolution: {integrity: sha512-gSt2WhLNgEeLstcweQOSp+C+MhOpTsgdNXRqr3zP6M+BUBZ8Md9OU2BYwUYsALBxHza7hwaIWtFHjQ/aOOychw==}
+ /@shikijs/engine-oniguruma/1.29.2:
+ resolution: {integrity: sha512-7iiOx3SG8+g1MnlzZVDYiaeHe7Ez2Kf2HrJzdmGwkRisT7r4rak0e655AcM/tF9JG/kg5fMNYlLLKglbN7gBqA==}
+ dependencies:
+ '@shikijs/types': 1.29.2
+ '@shikijs/vscode-textmate': 10.0.2
+ dev: true
- '@shikijs/langs@1.29.1':
- resolution: {integrity: sha512-iERn4HlyuT044/FgrvLOaZgKVKf3PozjKjyV/RZ5GnlyYEAZFcgwHGkYboeBv2IybQG1KVS/e7VGgiAU4JY2Gw==}
+ /@shikijs/langs/1.29.2:
+ resolution: {integrity: sha512-FIBA7N3LZ+223U7cJDUYd5shmciFQlYkFXlkKVaHsCPgfVLiO+e12FmQE6Tf9vuyEsFe3dIl8qGWKXgEHL9wmQ==}
+ dependencies:
+ '@shikijs/types': 1.29.2
+ dev: true
- '@shikijs/themes@1.29.1':
- resolution: {integrity: sha512-lb11zf72Vc9uxkl+aec2oW1HVTHJ2LtgZgumb4Rr6By3y/96VmlU44bkxEb8WBWH3RUtbqAJEN0jljD9cF7H7g==}
+ /@shikijs/themes/1.29.2:
+ resolution: {integrity: sha512-i9TNZlsq4uoyqSbluIcZkmPL9Bfi3djVxRnofUHwvx/h6SRW3cwgBC5SML7vsDcWyukY0eCzVN980rqP6qNl9g==}
+ dependencies:
+ '@shikijs/types': 1.29.2
+ dev: true
- '@shikijs/transformers@1.29.1':
- resolution: {integrity: sha512-jVzJhriZ0t9y8TvsV4AzBm74BCLUoK6Bf41aIjJkZc1hKeL0PQtsNL096b1AxgZRwJwTfQalWZ+jBkRAuqVMPw==}
+ /@shikijs/transformers/1.29.2:
+ resolution: {integrity: sha512-NHQuA+gM7zGuxGWP9/Ub4vpbwrYCrho9nQCLcCPfOe3Yc7LOYwmSuhElI688oiqIXk9dlZwDiyAG9vPBTuPJMA==}
+ dependencies:
+ '@shikijs/core': 1.29.2
+ '@shikijs/types': 1.29.2
+ dev: true
- '@shikijs/types@1.29.1':
- resolution: {integrity: sha512-aBqAuhYRp5vSir3Pc9+QPu9WESBOjUo03ao0IHLC4TyTioSsp/SkbAZSrIH4ghYYC1T1KTEpRSBa83bas4RnPA==}
+ /@shikijs/types/1.29.2:
+ resolution: {integrity: sha512-VJjK0eIijTZf0QSTODEXCqinjBn0joAHQ+aPSBzrv4O2d/QSbsMw+ZeSRx03kV34Hy7NzUvV/7NqfYGRLrASmw==}
+ dependencies:
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.4
+ dev: true
- '@shikijs/vscode-textmate@10.0.1':
- resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==}
+ /@shikijs/vscode-textmate/10.0.2:
+ resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
+ dev: true
- '@sigstore/bundle@3.1.0':
+ /@sigstore/bundle/3.1.0:
resolution: {integrity: sha512-Mm1E3/CmDDCz3nDhFKTuYdB47EdRFRQMOE/EAbiG1MJW77/w1b3P7Qx7JSrVJs8PfwOLOVcKQCHErIwCTyPbag==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ '@sigstore/protobuf-specs': 0.4.0
+ dev: true
- '@sigstore/core@2.0.0':
+ /@sigstore/core/2.0.0:
resolution: {integrity: sha512-nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dev: true
- '@sigstore/protobuf-specs@0.4.0':
+ /@sigstore/protobuf-specs/0.4.0:
resolution: {integrity: sha512-o09cLSIq9EKyRXwryWDOJagkml9XgQCoCSRjHOnHLnvsivaW7Qznzz6yjfV7PHJHhIvyp8OH7OX8w0Dc5bQK7A==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dev: true
- '@sigstore/sign@3.1.0':
+ /@sigstore/sign/3.1.0:
resolution: {integrity: sha512-knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ '@sigstore/bundle': 3.1.0
+ '@sigstore/core': 2.0.0
+ '@sigstore/protobuf-specs': 0.4.0
+ make-fetch-happen: 14.0.3
+ proc-log: 5.0.0
+ promise-retry: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@sigstore/tuf@3.1.0':
+ /@sigstore/tuf/3.1.0:
resolution: {integrity: sha512-suVMQEA+sKdOz5hwP9qNcEjX6B45R+hFFr4LAWzbRc5O+U2IInwvay/bpG5a4s+qR35P/JK/PiKiRGjfuLy1IA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ '@sigstore/protobuf-specs': 0.4.0
+ tuf-js: 3.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@sigstore/verify@2.1.0':
+ /@sigstore/verify/2.1.0:
resolution: {integrity: sha512-kAAM06ca4CzhvjIZdONAL9+MLppW3K48wOFy1TbuaWFW/OMfl8JuTgW0Bm02JB1WJGT/ET2eqav0KTEKmxqkIA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ '@sigstore/bundle': 3.1.0
+ '@sigstore/core': 2.0.0
+ '@sigstore/protobuf-specs': 0.4.0
+ dev: true
- '@sinclair/typebox@0.27.8':
+ /@sinclair/typebox/0.27.8:
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+ dev: true
- '@sindresorhus/is@4.6.0':
+ /@sindresorhus/is/4.6.0:
resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
engines: {node: '>=10'}
+ dev: true
+
+ /@sindresorhus/is/7.0.1:
+ resolution: {integrity: sha512-QWLl2P+rsCJeofkDNIT3WFmb6NrRud1SUYW8dIhXK/46XFV8Q/g7Bsvib0Askb0reRLe+WYPeeE+l5cH7SlkuQ==}
+ engines: {node: '>=18'}
- '@sindresorhus/merge-streams@2.3.0':
+ /@sindresorhus/merge-streams/2.3.0:
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
- '@sindresorhus/merge-streams@4.0.0':
+ /@sindresorhus/merge-streams/4.0.0:
resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
engines: {node: '>=18'}
- '@socket.io/component-emitter@3.1.2':
+ /@socket.io/component-emitter/3.1.2:
resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
+ dev: true
- '@stackblitz/sdk@1.11.0':
+ /@speed-highlight/core/1.2.7:
+ resolution: {integrity: sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==}
+
+ /@stackblitz/sdk/1.11.0:
resolution: {integrity: sha512-DFQGANNkEZRzFk1/rDP6TcFdM82ycHE+zfl9C/M/jXlH68jiqHWHFMQURLELoD8koxvu/eW5uhg94NSAZlYrUQ==}
+ dev: false
+
+ /@sveltejs/acorn-typescript/1.0.5_acorn@8.14.1:
+ resolution: {integrity: sha512-IwQk4yfwLdibDlrXVE04jTZYlLnwsTT2PIOQQGNLWfjavGifnk1JD1LcZjZaBTRcxZu2FfPfNLOE04DSu9lqtQ==}
+ peerDependencies:
+ acorn: ^8.9.0
+ dependencies:
+ acorn: 8.14.1
+ dev: true
- '@sveltejs/adapter-auto@4.0.0':
+ /@sveltejs/adapter-auto/4.0.0_@sveltejs+kit@2.17.1:
resolution: {integrity: sha512-kmuYSQdD2AwThymQF0haQhM8rE5rhutQXG4LNbnbShwhMO4qQGnKaaTy+88DuNSuoQDi58+thpq8XpHc1+oEKQ==}
peerDependencies:
'@sveltejs/kit': ^2.0.0
+ dependencies:
+ '@sveltejs/kit': 2.17.1_zecxmjndawzkxr36mrjxufr4u4
+ import-meta-resolve: 4.1.0
+ dev: true
- '@sveltejs/kit@2.17.1':
+ /@sveltejs/kit/2.17.1_zecxmjndawzkxr36mrjxufr4u4:
resolution: {integrity: sha512-CpoGSLqE2MCmcQwA2CWJvOsZ9vW+p/1H3itrFykdgajUNAEyQPbsaSn7fZb6PLHQwe+07njxje9ss0fjZoCAyw==}
engines: {node: '>=18.13'}
hasBin: true
@@ -4280,78 +8273,169 @@ packages:
'@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0
svelte: ^4.0.0 || ^5.0.0-next.0
vite: ^5.0.3 || ^6.0.0
+ dependencies:
+ '@sveltejs/vite-plugin-svelte': 5.0.3_svelte@5.19.9+vite@6.0.9
+ '@types/cookie': 0.6.0
+ cookie: 0.6.0
+ devalue: 5.1.1
+ esm-env: 1.2.2
+ import-meta-resolve: 4.1.0
+ kleur: 4.1.5
+ magic-string: 0.30.17
+ mrmime: 2.0.1
+ sade: 1.8.1
+ set-cookie-parser: 2.7.1
+ sirv: 3.0.1
+ svelte: 5.19.9
+ vite: 6.0.9
+ dev: true
- '@sveltejs/vite-plugin-svelte-inspector@4.0.1':
+ /@sveltejs/vite-plugin-svelte-inspector/4.0.1_zecxmjndawzkxr36mrjxufr4u4:
resolution: {integrity: sha512-J/Nmb2Q2y7mck2hyCX4ckVHcR5tu2J+MtBEQqpDrrgELZ2uvraQcK/ioCV61AqkdXFgriksOKIceDcQmqnGhVw==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22}
peerDependencies:
'@sveltejs/vite-plugin-svelte': ^5.0.0
svelte: ^5.0.0
vite: ^6.0.0
+ dependencies:
+ '@sveltejs/vite-plugin-svelte': 5.0.3_svelte@5.19.9+vite@6.0.9
+ debug: 4.4.0
+ svelte: 5.19.9
+ vite: 6.0.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@sveltejs/vite-plugin-svelte@5.0.3':
+ /@sveltejs/vite-plugin-svelte/5.0.3_svelte@5.19.9+vite@6.0.9:
resolution: {integrity: sha512-MCFS6CrQDu1yGwspm4qtli0e63vaPCehf6V7pIMP15AsWgMKrqDGCPFF/0kn4SP0ii4aySu4Pa62+fIRGFMjgw==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22}
peerDependencies:
svelte: ^5.0.0
vite: ^6.0.0
+ dependencies:
+ '@sveltejs/vite-plugin-svelte-inspector': 4.0.1_zecxmjndawzkxr36mrjxufr4u4
+ debug: 4.4.0
+ deepmerge: 4.3.1
+ kleur: 4.1.5
+ magic-string: 0.30.17
+ svelte: 5.19.9
+ vite: 6.0.9
+ vitefu: 1.0.6_vite@6.0.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@swc/counter@0.1.3':
+ /@swc/counter/0.1.3:
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
+ dev: false
- '@swc/helpers@0.5.15':
+ /@swc/helpers/0.5.15:
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
+ dependencies:
+ tslib: 2.8.1
+ dev: false
+
+ /@tanstack/angular-query-experimental/5.62.13_hlzpvcmi6ymvzbfqomco5a3w2q:
+ resolution: {integrity: sha512-K3BCgFu7RTtKgahfCKhBwrC8hpRDqOIRGEvnASf2D7nwysm2wREjNanQZaFEETzGVSX8HGqxp+80qUb7L/cKlg==}
+ peerDependencies:
+ '@angular/common': '>=16.0.0'
+ '@angular/core': '>=16.0.0'
+ dependencies:
+ '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
+ '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
+ '@tanstack/query-core': 5.62.12
+ '@tanstack/query-devtools': 5.62.9
+ dev: false
- '@tanstack/angular-query-experimental@5.62.13':
+ /@tanstack/angular-query-experimental/5.62.13_zbwjpxkizhludcezaxkdwlu2h4:
resolution: {integrity: sha512-K3BCgFu7RTtKgahfCKhBwrC8hpRDqOIRGEvnASf2D7nwysm2wREjNanQZaFEETzGVSX8HGqxp+80qUb7L/cKlg==}
peerDependencies:
'@angular/common': '>=16.0.0'
'@angular/core': '>=16.0.0'
+ dependencies:
+ '@angular/common': 19.2.0_o7lncytynmlvlvkm4hpjy4oxsi
+ '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
+ '@tanstack/query-core': 5.62.12
+ '@tanstack/query-devtools': 5.62.9
+ dev: true
- '@tanstack/match-sorter-utils@8.19.4':
+ /@tanstack/match-sorter-utils/8.19.4:
resolution: {integrity: sha512-Wo1iKt2b9OT7d+YGhvEPD3DXvPv2etTusIMhMUoG7fbhmxcXCtIjJDEygy91Y2JFlwGyjqiBPRozme7UD8hoqg==}
engines: {node: '>=12'}
+ dependencies:
+ remove-accents: 0.5.0
- '@tanstack/query-core@5.51.21':
+ /@tanstack/query-core/5.51.21:
resolution: {integrity: sha512-POQxm42IUp6n89kKWF4IZi18v3fxQWFRolvBA6phNVmA8psdfB1MvDnGacCJdS+EOX12w/CyHM62z//rHmYmvw==}
+ dev: true
- '@tanstack/query-core@5.62.12':
+ /@tanstack/query-core/5.62.12:
resolution: {integrity: sha512-6igFeBgymHkCxVgaEk+yiLwkMf9haui/EQLmI3o9CatOyDThEoFKe8toLWvWliZC/Jf+h7NwHi/zjfyLArr1ow==}
- '@tanstack/query-core@5.62.15':
+ /@tanstack/query-core/5.62.15:
resolution: {integrity: sha512-wT20X14CxcWY8YLJ/1pnsXn/y1Q2uRJZYWW93PWRtZt+3/JlGZyiyTcO4pGnqycnP7CokCROAyatsraosqZsDA==}
- '@tanstack/query-devtools@5.62.9':
+ /@tanstack/query-devtools/5.62.9:
resolution: {integrity: sha512-b1NZzDLVf6laJsB1Cfm3ieuYzM+WqoO8qpm9v+3Etwd+Ph4zkhUMiT+wcWj5AhEPsXiRodKYiiW048VDNdBxNg==}
- '@tanstack/react-query-devtools@5.62.15':
+ /@tanstack/react-query-devtools/5.62.15_yiraw4ghf3vgr6ue3dbqy7ghf4:
resolution: {integrity: sha512-8aE7uD45NHZgNtHMVQC7PvM9f72mKK4bqcpHr9La8TsTRX7x8dy2Kdu2ReFNLCrdlEWkxdP5843tc/lHg+Q/rg==}
peerDependencies:
'@tanstack/react-query': ^5.62.15
react: ^18 || ^19
+ dependencies:
+ '@tanstack/query-devtools': 5.62.9
+ '@tanstack/react-query': 5.62.15_react@19.0.0
+ react: 19.0.0
+ dev: false
- '@tanstack/react-query@5.62.15':
+ /@tanstack/react-query/5.62.15_react@19.0.0:
resolution: {integrity: sha512-Ny3xxsOWmEQCFyHiV3CF7t6+QAV+LpBEREiXyllKR4+tStyd8smOAa98ZHmEx0ZNy36M31K8enifB5wTSYAKJw==}
peerDependencies:
react: ^18 || ^19
+ dependencies:
+ '@tanstack/query-core': 5.62.15
+ react: 19.0.0
- '@tanstack/solid-query@5.51.21':
+ /@tanstack/solid-query/5.51.21_solid-js@1.9.5:
resolution: {integrity: sha512-ZwiTMpownN5qwEZE7UB7ccfGkbzSECkZOv/P1+SQ+dKchNtkF9sA0Zz8IVnr6lgqumkCwS8M65ciBdzI0JfTAQ==}
peerDependencies:
solid-js: ^1.6.0
+ dependencies:
+ '@tanstack/query-core': 5.51.21
+ solid-js: 1.9.5
+ dev: true
+
+ /@tanstack/svelte-query/5.62.12_svelte@5.19.9:
+ resolution: {integrity: sha512-tG/FR6ttvf4nBeCvV/fel7KsvEJe/drAC/+WrfxgA5TzmjorSka0RoCN9TcoETcneGMXGqOD8rE9iK5z9KABUw==}
+ peerDependencies:
+ svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0
+ dependencies:
+ '@tanstack/query-core': 5.62.12
+ svelte: 5.19.9
+ dev: false
- '@tanstack/svelte-query@5.62.12':
+ /@tanstack/svelte-query/5.62.12_svelte@5.22.6:
resolution: {integrity: sha512-tG/FR6ttvf4nBeCvV/fel7KsvEJe/drAC/+WrfxgA5TzmjorSka0RoCN9TcoETcneGMXGqOD8rE9iK5z9KABUw==}
peerDependencies:
svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0
+ dependencies:
+ '@tanstack/query-core': 5.62.12
+ svelte: 5.22.6
+ dev: true
- '@tanstack/vue-query-devtools@5.62.12':
+ /@tanstack/vue-query-devtools/5.62.12_xazzx54hlffwcp6dce6seqv4du:
resolution: {integrity: sha512-ZxFz3a56Y1MkEnPaEgiusw8/55pjIeAsYjmNBODVB1ysr5cIrW+3Wlp9TwQmLSPLF5gULO9byX5WOoqLgYErMw==}
peerDependencies:
'@tanstack/vue-query': ^5.62.12
vue: ^3.3.0
+ dependencies:
+ '@tanstack/query-devtools': 5.62.9
+ '@tanstack/vue-query': 5.62.12_vue@3.5.13
+ vue: 3.5.13_typescript@5.5.3
+ dev: false
- '@tanstack/vue-query@5.62.12':
+ /@tanstack/vue-query/5.62.12_vue@3.5.13:
resolution: {integrity: sha512-/d4zBLDUcc6pNHZTIzreD7oxp2AOk+G+ImTQzZMM7GVXI2kvW86repzK12vCaB1aIdg61wbUw/ytcdC42Ki5Rw==}
peerDependencies:
'@vue/composition-api': ^1.1.2
@@ -4359,194 +8443,376 @@ packages:
peerDependenciesMeta:
'@vue/composition-api':
optional: true
+ dependencies:
+ '@tanstack/match-sorter-utils': 8.19.4
+ '@tanstack/query-core': 5.62.12
+ '@vue/devtools-api': 6.6.4
+ vue: 3.5.13_typescript@5.5.3
+ vue-demi: 0.14.10_vue@3.5.13
- '@tootallnate/quickjs-emscripten@0.23.0':
+ /@tootallnate/quickjs-emscripten/0.23.0:
resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
+ dev: true
- '@trysound/sax@0.2.0':
+ /@trysound/sax/0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- '@tsconfig/node10@1.0.11':
+ /@tsconfig/node10/1.0.11:
resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
+ dev: true
- '@tsconfig/node12@1.0.11':
+ /@tsconfig/node12/1.0.11:
resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+ dev: true
- '@tsconfig/node14@1.0.3':
+ /@tsconfig/node14/1.0.3:
resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+ dev: true
- '@tsconfig/node16@1.0.4':
+ /@tsconfig/node16/1.0.4:
resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+ dev: true
- '@tsconfig/node20@20.1.4':
+ /@tsconfig/node20/20.1.4:
resolution: {integrity: sha512-sqgsT69YFeLWf5NtJ4Xq/xAF8p4ZQHlmGW74Nu2tD4+g5fAsposc4ZfaaPixVu4y01BEiDCWLRDCvDM5JOsRxg==}
+ dev: true
- '@tufjs/canonical-json@2.0.0':
+ /@tufjs/canonical-json/2.0.0:
resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
engines: {node: ^16.14.0 || >=18.0.0}
+ dev: true
- '@tufjs/models@3.0.1':
+ /@tufjs/models/3.0.1:
resolution: {integrity: sha512-UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ '@tufjs/canonical-json': 2.0.0
+ minimatch: 9.0.5
+ dev: true
+
+ /@tybys/wasm-util/0.9.0:
+ resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
+ requiresBuild: true
+ dependencies:
+ tslib: 2.8.1
+ dev: false
+ optional: true
- '@types/babel__core@7.20.5':
+ /@types/babel__core/7.20.5:
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+ dependencies:
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
+ '@types/babel__generator': 7.6.8
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.20.6
+ dev: true
- '@types/babel__generator@7.6.8':
+ /@types/babel__generator/7.6.8:
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
+ dependencies:
+ '@babel/types': 7.26.9
+ dev: true
- '@types/babel__template@7.4.4':
+ /@types/babel__template/7.4.4:
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+ dependencies:
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
+ dev: true
- '@types/babel__traverse@7.20.6':
+ /@types/babel__traverse/7.20.6:
resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
+ dependencies:
+ '@babel/types': 7.26.9
+ dev: true
- '@types/body-parser@1.19.5':
+ /@types/body-parser/1.19.5:
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
+ dependencies:
+ '@types/connect': 3.4.38
+ '@types/node': 22.13.10
+ dev: true
- '@types/bonjour@3.5.13':
+ /@types/bonjour/3.5.13:
resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
+ dependencies:
+ '@types/node': 22.13.10
+ dev: true
- '@types/connect-history-api-fallback@1.5.4':
+ /@types/connect-history-api-fallback/1.5.4:
resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
+ dependencies:
+ '@types/express-serve-static-core': 5.0.6
+ '@types/node': 22.13.10
+ dev: true
- '@types/connect@3.4.38':
+ /@types/connect/3.4.38:
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
+ dependencies:
+ '@types/node': 22.13.10
+ dev: true
- '@types/cookie@0.6.0':
+ /@types/cookie/0.6.0:
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
+ dev: true
- '@types/cors@2.8.17':
+ /@types/cors/2.8.17:
resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
+ dependencies:
+ '@types/node': 22.13.10
+ dev: true
- '@types/cross-spawn@6.0.6':
+ /@types/cross-spawn/6.0.6:
resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==}
+ dependencies:
+ '@types/node': 22.13.10
+ dev: true
- '@types/eslint-scope@3.7.7':
+ /@types/eslint-scope/3.7.7:
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
+ dependencies:
+ '@types/eslint': 9.6.1
+ '@types/estree': 1.0.6
+ dev: true
- '@types/eslint@9.6.0':
+ /@types/eslint/9.6.0:
resolution: {integrity: sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==}
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
+ dev: true
- '@types/eslint@9.6.1':
+ /@types/eslint/9.6.1:
resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
+ dev: true
- '@types/estree@1.0.6':
+ /@types/estree/1.0.6:
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
- '@types/express-serve-static-core@4.19.6':
+ /@types/express-serve-static-core/4.19.6:
resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
+ dependencies:
+ '@types/node': 22.13.10
+ '@types/qs': 6.9.18
+ '@types/range-parser': 1.2.7
+ '@types/send': 0.17.4
+ dev: true
- '@types/express-serve-static-core@5.0.6':
+ /@types/express-serve-static-core/5.0.6:
resolution: {integrity: sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==}
+ dependencies:
+ '@types/node': 22.13.10
+ '@types/qs': 6.9.18
+ '@types/range-parser': 1.2.7
+ '@types/send': 0.17.4
+ dev: true
- '@types/express@4.17.21':
+ /@types/express/4.17.21:
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
+ dependencies:
+ '@types/body-parser': 1.19.5
+ '@types/express-serve-static-core': 4.19.6
+ '@types/qs': 6.9.18
+ '@types/serve-static': 1.15.7
+ dev: true
- '@types/hast@3.0.4':
+ /@types/hast/3.0.4:
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
+ dependencies:
+ '@types/unist': 3.0.3
+ dev: true
- '@types/http-errors@2.0.4':
+ /@types/http-errors/2.0.4:
resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
+ dev: true
- '@types/http-proxy@1.17.15':
- resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
-
- '@types/http-proxy@1.17.16':
+ /@types/http-proxy/1.17.16:
resolution: {integrity: sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==}
+ dependencies:
+ '@types/node': 22.13.10
- '@types/jasmine@5.1.5':
- resolution: {integrity: sha512-SaCZ3kM5NjOiJqMRYwHpLbTfUC2Dyk1KS3QanNFsUYPGTk70CWVK/J9ueun6zNhw/UkgV7xl8V4ZLQZNRbfnNw==}
+ /@types/jasmine/5.1.7:
+ resolution: {integrity: sha512-DVOfk9FaClQfNFpSfaML15jjB5cjffDMvjtph525sroR5BEAW2uKnTOYUTqTFuZFjNvH0T5XMIydvIctnUKufw==}
+ dev: true
- '@types/jsdom@21.1.7':
+ /@types/jsdom/21.1.7:
resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==}
+ dependencies:
+ '@types/node': 22.10.5
+ '@types/tough-cookie': 4.0.5
+ parse5: 7.2.1
+ dev: true
- '@types/json-schema@7.0.15':
+ /@types/json-schema/7.0.15:
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
- '@types/json5@0.0.29':
+ /@types/json5/0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
+ dev: true
- '@types/linkify-it@5.0.0':
+ /@types/linkify-it/5.0.0:
resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
+ dev: true
- '@types/markdown-it@14.1.2':
+ /@types/markdown-it/14.1.2:
resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
+ dependencies:
+ '@types/linkify-it': 5.0.0
+ '@types/mdurl': 2.0.0
+ dev: true
- '@types/mdast@4.0.4':
+ /@types/mdast/4.0.4:
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
+ dependencies:
+ '@types/unist': 3.0.3
+ dev: true
- '@types/mdurl@2.0.0':
+ /@types/mdurl/2.0.0:
resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
+ dev: true
- '@types/mime@1.3.5':
+ /@types/mime/1.3.5:
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
+ dev: true
- '@types/node-forge@1.3.11':
+ /@types/node-forge/1.3.11:
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
+ dependencies:
+ '@types/node': 22.13.10
+ dev: true
- '@types/node@12.20.55':
+ /@types/node/12.20.55:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
+ dev: true
- '@types/node@22.10.5':
+ /@types/node/22.10.5:
resolution: {integrity: sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==}
+ dependencies:
+ undici-types: 6.20.0
- '@types/node@22.13.8':
- resolution: {integrity: sha512-G3EfaZS+iOGYWLLRCEAXdWK9my08oHNZ+FHluRiggIYJPOXzhOiDgpVCUHaUvyIC5/fj7C/p637jdzC666AOKQ==}
+ /@types/node/22.13.10:
+ resolution: {integrity: sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==}
+ dependencies:
+ undici-types: 6.20.0
- '@types/parse-path@7.0.3':
+ /@types/parse-path/7.0.3:
resolution: {integrity: sha512-LriObC2+KYZD3FzCrgWGv/qufdUy4eXrxcLgQMfYXgPbLIecKIsVBaQgUPmxSSLcjmYbDTQbMgr6qr6l/eb7Bg==}
- '@types/qs@6.9.18':
+ /@types/qs/6.9.18:
resolution: {integrity: sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==}
+ dev: true
- '@types/range-parser@1.2.7':
+ /@types/range-parser/1.2.7:
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
+ dev: true
- '@types/react-dom@19.0.1':
+ /@types/react-dom/19.0.1:
resolution: {integrity: sha512-hljHij7MpWPKF6u5vojuyfV0YA4YURsQG7KT6SzV0Zs2BXAtgdTxG6A229Ub/xiWV4w/7JL8fi6aAyjshH4meA==}
+ dependencies:
+ '@types/react': 19.0.1
- '@types/react@19.0.1':
+ /@types/react/19.0.1:
resolution: {integrity: sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==}
+ dependencies:
+ csstype: 3.1.3
- '@types/resolve@1.20.2':
+ /@types/resolve/1.20.2:
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
- '@types/retry@0.12.2':
+ /@types/retry/0.12.2:
resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==}
+ dev: true
- '@types/semver@7.5.8':
+ /@types/semver/7.5.8:
resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
+ dev: true
- '@types/send@0.17.4':
+ /@types/send/0.17.4:
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
+ dependencies:
+ '@types/mime': 1.3.5
+ '@types/node': 22.13.10
+ dev: true
- '@types/serve-index@1.9.4':
+ /@types/serve-index/1.9.4:
resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
+ dependencies:
+ '@types/express': 4.17.21
+ dev: true
- '@types/serve-static@1.15.7':
+ /@types/serve-static/1.15.7:
resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
+ dependencies:
+ '@types/http-errors': 2.0.4
+ '@types/node': 22.13.10
+ '@types/send': 0.17.4
+ dev: true
- '@types/sockjs@0.3.36':
+ /@types/sockjs/0.3.36:
resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
+ dependencies:
+ '@types/node': 22.13.10
+ dev: true
- '@types/tough-cookie@4.0.5':
+ /@types/tough-cookie/4.0.5:
resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
+ dev: true
- '@types/unist@3.0.3':
+ /@types/unist/3.0.3:
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
+ dev: true
- '@types/web-bluetooth@0.0.20':
+ /@types/web-bluetooth/0.0.20:
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
+ dev: true
- '@types/ws@8.5.14':
- resolution: {integrity: sha512-bd/YFLW+URhBzMXurx7lWByOu+xzU9+kb3RboOteXYDfW+tr+JZa99OyNmPINEGB/ahzKrEuc8rcv4gnpJmxTw==}
+ /@types/ws/8.18.0:
+ resolution: {integrity: sha512-8svvI3hMyvN0kKCJMvTJP/x6Y/EoQbepff882wL+Sn5QsXb3etnamgrJq4isrBxSJj5L2AuXcI0+bgkoAXGUJw==}
+ dependencies:
+ '@types/node': 22.13.10
+ dev: true
- '@types/yauzl@2.10.3':
+ /@types/yauzl/2.10.3:
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
+ requiresBuild: true
+ dependencies:
+ '@types/node': 22.13.10
+ dev: true
+ optional: true
+
+ /@typescript-eslint/eslint-plugin/7.18.0_cdi53umeqzw6zrbmodqrkqvslu:
+ resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^7.0.0
+ eslint: ^8.56.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 7.15.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/type-utils': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/utils': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/visitor-keys': 7.18.0
+ eslint: 9.17.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.4.3_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@typescript-eslint/eslint-plugin@7.18.0':
+ /@typescript-eslint/eslint-plugin/7.18.0_ulnpem3vhphymaemnltoyugxr4:
resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
@@ -4556,22 +8822,85 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/type-utils': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/utils': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/visitor-keys': 7.18.0
+ eslint: 9.17.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.4.3_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@typescript-eslint/eslint-plugin@8.19.1':
+ /@typescript-eslint/eslint-plugin/8.19.1_lpim7asfdh6cjegyoqc2qmzxvm:
resolution: {integrity: sha512-tJzcVyvvb9h/PB96g30MpxACd9IrunT7GF9wfA9/0TJ1LxGOJx1TdPzSbBBnNED7K9Ka8ybJsnEpiXPktolTLg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/scope-manager': 8.19.1
+ '@typescript-eslint/type-utils': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/utils': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/visitor-keys': 8.19.1
+ eslint: 9.17.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 2.0.1_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/eslint-plugin/8.26.0_v7em3iowsogr2ppwgchrzap2oy:
+ resolution: {integrity: sha512-cLr1J6pe56zjKYajK6SSSre6nl1Gj6xDp1TY0trpgPzjVbgDwd09v2Ws37LABxzkicmUjhEeg/fAUjPJJB1v5Q==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.9.0'
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/scope-manager': 8.26.0
+ '@typescript-eslint/type-utils': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/utils': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/visitor-keys': 8.26.0
+ eslint: 9.17.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 2.0.1_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@typescript-eslint/experimental-utils@5.62.0':
+ /@typescript-eslint/experimental-utils/5.62.0_5ss5apc2uy6gwlbeak2m4uqwhi:
resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ '@typescript-eslint/utils': 5.62.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ eslint: 9.17.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
- '@typescript-eslint/parser@7.15.0':
+ /@typescript-eslint/parser/7.15.0_5ss5apc2uy6gwlbeak2m4uqwhi:
resolution: {integrity: sha512-k9fYuQNnypLFcqORNClRykkGOMOj+pV6V91R4GO/l1FDGwpqmSwoOQrOHo3cGaH63e+D3ZiCAOsuS/D2c99j/A==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
@@ -4580,31 +8909,116 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
+ dependencies:
+ '@typescript-eslint/scope-manager': 7.15.0
+ '@typescript-eslint/types': 7.15.0
+ '@typescript-eslint/typescript-estree': 7.15.0_typescript@5.5.3
+ '@typescript-eslint/visitor-keys': 7.15.0
+ debug: 4.4.0
+ eslint: 9.17.0
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/parser/7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi:
+ resolution: {integrity: sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ eslint: ^8.56.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/typescript-estree': 7.18.0_typescript@5.5.3
+ '@typescript-eslint/visitor-keys': 7.18.0
+ debug: 4.4.0
+ eslint: 9.17.0
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@typescript-eslint/parser@8.19.1':
+ /@typescript-eslint/parser/8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi:
resolution: {integrity: sha512-67gbfv8rAwawjYx3fYArwldTQKoYfezNUT4D5ioWetr/xCrxXxvleo3uuiFuKfejipvq+og7mjz3b0G2bVyUCw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.19.1
+ '@typescript-eslint/types': 8.19.1
+ '@typescript-eslint/typescript-estree': 8.19.1_typescript@5.5.3
+ '@typescript-eslint/visitor-keys': 8.19.1
+ debug: 4.4.0
+ eslint: 9.17.0
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/parser/8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi:
+ resolution: {integrity: sha512-mNtXP9LTVBy14ZF3o7JG69gRPBK/2QWtQd0j0oH26HcY/foyJJau6pNUez7QrM5UHnSvwlQcJXKsk0I99B9pOA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.9.0'
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.26.0
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/typescript-estree': 8.26.0_typescript@5.5.3
+ '@typescript-eslint/visitor-keys': 8.26.0
+ debug: 4.4.0
+ eslint: 9.17.0
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/scope-manager/5.62.0:
+ resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
+ dev: true
- '@typescript-eslint/scope-manager@5.62.0':
- resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
- '@typescript-eslint/scope-manager@7.15.0':
+ /@typescript-eslint/scope-manager/7.15.0:
resolution: {integrity: sha512-Q/1yrF/XbxOTvttNVPihxh1b9fxamjEoz2Os/Pe38OHwxC24CyCqXxGTOdpb4lt6HYtqw9HetA/Rf6gDGaMPlw==}
engines: {node: ^18.18.0 || >=20.0.0}
+ dependencies:
+ '@typescript-eslint/types': 7.15.0
+ '@typescript-eslint/visitor-keys': 7.15.0
+ dev: true
- '@typescript-eslint/scope-manager@7.18.0':
+ /@typescript-eslint/scope-manager/7.18.0:
resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
engines: {node: ^18.18.0 || >=20.0.0}
+ dependencies:
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/visitor-keys': 7.18.0
+ dev: true
- '@typescript-eslint/scope-manager@8.19.1':
+ /@typescript-eslint/scope-manager/8.19.1:
resolution: {integrity: sha512-60L9KIuN/xgmsINzonOcMDSB8p82h95hoBfSBtXuO4jlR1R9L1xSkmVZKgCPVfavDlXihh4ARNjXhh1gGnLC7Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ '@typescript-eslint/types': 8.19.1
+ '@typescript-eslint/visitor-keys': 8.19.1
+ dev: true
+
+ /@typescript-eslint/scope-manager/8.26.0:
+ resolution: {integrity: sha512-E0ntLvsfPqnPwng8b8y4OGuzh/iIOm2z8U3S9zic2TeMLW61u5IH2Q1wu0oSTkfrSzwbDJIB/Lm8O3//8BWMPA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/visitor-keys': 8.26.0
+ dev: true
- '@typescript-eslint/type-utils@7.18.0':
+ /@typescript-eslint/type-utils/7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi:
resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
@@ -4613,31 +9027,77 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
+ dependencies:
+ '@typescript-eslint/typescript-estree': 7.18.0_typescript@5.5.3
+ '@typescript-eslint/utils': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ debug: 4.4.0
+ eslint: 9.17.0
+ ts-api-utils: 1.4.3_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@typescript-eslint/type-utils@8.19.1':
+ /@typescript-eslint/type-utils/8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi:
resolution: {integrity: sha512-Rp7k9lhDKBMRJB/nM9Ksp1zs4796wVNyihG9/TU9R6KCJDNkQbc2EOKjrBtLYh3396ZdpXLtr/MkaSEmNMtykw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ dependencies:
+ '@typescript-eslint/typescript-estree': 8.19.1_typescript@5.5.3
+ '@typescript-eslint/utils': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
+ debug: 4.4.0
+ eslint: 9.17.0
+ ts-api-utils: 2.0.1_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/type-utils/8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi:
+ resolution: {integrity: sha512-ruk0RNChLKz3zKGn2LwXuVoeBcUMh+jaqzN461uMMdxy5H9epZqIBtYj7UiPXRuOpaALXGbmRuZQhmwHhaS04Q==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.9.0'
+ dependencies:
+ '@typescript-eslint/typescript-estree': 8.26.0_typescript@5.5.3
+ '@typescript-eslint/utils': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ debug: 4.4.0
+ eslint: 9.17.0
+ ts-api-utils: 2.0.1_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@typescript-eslint/types@5.62.0':
+ /@typescript-eslint/types/5.62.0:
resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: true
- '@typescript-eslint/types@7.15.0':
+ /@typescript-eslint/types/7.15.0:
resolution: {integrity: sha512-aV1+B1+ySXbQH0pLK0rx66I3IkiZNidYobyfn0WFsdGhSXw+P3YOqeTq5GED458SfB24tg+ux3S+9g118hjlTw==}
engines: {node: ^18.18.0 || >=20.0.0}
+ dev: true
- '@typescript-eslint/types@7.18.0':
+ /@typescript-eslint/types/7.18.0:
resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
engines: {node: ^18.18.0 || >=20.0.0}
+ dev: true
- '@typescript-eslint/types@8.19.1':
+ /@typescript-eslint/types/8.19.1:
resolution: {integrity: sha512-JBVHMLj7B1K1v1051ZaMMgLW4Q/jre5qGK0Ew6UgXz1Rqh+/xPzV1aW581OM00X6iOfyr1be+QyW8LOUf19BbA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dev: true
- '@typescript-eslint/typescript-estree@5.62.0':
+ /@typescript-eslint/types/8.26.0:
+ resolution: {integrity: sha512-89B1eP3tnpr9A8L6PZlSjBvnJhWXtYfZhECqlBl1D9Lme9mHO6iWlsprBtVenQvY1HMhax1mWOjhtL3fh/u+pA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dev: true
+
+ /@typescript-eslint/typescript-estree/5.62.0_typescript@5.5.3:
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4645,8 +9105,20 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
+ dependencies:
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
+ debug: 4.4.0
+ globby: 11.1.0
+ is-glob: 4.0.3
+ semver: 7.7.1
+ tsutils: 3.21.0_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@typescript-eslint/typescript-estree@7.15.0':
+ /@typescript-eslint/typescript-estree/7.15.0_typescript@5.5.3:
resolution: {integrity: sha512-gjyB/rHAopL/XxfmYThQbXbzRMGhZzGw6KpcMbfe8Q3nNQKStpxnUKeXb0KiN/fFDR42Z43szs6rY7eHk0zdGQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
@@ -4654,8 +9126,21 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
+ dependencies:
+ '@typescript-eslint/types': 7.15.0
+ '@typescript-eslint/visitor-keys': 7.15.0
+ debug: 4.4.0
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.7.1
+ ts-api-utils: 1.4.3_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@typescript-eslint/typescript-estree@7.18.0':
+ /@typescript-eslint/typescript-estree/7.18.0_typescript@5.5.3:
resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
@@ -4663,129 +9148,442 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
+ dependencies:
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/visitor-keys': 7.18.0
+ debug: 4.4.0
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.7.1
+ ts-api-utils: 1.4.3_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@typescript-eslint/typescript-estree@8.19.1':
+ /@typescript-eslint/typescript-estree/8.19.1_typescript@5.5.3:
resolution: {integrity: sha512-jk/TZwSMJlxlNnqhy0Eod1PNEvCkpY6MXOXE/WLlblZ6ibb32i2We4uByoKPv1d0OD2xebDv4hbs3fm11SMw8Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.8.0'
+ dependencies:
+ '@typescript-eslint/types': 8.19.1
+ '@typescript-eslint/visitor-keys': 8.19.1
+ debug: 4.4.0
+ fast-glob: 3.3.3
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.7.1
+ ts-api-utils: 2.0.1_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/typescript-estree/8.26.0_typescript@5.5.3:
+ resolution: {integrity: sha512-tiJ1Hvy/V/oMVRTbEOIeemA2XoylimlDQ03CgPPNaHYZbpsc78Hmngnt+WXZfJX1pjQ711V7g0H7cSJThGYfPQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <5.9.0'
+ dependencies:
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/visitor-keys': 8.26.0
+ debug: 4.4.0
+ fast-glob: 3.3.3
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.7.1
+ ts-api-utils: 2.0.1_typescript@5.5.3
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@typescript-eslint/utils@5.62.0':
+ /@typescript-eslint/utils/5.62.0_5ss5apc2uy6gwlbeak2m4uqwhi:
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.5.8
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0_typescript@5.5.3
+ eslint: 9.17.0
+ eslint-scope: 5.1.1
+ semver: 7.7.1
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
- '@typescript-eslint/utils@7.18.0':
+ /@typescript-eslint/utils/7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi:
resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/typescript-estree': 7.18.0_typescript@5.5.3
+ eslint: 9.17.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
- '@typescript-eslint/utils@8.19.1':
+ /@typescript-eslint/utils/8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi:
resolution: {integrity: sha512-IxG5gLO0Ne+KaUc8iW1A+XuKLd63o4wlbI1Zp692n1xojCl/THvgIKXJXBZixTh5dd5+yTJ/VXH7GJaaw21qXA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
+ '@typescript-eslint/scope-manager': 8.19.1
+ '@typescript-eslint/types': 8.19.1
+ '@typescript-eslint/typescript-estree': 8.19.1_typescript@5.5.3
+ eslint: 9.17.0
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/utils/8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi:
+ resolution: {integrity: sha512-2L2tU3FVwhvU14LndnQCA2frYC8JnPDVKyQtWFPf8IYFMt/ykEN1bPolNhNbCVgOmdzTlWdusCTKA/9nKrf8Ig==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.9.0'
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
+ '@typescript-eslint/scope-manager': 8.26.0
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/typescript-estree': 8.26.0_typescript@5.5.3
+ eslint: 9.17.0
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@typescript-eslint/visitor-keys@5.62.0':
+ /@typescript-eslint/visitor-keys/5.62.0:
resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ '@typescript-eslint/types': 5.62.0
+ eslint-visitor-keys: 3.4.3
+ dev: true
- '@typescript-eslint/visitor-keys@7.15.0':
+ /@typescript-eslint/visitor-keys/7.15.0:
resolution: {integrity: sha512-Hqgy/ETgpt2L5xueA/zHHIl4fJI2O4XUE9l4+OIfbJIRSnTJb/QscncdqqZzofQegIJugRIF57OJea1khw2SDw==}
engines: {node: ^18.18.0 || >=20.0.0}
+ dependencies:
+ '@typescript-eslint/types': 7.15.0
+ eslint-visitor-keys: 3.4.3
+ dev: true
- '@typescript-eslint/visitor-keys@7.18.0':
+ /@typescript-eslint/visitor-keys/7.18.0:
resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
engines: {node: ^18.18.0 || >=20.0.0}
+ dependencies:
+ '@typescript-eslint/types': 7.18.0
+ eslint-visitor-keys: 3.4.3
+ dev: true
- '@typescript-eslint/visitor-keys@8.19.1':
+ /@typescript-eslint/visitor-keys/8.19.1:
resolution: {integrity: sha512-fzmjU8CHK853V/avYZAvuVut3ZTfwN5YtMaoi+X9Y9MA9keaWNHC3zEQ9zvyX/7Hj+5JkNyK1l7TOR2hevHB6Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ '@typescript-eslint/types': 8.19.1
+ eslint-visitor-keys: 4.2.0
+ dev: true
+
+ /@typescript-eslint/visitor-keys/8.26.0:
+ resolution: {integrity: sha512-2z8JQJWAzPdDd51dRQ/oqIJxe99/hoLIqmf8RMCAJQtYDc535W/Jt2+RTP4bP0aKeBG1F65yjIZuczOXCmbWwg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ '@typescript-eslint/types': 8.26.0
+ eslint-visitor-keys: 4.2.0
+ dev: true
- '@ungap/structured-clone@1.3.0':
+ /@ungap/structured-clone/1.3.0:
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
+ dev: true
- '@unhead/dom@1.11.18':
- resolution: {integrity: sha512-zQuJUw/et9zYEV0SZWTDX23IgurwMaXycAuxt4L6OgNL0T4TWP3a0J/Vm3Q02hmdNo/cPKeVBrwBdnFUXjGU4w==}
+ /@unhead/dom/1.11.20:
+ resolution: {integrity: sha512-jgfGYdOH+xHJF/j8gudjsYu3oIjFyXhCWcgKaw3vQnT616gSqyqnGQGOItL+BQtQZACKNISwIfx5PuOtztMKLA==}
+ dependencies:
+ '@unhead/schema': 1.11.20
+ '@unhead/shared': 1.11.20
- '@unhead/schema@1.11.18':
- resolution: {integrity: sha512-a3TA/OJCRdfbFhcA3Hq24k1ZU1o9szicESrw8DZcGyQFacHnh84mVgnyqSkMnwgCmfN4kvjSiTBlLEHS6+wATw==}
+ /@unhead/schema/1.11.20:
+ resolution: {integrity: sha512-0zWykKAaJdm+/Y7yi/Yds20PrUK7XabLe9c3IRcjnwYmSWY6z0Cr19VIs3ozCj8P+GhR+/TI2mwtGlueCEYouA==}
+ dependencies:
+ hookable: 5.5.3
+ zhead: 2.2.4
- '@unhead/shared@1.11.18':
- resolution: {integrity: sha512-OsupRQRxJqqnuKiL1Guqipjbl7MndD5DofvmGa3PFGu2qNPmOmH2mxGFjRBBgq2XxY1KalIHl/2I9HV6gbK8cw==}
+ /@unhead/shared/1.11.20:
+ resolution: {integrity: sha512-1MOrBkGgkUXS+sOKz/DBh4U20DNoITlJwpmvSInxEUNhghSNb56S0RnaHRq0iHkhrO/cDgz2zvfdlRpoPLGI3w==}
+ dependencies:
+ '@unhead/schema': 1.11.20
+ packrup: 0.1.2
- '@unhead/ssr@1.11.18':
- resolution: {integrity: sha512-uaHPz0RRAb18yKeCmHyHk5QKWRk/uHpOrqSbhRXTOhbrd3Ur3gGTVaAoyUoRYKGPU5B5/pyHh3TfLw0LkfrH1A==}
+ /@unhead/ssr/1.11.20:
+ resolution: {integrity: sha512-j6ehzmdWGAvv0TEZyLE3WBnG1ULnsbKQcLqBDh3fvKS6b3xutcVZB7mjvrVE7ckSZt6WwOtG0ED3NJDS7IjzBA==}
+ dependencies:
+ '@unhead/schema': 1.11.20
+ '@unhead/shared': 1.11.20
- '@unhead/vue@1.11.18':
- resolution: {integrity: sha512-Jfi7t/XNBnlcauP9UTH3VHBcS69G70ikFd2e5zdgULLDRWpOlLs1sSTH1V2juNptc93DOk9RQfC5jLWbLcivFw==}
+ /@unhead/vue/1.11.20_vue@3.5.13:
+ resolution: {integrity: sha512-sqQaLbwqY9TvLEGeq8Fd7+F2TIuV3nZ5ihVISHjWpAM3y7DwNWRU7NmT9+yYT+2/jw1Vjwdkv5/HvDnvCLrgmg==}
peerDependencies:
vue: '>=2.7 || >=3'
+ dependencies:
+ '@unhead/schema': 1.11.20
+ '@unhead/shared': 1.11.20
+ hookable: 5.5.3
+ unhead: 1.11.20
+ vue: 3.5.13_typescript@5.5.3
- '@vercel/nft@0.27.10':
- resolution: {integrity: sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==}
- engines: {node: '>=16'}
+ /@unhead/vue/2.0.0-rc.9_vue@3.5.13:
+ resolution: {integrity: sha512-bXQAMVqU6TFtThcvs4II1C/WOHXEcihSWNPahx1IlzAD2J/uZAb5QEIds4sM7yyLFwBPbQgqr175m67QfDRS4g==}
+ peerDependencies:
+ vue: '>=3.5.13'
+ dependencies:
+ hookable: 5.5.3
+ unhead: 2.0.0-rc.9
+ vue: 3.5.13
+ dev: false
+
+ /@vercel/nft/0.29.2_rollup@4.35.0:
+ resolution: {integrity: sha512-A/Si4mrTkQqJ6EXJKv5EYCDQ3NL6nJXxG8VGXePsaiQigsomHYQC9xSpX8qGk7AEZk4b1ssbYIqJ0ISQQ7bfcA==}
+ engines: {node: '>=18'}
hasBin: true
+ dependencies:
+ '@mapbox/node-pre-gyp': 2.0.0
+ '@rollup/pluginutils': 5.1.4_rollup@4.35.0
+ acorn: 8.14.1
+ acorn-import-attributes: 1.9.5_acorn@8.14.1
+ async-sema: 3.1.1
+ bindings: 1.5.0
+ estree-walker: 2.0.2
+ glob: 10.4.5
+ graceful-fs: 4.2.11
+ node-gyp-build: 4.8.4
+ picomatch: 4.0.2
+ resolve-from: 5.0.0
+ transitivePeerDependencies:
+ - encoding
+ - rollup
+ - supports-color
+
+ /@vitejs/plugin-basic-ssl/1.2.0_vite@6.1.0:
+ resolution: {integrity: sha512-mkQnxTkcldAzIsomk1UuLfAu9n+kpQ3JbHcpCp7d2Oo6ITtji8pHS3QToOWjhPFvNQSnhlkAjmGbhv2QvwO/7Q==}
+ engines: {node: '>=14.21.3'}
+ peerDependencies:
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ dependencies:
+ vite: 6.1.0_4c45tymmfdin4b4i5tudvmn5ny
+ dev: true
+
+ /@vitejs/plugin-basic-ssl/1.2.0_vite@6.2.0:
+ resolution: {integrity: sha512-mkQnxTkcldAzIsomk1UuLfAu9n+kpQ3JbHcpCp7d2Oo6ITtji8pHS3QToOWjhPFvNQSnhlkAjmGbhv2QvwO/7Q==}
+ engines: {node: '>=14.21.3'}
+ peerDependencies:
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ dependencies:
+ vite: 6.2.0_2ybhmnti7g23zofer2g3osvokq
+ dev: true
- '@vitejs/plugin-basic-ssl@1.2.0':
+ /@vitejs/plugin-basic-ssl/1.2.0_vite@6.2.1:
resolution: {integrity: sha512-mkQnxTkcldAzIsomk1UuLfAu9n+kpQ3JbHcpCp7d2Oo6ITtji8pHS3QToOWjhPFvNQSnhlkAjmGbhv2QvwO/7Q==}
engines: {node: '>=14.21.3'}
peerDependencies:
vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ dependencies:
+ vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
+ dev: true
- '@vitejs/plugin-react@4.3.1':
+ /@vitejs/plugin-react/4.3.1_vite@6.0.9:
resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.2.0 || ^5.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/plugin-transform-react-jsx-self': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-transform-react-jsx-source': 7.25.9_@babel+core@7.26.9
+ '@types/babel__core': 7.20.5
+ react-refresh: 0.14.2
+ vite: 6.0.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@vitejs/plugin-vue-jsx/4.1.1_vite@5.4.14+vue@3.5.13:
+ resolution: {integrity: sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ peerDependencies:
+ vite: ^5.0.0 || ^6.0.0
+ vue: ^3.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/plugin-transform-typescript': 7.26.8_@babel+core@7.26.9
+ '@vue/babel-plugin-jsx': 1.3.0_@babel+core@7.26.9
+ vite: 5.4.14_4c45tymmfdin4b4i5tudvmn5ny
+ vue: 3.5.13_typescript@5.5.3
+ transitivePeerDependencies:
+ - supports-color
+
+ /@vitejs/plugin-vue-jsx/4.1.1_vite@6.0.9+vue@3.5.13:
+ resolution: {integrity: sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ peerDependencies:
+ vite: ^5.0.0 || ^6.0.0
+ vue: ^3.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/plugin-transform-typescript': 7.26.8_@babel+core@7.26.9
+ '@vue/babel-plugin-jsx': 1.3.0_@babel+core@7.26.9
+ vite: 6.0.9_@types+node@22.10.5
+ vue: 3.5.13_typescript@5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@vitejs/plugin-vue-jsx@4.1.1':
+ /@vitejs/plugin-vue-jsx/4.1.1_vite@6.2.1+vue@3.5.13:
resolution: {integrity: sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0 || ^6.0.0
vue: ^3.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/plugin-transform-typescript': 7.26.8_@babel+core@7.26.9
+ '@vue/babel-plugin-jsx': 1.3.0_@babel+core@7.26.9
+ vite: 6.2.1_jiti@2.4.2
+ vue: 3.5.13
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@vitejs/plugin-vue/5.2.1_vite@5.4.14+vue@3.5.13:
+ resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ peerDependencies:
+ vite: ^5.0.0 || ^6.0.0
+ vue: ^3.2.25
+ dependencies:
+ vite: 5.4.14
+ vue: 3.5.13
+
+ /@vitejs/plugin-vue/5.2.1_vite@6.0.9+vue@3.5.13:
+ resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ peerDependencies:
+ vite: ^5.0.0 || ^6.0.0
+ vue: ^3.2.25
+ dependencies:
+ vite: 6.0.9_@types+node@22.10.5
+ vue: 3.5.13_typescript@5.5.3
+ dev: true
- '@vitejs/plugin-vue@5.2.1':
+ /@vitejs/plugin-vue/5.2.1_vite@6.2.1+vue@3.5.13:
resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
+ dependencies:
+ vite: 6.2.1_jiti@2.4.2
+ vue: 3.5.13
+ dev: false
- '@vitest/coverage-v8@1.6.0':
+ /@vitest/coverage-v8/1.6.0_vitest@1.6.0:
resolution: {integrity: sha512-KvapcbMY/8GYIG0rlwwOKCVNRc0OL20rrhFkg/CHNzncV03TE2XWvO5w9uZYoxNiMEBacAJt3unSOiZ7svePew==}
peerDependencies:
vitest: 1.6.0
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@bcoe/v8-coverage': 0.2.3
+ debug: 4.4.0
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-report: 3.0.1
+ istanbul-lib-source-maps: 5.0.6
+ istanbul-reports: 3.1.7
+ magic-string: 0.30.17
+ magicast: 0.3.5
+ picocolors: 1.1.1
+ std-env: 3.8.1
+ strip-literal: 2.1.1
+ test-exclude: 6.0.0
+ vitest: 1.6.0_@types+node@22.10.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@vitest/expect@1.6.0':
+ /@vitest/expect/1.6.0:
resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==}
+ dependencies:
+ '@vitest/spy': 1.6.0
+ '@vitest/utils': 1.6.0
+ chai: 4.5.0
+ dev: true
- '@vitest/runner@1.6.0':
+ /@vitest/runner/1.6.0:
resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==}
-
- '@vitest/snapshot@1.6.0':
- resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==}
-
- '@vitest/spy@1.6.0':
+ dependencies:
+ '@vitest/utils': 1.6.0
+ p-limit: 5.0.0
+ pathe: 1.1.2
+ dev: true
+
+ /@vitest/snapshot/1.6.0:
+ resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==}
+ dependencies:
+ magic-string: 0.30.17
+ pathe: 1.1.2
+ pretty-format: 29.7.0
+ dev: true
+
+ /@vitest/spy/1.6.0:
resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==}
+ dependencies:
+ tinyspy: 2.2.1
+ dev: true
- '@vitest/utils@1.6.0':
+ /@vitest/utils/1.6.0:
resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
+ dependencies:
+ diff-sequences: 29.6.3
+ estree-walker: 3.0.3
+ loupe: 2.3.7
+ pretty-format: 29.7.0
+ dev: true
- '@volar/language-core@2.4.11':
- resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==}
+ /@volar/language-core/2.4.12:
+ resolution: {integrity: sha512-RLrFdXEaQBWfSnYGVxvR2WrO6Bub0unkdHYIdC31HzIEqATIuuhRRzYu76iGPZ6OtA4Au1SnW0ZwIqPP217YhA==}
+ dependencies:
+ '@volar/source-map': 2.4.12
+ dev: true
- '@volar/source-map@2.4.11':
- resolution: {integrity: sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==}
+ /@volar/source-map/2.4.12:
+ resolution: {integrity: sha512-bUFIKvn2U0AWojOaqf63ER0N/iHIBYZPpNGogfLPQ68F5Eet6FnLlyho7BS0y2HJ1jFhSif7AcuTx1TqsCzRzw==}
+ dev: true
- '@volar/typescript@2.4.11':
- resolution: {integrity: sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==}
+ /@volar/typescript/2.4.12:
+ resolution: {integrity: sha512-HJB73OTJDgPc80K30wxi3if4fSsZZAOScbj2fcicMuOPoOkcf9NNAINb33o+DzhBdF9xTKC1gnPmIRDous5S0g==}
+ dependencies:
+ '@volar/language-core': 2.4.12
+ path-browserify: 1.0.1
+ vscode-uri: 3.1.0
+ dev: true
- '@vue-macros/common@1.16.1':
+ /@vue-macros/common/1.16.1_vue@3.5.13:
resolution: {integrity: sha512-Pn/AWMTjoMYuquepLZP813BIcq8DTZiNCoaceuNlvaYuOTd8DqBZWc5u0uOMQZMInwME1mdSmmBAcTluiV9Jtg==}
engines: {node: '>=16.14.0'}
peerDependencies:
@@ -4793,70 +9591,192 @@ packages:
peerDependenciesMeta:
vue:
optional: true
+ dependencies:
+ '@vue/compiler-sfc': 3.5.13
+ ast-kit: 1.4.2
+ local-pkg: 1.1.1
+ magic-string-ast: 0.7.1
+ pathe: 2.0.3
+ picomatch: 4.0.2
+ vue: 3.5.13
- '@vue/babel-helper-vue-transform-on@1.2.5':
- resolution: {integrity: sha512-lOz4t39ZdmU4DJAa2hwPYmKc8EsuGa2U0L9KaZaOJUt0UwQNjNA3AZTq6uEivhOKhhG1Wvy96SvYBoFmCg3uuw==}
+ /@vue/babel-helper-vue-transform-on/1.3.0:
+ resolution: {integrity: sha512-vrNyYNQcz1gfc87uuN+Z+On9fFOBQTYRlTUEDovpeCmjuwH83lAm6YM0VBvTx6eRTHg3SU5jP2CD+kSXY30PGg==}
- '@vue/babel-plugin-jsx@1.2.5':
- resolution: {integrity: sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg==}
+ /@vue/babel-plugin-jsx/1.3.0_@babel+core@7.26.9:
+ resolution: {integrity: sha512-ODZSs93FCxLMOiMFAGJXe7QMJp1tk8hkMbk84OcHOTVwYU2cFwFu1z7jjrRv44wCCfPNkflqn6hnexVprb+G7A==}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-syntax-jsx': 7.25.9_@babel+core@7.26.9
+ '@babel/template': 7.26.9
+ '@babel/traverse': 7.26.9
+ '@babel/types': 7.26.9
+ '@vue/babel-helper-vue-transform-on': 1.3.0
+ '@vue/babel-plugin-resolve-type': 1.3.0_@babel+core@7.26.9
+ '@vue/shared': 3.5.13
+ transitivePeerDependencies:
+ - supports-color
- '@vue/babel-plugin-resolve-type@1.2.5':
- resolution: {integrity: sha512-U/ibkQrf5sx0XXRnUZD1mo5F7PkpKyTbfXM3a3rC4YnUz6crHEz9Jg09jzzL6QYlXNto/9CePdOg/c87O4Nlfg==}
+ /@vue/babel-plugin-resolve-type/1.3.0_@babel+core@7.26.9:
+ resolution: {integrity: sha512-3SmusE11QKNKtnVfbsKegUEArpf1fXE85Dzi/Q6lvaz3MA3tmL8BXyq/vA7GJeZ183XeNpLIZHrHDdUh9V348A==}
peerDependencies:
'@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/core': 7.26.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/parser': 7.26.9
+ '@vue/compiler-sfc': 3.5.13
+ transitivePeerDependencies:
+ - supports-color
- '@vue/compiler-core@3.5.13':
+ /@vue/compiler-core/3.5.13:
resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
+ dependencies:
+ '@babel/parser': 7.26.9
+ '@vue/shared': 3.5.13
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.13':
+ /@vue/compiler-dom/3.5.13:
resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
+ dependencies:
+ '@vue/compiler-core': 3.5.13
+ '@vue/shared': 3.5.13
- '@vue/compiler-sfc@3.5.13':
+ /@vue/compiler-sfc/3.5.13:
resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
+ dependencies:
+ '@babel/parser': 7.26.9
+ '@vue/compiler-core': 3.5.13
+ '@vue/compiler-dom': 3.5.13
+ '@vue/compiler-ssr': 3.5.13
+ '@vue/shared': 3.5.13
+ estree-walker: 2.0.2
+ magic-string: 0.30.17
+ postcss: 8.5.3
+ source-map-js: 1.2.1
- '@vue/compiler-ssr@3.5.13':
+ /@vue/compiler-ssr/3.5.13:
resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
+ dependencies:
+ '@vue/compiler-dom': 3.5.13
+ '@vue/shared': 3.5.13
- '@vue/compiler-vue2@2.7.16':
+ /@vue/compiler-vue2/2.7.16:
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
+ dependencies:
+ de-indent: 1.0.2
+ he: 1.2.0
+ dev: true
- '@vue/devtools-api@6.6.4':
+ /@vue/devtools-api/6.6.4:
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
- '@vue/devtools-api@7.7.1':
- resolution: {integrity: sha512-Cexc8GimowoDkJ6eNelOPdYIzsu2mgNyp0scOQ3tiaYSb9iok6LOESSsJvHaI+ib3joRfqRJNLkHFjhNuWA5dg==}
+ /@vue/devtools-api/7.7.2:
+ resolution: {integrity: sha512-1syn558KhyN+chO5SjlZIwJ8bV/bQ1nOVTG66t2RbG66ZGekyiYNmRO7X9BJCXQqPsFHlnksqvPhce2qpzxFnA==}
+ dependencies:
+ '@vue/devtools-kit': 7.7.2
+ dev: true
+
+ /@vue/devtools-core/7.6.8_vite@6.0.9+vue@3.5.13:
+ resolution: {integrity: sha512-8X4roysTwzQ94o7IobjVcOd1aZF5iunikrMrHPI2uUdigZCi2kFTQc7ffYiFiTNaLElCpjOhCnM7bo7aK1yU7A==}
+ peerDependencies:
+ vue: ^3.0.0
+ dependencies:
+ '@vue/devtools-kit': 7.7.2
+ '@vue/devtools-shared': 7.7.2
+ mitt: 3.0.1
+ nanoid: 5.1.3
+ pathe: 1.1.2
+ vite-hot-client: 0.2.4_vite@6.0.9
+ vue: 3.5.13
+ transitivePeerDependencies:
+ - vite
+ dev: false
- '@vue/devtools-core@7.6.8':
+ /@vue/devtools-core/7.6.8_vite@6.2.1+vue@3.5.13:
resolution: {integrity: sha512-8X4roysTwzQ94o7IobjVcOd1aZF5iunikrMrHPI2uUdigZCi2kFTQc7ffYiFiTNaLElCpjOhCnM7bo7aK1yU7A==}
peerDependencies:
vue: ^3.0.0
+ dependencies:
+ '@vue/devtools-kit': 7.7.2
+ '@vue/devtools-shared': 7.7.2
+ mitt: 3.0.1
+ nanoid: 5.1.3
+ pathe: 1.1.2
+ vite-hot-client: 0.2.4_vite@6.2.1
+ vue: 3.5.13_typescript@5.5.3
+ transitivePeerDependencies:
+ - vite
+ dev: true
- '@vue/devtools-core@7.7.1':
- resolution: {integrity: sha512-W4CRrSZJodNIfrPO7/dXF6ZS0QyOY6PCYVhpSoTSx9+nh2wpZxcS1482lAdKM0FTlaoApHV6jXT95Me90hSaBA==}
+ /@vue/devtools-core/7.7.2_vite@6.0.9+vue@3.5.13:
+ resolution: {integrity: sha512-lexREWj1lKi91Tblr38ntSsy6CvI8ba7u+jmwh2yruib/ltLUcsIzEjCnrkh1yYGGIKXbAuYV2tOG10fGDB9OQ==}
peerDependencies:
vue: ^3.0.0
+ dependencies:
+ '@vue/devtools-kit': 7.7.2
+ '@vue/devtools-shared': 7.7.2
+ mitt: 3.0.1
+ nanoid: 5.1.3
+ pathe: 2.0.3
+ vite-hot-client: 0.2.4_vite@6.0.9
+ vue: 3.5.13_typescript@5.5.3
+ transitivePeerDependencies:
+ - vite
- '@vue/devtools-kit@7.6.8':
+ /@vue/devtools-kit/7.6.8:
resolution: {integrity: sha512-JhJ8M3sPU+v0P2iZBF2DkdmR9L0dnT5RXJabJqX6o8KtFs3tebdvfoXV2Dm3BFuqeECuMJIfF1aCzSt+WQ4wrw==}
+ dependencies:
+ '@vue/devtools-shared': 7.7.2
+ birpc: 0.2.19
+ hookable: 5.5.3
+ mitt: 3.0.1
+ perfect-debounce: 1.0.0
+ speakingurl: 14.0.1
+ superjson: 2.2.2
- '@vue/devtools-kit@7.7.1':
- resolution: {integrity: sha512-yhZ4NPnK/tmxGtLNQxmll90jIIXdb2jAhPF76anvn5M/UkZCiLJy28bYgPIACKZ7FCosyKoaope89/RsFJll1w==}
+ /@vue/devtools-kit/7.7.2:
+ resolution: {integrity: sha512-CY0I1JH3Z8PECbn6k3TqM1Bk9ASWxeMtTCvZr7vb+CHi+X/QwQm5F1/fPagraamKMAHVfuuCbdcnNg1A4CYVWQ==}
+ dependencies:
+ '@vue/devtools-shared': 7.7.2
+ birpc: 0.2.19
+ hookable: 5.5.3
+ mitt: 3.0.1
+ perfect-debounce: 1.0.0
+ speakingurl: 14.0.1
+ superjson: 2.2.2
- '@vue/devtools-shared@7.7.1':
- resolution: {integrity: sha512-BtgF7kHq4BHG23Lezc/3W2UhK2ga7a8ohAIAGJMBr4BkxUFzhqntQtCiuL1ijo2ztWnmusymkirgqUrXoQKumA==}
+ /@vue/devtools-shared/7.7.2:
+ resolution: {integrity: sha512-uBFxnp8gwW2vD6FrJB8JZLUzVb6PNRG0B0jBnHsOH8uKyva2qINY8PTF5Te4QlTbMDqU5K6qtJDr6cNsKWhbOA==}
+ dependencies:
+ rfdc: 1.4.1
- '@vue/eslint-config-prettier@10.1.0':
+ /@vue/eslint-config-prettier/10.1.0_ihiz3eglg54tlp4ip7syowrynq:
resolution: {integrity: sha512-J6wV91y2pXc0Phha01k0WOHBTPsoSTf4xlmMjoKaeSxBpAdsgTppGF5RZRdOHM7OA74zAXD+VLANrtYXpiPKkQ==}
peerDependencies:
eslint: '>= 8.21.0'
prettier: '>= 3.0.0'
+ dependencies:
+ eslint: 9.17.0
+ eslint-config-prettier: 9.1.0_eslint@9.17.0
+ eslint-plugin-prettier: 5.2.3_mtaaos5yzai2zmkzqvxmznyxti
+ prettier: 3.4.2
+ transitivePeerDependencies:
+ - '@types/eslint'
+ dev: true
- '@vue/eslint-config-typescript@14.2.0':
+ /@vue/eslint-config-typescript/14.2.0_3tezvrcgwmzx5dts2w5tywkdwq:
resolution: {integrity: sha512-JJ4wHuTJa2faQsBOUeWzuHOSFizVS7RWG2eH2noABk2LcT4wVcTOMZKM/lFobKBcgwADIPAKVRGFHVKooXImoA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
@@ -4866,36 +9786,75 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
+ dependencies:
+ eslint: 9.17.0
+ eslint-plugin-vue: 9.32.0_eslint@9.17.0
+ fast-glob: 3.3.3
+ typescript: 5.5.3
+ typescript-eslint: 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ vue-eslint-parser: 9.4.3_eslint@9.17.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- '@vue/language-core@2.2.0':
+ /@vue/language-core/2.2.0_typescript@5.5.3:
resolution: {integrity: sha512-O1ZZFaaBGkKbsRfnVH1ifOK1/1BUkyK+3SQsfnh6PmMmD4qJcTU8godCeA96jjDRTL6zgnK7YzCHfaUlH2r0Mw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
+ dependencies:
+ '@volar/language-core': 2.4.12
+ '@vue/compiler-dom': 3.5.13
+ '@vue/compiler-vue2': 2.7.16
+ '@vue/shared': 3.5.13
+ alien-signals: 0.4.14
+ minimatch: 9.0.5
+ muggle-string: 0.4.1
+ path-browserify: 1.0.1
+ typescript: 5.5.3
+ dev: true
- '@vue/reactivity@3.5.13':
+ /@vue/reactivity/3.5.13:
resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
+ dependencies:
+ '@vue/shared': 3.5.13
- '@vue/runtime-core@3.5.13':
+ /@vue/runtime-core/3.5.13:
resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
+ dependencies:
+ '@vue/reactivity': 3.5.13
+ '@vue/shared': 3.5.13
- '@vue/runtime-dom@3.5.13':
+ /@vue/runtime-dom/3.5.13:
resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
+ dependencies:
+ '@vue/reactivity': 3.5.13
+ '@vue/runtime-core': 3.5.13
+ '@vue/shared': 3.5.13
+ csstype: 3.1.3
- '@vue/server-renderer@3.5.13':
+ /@vue/server-renderer/3.5.13_vue@3.5.13:
resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
peerDependencies:
vue: 3.5.13
+ dependencies:
+ '@vue/compiler-ssr': 3.5.13
+ '@vue/shared': 3.5.13
+ vue: 3.5.13_typescript@5.5.3
- '@vue/shared@3.5.13':
+ /@vue/shared/3.5.13:
resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
- '@vue/test-utils@2.4.6':
+ /@vue/test-utils/2.4.6:
resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
+ dependencies:
+ js-beautify: 1.15.4
+ vue-component-type-helpers: 2.2.8
+ dev: true
- '@vue/tsconfig@0.7.0':
+ /@vue/tsconfig/0.7.0_3jdk7euojidjqlkepbdrol3p3i:
resolution: {integrity: sha512-ku2uNz5MaZ9IerPPUyOHzyjhXoX2kVJaVf7hL315DC17vS6IiZRmmCPfggNbU16QTvM80+uYYy3eYJB59WCtvg==}
peerDependencies:
typescript: 5.x
@@ -4905,11 +9864,24 @@ packages:
optional: true
vue:
optional: true
+ dependencies:
+ typescript: 5.5.3
+ vue: 3.5.13_typescript@5.5.3
+ dev: true
- '@vueuse/core@10.11.1':
+ /@vueuse/core/10.11.1_vue@3.5.13:
resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
+ dependencies:
+ '@types/web-bluetooth': 0.0.20
+ '@vueuse/metadata': 10.11.1
+ '@vueuse/shared': 10.11.1_vue@3.5.13
+ vue-demi: 0.14.10_vue@3.5.13
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+ dev: true
- '@vueuse/integrations@10.11.1':
+ /@vueuse/integrations/10.11.1_q2nj55xqsxutrthy5peyde56gu:
resolution: {integrity: sha512-Y5hCGBguN+vuVYTZmdd/IMXLOdfS60zAmDmFYc4BKBcMUPZH1n4tdyDECCPjXm0bNT3ZRUy1xzTLGaUje8Xyaw==}
peerDependencies:
async-validator: ^4
@@ -4949,390 +9921,764 @@ packages:
optional: true
universal-cookie:
optional: true
+ dependencies:
+ '@vueuse/core': 10.11.1_vue@3.5.13
+ '@vueuse/shared': 10.11.1_vue@3.5.13
+ focus-trap: 7.6.4
+ vue-demi: 0.14.10_vue@3.5.13
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+ dev: true
- '@vueuse/metadata@10.11.1':
+ /@vueuse/metadata/10.11.1:
resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
+ dev: true
- '@vueuse/shared@10.11.1':
+ /@vueuse/shared/10.11.1_vue@3.5.13:
resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
+ dependencies:
+ vue-demi: 0.14.10_vue@3.5.13
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+ dev: true
- '@webassemblyjs/ast@1.14.1':
+ /@webassemblyjs/ast/1.14.1:
resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
+ dependencies:
+ '@webassemblyjs/helper-numbers': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ dev: true
- '@webassemblyjs/floating-point-hex-parser@1.13.2':
+ /@webassemblyjs/floating-point-hex-parser/1.13.2:
resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
+ dev: true
- '@webassemblyjs/helper-api-error@1.13.2':
+ /@webassemblyjs/helper-api-error/1.13.2:
resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
+ dev: true
- '@webassemblyjs/helper-buffer@1.14.1':
+ /@webassemblyjs/helper-buffer/1.14.1:
resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
+ dev: true
- '@webassemblyjs/helper-numbers@1.13.2':
+ /@webassemblyjs/helper-numbers/1.13.2:
resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
+ dependencies:
+ '@webassemblyjs/floating-point-hex-parser': 1.13.2
+ '@webassemblyjs/helper-api-error': 1.13.2
+ '@xtuc/long': 4.2.2
+ dev: true
- '@webassemblyjs/helper-wasm-bytecode@1.13.2':
+ /@webassemblyjs/helper-wasm-bytecode/1.13.2:
resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
+ dev: true
- '@webassemblyjs/helper-wasm-section@1.14.1':
+ /@webassemblyjs/helper-wasm-section/1.14.1:
resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/wasm-gen': 1.14.1
+ dev: true
- '@webassemblyjs/ieee754@1.13.2':
+ /@webassemblyjs/ieee754/1.13.2:
resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+ dev: true
- '@webassemblyjs/leb128@1.13.2':
+ /@webassemblyjs/leb128/1.13.2:
resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
+ dependencies:
+ '@xtuc/long': 4.2.2
+ dev: true
- '@webassemblyjs/utf8@1.13.2':
+ /@webassemblyjs/utf8/1.13.2:
resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
+ dev: true
- '@webassemblyjs/wasm-edit@1.14.1':
+ /@webassemblyjs/wasm-edit/1.14.1:
resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/helper-wasm-section': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-opt': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ '@webassemblyjs/wast-printer': 1.14.1
+ dev: true
- '@webassemblyjs/wasm-gen@1.14.1':
+ /@webassemblyjs/wasm-gen/1.14.1:
resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
+ dev: true
- '@webassemblyjs/wasm-opt@1.14.1':
+ /@webassemblyjs/wasm-opt/1.14.1:
resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==}
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ dev: true
- '@webassemblyjs/wasm-parser@1.14.1':
+ /@webassemblyjs/wasm-parser/1.14.1:
resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==}
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-api-error': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
+ dev: true
- '@webassemblyjs/wast-printer@1.14.1':
+ /@webassemblyjs/wast-printer/1.14.1:
resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@xtuc/long': 4.2.2
+ dev: true
- '@xtuc/ieee754@1.2.0':
+ /@xtuc/ieee754/1.2.0:
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
+ dev: true
- '@xtuc/long@4.2.2':
+ /@xtuc/long/4.2.2:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
+ dev: true
- '@yarnpkg/lockfile@1.1.0':
+ /@yarnpkg/lockfile/1.1.0:
resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
+ dev: true
- abbrev@2.0.0:
+ /abbrev/2.0.0:
resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ dev: true
- abbrev@3.0.0:
+ /abbrev/3.0.0:
resolution: {integrity: sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==}
engines: {node: ^18.17.0 || >=20.5.0}
- abort-controller@3.0.0:
+ /abort-controller/3.0.0:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
+ dependencies:
+ event-target-shim: 5.0.1
- abstract-logging@2.0.1:
+ /abstract-logging/2.0.1:
resolution: {integrity: sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==}
- accepts@1.3.8:
+ /accepts/1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
+ dependencies:
+ mime-types: 2.1.35
+ negotiator: 0.6.3
+ dev: true
- acorn-import-attributes@1.9.5:
+ /acorn-import-attributes/1.9.5_acorn@8.14.1:
resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
peerDependencies:
acorn: ^8
+ dependencies:
+ acorn: 8.14.1
+
+ /acorn-jsx/5.3.2_acorn@7.4.1:
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ acorn: 7.4.1
+ dev: true
- acorn-jsx@5.3.2:
+ /acorn-jsx/5.3.2_acorn@8.14.1:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ acorn: 8.14.1
+ dev: true
- acorn-typescript@1.4.13:
+ /acorn-typescript/1.4.13_acorn@8.14.1:
resolution: {integrity: sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==}
peerDependencies:
acorn: '>=8.9.0'
+ dependencies:
+ acorn: 8.14.1
- acorn-walk@8.3.4:
+ /acorn-walk/8.3.4:
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
+ dependencies:
+ acorn: 8.14.1
+ dev: true
- acorn@7.4.1:
+ /acorn/7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
+ dev: true
- acorn@8.14.0:
+ /acorn/8.14.0:
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
- adjust-sourcemap-loader@4.0.0:
+ /acorn/8.14.1:
+ resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ /adjust-sourcemap-loader/4.0.0:
resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==}
engines: {node: '>=8.9'}
+ dependencies:
+ loader-utils: 2.0.4
+ regex-parser: 2.3.1
+ dev: true
- agent-base@7.1.3:
+ /agent-base/7.1.3:
resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==}
engines: {node: '>= 14'}
- ajv-draft-04@1.0.0:
+ /ajv-draft-04/1.0.0_ajv@8.17.1:
resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==}
peerDependencies:
ajv: ^8.5.0
peerDependenciesMeta:
ajv:
optional: true
+ dependencies:
+ ajv: 8.17.1
+ dev: false
- ajv-formats@2.1.1:
+ /ajv-formats/2.1.1:
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
- peerDependencies:
- ajv: ^8.0.0
peerDependenciesMeta:
ajv:
optional: true
+ dependencies:
+ ajv: 8.17.1
+ dev: true
- ajv-formats@3.0.1:
+ /ajv-formats/3.0.1:
resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
- peerDependencies:
- ajv: ^8.0.0
peerDependenciesMeta:
ajv:
optional: true
+ dependencies:
+ ajv: 8.17.1
- ajv-keywords@5.1.0:
+ /ajv-keywords/5.1.0_ajv@8.17.1:
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
ajv: ^8.8.2
+ dependencies:
+ ajv: 8.17.1
+ fast-deep-equal: 3.1.3
+ dev: true
- ajv@6.12.6:
+ /ajv/6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.4.1
+ dev: true
- ajv@8.17.1:
+ /ajv/8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-uri: 3.0.6
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
- algoliasearch@5.20.0:
- resolution: {integrity: sha512-groO71Fvi5SWpxjI9Ia+chy0QBwT61mg6yxJV27f5YFf+Mw+STT75K6SHySpP8Co5LsCrtsbCH5dJZSRtkSKaQ==}
+ /algoliasearch/5.20.4:
+ resolution: {integrity: sha512-wjfzqruxovJyDqga8M6Xk5XtfuVg3igrWjhjgkRya87+WwfEa1kg+IluujBLzgAiMSd6rO6jqRb7czjgeeSYgQ==}
engines: {node: '>= 14.0.0'}
-
- alien-signals@0.4.14:
+ dependencies:
+ '@algolia/client-abtesting': 5.20.4
+ '@algolia/client-analytics': 5.20.4
+ '@algolia/client-common': 5.20.4
+ '@algolia/client-insights': 5.20.4
+ '@algolia/client-personalization': 5.20.4
+ '@algolia/client-query-suggestions': 5.20.4
+ '@algolia/client-search': 5.20.4
+ '@algolia/ingestion': 1.20.4
+ '@algolia/monitoring': 1.20.4
+ '@algolia/recommend': 5.20.4
+ '@algolia/requester-browser-xhr': 5.20.4
+ '@algolia/requester-fetch': 5.20.4
+ '@algolia/requester-node-http': 5.20.4
+ dev: true
+
+ /alien-signals/0.4.14:
resolution: {integrity: sha512-itUAVzhczTmP2U5yX67xVpsbbOiquusbWVyA9N+sy6+r6YVbFkahXvNCeEPWEOMhwDYwbVbGHFkVL03N9I5g+Q==}
+ dev: true
- ansi-colors@4.1.3:
+ /ansi-colors/4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
- ansi-escapes@4.3.2:
+ /ansi-escapes/4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
+ dependencies:
+ type-fest: 0.21.3
- ansi-escapes@7.0.0:
+ /ansi-escapes/7.0.0:
resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==}
engines: {node: '>=18'}
+ dependencies:
+ environment: 1.1.0
+ dev: true
- ansi-html-community@0.0.8:
+ /ansi-html-community/0.0.8:
resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
engines: {'0': node >= 0.8.0}
hasBin: true
+ dev: true
- ansi-regex@5.0.1:
+ /ansi-regex/5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.1.0:
+ /ansi-regex/6.1.0:
resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
- ansi-styles@4.3.0:
+ /ansi-styles/4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
+ dependencies:
+ color-convert: 2.0.1
- ansi-styles@5.2.0:
+ /ansi-styles/5.2.0:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
+ dev: true
- ansi-styles@6.2.1:
+ /ansi-styles/6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
- any-promise@1.3.0:
+ /ansis/3.17.0:
+ resolution: {integrity: sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==}
+ engines: {node: '>=14'}
+ dev: false
+
+ /any-promise/1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
+ dev: true
- anymatch@3.1.3:
+ /anymatch/3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
+ dependencies:
+ normalize-path: 3.0.0
+ picomatch: 2.3.1
- archiver-utils@5.0.2:
+ /archiver-utils/5.0.2:
resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==}
engines: {node: '>= 14'}
-
- archiver@7.0.1:
+ dependencies:
+ glob: 10.4.5
+ graceful-fs: 4.2.11
+ is-stream: 2.0.1
+ lazystream: 1.0.1
+ lodash: 4.17.21
+ normalize-path: 3.0.0
+ readable-stream: 4.7.0
+
+ /archiver/7.0.1:
resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==}
engines: {node: '>= 14'}
+ dependencies:
+ archiver-utils: 5.0.2
+ async: 3.2.6
+ buffer-crc32: 1.0.0
+ readable-stream: 4.7.0
+ readdir-glob: 1.1.3
+ tar-stream: 3.1.7
+ zip-stream: 6.0.1
- arg@4.1.3:
+ /arg/4.1.3:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
+ dev: true
- arg@5.0.2:
+ /arg/5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
+ dev: true
- argparse@1.0.10:
+ /argparse/1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
+ dependencies:
+ sprintf-js: 1.0.3
+ dev: true
- argparse@2.0.1:
+ /argparse/2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- aria-hidden@1.2.4:
+ /aria-hidden/1.2.4:
resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
engines: {node: '>=10'}
+ dependencies:
+ tslib: 2.8.1
+ dev: false
- aria-query@5.3.2:
+ /aria-query/5.3.2:
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
engines: {node: '>= 0.4'}
- array-buffer-byte-length@1.0.2:
+ /array-buffer-byte-length/1.0.2:
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ is-array-buffer: 3.0.5
+ dev: true
- array-flatten@1.1.1:
+ /array-flatten/1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
+ dev: true
- array-includes@3.1.8:
+ /array-includes/3.1.8:
resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ is-string: 1.1.1
+ dev: true
- array-union@2.1.0:
+ /array-union/2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
+ dev: true
- array.prototype.findlast@1.2.5:
+ /array.prototype.findlast/1.2.5:
resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ es-shim-unscopables: 1.1.0
+ dev: true
- array.prototype.findlastindex@1.2.5:
+ /array.prototype.findlastindex/1.2.5:
resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ es-shim-unscopables: 1.1.0
+ dev: true
- array.prototype.flat@1.3.3:
+ /array.prototype.flat/1.3.3:
resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-shim-unscopables: 1.1.0
+ dev: true
- array.prototype.flatmap@1.3.3:
+ /array.prototype.flatmap/1.3.3:
resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-shim-unscopables: 1.1.0
+ dev: true
- array.prototype.tosorted@1.1.4:
+ /array.prototype.tosorted/1.1.4:
resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ es-shim-unscopables: 1.1.0
+ dev: true
- arraybuffer.prototype.slice@1.0.4:
+ /arraybuffer.prototype.slice/1.0.4:
resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.2
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ is-array-buffer: 3.0.5
+ dev: true
- assertion-error@1.1.0:
+ /assertion-error/1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
+ dev: true
- ast-kit@1.4.0:
- resolution: {integrity: sha512-BlGeOw73FDsX7z0eZE/wuuafxYoek2yzNJ6l6A1nsb4+z/p87TOPbHaWuN53kFKNuUXiCQa2M+xLF71IqQmRSw==}
+ /ast-kit/1.4.2:
+ resolution: {integrity: sha512-lvGehj1XsrIoQrD5CfPduIzQbcpuX2EPjlk/vDMDQF9U9HLRB6WwMTdighj5n52hdhh8xg9VgPTU7Q25MuJ/rw==}
engines: {node: '>=16.14.0'}
+ dependencies:
+ '@babel/parser': 7.26.9
+ pathe: 2.0.3
- ast-types-flow@0.0.8:
+ /ast-types-flow/0.0.8:
resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
+ dev: true
- ast-types@0.13.4:
+ /ast-types/0.13.4:
resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
engines: {node: '>=4'}
+ dependencies:
+ tslib: 2.8.1
+ dev: true
- ast-walker-scope@0.6.2:
+ /ast-walker-scope/0.6.2:
resolution: {integrity: sha512-1UWOyC50xI3QZkRuDj6PqDtpm1oHWtYs+NQGwqL/2R11eN3Q81PHAHPM0SWW3BNQm53UDwS//Jv8L4CCVLM1bQ==}
engines: {node: '>=16.14.0'}
+ dependencies:
+ '@babel/parser': 7.26.9
+ ast-kit: 1.4.2
- async-function@1.0.0:
+ /async-function/1.0.0:
resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
engines: {node: '>= 0.4'}
+ dev: true
- async-sema@3.1.1:
+ /async-sema/3.1.1:
resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
- async@3.2.6:
+ /async/3.2.6:
resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
- asynckit@0.4.0:
+ /asynckit/0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- atomic-sleep@1.0.0:
+ /atomic-sleep/1.0.0:
resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==}
engines: {node: '>=8.0.0'}
- autoprefixer@10.4.19:
+ /autoprefixer/10.4.19_postcss@8.4.41:
resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
+ dependencies:
+ browserslist: 4.24.4
+ caniuse-lite: 1.0.30001702
+ fraction.js: 4.3.7
+ normalize-range: 0.1.2
+ picocolors: 1.1.1
+ postcss: 8.4.41
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /autoprefixer/10.4.20_postcss@8.4.41:
+ resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
+ engines: {node: ^10 || ^12 || >=14}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ browserslist: 4.24.4
+ caniuse-lite: 1.0.30001702
+ fraction.js: 4.3.7
+ normalize-range: 0.1.2
+ picocolors: 1.1.1
+ postcss: 8.4.41
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /autoprefixer/10.4.20_postcss@8.5.2:
+ resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
+ engines: {node: ^10 || ^12 || >=14}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ browserslist: 4.24.4
+ caniuse-lite: 1.0.30001702
+ fraction.js: 4.3.7
+ normalize-range: 0.1.2
+ picocolors: 1.1.1
+ postcss: 8.5.2
+ postcss-value-parser: 4.2.0
+ dev: true
- autoprefixer@10.4.20:
+ /autoprefixer/10.4.20_postcss@8.5.3:
resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
+ dependencies:
+ browserslist: 4.24.4
+ caniuse-lite: 1.0.30001702
+ fraction.js: 4.3.7
+ normalize-range: 0.1.2
+ picocolors: 1.1.1
+ postcss: 8.5.3
+ postcss-value-parser: 4.2.0
- available-typed-arrays@1.0.7:
+ /available-typed-arrays/1.0.7:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ possible-typed-array-names: 1.1.0
+ dev: true
- avvio@9.1.0:
+ /avvio/9.1.0:
resolution: {integrity: sha512-fYASnYi600CsH/j9EQov7lECAniYiBFiiAtBNuZYLA2leLe9qOvZzqYHFjtIj6gD2VMoMLP14834LFWvr4IfDw==}
+ dependencies:
+ '@fastify/error': 4.0.0
+ fastq: 1.19.1
- axe-core@4.10.2:
- resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
+ /axe-core/4.10.3:
+ resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==}
engines: {node: '>=4'}
+ dev: true
- axios@1.7.9:
+ /axios/1.7.9:
resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==}
+ dependencies:
+ follow-redirects: 1.15.9_debug@4.4.0
+ form-data: 4.0.2
+ proxy-from-env: 1.1.0
+ transitivePeerDependencies:
+ - debug
- axobject-query@4.1.0:
+ /axobject-query/4.1.0:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
engines: {node: '>= 0.4'}
- b4a@1.6.7:
+ /b4a/1.6.7:
resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
- babel-loader@9.2.1:
+ /babel-loader/9.2.1_36thhkzb4fzrlvycd72b4vi7u4:
resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@babel/core': ^7.12.0
webpack: '>=5'
+ dependencies:
+ '@babel/core': 7.26.9
+ find-cache-dir: 4.0.0
+ schema-utils: 4.3.0
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
- babel-plugin-polyfill-corejs2@0.4.12:
+ /babel-plugin-polyfill-corejs2/0.4.12_@babel+core@7.26.9:
resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/compat-data': 7.26.8
+ '@babel/core': 7.26.9
+ '@babel/helper-define-polyfill-provider': 0.6.3_@babel+core@7.26.9
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- babel-plugin-polyfill-corejs3@0.10.6:
+ /babel-plugin-polyfill-corejs3/0.10.6_@babel+core@7.26.9:
resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-define-polyfill-provider': 0.6.3_@babel+core@7.26.9
+ core-js-compat: 3.41.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- babel-plugin-polyfill-corejs3@0.11.1:
+ /babel-plugin-polyfill-corejs3/0.11.1_@babel+core@7.26.9:
resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-define-polyfill-provider': 0.6.3_@babel+core@7.26.9
+ core-js-compat: 3.41.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- babel-plugin-polyfill-regenerator@0.6.3:
+ /babel-plugin-polyfill-regenerator/0.6.3_@babel+core@7.26.9:
resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-define-polyfill-provider': 0.6.3_@babel+core@7.26.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- balanced-match@1.0.2:
+ /balanced-match/1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- bare-events@2.5.4:
+ /bare-events/2.5.4:
resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==}
+ optional: true
- bare-fs@2.3.5:
+ /bare-fs/2.3.5:
resolution: {integrity: sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==}
+ requiresBuild: true
+ dependencies:
+ bare-events: 2.5.4
+ bare-path: 2.1.3
+ bare-stream: 2.6.5_bare-events@2.5.4
+ transitivePeerDependencies:
+ - bare-buffer
+ dev: true
+ optional: true
- bare-os@2.4.4:
+ /bare-os/2.4.4:
resolution: {integrity: sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==}
+ dev: true
+ optional: true
- bare-path@2.1.3:
+ /bare-path/2.1.3:
resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==}
+ dependencies:
+ bare-os: 2.4.4
+ dev: true
+ optional: true
- bare-stream@2.6.4:
- resolution: {integrity: sha512-G6i3A74FjNq4nVrrSTUz5h3vgXzBJnjmWAVlBWaZETkgu+LgKd7AiyOml3EDJY1AHlIbBHKDXE+TUT53Ff8OaA==}
+ /bare-stream/2.6.5_bare-events@2.5.4:
+ resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==}
peerDependencies:
bare-buffer: '*'
bare-events: '*'
@@ -5341,447 +10687,831 @@ packages:
optional: true
bare-events:
optional: true
+ dependencies:
+ bare-events: 2.5.4
+ streamx: 2.22.0
+ dev: true
+ optional: true
- base64-js@1.5.1:
+ /base64-js/1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- base64id@2.0.0:
+ /base64id/2.0.0:
resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
engines: {node: ^4.5.0 || >= 5.9}
+ dev: true
- basic-ftp@5.0.5:
+ /basic-ftp/5.0.5:
resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==}
engines: {node: '>=10.0.0'}
+ dev: true
- batch@0.6.1:
+ /batch/0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
+ dev: true
- beasties@0.2.0:
+ /beasties/0.2.0:
resolution: {integrity: sha512-Ljqskqx/tbZagIglYoJIMzH5zgssyp+in9+9sAyh15N22AornBeIDnb8EZ6Rk+6ShfMxd92uO3gfpT0NtZbpow==}
engines: {node: '>=14.0.0'}
+ dependencies:
+ css-select: 5.1.0
+ css-what: 6.1.0
+ dom-serializer: 2.0.0
+ domhandler: 5.0.3
+ htmlparser2: 9.1.0
+ picocolors: 1.1.1
+ postcss: 8.5.3
+ postcss-media-query-parser: 0.2.3
+ dev: true
- better-path-resolve@1.0.0:
+ /better-path-resolve/1.0.0:
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
engines: {node: '>=4'}
+ dependencies:
+ is-windows: 1.0.2
+ dev: true
- big.js@5.2.2:
+ /big.js/5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
+ dev: true
- binary-extensions@2.3.0:
+ /binary-extensions/2.3.0:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
- bindings@1.5.0:
+ /bindings/1.5.0:
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
+ dependencies:
+ file-uri-to-path: 1.0.0
- birpc@0.2.19:
+ /birpc/0.2.19:
resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
- bl@4.1.0:
+ /birpc/2.2.0:
+ resolution: {integrity: sha512-1/22obknhoj56PcE+pZPp6AbWDdY55M81/ofpPW3Ltlp9Eh4zoFFLswvZmNpRTb790CY5tsNfgbYeNOqIARJfQ==}
+ dev: false
+
+ /bl/4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
+ dependencies:
+ buffer: 5.7.1
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ dev: true
- body-parser@1.20.3:
+ /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}
+ 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
+ dev: true
- bonjour-service@1.3.0:
+ /bonjour-service/1.3.0:
resolution: {integrity: sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ multicast-dns: 7.2.5
+ dev: true
- boolbase@1.0.0:
+ /boolbase/1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- brace-expansion@1.1.11:
+ /brace-expansion/1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
+ dependencies:
+ balanced-match: 1.0.2
+ concat-map: 0.0.1
- brace-expansion@2.0.1:
+ /brace-expansion/2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ dependencies:
+ balanced-match: 1.0.2
- braces@3.0.3:
+ /braces/3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
+ dependencies:
+ fill-range: 7.1.1
- browserslist@4.24.4:
+ /browserslist/4.24.4:
resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001702
+ electron-to-chromium: 1.5.113
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.3_browserslist@4.24.4
- buffer-crc32@0.2.13:
+ /buffer-crc32/0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
+ dev: true
- buffer-crc32@1.0.0:
+ /buffer-crc32/1.0.0:
resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
engines: {node: '>=8.0.0'}
- buffer-from@1.1.2:
+ /buffer-from/1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- buffer@5.7.1:
+ /buffer/5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+ dev: true
- buffer@6.0.3:
+ /buffer/6.0.3:
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
- bundle-name@4.1.0:
+ /bundle-name/4.1.0:
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
engines: {node: '>=18'}
+ dependencies:
+ run-applescript: 7.0.0
- bundle-require@5.1.0:
+ /bundle-require/5.1.0_esbuild@0.24.2:
resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
esbuild: '>=0.18'
+ dependencies:
+ esbuild: 0.24.2
+ load-tsconfig: 0.2.5
+ dev: true
- busboy@1.6.0:
+ /busboy/1.6.0:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
+ dependencies:
+ streamsearch: 1.1.0
+ dev: false
- bytes@3.1.2:
+ /bytes/3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
+ dev: true
- c12@1.11.2:
+ /c12/1.11.2:
resolution: {integrity: sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==}
peerDependencies:
magicast: ^0.3.4
peerDependenciesMeta:
magicast:
optional: true
+ dependencies:
+ chokidar: 3.6.0
+ confbox: 0.1.8
+ defu: 6.1.4
+ dotenv: 16.4.7
+ giget: 1.2.5
+ jiti: 1.21.7
+ mlly: 1.7.4
+ ohash: 1.1.6
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.3.1
+ rc9: 2.1.2
+ dev: true
- c12@2.0.1:
+ /c12/2.0.1:
resolution: {integrity: sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A==}
peerDependencies:
magicast: ^0.3.5
peerDependenciesMeta:
magicast:
optional: true
+ dependencies:
+ chokidar: 4.0.3
+ confbox: 0.1.8
+ defu: 6.1.4
+ dotenv: 16.4.7
+ giget: 1.2.5
+ jiti: 2.4.2
+ mlly: 1.7.4
+ ohash: 1.1.6
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.3.1
+ rc9: 2.1.2
+ dev: false
- cac@6.7.14:
- resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
- engines: {node: '>=8'}
-
- cacache@19.0.1:
- resolution: {integrity: sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
- call-bind-apply-helpers@1.0.1:
- resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
- engines: {node: '>= 0.4'}
+ /c12/2.0.4:
+ resolution: {integrity: sha512-3DbbhnFt0fKJHxU4tEUPmD1ahWE4PWPMomqfYsTJdrhpmEnRKJi3qSC4rO5U6E6zN1+pjBY7+z8fUmNRMaVKLw==}
+ peerDependencies:
+ magicast: ^0.3.5
+ peerDependenciesMeta:
+ magicast:
+ optional: true
+ dependencies:
+ chokidar: 4.0.3
+ confbox: 0.1.8
+ defu: 6.1.4
+ dotenv: 16.4.7
+ giget: 1.2.5
+ jiti: 2.4.2
+ mlly: 1.7.4
+ ohash: 2.0.11
+ pathe: 2.0.3
+ perfect-debounce: 1.0.0
+ pkg-types: 1.3.1
+ rc9: 2.1.2
- call-bind@1.0.8:
- resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
- engines: {node: '>= 0.4'}
+ /c12/3.0.2:
+ resolution: {integrity: sha512-6Tzk1/TNeI3WBPpK0j/Ss4+gPj3PUJYbWl/MWDJBThFvwNGNkXtd7Cz8BJtD4aRwoGHtzQD0SnxamgUiBH0/Nw==}
+ peerDependencies:
+ magicast: ^0.3.5
+ peerDependenciesMeta:
+ magicast:
+ optional: true
+ dependencies:
+ chokidar: 4.0.3
+ confbox: 0.1.8
+ defu: 6.1.4
+ dotenv: 16.4.7
+ exsolve: 1.0.4
+ giget: 2.0.0
+ jiti: 2.4.2
+ ohash: 2.0.11
+ pathe: 2.0.3
+ perfect-debounce: 1.0.0
+ pkg-types: 2.1.0
+ rc9: 2.1.2
+
+ /c12/3.0.2_magicast@0.3.5:
+ resolution: {integrity: sha512-6Tzk1/TNeI3WBPpK0j/Ss4+gPj3PUJYbWl/MWDJBThFvwNGNkXtd7Cz8BJtD4aRwoGHtzQD0SnxamgUiBH0/Nw==}
+ peerDependencies:
+ magicast: ^0.3.5
+ peerDependenciesMeta:
+ magicast:
+ optional: true
+ dependencies:
+ chokidar: 4.0.3
+ confbox: 0.1.8
+ defu: 6.1.4
+ dotenv: 16.4.7
+ exsolve: 1.0.4
+ giget: 2.0.0
+ jiti: 2.4.2
+ magicast: 0.3.5
+ ohash: 2.0.11
+ pathe: 2.0.3
+ perfect-debounce: 1.0.0
+ pkg-types: 2.1.0
+ rc9: 2.1.2
+
+ /cac/6.7.14:
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
+ engines: {node: '>=8'}
+
+ /cacache/19.0.1:
+ resolution: {integrity: sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ '@npmcli/fs': 4.0.0
+ fs-minipass: 3.0.3
+ glob: 10.4.5
+ lru-cache: 10.4.3
+ minipass: 7.1.2
+ minipass-collect: 2.0.1
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ p-map: 7.0.3
+ ssri: 12.0.0
+ tar: 7.4.3
+ unique-filename: 4.0.0
+ dev: true
+
+ /call-bind-apply-helpers/1.0.2:
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+
+ /call-bind/1.0.8:
+ resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ get-intrinsic: 1.3.0
+ set-function-length: 1.2.2
+ dev: true
- call-bound@1.0.3:
- resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
+ /call-bound/1.0.4:
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
+ dev: true
- callsites@3.1.0:
+ /callsites/3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
+ dev: true
- camelcase-css@2.0.1:
+ /camelcase-css/2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
+ dev: true
- caniuse-api@3.0.0:
+ /caniuse-api/3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
+ dependencies:
+ browserslist: 4.24.4
+ caniuse-lite: 1.0.30001702
+ lodash.memoize: 4.1.2
+ lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001696:
- resolution: {integrity: sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ==}
+ /caniuse-lite/1.0.30001702:
+ resolution: {integrity: sha512-LoPe/D7zioC0REI5W73PeR1e1MLCipRGq/VkovJnd6Df+QVqT+vT33OXCp8QUd7kA7RZrHWxb1B36OQKI/0gOA==}
- ccount@2.0.1:
+ /ccount/2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
+ dev: true
- chai@4.5.0:
+ /chai/4.5.0:
resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==}
engines: {node: '>=4'}
+ dependencies:
+ assertion-error: 1.1.0
+ check-error: 1.0.3
+ deep-eql: 4.1.4
+ get-func-name: 2.0.2
+ loupe: 2.3.7
+ pathval: 1.1.1
+ type-detect: 4.1.0
+ dev: true
- chalk@4.1.2:
+ /chalk/4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
- chalk@5.4.1:
+ /chalk/5.4.1:
resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ dev: true
- change-case@5.4.4:
+ /change-case/5.4.4:
resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==}
- char-regex@1.0.2:
+ /char-regex/1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
+ dev: true
- character-entities-html4@2.1.0:
+ /character-entities-html4/2.1.0:
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
+ dev: true
- character-entities-legacy@3.0.0:
+ /character-entities-legacy/3.0.0:
resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
+ dev: true
- chardet@0.7.0:
+ /chardet/0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
+ dev: true
- check-error@1.0.3:
+ /check-error/1.0.3:
resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
+ dependencies:
+ get-func-name: 2.0.2
+ dev: true
- chokidar@3.6.0:
+ /chokidar/3.6.0:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.3
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.6.0
+ optionalDependencies:
+ fsevents: 2.3.3
- chokidar@4.0.3:
+ /chokidar/4.0.3:
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
+ dependencies:
+ readdirp: 4.1.2
- chownr@2.0.0:
+ /chownr/2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
- chownr@3.0.0:
+ /chownr/3.0.0:
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
engines: {node: '>=18'}
- chrome-trace-event@1.0.4:
+ /chrome-trace-event/1.0.4:
resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
+ dev: true
- chromium-bidi@0.5.24:
+ /chromium-bidi/0.5.24_c4f7xbigk5ph7wwb2u23nrsx5q:
resolution: {integrity: sha512-5xQNN2SVBdZv4TxeMLaI+PelrnZsHDhn8h2JtyriLr+0qHcZS8BMuo93qN6J1VmtmrgYP+rmcLHcbpnA8QJh+w==}
peerDependencies:
devtools-protocol: '*'
+ dependencies:
+ devtools-protocol: 0.0.1299070
+ mitt: 3.0.1
+ urlpattern-polyfill: 10.0.0
+ zod: 3.23.8
+ dev: true
- ci-info@3.9.0:
+ /ci-info/3.9.0:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
+ dev: true
- citty@0.1.6:
+ /citty/0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
+ dependencies:
+ consola: 3.4.0
- cjs-module-lexer@1.4.1:
- resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==}
+ /cjs-module-lexer/1.4.3:
+ resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==}
+ dev: true
- classnames@2.5.1:
+ /classnames/2.5.1:
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
+ dev: false
- clear@0.1.0:
+ /clear/0.1.0:
resolution: {integrity: sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw==}
- cli-cursor@3.1.0:
+ /cli-cursor/3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
+ dependencies:
+ restore-cursor: 3.1.0
+ dev: true
- cli-cursor@5.0.0:
+ /cli-cursor/5.0.0:
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
engines: {node: '>=18'}
+ dependencies:
+ restore-cursor: 5.1.0
+ dev: true
- cli-highlight@2.1.11:
+ /cli-highlight/2.1.11:
resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==}
engines: {node: '>=8.0.0', npm: '>=5.0.0'}
hasBin: true
+ dependencies:
+ chalk: 4.1.2
+ highlight.js: 10.7.3
+ mz: 2.7.0
+ parse5: 5.1.1
+ parse5-htmlparser2-tree-adapter: 6.0.1
+ yargs: 16.2.0
+ dev: true
- cli-spinners@2.9.2:
+ /cli-spinners/2.9.2:
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
+ dev: true
- cli-table3@0.6.5:
+ /cli-table3/0.6.5:
resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
engines: {node: 10.* || >= 12.*}
+ dependencies:
+ string-width: 4.2.3
+ optionalDependencies:
+ '@colors/colors': 1.5.0
+ dev: true
- cli-truncate@4.0.0:
+ /cli-truncate/4.0.0:
resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==}
engines: {node: '>=18'}
+ dependencies:
+ slice-ansi: 5.0.0
+ string-width: 7.2.0
+ dev: true
- cli-width@4.1.0:
+ /cli-width/4.1.0:
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
engines: {node: '>= 12'}
+ dev: true
- client-only@0.0.1:
+ /client-only/0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
+ dev: false
- clipboardy@4.0.0:
+ /clipboardy/4.0.0:
resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==}
engines: {node: '>=18'}
+ dependencies:
+ execa: 8.0.1
+ is-wsl: 3.1.0
+ is64bit: 2.0.0
- cliui@7.0.4:
+ /cliui/7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 7.0.0
+ dev: true
- cliui@8.0.1:
+ /cliui/8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 7.0.0
- clone-deep@4.0.1:
+ /clone-deep/4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
+ dependencies:
+ is-plain-object: 2.0.4
+ kind-of: 6.0.3
+ shallow-clone: 3.0.1
+ dev: true
- clone@1.0.4:
+ /clone/1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
+ dev: true
- clsx@2.1.1:
+ /clsx/2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
- cluster-key-slot@1.1.2:
+ /cluster-key-slot/1.1.2:
resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
engines: {node: '>=0.10.0'}
- color-convert@2.0.1:
+ /color-convert/2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
+ dependencies:
+ color-name: 1.1.4
- color-name@1.1.4:
+ /color-name/1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- color-string@1.9.1:
+ /color-string/1.9.1:
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
- color@4.2.3:
+ /color/4.2.3:
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
engines: {node: '>=12.5.0'}
+ dependencies:
+ color-convert: 2.0.1
+ color-string: 1.9.1
- colord@2.9.3:
+ /colord/2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
- colorette@1.4.0:
+ /colorette/1.4.0:
resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
- colorette@2.0.20:
+ /colorette/2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+ dev: true
- combined-stream@1.0.8:
+ /combined-stream/1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
+ dependencies:
+ delayed-stream: 1.0.0
- comma-separated-tokens@2.0.3:
+ /comma-separated-tokens/2.0.3:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
+ dev: true
- commander@10.0.1:
+ /commander/10.0.1:
resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
engines: {node: '>=14'}
+ dev: true
- commander@12.1.0:
+ /commander/12.1.0:
resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
engines: {node: '>=18'}
+ dev: true
- commander@13.0.0:
+ /commander/13.0.0:
resolution: {integrity: sha512-oPYleIY8wmTVzkvQq10AEok6YcTC4sRUBl8F9gVuwchGVUCTbl/vhLTaQqutuuySYOsu8YTgV+OxKc/8Yvx+mQ==}
engines: {node: '>=18'}
+ dev: false
- commander@2.20.3:
+ /commander/2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- commander@4.1.1:
+ /commander/4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'}
+ dev: true
- commander@7.2.0:
+ /commander/7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
- commander@8.3.0:
+ /commander/8.3.0:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
- common-path-prefix@3.0.0:
+ /common-path-prefix/3.0.0:
resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
+ dev: true
- commondir@1.0.1:
+ /commondir/1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- compatx@0.1.8:
+ /compatx/0.1.8:
resolution: {integrity: sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==}
- compress-commons@6.0.2:
+ /compress-commons/6.0.2:
resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==}
engines: {node: '>= 14'}
+ dependencies:
+ crc-32: 1.2.2
+ crc32-stream: 6.0.0
+ is-stream: 2.0.1
+ normalize-path: 3.0.0
+ readable-stream: 4.7.0
- compressible@2.0.18:
+ /compressible/2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
+ dependencies:
+ mime-db: 1.53.0
+ dev: true
- compression@1.8.0:
+ /compression/1.8.0:
resolution: {integrity: sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==}
engines: {node: '>= 0.8.0'}
+ dependencies:
+ bytes: 3.1.2
+ compressible: 2.0.18
+ debug: 2.6.9
+ negotiator: 0.6.4
+ on-headers: 1.0.2
+ safe-buffer: 5.2.1
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- concat-map@0.0.1:
+ /concat-map/0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- confbox@0.1.8:
+ /confbox/0.1.8:
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
- config-chain@1.1.13:
+ /confbox/0.2.1:
+ resolution: {integrity: sha512-hkT3yDPFbs95mNCy1+7qNKC6Pro+/ibzYxtM2iqEigpf0sVw+bg4Zh9/snjsBcf990vfIsg5+1U7VyiyBb3etg==}
+
+ /config-chain/1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
+ dependencies:
+ ini: 1.3.8
+ proto-list: 1.2.4
+ dev: true
- connect-history-api-fallback@2.0.0:
+ /connect-history-api-fallback/2.0.0:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
engines: {node: '>=0.8'}
+ dev: true
- connect@3.7.0:
+ /connect/3.7.0:
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
engines: {node: '>= 0.10.0'}
+ dependencies:
+ debug: 2.6.9
+ finalhandler: 1.1.2
+ parseurl: 1.3.3
+ utils-merge: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- consola@3.4.0:
+ /consola/3.4.0:
resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==}
engines: {node: ^14.18.0 || >=16.10.0}
- content-disposition@0.5.4:
+ /content-disposition/0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: true
- content-type@1.0.5:
+ /content-type/1.0.5:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
+ dev: true
- convert-source-map@1.9.0:
+ /convert-source-map/1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+ dev: true
- convert-source-map@2.0.0:
+ /convert-source-map/2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- cookie-es@1.2.2:
+ /cookie-es/1.2.2:
resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
- cookie-signature@1.0.6:
+ /cookie-es/2.0.0:
+ resolution: {integrity: sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==}
+
+ /cookie-signature/1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
+ dev: true
- cookie@0.6.0:
+ /cookie/0.6.0:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
+ dev: true
- cookie@0.7.1:
+ /cookie/0.7.1:
resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
+ dev: true
- cookie@0.7.2:
+ /cookie/0.7.2:
resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
engines: {node: '>= 0.6'}
+ dev: true
- cookie@1.0.2:
+ /cookie/1.0.2:
resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==}
engines: {node: '>=18'}
- copy-anything@2.0.6:
+ /copy-anything/2.0.6:
resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
+ dependencies:
+ is-what: 3.14.1
- copy-anything@3.0.5:
+ /copy-anything/3.0.5:
resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
engines: {node: '>=12.13'}
+ dependencies:
+ is-what: 4.1.16
- copy-webpack-plugin@12.0.2:
+ /copy-webpack-plugin/12.0.2_webpack@5.98.0:
resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
webpack: ^5.1.0
+ dependencies:
+ fast-glob: 3.3.3
+ glob-parent: 6.0.2
+ globby: 14.1.0
+ normalize-path: 3.0.0
+ schema-utils: 4.3.0
+ serialize-javascript: 6.0.2
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
- core-js-compat@3.41.0:
+ /core-js-compat/3.41.0:
resolution: {integrity: sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==}
+ dependencies:
+ browserslist: 4.24.4
+ dev: true
- core-util-is@1.0.3:
+ /core-util-is/1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- cors@2.8.5:
+ /cors/2.8.5:
resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
engines: {node: '>= 0.10'}
+ dependencies:
+ object-assign: 4.1.1
+ vary: 1.1.2
+ dev: true
- cosmiconfig@9.0.0:
+ /cosmiconfig/9.0.0_typescript@5.5.3:
resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
engines: {node: '>=14'}
peerDependencies:
@@ -5789,48 +11519,77 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
+ dependencies:
+ env-paths: 2.2.1
+ import-fresh: 3.3.1
+ js-yaml: 4.1.0
+ parse-json: 5.2.0
+ typescript: 5.5.3
+ dev: true
- crc-32@1.2.2:
+ /crc-32/1.2.2:
resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
engines: {node: '>=0.8'}
hasBin: true
- crc32-stream@6.0.0:
+ /crc32-stream/6.0.0:
resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==}
engines: {node: '>= 14'}
+ dependencies:
+ crc-32: 1.2.2
+ readable-stream: 4.7.0
- create-require@1.1.1:
+ /create-require/1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
+ dev: true
- croner@9.0.0:
+ /croner/9.0.0:
resolution: {integrity: sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==}
engines: {node: '>=18.0'}
- cronstrue@2.53.0:
- resolution: {integrity: sha512-CkAcaI94xL8h6N7cGxgXfR5D7oV2yVtDzB9vMZP8tIgPyEv/oc/7nq9rlk7LMxvc3N+q6LKZmNLCVxJRpyEg8A==}
+ /cronstrue/2.56.0:
+ resolution: {integrity: sha512-/YC3b4D/E/S8ToQ7f676A2fqoC3vVpXKjJ4SMsP0jYsvRYJdZ6h9+Fq/Y7FoFDEUFCqLTca+G2qTV227lyyFZg==}
hasBin: true
- cross-spawn@5.1.0:
+ /cross-spawn/5.1.0:
resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
+ dependencies:
+ lru-cache: 4.1.5
+ shebang-command: 1.2.0
+ which: 1.3.1
+ dev: true
- cross-spawn@7.0.5:
+ /cross-spawn/7.0.5:
resolution: {integrity: sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==}
engines: {node: '>= 8'}
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+ dev: true
- cross-spawn@7.0.6:
+ /cross-spawn/7.0.6:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
- crossws@0.3.3:
- resolution: {integrity: sha512-/71DJT3xJlqSnBr83uGJesmVHSzZEvgxHt/fIKxBAAngqMHmnBWQNxCphVxxJ2XL3xleu5+hJD6IQ3TglBedcw==}
+ /crossws/0.3.4:
+ resolution: {integrity: sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==}
+ dependencies:
+ uncrypto: 0.1.3
- css-declaration-sorter@7.2.0:
+ /css-declaration-sorter/7.2.0_postcss@8.5.3:
resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.0.9
+ dependencies:
+ postcss: 8.5.3
- css-loader@7.1.2:
+ /css-loader/7.1.2_webpack@5.98.0:
resolution: {integrity: sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
@@ -5841,95 +11600,186 @@ packages:
optional: true
webpack:
optional: true
+ dependencies:
+ icss-utils: 5.1.0_postcss@8.5.3
+ postcss: 8.5.3
+ postcss-modules-extract-imports: 3.1.0_postcss@8.5.3
+ postcss-modules-local-by-default: 4.2.0_postcss@8.5.3
+ postcss-modules-scope: 3.2.1_postcss@8.5.3
+ postcss-modules-values: 4.0.0_postcss@8.5.3
+ postcss-value-parser: 4.2.0
+ semver: 7.7.1
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
- css-select@5.1.0:
+ /css-select/5.1.0:
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 6.1.0
+ domhandler: 5.0.3
+ domutils: 3.2.2
+ nth-check: 2.1.1
- css-tree@2.2.1:
+ /css-tree/2.2.1:
resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
+ dependencies:
+ mdn-data: 2.0.28
+ source-map-js: 1.2.1
- css-tree@2.3.1:
+ /css-tree/2.3.1:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+ dependencies:
+ mdn-data: 2.0.30
+ source-map-js: 1.2.1
- css-what@6.1.0:
+ /css-what/6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
- cssesc@3.0.0:
+ /cssesc/3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- cssnano-preset-default@7.0.6:
+ /cssnano-preset-default/7.0.6_postcss@8.5.3:
resolution: {integrity: sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
-
- cssnano-utils@5.0.0:
+ dependencies:
+ browserslist: 4.24.4
+ css-declaration-sorter: 7.2.0_postcss@8.5.3
+ cssnano-utils: 5.0.0_postcss@8.5.3
+ postcss: 8.5.3
+ postcss-calc: 10.1.1_postcss@8.5.3
+ postcss-colormin: 7.0.2_postcss@8.5.3
+ postcss-convert-values: 7.0.4_postcss@8.5.3
+ postcss-discard-comments: 7.0.3_postcss@8.5.3
+ postcss-discard-duplicates: 7.0.1_postcss@8.5.3
+ postcss-discard-empty: 7.0.0_postcss@8.5.3
+ postcss-discard-overridden: 7.0.0_postcss@8.5.3
+ postcss-merge-longhand: 7.0.4_postcss@8.5.3
+ postcss-merge-rules: 7.0.4_postcss@8.5.3
+ postcss-minify-font-values: 7.0.0_postcss@8.5.3
+ postcss-minify-gradients: 7.0.0_postcss@8.5.3
+ postcss-minify-params: 7.0.2_postcss@8.5.3
+ postcss-minify-selectors: 7.0.4_postcss@8.5.3
+ postcss-normalize-charset: 7.0.0_postcss@8.5.3
+ postcss-normalize-display-values: 7.0.0_postcss@8.5.3
+ postcss-normalize-positions: 7.0.0_postcss@8.5.3
+ postcss-normalize-repeat-style: 7.0.0_postcss@8.5.3
+ postcss-normalize-string: 7.0.0_postcss@8.5.3
+ postcss-normalize-timing-functions: 7.0.0_postcss@8.5.3
+ postcss-normalize-unicode: 7.0.2_postcss@8.5.3
+ postcss-normalize-url: 7.0.0_postcss@8.5.3
+ postcss-normalize-whitespace: 7.0.0_postcss@8.5.3
+ postcss-ordered-values: 7.0.1_postcss@8.5.3
+ postcss-reduce-initial: 7.0.2_postcss@8.5.3
+ postcss-reduce-transforms: 7.0.0_postcss@8.5.3
+ postcss-svgo: 7.0.1_postcss@8.5.3
+ postcss-unique-selectors: 7.0.3_postcss@8.5.3
+
+ /cssnano-utils/5.0.0_postcss@8.5.3:
resolution: {integrity: sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
+ dependencies:
+ postcss: 8.5.3
- cssnano@7.0.6:
+ /cssnano/7.0.6_postcss@8.5.3:
resolution: {integrity: sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
+ dependencies:
+ cssnano-preset-default: 7.0.6_postcss@8.5.3
+ lilconfig: 3.1.3
+ postcss: 8.5.3
- csso@5.0.5:
+ /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'}
+ dependencies:
+ css-tree: 2.2.1
- cssstyle@3.0.0:
+ /cssstyle/3.0.0:
resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==}
engines: {node: '>=14'}
+ dependencies:
+ rrweb-cssom: 0.6.0
+ dev: true
- csstype@3.1.3:
+ /csstype/3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- custom-event@1.0.1:
+ /custom-event/1.0.1:
resolution: {integrity: sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==}
+ dev: true
- damerau-levenshtein@1.0.8:
+ /damerau-levenshtein/1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
+ dev: true
- data-uri-to-buffer@4.0.1:
+ /data-uri-to-buffer/4.0.1:
resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
engines: {node: '>= 12'}
+ dev: true
- data-uri-to-buffer@6.0.2:
+ /data-uri-to-buffer/6.0.2:
resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==}
engines: {node: '>= 14'}
+ dev: true
- data-urls@5.0.0:
+ /data-urls/5.0.0:
resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
engines: {node: '>=18'}
+ dependencies:
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.1.1
+ dev: true
- data-view-buffer@1.0.2:
+ /data-view-buffer/1.0.2:
resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-data-view: 1.0.2
+ dev: true
- data-view-byte-length@1.0.2:
+ /data-view-byte-length/1.0.2:
resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-data-view: 1.0.2
+ dev: true
- data-view-byte-offset@1.0.1:
+ /data-view-byte-offset/1.0.1:
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-data-view: 1.0.2
+ dev: true
- dataloader@1.4.0:
+ /dataloader/1.4.0:
resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==}
+ dev: true
- date-format@4.0.14:
+ /date-format/4.0.14:
resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==}
engines: {node: '>=4.0'}
+ dev: true
- db0@0.2.3:
- resolution: {integrity: sha512-PunuHESDNefmwVy1LDpY663uWwKt2ogLGoB6NOz2sflGREWqDreMwDgF8gfkXxgNXW+dqviyiJGm924H1BaGiw==}
+ /db0/0.3.1:
+ resolution: {integrity: sha512-3RogPLE2LLq6t4YiFCREyl572aBjkfMvfwPyN51df00TbPbryL3XqBYuJ/j6mgPssPK8AKfYdLxizaO5UG10sA==}
peerDependencies:
'@electric-sql/pglite': '*'
'@libsql/client': '*'
@@ -5951,26 +11801,32 @@ packages:
sqlite3:
optional: true
- de-indent@1.0.2:
+ /de-indent/1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
+ dev: true
- debug@2.6.9:
+ /debug/2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
+ dependencies:
+ ms: 2.0.0
- debug@3.2.7:
+ /debug/3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
+ dependencies:
+ ms: 2.1.3
+ dev: true
- debug@4.3.4:
+ /debug/4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -5978,8 +11834,11 @@ packages:
peerDependenciesMeta:
supports-color:
optional: true
+ dependencies:
+ ms: 2.1.2
+ dev: true
- debug@4.3.7:
+ /debug/4.3.7:
resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -5987,8 +11846,22 @@ packages:
peerDependenciesMeta:
supports-color:
optional: true
+ dependencies:
+ ms: 2.1.3
+ dev: true
+
+ /debug/4.4.0:
+ resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.3
- debug@4.4.0:
+ /debug/4.4.0_supports-color@9.4.0:
resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -5996,358 +11869,667 @@ packages:
peerDependenciesMeta:
supports-color:
optional: true
+ dependencies:
+ ms: 2.1.3
+ supports-color: 9.4.0
- decimal.js@10.5.0:
+ /decimal.js/10.5.0:
resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==}
+ dev: true
- deep-eql@4.1.4:
+ /deep-eql/4.1.4:
resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
engines: {node: '>=6'}
+ dependencies:
+ type-detect: 4.1.0
+ dev: true
- deep-is@0.1.4:
+ /deep-is/0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+ dev: true
- deepmerge@4.3.1:
+ /deepmerge/4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- default-browser-id@5.0.0:
+ /default-browser-id/5.0.0:
resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
engines: {node: '>=18'}
- default-browser@5.2.1:
+ /default-browser/5.2.1:
resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
engines: {node: '>=18'}
+ dependencies:
+ bundle-name: 4.1.0
+ default-browser-id: 5.0.0
- defaults@1.0.4:
+ /defaults/1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
+ dependencies:
+ clone: 1.0.4
+ dev: true
- define-data-property@1.1.4:
+ /define-data-property/1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
+ dependencies:
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
+ dev: true
- define-lazy-prop@2.0.0:
+ /define-lazy-prop/2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
- define-lazy-prop@3.0.0:
+ /define-lazy-prop/3.0.0:
resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
engines: {node: '>=12'}
- define-properties@1.2.1:
+ /define-properties/1.2.1:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
+ object-keys: 1.1.1
+ dev: true
- defu@6.1.4:
+ /defu/6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
- degenerator@5.0.1:
+ /degenerator/5.0.1:
resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
engines: {node: '>= 14'}
+ dependencies:
+ ast-types: 0.13.4
+ escodegen: 2.1.0
+ esprima: 4.0.1
+ dev: true
- delayed-stream@1.0.0:
+ /delayed-stream/1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
- denque@2.1.0:
+ /denque/2.1.0:
resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==}
engines: {node: '>=0.10'}
- depd@1.1.2:
+ /depd/1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
+ dev: true
- depd@2.0.0:
+ /depd/2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- dequal@2.0.3:
+ /dequal/2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- destr@2.0.3:
+ /destr/2.0.3:
resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==}
- destroy@1.2.0:
+ /destroy/1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- detect-indent@6.1.0:
+ /detect-indent/6.1.0:
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
engines: {node: '>=8'}
+ dev: true
- detect-libc@1.0.3:
+ /detect-libc/1.0.3:
resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
engines: {node: '>=0.10'}
hasBin: true
- detect-libc@2.0.3:
+ /detect-libc/2.0.3:
resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
- detect-node-es@1.1.0:
+ /detect-node-es/1.1.0:
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
+ dev: false
- detect-node@2.1.0:
+ /detect-node/2.1.0:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
+ dev: true
- devalue@5.1.1:
+ /devalue/5.1.1:
resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==}
- devlop@1.1.0:
+ /devlop/1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
+ dependencies:
+ dequal: 2.0.3
+ dev: true
- devtools-protocol@0.0.1299070:
+ /devtools-protocol/0.0.1299070:
resolution: {integrity: sha512-+qtL3eX50qsJ7c+qVyagqi7AWMoQCBGNfoyJZMwm/NSXVqLYbuitrWEEIzxfUmTNy7//Xe8yhMmQ+elj3uAqSg==}
+ dev: true
- di@0.0.1:
+ /di/0.0.1:
resolution: {integrity: sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==}
+ dev: true
- didyoumean@1.2.2:
+ /didyoumean/1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
+ dev: true
- diff-sequences@29.6.3:
+ /diff-sequences/29.6.3:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dev: true
- diff@4.0.2:
+ /diff/4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
+ dev: true
- diff@7.0.0:
+ /diff/7.0.0:
resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
engines: {node: '>=0.3.1'}
- dir-glob@3.0.1:
+ /dir-glob/3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
+ dependencies:
+ path-type: 4.0.0
+ dev: true
- dlv@1.1.3:
+ /dlv/1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
+ dev: true
- dns-packet@5.6.1:
+ /dns-packet/5.6.1:
resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==}
engines: {node: '>=6'}
+ dependencies:
+ '@leichtgewicht/ip-codec': 2.0.5
+ dev: true
- doctrine@2.1.0:
+ /doctrine/2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
+ dependencies:
+ esutils: 2.0.3
+ dev: true
- dom-serialize@2.2.1:
+ /dom-serialize/2.2.1:
resolution: {integrity: sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==}
+ dependencies:
+ custom-event: 1.0.1
+ ent: 2.2.2
+ extend: 3.0.2
+ void-elements: 2.0.1
+ dev: true
- dom-serializer@2.0.0:
+ /dom-serializer/2.0.0:
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ entities: 4.5.0
- domelementtype@2.3.0:
+ /domelementtype/2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
- domhandler@5.0.3:
+ /domhandler/5.0.3:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
+ dependencies:
+ domelementtype: 2.3.0
- domutils@3.2.2:
+ /domutils/3.2.2:
resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
+ dependencies:
+ dom-serializer: 2.0.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
- dot-prop@9.0.0:
+ /dot-prop/9.0.0:
resolution: {integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==}
engines: {node: '>=18'}
+ dependencies:
+ type-fest: 4.37.0
- dotenv@16.4.7:
+ /dotenv/16.4.7:
resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
engines: {node: '>=12'}
- dotenv@8.6.0:
+ /dotenv/8.6.0:
resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
engines: {node: '>=10'}
+ dev: true
- dunder-proto@1.0.1:
+ /dunder-proto/1.0.1:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-errors: 1.3.0
+ gopd: 1.2.0
- duplexer@0.1.2:
+ /duplexer/0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- eastasianwidth@0.2.0:
+ /eastasianwidth/0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- editorconfig@1.0.4:
+ /editorconfig/1.0.4:
resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==}
engines: {node: '>=14'}
hasBin: true
+ dependencies:
+ '@one-ini/wasm': 0.1.1
+ commander: 10.0.1
+ minimatch: 9.0.1
+ semver: 7.7.1
+ dev: true
- ee-first@1.1.1:
+ /ee-first/1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.90:
- resolution: {integrity: sha512-C3PN4aydfW91Natdyd449Kw+BzhLmof6tzy5W1pFC5SpQxVXT+oyiyOG9AgYYSN9OdA/ik3YkCrpwqI8ug5Tug==}
+ /electron-to-chromium/1.5.113:
+ resolution: {integrity: sha512-wjT2O4hX+wdWPJ76gWSkMhcHAV2PTMX+QetUCPYEdCIe+cxmgzzSSiGRCKW8nuh4mwKZlpv0xvoW7OF2X+wmHg==}
- emoji-regex-xs@1.0.0:
+ /emoji-regex-xs/1.0.0:
resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
+ dev: true
- emoji-regex@10.4.0:
+ /emoji-regex/10.4.0:
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
+ dev: true
- emoji-regex@8.0.0:
+ /emoji-regex/8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- emoji-regex@9.2.2:
+ /emoji-regex/9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- emojilib@2.4.0:
+ /emojilib/2.4.0:
resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==}
+ dev: true
- emojis-list@3.0.0:
+ /emojis-list/3.0.0:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
+ dev: true
- encodeurl@1.0.2:
+ /encodeurl/1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
- encodeurl@2.0.0:
+ /encodeurl/2.0.0:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
- encoding@0.1.13:
+ /encoding/0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
+ requiresBuild: true
+ dependencies:
+ iconv-lite: 0.6.3
+ dev: true
+ optional: true
- end-of-stream@1.4.4:
+ /end-of-stream/1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ dependencies:
+ once: 1.4.0
+ dev: true
- engine.io-parser@5.2.3:
+ /engine.io-parser/5.2.3:
resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==}
engines: {node: '>=10.0.0'}
+ dev: true
- engine.io@6.6.4:
+ /engine.io/6.6.4:
resolution: {integrity: sha512-ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g==}
engines: {node: '>=10.2.0'}
+ dependencies:
+ '@types/cors': 2.8.17
+ '@types/node': 22.13.10
+ accepts: 1.3.8
+ base64id: 2.0.0
+ cookie: 0.7.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
+ dev: true
- enhanced-resolve@5.18.0:
- resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==}
- engines: {node: '>=10.13.0'}
-
- enhanced-resolve@5.18.1:
+ /enhanced-resolve/5.18.1:
resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
engines: {node: '>=10.13.0'}
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.2.1
- enquirer@2.4.1:
+ /enquirer/2.4.1:
resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
engines: {node: '>=8.6'}
+ dependencies:
+ ansi-colors: 4.1.3
+ strip-ansi: 6.0.1
+ dev: true
- ent@2.2.2:
+ /ent/2.2.2:
resolution: {integrity: sha512-kKvD1tO6BM+oK9HzCPpUdRb4vKFQY/FPTFmurMvh6LlN68VMrdj77w8yp51/kDbpkFOS9J8w5W6zIzgM2H8/hw==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ punycode: 1.4.1
+ safe-regex-test: 1.1.0
+ dev: true
- entities@4.5.0:
+ /entities/4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
- env-paths@2.2.1:
+ /env-paths/2.2.1:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
+ dev: true
- environment@1.1.0:
+ /environment/1.1.0:
resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
engines: {node: '>=18'}
+ dev: true
- err-code@2.0.3:
+ /err-code/2.0.3:
resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
+ dev: true
- errno@0.1.8:
+ /errno/0.1.8:
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
hasBin: true
+ requiresBuild: true
+ dependencies:
+ prr: 1.0.1
+ optional: true
- error-ex@1.3.2:
+ /error-ex/1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ dependencies:
+ is-arrayish: 0.2.1
+ dev: true
- error-stack-parser-es@0.1.5:
+ /error-stack-parser-es/0.1.5:
resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==}
- errx@0.1.0:
+ /error-stack-parser-es/1.0.5:
+ resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==}
+
+ /errx/0.1.0:
resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
- es-abstract@1.23.9:
+ /es-abstract/1.23.9:
resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.2
+ arraybuffer.prototype.slice: 1.0.4
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ data-view-buffer: 1.0.2
+ data-view-byte-length: 1.0.2
+ data-view-byte-offset: 1.0.1
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ es-set-tostringtag: 2.1.0
+ es-to-primitive: 1.3.0
+ function.prototype.name: 1.1.8
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ get-symbol-description: 1.1.0
+ globalthis: 1.0.4
+ gopd: 1.2.0
+ has-property-descriptors: 1.0.2
+ has-proto: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ internal-slot: 1.1.0
+ is-array-buffer: 3.0.5
+ is-callable: 1.2.7
+ is-data-view: 1.0.2
+ is-regex: 1.2.1
+ is-shared-array-buffer: 1.0.4
+ is-string: 1.1.1
+ is-typed-array: 1.1.15
+ is-weakref: 1.1.1
+ math-intrinsics: 1.1.0
+ object-inspect: 1.13.4
+ object-keys: 1.1.1
+ object.assign: 4.1.7
+ own-keys: 1.0.1
+ regexp.prototype.flags: 1.5.4
+ safe-array-concat: 1.1.3
+ safe-push-apply: 1.0.0
+ safe-regex-test: 1.1.0
+ set-proto: 1.0.0
+ string.prototype.trim: 1.2.10
+ string.prototype.trimend: 1.0.9
+ string.prototype.trimstart: 1.0.8
+ typed-array-buffer: 1.0.3
+ typed-array-byte-length: 1.0.3
+ typed-array-byte-offset: 1.0.4
+ typed-array-length: 1.0.7
+ unbox-primitive: 1.1.0
+ which-typed-array: 1.1.19
+ dev: true
- es-define-property@1.0.1:
+ /es-define-property/1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
- es-errors@1.3.0:
+ /es-errors/1.3.0:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-iterator-helpers@1.2.1:
+ /es-iterator-helpers/1.2.1:
resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ es-set-tostringtag: 2.1.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.3.0
+ globalthis: 1.0.4
+ gopd: 1.2.0
+ has-property-descriptors: 1.0.2
+ has-proto: 1.2.0
+ has-symbols: 1.1.0
+ internal-slot: 1.1.0
+ iterator.prototype: 1.1.5
+ safe-array-concat: 1.1.3
+ dev: true
- es-module-lexer@1.6.0:
+ /es-module-lexer/1.6.0:
resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
- es-object-atoms@1.1.1:
+ /es-object-atoms/1.1.1:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
engines: {node: '>= 0.4'}
+ dependencies:
+ es-errors: 1.3.0
- es-set-tostringtag@2.1.0:
+ /es-set-tostringtag/2.1.0:
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
engines: {node: '>= 0.4'}
+ dependencies:
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
- es-shim-unscopables@1.0.2:
- resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
+ /es-shim-unscopables/1.1.0:
+ resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ hasown: 2.0.2
+ dev: true
- es-to-primitive@1.3.0:
+ /es-to-primitive/1.3.0:
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
+ dependencies:
+ is-callable: 1.2.7
+ is-date-object: 1.1.0
+ is-symbol: 1.1.1
+ dev: true
- esbuild-wasm@0.25.0:
+ /esbuild-wasm/0.25.0:
resolution: {integrity: sha512-60iuWr6jdTVylmGXjpnqk3pCktUi5Rmjiv6EMza3h4X20BLtfL2BjUGs1+UCt2G9UK7jVGrJdUr5i1k0sL3wBg==}
engines: {node: '>=18'}
hasBin: true
+ dev: true
- esbuild@0.21.5:
+ /esbuild/0.21.5:
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
engines: {node: '>=12'}
hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.21.5
+ '@esbuild/android-arm': 0.21.5
+ '@esbuild/android-arm64': 0.21.5
+ '@esbuild/android-x64': 0.21.5
+ '@esbuild/darwin-arm64': 0.21.5
+ '@esbuild/darwin-x64': 0.21.5
+ '@esbuild/freebsd-arm64': 0.21.5
+ '@esbuild/freebsd-x64': 0.21.5
+ '@esbuild/linux-arm': 0.21.5
+ '@esbuild/linux-arm64': 0.21.5
+ '@esbuild/linux-ia32': 0.21.5
+ '@esbuild/linux-loong64': 0.21.5
+ '@esbuild/linux-mips64el': 0.21.5
+ '@esbuild/linux-ppc64': 0.21.5
+ '@esbuild/linux-riscv64': 0.21.5
+ '@esbuild/linux-s390x': 0.21.5
+ '@esbuild/linux-x64': 0.21.5
+ '@esbuild/netbsd-x64': 0.21.5
+ '@esbuild/openbsd-x64': 0.21.5
+ '@esbuild/sunos-x64': 0.21.5
+ '@esbuild/win32-arm64': 0.21.5
+ '@esbuild/win32-ia32': 0.21.5
+ '@esbuild/win32-x64': 0.21.5
- esbuild@0.24.2:
+ /esbuild/0.24.2:
resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
engines: {node: '>=18'}
hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.24.2
+ '@esbuild/android-arm': 0.24.2
+ '@esbuild/android-arm64': 0.24.2
+ '@esbuild/android-x64': 0.24.2
+ '@esbuild/darwin-arm64': 0.24.2
+ '@esbuild/darwin-x64': 0.24.2
+ '@esbuild/freebsd-arm64': 0.24.2
+ '@esbuild/freebsd-x64': 0.24.2
+ '@esbuild/linux-arm': 0.24.2
+ '@esbuild/linux-arm64': 0.24.2
+ '@esbuild/linux-ia32': 0.24.2
+ '@esbuild/linux-loong64': 0.24.2
+ '@esbuild/linux-mips64el': 0.24.2
+ '@esbuild/linux-ppc64': 0.24.2
+ '@esbuild/linux-riscv64': 0.24.2
+ '@esbuild/linux-s390x': 0.24.2
+ '@esbuild/linux-x64': 0.24.2
+ '@esbuild/netbsd-arm64': 0.24.2
+ '@esbuild/netbsd-x64': 0.24.2
+ '@esbuild/openbsd-arm64': 0.24.2
+ '@esbuild/openbsd-x64': 0.24.2
+ '@esbuild/sunos-x64': 0.24.2
+ '@esbuild/win32-arm64': 0.24.2
+ '@esbuild/win32-ia32': 0.24.2
+ '@esbuild/win32-x64': 0.24.2
- esbuild@0.25.0:
+ /esbuild/0.25.0:
resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==}
engines: {node: '>=18'}
hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.25.0
+ '@esbuild/android-arm': 0.25.0
+ '@esbuild/android-arm64': 0.25.0
+ '@esbuild/android-x64': 0.25.0
+ '@esbuild/darwin-arm64': 0.25.0
+ '@esbuild/darwin-x64': 0.25.0
+ '@esbuild/freebsd-arm64': 0.25.0
+ '@esbuild/freebsd-x64': 0.25.0
+ '@esbuild/linux-arm': 0.25.0
+ '@esbuild/linux-arm64': 0.25.0
+ '@esbuild/linux-ia32': 0.25.0
+ '@esbuild/linux-loong64': 0.25.0
+ '@esbuild/linux-mips64el': 0.25.0
+ '@esbuild/linux-ppc64': 0.25.0
+ '@esbuild/linux-riscv64': 0.25.0
+ '@esbuild/linux-s390x': 0.25.0
+ '@esbuild/linux-x64': 0.25.0
+ '@esbuild/netbsd-arm64': 0.25.0
+ '@esbuild/netbsd-x64': 0.25.0
+ '@esbuild/openbsd-arm64': 0.25.0
+ '@esbuild/openbsd-x64': 0.25.0
+ '@esbuild/sunos-x64': 0.25.0
+ '@esbuild/win32-arm64': 0.25.0
+ '@esbuild/win32-ia32': 0.25.0
+ '@esbuild/win32-x64': 0.25.0
- escalade@3.2.0:
+ /escalade/3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
- escape-html@1.0.3:
+ /escape-html/1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- escape-string-regexp@4.0.0:
+ /escape-string-regexp/4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
+ dev: true
- escape-string-regexp@5.0.0:
+ /escape-string-regexp/5.0.0:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
- escodegen@2.1.0:
+ /escodegen/2.1.0:
resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
engines: {node: '>=6.0'}
hasBin: true
-
- eslint-compat-utils@0.5.1:
- resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
- engines: {node: '>=12'}
+ dependencies:
+ esprima: 4.0.1
+ estraverse: 5.3.0
+ esutils: 2.0.3
+ optionalDependencies:
+ source-map: 0.6.1
+ dev: true
+
+ /eslint-compat-utils/0.5.1_eslint@9.17.0:
+ resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
+ engines: {node: '>=12'}
peerDependencies:
eslint: '>=6.0.0'
+ dependencies:
+ eslint: 9.17.0
+ semver: 7.7.1
+ dev: true
- eslint-config-next@15.1.6:
+ /eslint-config-next/15.1.6_5ss5apc2uy6gwlbeak2m4uqwhi:
resolution: {integrity: sha512-Wd1uy6y7nBbXUSg9QAuQ+xYEKli5CgUhLjz1QHW11jLDis5vK5XB3PemL6jEmy7HrdhaRFDz+GTZ/3FoH+EUjg==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
@@ -6355,18 +12537,46 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
+ dependencies:
+ '@next/eslint-plugin-next': 15.1.6
+ '@rushstack/eslint-patch': 1.10.5
+ '@typescript-eslint/eslint-plugin': 8.26.0_v7em3iowsogr2ppwgchrzap2oy
+ '@typescript-eslint/parser': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ eslint: 9.17.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.8.3_nvlu7damiw5cbtvwahtaw7wqzu
+ eslint-plugin-import: 2.31.0_c37dzixbmggai75yklrynnhi3e
+ eslint-plugin-jsx-a11y: 6.10.2_eslint@9.17.0
+ eslint-plugin-react: 7.37.4_eslint@9.17.0
+ eslint-plugin-react-hooks: 5.2.0_eslint@9.17.0
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - eslint-import-resolver-webpack
+ - eslint-plugin-import-x
+ - supports-color
+ dev: true
- eslint-config-prettier@9.1.0:
+ /eslint-config-prettier/9.1.0_eslint@9.17.0:
resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
+ dependencies:
+ eslint: 9.17.0
+ dev: true
- eslint-import-resolver-node@0.3.9:
+ /eslint-import-resolver-node/0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
+ dependencies:
+ debug: 3.2.7
+ is-core-module: 2.16.1
+ resolve: 1.22.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- eslint-import-resolver-typescript@3.7.0:
- resolution: {integrity: sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow==}
+ /eslint-import-resolver-typescript/3.8.3_nvlu7damiw5cbtvwahtaw7wqzu:
+ resolution: {integrity: sha512-A0bu4Ks2QqDWNpeEgTQMPTngaMhuDu4yv6xpftBMAf+1ziXnpx+eSR1WRfoPTe2BAiAjHFZ7kSNx1fvr5g5pmQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -6377,8 +12587,21 @@ packages:
optional: true
eslint-plugin-import-x:
optional: true
+ dependencies:
+ '@nolyfill/is-core-module': 1.0.39
+ debug: 4.4.0
+ enhanced-resolve: 5.18.1
+ eslint: 9.17.0
+ eslint-plugin-import: 2.31.0_c37dzixbmggai75yklrynnhi3e
+ get-tsconfig: 4.10.0
+ is-bun-module: 1.3.0
+ stable-hash: 0.0.4
+ tinyglobby: 0.2.12
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- eslint-module-utils@2.12.0:
+ /eslint-module-utils/2.12.0_jqrnenp2cu2fukdjhj3d3anjxa:
resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
engines: {node: '>=4'}
peerDependencies:
@@ -6398,8 +12621,17 @@ packages:
optional: true
eslint-import-resolver-webpack:
optional: true
+ dependencies:
+ '@typescript-eslint/parser': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ debug: 3.2.7
+ eslint: 9.17.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.8.3_nvlu7damiw5cbtvwahtaw7wqzu
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- eslint-plugin-import@2.31.0:
+ /eslint-plugin-import/2.31.0_c37dzixbmggai75yklrynnhi3e:
resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
engines: {node: '>=4'}
peerDependencies:
@@ -6408,14 +12640,59 @@ packages:
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
+ dependencies:
+ '@rtsao/scc': 1.1.0
+ '@typescript-eslint/parser': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.3
+ array.prototype.flatmap: 1.3.3
+ debug: 3.2.7
+ doctrine: 2.1.0
+ eslint: 9.17.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.12.0_jqrnenp2cu2fukdjhj3d3anjxa
+ hasown: 2.0.2
+ is-core-module: 2.16.1
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.1
+ semver: 6.3.1
+ string.prototype.trimend: 1.0.9
+ tsconfig-paths: 3.15.0
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: true
- eslint-plugin-jsx-a11y@6.10.2:
+ /eslint-plugin-jsx-a11y/6.10.2_eslint@9.17.0:
resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
+ dependencies:
+ aria-query: 5.3.2
+ array-includes: 3.1.8
+ array.prototype.flatmap: 1.3.3
+ ast-types-flow: 0.0.8
+ axe-core: 4.10.3
+ axobject-query: 4.1.0
+ damerau-levenshtein: 1.0.8
+ emoji-regex: 9.2.2
+ eslint: 9.17.0
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
+ language-tags: 1.0.9
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ safe-regex-test: 1.1.0
+ string.prototype.includes: 2.0.1
+ dev: true
- eslint-plugin-prettier@5.2.3:
+ /eslint-plugin-prettier/5.2.3_mtaaos5yzai2zmkzqvxmznyxti:
resolution: {integrity: sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -6428,46 +12705,96 @@ packages:
optional: true
eslint-config-prettier:
optional: true
+ dependencies:
+ eslint: 9.17.0
+ eslint-config-prettier: 9.1.0_eslint@9.17.0
+ prettier: 3.4.2
+ prettier-linter-helpers: 1.0.0
+ synckit: 0.9.2
+ dev: true
- eslint-plugin-react-hooks@4.6.2:
+ /eslint-plugin-react-hooks/4.6.2_eslint@9.17.0:
resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ dependencies:
+ eslint: 9.17.0
+ dev: true
- eslint-plugin-react-hooks@5.1.0:
- resolution: {integrity: sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==}
+ /eslint-plugin-react-hooks/5.2.0_eslint@9.17.0:
+ resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
+ dependencies:
+ eslint: 9.17.0
+ dev: true
- eslint-plugin-react-refresh@0.4.7:
+ /eslint-plugin-react-refresh/0.4.7_eslint@9.17.0:
resolution: {integrity: sha512-yrj+KInFmwuQS2UQcg1SF83ha1tuHC1jMQbRNyuWtlEzzKRDgAl7L4Yp4NlDUZTZNlWvHEzOtJhMi40R7JxcSw==}
peerDependencies:
eslint: '>=7'
+ dependencies:
+ eslint: 9.17.0
+ dev: true
- eslint-plugin-react@7.37.4:
+ /eslint-plugin-react/7.37.4_eslint@9.17.0:
resolution: {integrity: sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
+ dependencies:
+ array-includes: 3.1.8
+ array.prototype.findlast: 1.2.5
+ array.prototype.flatmap: 1.3.3
+ array.prototype.tosorted: 1.1.4
+ doctrine: 2.1.0
+ es-iterator-helpers: 1.2.1
+ eslint: 9.17.0
+ estraverse: 5.3.0
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
+ minimatch: 3.1.2
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.values: 1.2.1
+ prop-types: 15.8.1
+ resolve: 2.0.0-next.5
+ semver: 6.3.1
+ string.prototype.matchall: 4.0.12
+ string.prototype.repeat: 1.0.0
+ dev: true
- eslint-plugin-simple-import-sort@12.1.1:
+ /eslint-plugin-simple-import-sort/12.1.1_eslint@9.17.0:
resolution: {integrity: sha512-6nuzu4xwQtE3332Uz0to+TxDQYRLTKRESSc2hefVT48Zc8JthmN23Gx9lnYhu0FtkRSL1oxny3kJ2aveVhmOVA==}
peerDependencies:
eslint: '>=5.0.0'
+ dependencies:
+ eslint: 9.17.0
+ dev: true
- eslint-plugin-sort-destructure-keys@2.0.0:
+ /eslint-plugin-sort-destructure-keys/2.0.0_eslint@9.17.0:
resolution: {integrity: sha512-4w1UQCa3o/YdfWaLr9jY8LfGowwjwjmwClyFLxIsToiyIdZMq3x9Ti44nDn34DtTPP7PWg96tUONKVmATKhYGQ==}
engines: {node: '>=12'}
peerDependencies:
eslint: 5 - 9
+ dependencies:
+ eslint: 9.17.0
+ natural-compare-lite: 1.4.0
+ dev: true
- eslint-plugin-sort-keys-fix@1.1.2:
+ /eslint-plugin-sort-keys-fix/1.1.2:
resolution: {integrity: sha512-DNPHFGCA0/hZIsfODbeLZqaGY/+q3vgtshF85r+YWDNCQ2apd9PNs/zL6ttKm0nD1IFwvxyg3YOTI7FHl4unrw==}
engines: {node: '>=0.10.0'}
+ dependencies:
+ espree: 6.2.1
+ esutils: 2.0.3
+ natural-compare: 1.4.0
+ requireindex: 1.2.0
+ dev: true
- eslint-plugin-svelte@2.36.0:
+ /eslint-plugin-svelte/2.36.0_a6a62f7rdcwtb6ednkki4wpcty:
resolution: {integrity: sha512-D30hSj13Y8YEn7yGXos7EYp0lpEb3Z2V/M+6a3MZ13KGVhaefdW2A9j8IBIcW4YR+j6fo901USzLeXQz/XbWeQ==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6476,46 +12803,103 @@ packages:
peerDependenciesMeta:
svelte:
optional: true
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
+ '@jridgewell/sourcemap-codec': 1.5.0
+ debug: 4.4.0
+ eslint: 9.17.0
+ eslint-compat-utils: 0.5.1_eslint@9.17.0
+ esutils: 2.0.3
+ known-css-properties: 0.30.0
+ postcss: 8.5.3
+ postcss-load-config: 3.1.4_postcss@8.5.3
+ postcss-safe-parser: 6.0.0_postcss@8.5.3
+ postcss-selector-parser: 6.1.2
+ semver: 7.7.1
+ svelte: 5.19.9
+ svelte-eslint-parser: 0.43.0_svelte@5.19.9
+ transitivePeerDependencies:
+ - supports-color
+ - ts-node
+ dev: true
- eslint-plugin-typescript-sort-keys@3.3.0:
+ /eslint-plugin-typescript-sort-keys/3.3.0_ulnpem3vhphymaemnltoyugxr4:
resolution: {integrity: sha512-bRW3Rc/VNdrSP9OoY5wgjjaXCOOkZKpzvl/Mk6l8Sg8CMehVIcg9K4y33l+ZcZiknpl0aR6rKusxuCJNGZWmVw==}
engines: {node: '>= 16'}
peerDependencies:
'@typescript-eslint/parser': '>=6'
eslint: ^7 || ^8
typescript: ^3 || ^4 || ^5
+ dependencies:
+ '@typescript-eslint/experimental-utils': 5.62.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/parser': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ eslint: 9.17.0
+ json-schema: 0.4.0
+ natural-compare-lite: 1.4.0
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- eslint-plugin-vue@9.32.0:
+ /eslint-plugin-vue/9.32.0_eslint@9.17.0:
resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
+ eslint: 9.17.0
+ globals: 13.24.0
+ natural-compare: 1.4.0
+ nth-check: 2.1.1
+ postcss-selector-parser: 6.1.2
+ semver: 7.7.1
+ vue-eslint-parser: 9.4.3_eslint@9.17.0
+ xml-name-validator: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- eslint-scope@5.1.1:
+ /eslint-scope/5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
+ dev: true
- eslint-scope@7.2.2:
+ /eslint-scope/7.2.2:
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+ dev: true
- eslint-scope@8.2.0:
- resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
+ /eslint-scope/8.3.0:
+ resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+ dev: true
- eslint-visitor-keys@1.3.0:
+ /eslint-visitor-keys/1.3.0:
resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
engines: {node: '>=4'}
+ dev: true
- eslint-visitor-keys@3.4.3:
+ /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}
+ dev: true
- eslint-visitor-keys@4.2.0:
+ /eslint-visitor-keys/4.2.0:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dev: true
- eslint@9.17.0:
+ /eslint/9.17.0:
resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
@@ -6524,255 +12908,596 @@ packages:
peerDependenciesMeta:
jiti:
optional: true
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
+ '@eslint-community/regexpp': 4.12.1
+ '@eslint/config-array': 0.19.2
+ '@eslint/core': 0.9.1
+ '@eslint/eslintrc': 3.3.0
+ '@eslint/js': 9.17.0
+ '@eslint/plugin-kit': 0.2.7
+ '@humanfs/node': 0.16.6
+ '@humanwhocodes/module-importer': 1.0.1
+ '@humanwhocodes/retry': 0.4.2
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
+ ajv: 6.12.6
+ chalk: 4.1.2
+ cross-spawn: 7.0.6
+ debug: 4.4.0
+ escape-string-regexp: 4.0.0
+ eslint-scope: 8.3.0
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
+ esquery: 1.6.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 8.0.0
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ ignore: 5.3.2
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ json-stable-stringify-without-jsonify: 1.0.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- esm-env@1.2.2:
+ /esm-env/1.2.2:
resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==}
- espree@10.3.0:
+ /espree/10.3.0:
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ acorn: 8.14.1
+ acorn-jsx: 5.3.2_acorn@8.14.1
+ eslint-visitor-keys: 4.2.0
+ dev: true
- espree@6.2.1:
+ /espree/6.2.1:
resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==}
engines: {node: '>=6.0.0'}
+ dependencies:
+ acorn: 7.4.1
+ acorn-jsx: 5.3.2_acorn@7.4.1
+ eslint-visitor-keys: 1.3.0
+ dev: true
- espree@9.6.1:
+ /espree/9.6.1:
resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ acorn: 8.14.1
+ acorn-jsx: 5.3.2_acorn@8.14.1
+ eslint-visitor-keys: 3.4.3
+ dev: true
- esprima@4.0.1:
+ /esprima/4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
+ dev: true
- esquery@1.6.0:
+ /esquery/1.6.0:
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
engines: {node: '>=0.10'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: true
- esrap@1.4.3:
- resolution: {integrity: sha512-Xddc1RsoFJ4z9nR7W7BFaEPIp4UXoeQ0+077UdWLxbafMQFyU79sQJMk7kxNgRwQ9/aVgaKacCHC2pUACGwmYw==}
+ /esrap/1.4.5:
+ resolution: {integrity: sha512-CjNMjkBWWZeHn+VX+gS8YvFwJ5+NDhg8aWZBSFJPR8qQduDNjbJodA2WcwCm7uQa5Rjqj+nZvVmceg1RbHFB9g==}
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
- esrecurse@4.3.0:
+ /esrecurse/4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: true
- estraverse@4.3.0:
+ /estraverse/4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
+ dev: true
- estraverse@5.3.0:
+ /estraverse/5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
+ dev: true
- estree-walker@2.0.2:
+ /estree-walker/2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
- estree-walker@3.0.3:
+ /estree-walker/3.0.3:
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
+ dependencies:
+ '@types/estree': 1.0.6
- esutils@2.0.3:
+ /esutils/2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
+ dev: true
- etag@1.8.1:
+ /etag/1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
- event-target-shim@5.0.1:
+ /event-target-shim/5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
- eventemitter3@4.0.7:
+ /eventemitter3/4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
+ dev: true
- eventemitter3@5.0.1:
+ /eventemitter3/5.0.1:
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
+ dev: true
- events@3.3.0:
+ /events/3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- execa@7.2.0:
+ /execa/7.2.0:
resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
+ dependencies:
+ cross-spawn: 7.0.6
+ get-stream: 6.0.1
+ human-signals: 4.3.1
+ is-stream: 3.0.0
+ merge-stream: 2.0.0
+ npm-run-path: 5.3.0
+ onetime: 6.0.0
+ signal-exit: 3.0.7
+ strip-final-newline: 3.0.0
- execa@8.0.1:
+ /execa/8.0.1:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
+ dependencies:
+ cross-spawn: 7.0.6
+ get-stream: 8.0.1
+ human-signals: 5.0.0
+ is-stream: 3.0.0
+ merge-stream: 2.0.0
+ npm-run-path: 5.3.0
+ onetime: 6.0.0
+ signal-exit: 4.1.0
+ strip-final-newline: 3.0.0
- execa@9.5.2:
+ /execa/9.5.2:
resolution: {integrity: sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==}
engines: {node: ^18.19.0 || >=20.5.0}
+ dependencies:
+ '@sindresorhus/merge-streams': 4.0.0
+ cross-spawn: 7.0.6
+ figures: 6.1.0
+ get-stream: 9.0.1
+ human-signals: 8.0.0
+ is-plain-obj: 4.1.0
+ is-stream: 4.0.1
+ npm-run-path: 6.0.0
+ pretty-ms: 9.2.0
+ signal-exit: 4.1.0
+ strip-final-newline: 4.0.0
+ yoctocolors: 2.1.1
- exponential-backoff@3.1.2:
+ /exponential-backoff/3.1.2:
resolution: {integrity: sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==}
+ dev: true
- express@4.21.0:
+ /express/4.21.0:
resolution: {integrity: sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==}
engines: {node: '>= 0.10.0'}
-
- express@4.21.2:
- resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
- engines: {node: '>= 0.10.0'}
-
- extend@3.0.2:
- resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
-
- extendable-error@0.1.7:
- resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
-
- external-editor@3.1.0:
- resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
- engines: {node: '>=4'}
-
- externality@1.0.2:
- resolution: {integrity: sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==}
-
- extract-zip@2.0.1:
- resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
- engines: {node: '>= 10.17.0'}
- hasBin: true
-
- fake-indexeddb@6.0.0:
- resolution: {integrity: sha512-YEboHE5VfopUclOck7LncgIqskAqnv4q0EWbYCaxKKjAvO93c+TJIaBuGy8CBFdbg9nKdpN3AuPRwVBJ4k7NrQ==}
- engines: {node: '>=18'}
-
- fast-decode-uri-component@1.0.1:
- resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==}
-
- fast-deep-equal@3.1.3:
- resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
-
- fast-diff@1.3.0:
- resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
-
- fast-fifo@1.3.2:
- resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
-
- fast-glob@3.3.1:
- resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
- engines: {node: '>=8.6.0'}
-
- fast-glob@3.3.3:
+ 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.6.0
+ 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.10
+ 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
+ dev: true
+
+ /express/4.21.2:
+ resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
+ engines: {node: '>= 0.10.0'}
+ 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
+ dev: true
+
+ /exsolve/1.0.4:
+ resolution: {integrity: sha512-xsZH6PXaER4XoV+NiT7JHp1bJodJVT+cxeSH1G0f0tlT0lJqYuHUP3bUx2HtfTDvOagMINYp8rsqusxud3RXhw==}
+
+ /extend/3.0.2:
+ resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
+ dev: true
+
+ /extendable-error/0.1.7:
+ resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
+ dev: true
+
+ /external-editor/3.1.0:
+ resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
+ engines: {node: '>=4'}
+ dependencies:
+ chardet: 0.7.0
+ iconv-lite: 0.4.24
+ tmp: 0.0.33
+ dev: true
+
+ /externality/1.0.2:
+ resolution: {integrity: sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==}
+ dependencies:
+ enhanced-resolve: 5.18.1
+ mlly: 1.7.4
+ pathe: 1.1.2
+ ufo: 1.5.4
+
+ /extract-zip/2.0.1:
+ resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
+ engines: {node: '>= 10.17.0'}
+ hasBin: true
+ dependencies:
+ debug: 4.4.0
+ get-stream: 5.2.0
+ yauzl: 2.10.0
+ optionalDependencies:
+ '@types/yauzl': 2.10.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /fake-indexeddb/6.0.0:
+ resolution: {integrity: sha512-YEboHE5VfopUclOck7LncgIqskAqnv4q0EWbYCaxKKjAvO93c+TJIaBuGy8CBFdbg9nKdpN3AuPRwVBJ4k7NrQ==}
+ engines: {node: '>=18'}
+ dev: true
+
+ /fast-decode-uri-component/1.0.1:
+ resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==}
+
+ /fast-deep-equal/3.1.3:
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+
+ /fast-diff/1.3.0:
+ resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
+ dev: true
+
+ /fast-fifo/1.3.2:
+ resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
+
+ /fast-glob/3.3.1:
+ resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
+ engines: {node: '>=8.6.0'}
+ 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
+ dev: true
+
+ /fast-glob/3.3.3:
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
engines: {node: '>=8.6.0'}
+ 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-json-stable-stringify@2.1.0:
+ /fast-json-stable-stringify/2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
+ dev: true
- fast-json-stringify@6.0.1:
+ /fast-json-stringify/6.0.1:
resolution: {integrity: sha512-s7SJE83QKBZwg54dIbD5rCtzOBVD43V1ReWXXYqBgwCwHLYAAT0RQc/FmrQglXqWPpz6omtryJQOau5jI4Nrvg==}
+ dependencies:
+ '@fastify/merge-json-schemas': 0.2.1
+ ajv: 8.17.1
+ ajv-formats: 3.0.1
+ fast-uri: 3.0.6
+ json-schema-ref-resolver: 2.0.1
+ rfdc: 1.4.1
- fast-levenshtein@2.0.6:
+ /fast-levenshtein/2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ dev: true
- fast-npm-meta@0.2.2:
+ /fast-npm-meta/0.2.2:
resolution: {integrity: sha512-E+fdxeaOQGo/CMWc9f4uHFfgUPJRAu7N3uB8GBvB3SDPAIWJK4GKyYhkAGFq+GYrcbKNfQIz5VVQyJnDuPPCrg==}
- fast-querystring@1.1.2:
+ /fast-npm-meta/0.3.1:
+ resolution: {integrity: sha512-W9gVhqRyz2O3j20I0nFmYEyaMC/046oaMRxxAQ0w6noakfbhpLmlIXmnnqSOmVVuJZ6x5hOPVwlv7PocuawZsw==}
+ dev: false
+
+ /fast-querystring/1.1.2:
resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==}
+ dependencies:
+ fast-decode-uri-component: 1.0.1
- fast-redact@3.5.0:
+ /fast-redact/3.5.0:
resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==}
engines: {node: '>=6'}
- fast-uri@3.0.6:
+ /fast-uri/3.0.6:
resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==}
- fastify-openapi-glue@4.8.0:
+ /fastify-openapi-glue/4.8.0:
resolution: {integrity: sha512-wJVLKiZcLGYxHcJb81HO3UQbr8QGBuAlljSTWl2t2jwyvyFlLWDIzMa1rs3fe/vV3+1VwTJvsRb9j5BaqaEnFg==}
engines: {node: '>=14.0.0'}
hasBin: true
+ dependencies:
+ '@seriousme/openapi-schema-validator': 2.3.1
+ fastify-plugin: 5.0.1
+ js-yaml: 4.1.0
+ minimist: 1.2.8
+ dev: false
- fastify-plugin@5.0.1:
+ /fastify-plugin/5.0.1:
resolution: {integrity: sha512-HCxs+YnRaWzCl+cWRYFnHmeRFyR5GVnJTAaCJQiYzQSDwK9MgJdyAsuL3nh0EWRCYMgQ5MeziymvmAhUHYHDUQ==}
+ dev: false
- fastify@5.2.0:
+ /fastify/5.2.0:
resolution: {integrity: sha512-3s+Qt5S14Eq5dCpnE0FxTp3z4xKChI83ZnMv+k0FwX+VUoZrgCFoLAxpfdi/vT4y6Mk+g7aAMt9pgXDoZmkefQ==}
+ dependencies:
+ '@fastify/ajv-compiler': 4.0.2
+ '@fastify/error': 4.0.0
+ '@fastify/fast-json-stringify-compiler': 5.0.2
+ abstract-logging: 2.0.1
+ avvio: 9.1.0
+ fast-json-stringify: 6.0.1
+ find-my-way: 9.2.0
+ light-my-request: 6.6.0
+ pino: 9.6.0
+ process-warning: 4.0.1
+ proxy-addr: 2.0.7
+ rfdc: 1.4.1
+ secure-json-parse: 3.0.2
+ semver: 7.7.1
+ toad-cache: 3.7.0
- fastq@1.18.0:
- resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
+ /fastq/1.19.1:
+ resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
+ dependencies:
+ reusify: 1.1.0
- faye-websocket@0.11.4:
+ /faye-websocket/0.11.4:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
engines: {node: '>=0.8.0'}
+ dependencies:
+ websocket-driver: 0.7.4
+ dev: true
- fd-slicer@1.1.0:
+ /fd-slicer/1.1.0:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
+ dependencies:
+ pend: 1.2.0
+ dev: true
+
+ /fdir/6.4.3:
+ resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+ dev: true
- fdir@6.4.3:
+ /fdir/6.4.3_picomatch@4.0.2:
resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
picomatch:
optional: true
+ dependencies:
+ picomatch: 4.0.2
- fetch-blob@3.2.0:
+ /fetch-blob/3.2.0:
resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
engines: {node: ^12.20 || >= 14.13}
+ dependencies:
+ node-domexception: 1.0.0
+ web-streams-polyfill: 3.3.3
+ dev: true
- fflate@0.8.2:
+ /fflate/0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
+ dev: true
- figures@6.1.0:
+ /figures/6.1.0:
resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
engines: {node: '>=18'}
+ dependencies:
+ is-unicode-supported: 2.1.0
- file-entry-cache@8.0.0:
+ /file-entry-cache/8.0.0:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
+ dependencies:
+ flat-cache: 4.0.1
+ dev: true
- file-uri-to-path@1.0.0:
+ /file-uri-to-path/1.0.0:
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
- fill-range@7.1.1:
+ /fill-range/7.1.1:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
+ dependencies:
+ to-regex-range: 5.0.1
- finalhandler@1.1.2:
+ /finalhandler/1.1.2:
resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
engines: {node: '>= 0.8'}
+ dependencies:
+ debug: 2.6.9
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ on-finished: 2.3.0
+ parseurl: 1.3.3
+ statuses: 1.5.0
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- finalhandler@1.3.1:
+ /finalhandler/1.3.1:
resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
engines: {node: '>= 0.8'}
+ 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
+ dev: true
- find-cache-dir@4.0.0:
+ /find-cache-dir/4.0.0:
resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==}
engines: {node: '>=14.16'}
+ dependencies:
+ common-path-prefix: 3.0.0
+ pkg-dir: 7.0.0
+ dev: true
- find-my-way@9.1.0:
- resolution: {integrity: sha512-Y5jIsuYR4BwWDYYQ2A/RWWE6gD8a0FMgtU+HOq1WKku+Cwdz8M1v8wcAmRXXM1/iqtoqg06v+LjAxMYbCjViMw==}
+ /find-my-way/9.2.0:
+ resolution: {integrity: sha512-d3uCir8Hmg7W1Ywp8nKf2lJJYU9Nwinvo+1D39Dn09nz65UKXIxUh7j7K8zeWhxqe1WrkS7FJyON/Q/3lPoc6w==}
engines: {node: '>=14'}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-querystring: 1.1.2
+ safe-regex2: 4.0.1
- find-up@4.1.0:
+ /find-up/4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
+ dependencies:
+ locate-path: 5.0.0
+ path-exists: 4.0.0
+ dev: true
- find-up@5.0.0:
+ /find-up/5.0.0:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
+ dependencies:
+ locate-path: 6.0.0
+ path-exists: 4.0.0
+ dev: true
- find-up@6.3.0:
+ /find-up/6.3.0:
resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ locate-path: 7.2.0
+ path-exists: 5.0.0
+ dev: true
- flat-cache@4.0.1:
+ /flat-cache/4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
+ dependencies:
+ flatted: 3.3.3
+ keyv: 4.5.4
+ dev: true
- flat@5.0.2:
+ /flat/5.0.2:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
+ dev: true
- flatted@3.3.2:
- resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
+ /flatted/3.3.3:
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
- focus-trap@7.6.4:
+ /focus-trap/7.6.4:
resolution: {integrity: sha512-xx560wGBk7seZ6y933idtjJQc1l+ck+pI3sKvhKozdBV1dRZoKhkW5xoCaFv9tQiX5RH1xfSxjuNu6g+lmN/gw==}
+ dependencies:
+ tabbable: 6.2.0
+ dev: true
+
+ /follow-redirects/1.15.9:
+ resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ dev: true
- follow-redirects@1.15.9:
+ /follow-redirects/1.15.9_debug@4.4.0:
resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -6780,316 +13505,573 @@ packages:
peerDependenciesMeta:
debug:
optional: true
+ dependencies:
+ debug: 4.4.0
- for-each@0.3.4:
- resolution: {integrity: sha512-kKaIINnFpzW6ffJNDjjyjrk21BkDx38c0xa/klsT8VzLCaMEefv4ZTacrcVR4DmgTeBra++jMDAfS/tS799YDw==}
+ /for-each/0.3.5:
+ resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
engines: {node: '>= 0.4'}
+ dependencies:
+ is-callable: 1.2.7
+ dev: true
- foreground-child@3.3.0:
- resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
+ /foreground-child/3.3.1:
+ resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
engines: {node: '>=14'}
+ dependencies:
+ cross-spawn: 7.0.6
+ signal-exit: 4.1.0
- form-data@4.0.1:
- resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
+ /form-data/4.0.2:
+ resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
engines: {node: '>= 6'}
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ es-set-tostringtag: 2.1.0
+ mime-types: 2.1.35
- formdata-polyfill@4.0.10:
+ /formdata-polyfill/4.0.10:
resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
engines: {node: '>=12.20.0'}
+ dependencies:
+ fetch-blob: 3.2.0
+ dev: true
- forwarded@0.2.0:
+ /forwarded/0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
- fraction.js@4.3.7:
+ /fraction.js/4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
- fresh@0.5.2:
+ /fresh/0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- fs-extra@11.3.0:
+ /fs-extra/11.3.0:
resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==}
engines: {node: '>=14.14'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 6.1.0
+ universalify: 2.0.1
- fs-extra@7.0.1:
+ /fs-extra/7.0.1:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
- fs-extra@8.1.0:
+ /fs-extra/8.1.0:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
- fs-minipass@2.1.0:
+ /fs-minipass/2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
- fs-minipass@3.0.3:
+ /fs-minipass/3.0.3:
resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ dependencies:
+ minipass: 7.1.2
+ dev: true
- fs.realpath@1.0.0:
+ /fs.realpath/1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+ dev: true
- fsevents@2.3.3:
+ /fsevents/2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
+ requiresBuild: true
+ optional: true
- function-bind@1.1.2:
+ /function-bind/1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- function.prototype.name@1.1.8:
+ /function.prototype.name/1.1.8:
resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ define-properties: 1.2.1
+ functions-have-names: 1.2.3
+ hasown: 2.0.2
+ is-callable: 1.2.7
+ dev: true
- functions-have-names@1.2.3:
+ /functions-have-names/1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ dev: true
+
+ /fuse.js/7.1.0:
+ resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
+ engines: {node: '>=10'}
+ dev: false
- gensync@1.0.0-beta.2:
+ /gensync/1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- get-caller-file@2.0.5:
+ /get-caller-file/2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.3.0:
+ /get-east-asian-width/1.3.0:
resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
engines: {node: '>=18'}
+ dev: true
- get-func-name@2.0.2:
+ /get-func-name/2.0.2:
resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
+ dev: true
- get-intrinsic@1.2.7:
- resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==}
+ /get-intrinsic/1.3.0:
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ function-bind: 1.1.2
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ math-intrinsics: 1.1.0
- get-nonce@1.0.1:
+ /get-nonce/1.0.1:
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
engines: {node: '>=6'}
+ dev: false
- get-port-please@3.1.2:
+ /get-port-please/3.1.2:
resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==}
- get-proto@1.0.1:
+ /get-proto/1.0.1:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.1.1
- get-stream@5.2.0:
+ /get-stream/5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
+ dependencies:
+ pump: 3.0.2
+ dev: true
- get-stream@6.0.1:
+ /get-stream/6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- get-stream@8.0.1:
+ /get-stream/8.0.1:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
- get-stream@9.0.1:
+ /get-stream/9.0.1:
resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
engines: {node: '>=18'}
+ dependencies:
+ '@sec-ant/readable-stream': 0.4.1
+ is-stream: 4.0.1
- get-symbol-description@1.1.0:
+ /get-symbol-description/1.1.0:
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ dev: true
- get-tsconfig@4.10.0:
+ /get-tsconfig/4.10.0:
resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==}
+ dependencies:
+ resolve-pkg-maps: 1.0.0
+ dev: true
- get-uri@6.0.4:
+ /get-uri/6.0.4:
resolution: {integrity: sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==}
engines: {node: '>= 14'}
+ dependencies:
+ basic-ftp: 5.0.5
+ data-uri-to-buffer: 6.0.2
+ debug: 4.4.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /giget/1.2.5:
+ resolution: {integrity: sha512-r1ekGw/Bgpi3HLV3h1MRBIlSAdHoIMklpaQ3OQLFcRw9PwAj2rqigvIbg+dBUI51OxVI2jsEtDywDBjSiuf7Ug==}
+ hasBin: true
+ dependencies:
+ citty: 0.1.6
+ consola: 3.4.0
+ defu: 6.1.4
+ node-fetch-native: 1.6.6
+ nypm: 0.5.4
+ pathe: 2.0.3
+ tar: 6.2.1
- giget@1.2.4:
- resolution: {integrity: sha512-Wv+daGyispVoA31TrWAVR+aAdP7roubTPEM/8JzRnqXhLbdJH0T9eQyXVFF8fjk3WKTsctII6QcyxILYgNp2DA==}
+ /giget/2.0.0:
+ resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==}
hasBin: true
+ dependencies:
+ citty: 0.1.6
+ consola: 3.4.0
+ defu: 6.1.4
+ node-fetch-native: 1.6.6
+ nypm: 0.6.0
+ pathe: 2.0.3
- git-config-path@2.0.0:
+ /git-config-path/2.0.0:
resolution: {integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==}
engines: {node: '>=4'}
- git-up@8.0.0:
- resolution: {integrity: sha512-uBI8Zdt1OZlrYfGcSVroLJKgyNNXlgusYFzHk614lTasz35yg2PVpL1RMy0LOO2dcvF9msYW3pRfUSmafZNrjg==}
+ /git-up/8.0.1:
+ resolution: {integrity: sha512-2XFu1uNZMSjkyetaF+8rqn6P0XqpMq/C+2ycjI6YwrIKcszZ5/WR4UubxjN0lILOKqLkLaHDaCr2B6fP1cke6g==}
+ dependencies:
+ is-ssh: 1.4.1
+ parse-url: 9.2.0
- git-url-parse@16.0.0:
- resolution: {integrity: sha512-Y8iAF0AmCaqXc6a5GYgPQW9ESbncNLOL+CeQAJRhmWUOmnPkKpBYeWYp4mFd3LA5j53CdGDdslzX12yEBVHQQg==}
+ /git-url-parse/16.0.1:
+ resolution: {integrity: sha512-mcD36GrhAzX5JVOsIO52qNpgRyFzYWRbU1VSRFCvJt1IJvqfvH427wWw/CFqkWvjVPtdG5VTx4MKUeC5GeFPDQ==}
+ dependencies:
+ git-up: 8.0.1
- glob-parent@5.1.2:
+ /glob-parent/5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
+ dependencies:
+ is-glob: 4.0.3
- glob-parent@6.0.2:
+ /glob-parent/6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
+ dependencies:
+ is-glob: 4.0.3
+ dev: true
- glob-to-regexp@0.4.1:
+ /glob-to-regexp/0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
+ dev: true
- glob@10.4.3:
+ /glob/10.4.3:
resolution: {integrity: sha512-Q38SGlYRpVtDBPSWEylRyctn7uDeTp4NQERTLiCT1FqA9JXPYWqAVmQU6qh4r/zMM5ehxTcbaO8EjhWnvEhmyg==}
engines: {node: '>=18'}
hasBin: true
+ dependencies:
+ foreground-child: 3.3.1
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.1
+ path-scurry: 1.11.1
+ dev: true
+
+ /glob/10.4.5:
+ resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
+ hasBin: true
+ dependencies:
+ foreground-child: 3.3.1
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.1
+ path-scurry: 1.11.1
- glob@7.2.3:
+ /glob/7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
+ 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
+ dev: true
- global-directory@4.0.1:
+ /global-directory/4.0.1:
resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
engines: {node: '>=18'}
+ dependencies:
+ ini: 4.1.1
- globals@11.12.0:
+ /globals/11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- globals@13.24.0:
+ /globals/13.24.0:
resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
+ dependencies:
+ type-fest: 0.20.2
+ dev: true
- globals@14.0.0:
+ /globals/14.0.0:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
+ dev: true
- globals@15.14.0:
+ /globals/15.14.0:
resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
engines: {node: '>=18'}
+ dev: true
- globalthis@1.0.4:
+ /globalthis/1.0.4:
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ define-properties: 1.2.1
+ gopd: 1.2.0
+ dev: true
- globby@11.1.0:
+ /globby/11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
+ dependencies:
+ array-union: 2.1.0
+ dir-glob: 3.0.1
+ fast-glob: 3.3.3
+ ignore: 5.3.2
+ merge2: 1.4.1
+ slash: 3.0.0
+ dev: true
- globby@14.0.2:
- resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
- engines: {node: '>=18'}
-
- globby@14.1.0:
+ /globby/14.1.0:
resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==}
engines: {node: '>=18'}
+ dependencies:
+ '@sindresorhus/merge-streams': 2.3.0
+ fast-glob: 3.3.3
+ ignore: 7.0.3
+ path-type: 6.0.0
+ slash: 5.1.0
+ unicorn-magic: 0.3.0
- gopd@1.2.0:
+ /gopd/1.2.0:
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
engines: {node: '>= 0.4'}
- graceful-fs@4.2.11:
+ /graceful-fs/4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- graphemer@1.4.0:
+ /graphemer/1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
+ dev: true
- gzip-size@7.0.0:
+ /gzip-size/7.0.0:
resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ duplexer: 0.1.2
- h3@1.14.0:
- resolution: {integrity: sha512-ao22eiONdgelqcnknw0iD645qW0s9NnrJHr5OBz4WOMdBdycfSas1EQf1wXRsm+PcB2Yoj43pjBPwqIpJQTeWg==}
+ /h3/1.15.1:
+ resolution: {integrity: sha512-+ORaOBttdUm1E2Uu/obAyCguiI7MbBvsLTndc3gyK3zU+SYLoZXlyCP9Xgy0gikkGufFLTZXCXD6+4BsufnmHA==}
+ dependencies:
+ cookie-es: 1.2.2
+ crossws: 0.3.4
+ defu: 6.1.4
+ destr: 2.0.3
+ iron-webcrypto: 1.2.1
+ node-mock-http: 1.0.0
+ radix3: 1.1.2
+ ufo: 1.5.4
+ uncrypto: 0.1.3
- handle-thing@2.0.1:
+ /handle-thing/2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
+ dev: true
- handlebars@4.7.8:
+ /handlebars/4.7.8:
resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
engines: {node: '>=0.4.7'}
hasBin: true
+ dependencies:
+ minimist: 1.2.8
+ neo-async: 2.6.2
+ source-map: 0.6.1
+ wordwrap: 1.0.0
+ optionalDependencies:
+ uglify-js: 3.19.3
+ dev: false
- has-bigints@1.1.0:
+ /has-bigints/1.1.0:
resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
engines: {node: '>= 0.4'}
+ dev: true
- has-flag@4.0.0:
+ /has-flag/4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- has-property-descriptors@1.0.2:
+ /has-property-descriptors/1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
+ dependencies:
+ es-define-property: 1.0.1
+ dev: true
- has-proto@1.2.0:
+ /has-proto/1.2.0:
resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ dunder-proto: 1.0.1
+ dev: true
- has-symbols@1.1.0:
+ /has-symbols/1.1.0:
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
- has-tostringtag@1.0.2:
+ /has-tostringtag/1.0.2:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
+ dependencies:
+ has-symbols: 1.1.0
- hash-sum@2.0.0:
+ /hash-sum/2.0.0:
resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
- hasown@2.0.2:
+ /hasown/2.0.2:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ function-bind: 1.1.2
- hast-util-to-html@9.0.4:
- resolution: {integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==}
+ /hast-util-to-html/9.0.5:
+ resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==}
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.3
+ ccount: 2.0.1
+ comma-separated-tokens: 2.0.3
+ hast-util-whitespace: 3.0.0
+ html-void-elements: 3.0.0
+ mdast-util-to-hast: 13.2.0
+ property-information: 7.0.0
+ space-separated-tokens: 2.0.2
+ stringify-entities: 4.0.4
+ zwitch: 2.0.4
+ dev: true
- hast-util-whitespace@3.0.0:
+ /hast-util-whitespace/3.0.0:
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
+ dependencies:
+ '@types/hast': 3.0.4
+ dev: true
- he@1.2.0:
+ /he/1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
+ dev: true
- highlight.js@10.7.3:
+ /highlight.js/10.7.3:
resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==}
+ dev: true
- hookable@5.5.3:
+ /hookable/5.5.3:
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
- hosted-git-info@8.0.2:
+ /hosted-git-info/8.0.2:
resolution: {integrity: sha512-sYKnA7eGln5ov8T8gnYlkSOxFJvywzEx9BueN6xo/GKO8PGiI6uK6xx+DIGe45T3bdVjLAQDQW1aicT8z8JwQg==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ lru-cache: 10.4.3
+ dev: true
- hpack.js@2.1.6:
+ /hpack.js/2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
+ dependencies:
+ inherits: 2.0.4
+ obuf: 1.1.2
+ readable-stream: 2.3.8
+ wbuf: 1.7.3
+ dev: true
- html-encoding-sniffer@4.0.0:
+ /html-encoding-sniffer/4.0.0:
resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
engines: {node: '>=18'}
+ dependencies:
+ whatwg-encoding: 3.1.1
+ dev: true
- html-escaper@2.0.2:
+ /html-escaper/2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
+ dev: true
- html-tags@3.3.1:
- resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
- engines: {node: '>=8'}
-
- html-void-elements@3.0.0:
+ /html-void-elements/3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
+ dev: true
- htmlparser2@9.1.0:
+ /htmlparser2/9.1.0:
resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ domutils: 3.2.2
+ entities: 4.5.0
+ dev: true
- http-cache-semantics@4.1.1:
+ /http-cache-semantics/4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
+ dev: true
- http-deceiver@1.2.7:
+ /http-deceiver/1.2.7:
resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
+ dev: true
- http-errors@1.6.3:
+ /http-errors/1.6.3:
resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
engines: {node: '>= 0.6'}
+ dependencies:
+ depd: 1.1.2
+ inherits: 2.0.3
+ setprototypeof: 1.1.0
+ statuses: 1.5.0
+ dev: true
- http-errors@2.0.0:
+ /http-errors/2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
+ dependencies:
+ depd: 2.0.0
+ inherits: 2.0.4
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ toidentifier: 1.0.1
- http-parser-js@0.5.9:
+ /http-parser-js/0.5.9:
resolution: {integrity: sha512-n1XsPy3rXVxlqxVioEWdC+0+M+SQw0DpJynwtOPo1X+ZlvdzTLtDBIJJlDQTnwZIFJrZSzSGmIOUdP8tu+SgLw==}
+ dev: true
- http-proxy-agent@7.0.2:
+ /http-proxy-agent/7.0.2:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.3
+ debug: 4.4.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- http-proxy-middleware@2.0.7:
+ /http-proxy-middleware/2.0.7_@types+express@4.17.21:
resolution: {integrity: sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -7097,495 +14079,817 @@ packages:
peerDependenciesMeta:
'@types/express':
optional: true
+ dependencies:
+ '@types/express': 4.17.21
+ '@types/http-proxy': 1.17.16
+ http-proxy: 1.18.1
+ is-glob: 4.0.3
+ is-plain-obj: 3.0.0
+ micromatch: 4.0.8
+ transitivePeerDependencies:
+ - debug
+ dev: true
- http-proxy-middleware@3.0.3:
+ /http-proxy-middleware/3.0.3:
resolution: {integrity: sha512-usY0HG5nyDUwtqpiZdETNbmKtw3QQ1jwYFZ9wi5iHzX2BcILwQKtYDJPo7XHTsu5Z0B2Hj3W9NNnbd+AjFWjqg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@types/http-proxy': 1.17.16
+ debug: 4.4.0
+ http-proxy: 1.18.1_debug@4.4.0
+ is-glob: 4.0.3
+ is-plain-object: 5.0.0
+ micromatch: 4.0.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /http-proxy/1.18.1:
+ resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ eventemitter3: 4.0.7
+ follow-redirects: 1.15.9
+ requires-port: 1.0.0
+ transitivePeerDependencies:
+ - debug
+ dev: true
- http-proxy@1.18.1:
+ /http-proxy/1.18.1_debug@4.4.0:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
+ dependencies:
+ eventemitter3: 4.0.7
+ follow-redirects: 1.15.9_debug@4.4.0
+ requires-port: 1.0.0
+ transitivePeerDependencies:
+ - debug
+ dev: true
- http-shutdown@1.2.2:
+ /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@7.0.6:
+ /https-proxy-agent/7.0.6:
+ resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.3
+ debug: 4.4.0
+ transitivePeerDependencies:
+ - supports-color
+
+ /https-proxy-agent/7.0.6_supports-color@9.4.0:
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.3
+ debug: 4.4.0_supports-color@9.4.0
+ transitivePeerDependencies:
+ - supports-color
- httpxy@0.1.7:
+ /httpxy/0.1.7:
resolution: {integrity: sha512-pXNx8gnANKAndgga5ahefxc++tJvNL87CXoRwxn1cJE2ZkWEojF3tNfQIEhZX/vfpt+wzeAzpUI4qkediX1MLQ==}
- human-id@1.0.2:
+ /human-id/1.0.2:
resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==}
+ dev: true
- human-signals@4.3.1:
+ /human-signals/4.3.1:
resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
engines: {node: '>=14.18.0'}
- human-signals@5.0.0:
+ /human-signals/5.0.0:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
- human-signals@8.0.0:
+ /human-signals/8.0.0:
resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==}
engines: {node: '>=18.18.0'}
- husky@9.1.7:
+ /husky/9.1.7:
resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==}
engines: {node: '>=18'}
hasBin: true
+ dev: true
- hyperdyperid@1.2.0:
+ /hyperdyperid/1.2.0:
resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==}
engines: {node: '>=10.18'}
+ dev: true
- iconv-lite@0.4.24:
+ /iconv-lite/0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
+ dependencies:
+ safer-buffer: 2.1.2
+ dev: true
- iconv-lite@0.6.3:
+ /iconv-lite/0.6.3:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
+ dependencies:
+ safer-buffer: 2.1.2
- icss-utils@5.1.0:
+ /icss-utils/5.1.0_postcss@8.5.3:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
+ dependencies:
+ postcss: 8.5.3
+ dev: true
- ieee754@1.2.1:
+ /ieee754/1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore-walk@7.0.0:
+ /ignore-walk/7.0.0:
resolution: {integrity: sha512-T4gbf83A4NH95zvhVYZc+qWocBBGlpzUXLPGurJggw/WIOwicfXJChLDP/iBZnN5WqROSu5Bm3hhle4z8a8YGQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ minimatch: 9.0.5
+ dev: true
- ignore@5.3.2:
+ /ignore/5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
+ dev: true
- ignore@6.0.2:
+ /ignore/6.0.2:
resolution: {integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==}
engines: {node: '>= 4'}
- ignore@7.0.3:
+ /ignore/7.0.3:
resolution: {integrity: sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==}
engines: {node: '>= 4'}
- image-meta@0.2.1:
+ /image-meta/0.2.1:
resolution: {integrity: sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw==}
- image-size@0.5.5:
+ /image-size/0.5.5:
resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
engines: {node: '>=0.10.0'}
hasBin: true
+ requiresBuild: true
+ optional: true
- immutable@5.0.3:
+ /immutable/5.0.3:
resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
- import-fresh@3.3.0:
- resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ /import-fresh/3.3.1:
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+ dev: true
- import-meta-resolve@4.1.0:
+ /import-meta-resolve/4.1.0:
resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
+ dev: true
+
+ /impound/0.2.1:
+ resolution: {integrity: sha512-V+8yPoV8sT3VYNY8A8F/lfox+QShWdb4enaG3ou/k7d5gY20lVwaE6M2O4zI6Z3XGEWSEEh3e+W3G7qfJeYfKA==}
+ dependencies:
+ '@rollup/pluginutils': 5.1.4
+ mlly: 1.7.4
+ pathe: 2.0.3
+ unenv: 2.0.0-rc.14
+ unplugin: 2.2.0
+ transitivePeerDependencies:
+ - rollup
+ dev: false
- impound@0.2.0:
- resolution: {integrity: sha512-gXgeSyp9Hf7qG2/PLKmywHXyQf2xFrw+mJGpoj9DsAB9L7/MIKn+DeEx98UryWXdmbv8wUUPdcQof6qXnZoCGg==}
+ /impound/0.2.1_rollup@4.35.0:
+ resolution: {integrity: sha512-V+8yPoV8sT3VYNY8A8F/lfox+QShWdb4enaG3ou/k7d5gY20lVwaE6M2O4zI6Z3XGEWSEEh3e+W3G7qfJeYfKA==}
+ dependencies:
+ '@rollup/pluginutils': 5.1.4_rollup@4.35.0
+ mlly: 1.7.4
+ pathe: 2.0.3
+ unenv: 2.0.0-rc.14
+ unplugin: 2.2.0
+ transitivePeerDependencies:
+ - rollup
+ dev: true
- imurmurhash@0.1.4:
+ /imurmurhash/0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
+ dev: true
- index-to-position@0.1.2:
+ /index-to-position/0.1.2:
resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==}
engines: {node: '>=18'}
- inflight@1.0.6:
+ /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.
+ dependencies:
+ once: 1.4.0
+ wrappy: 1.0.2
+ dev: true
- inherits@2.0.3:
+ /inherits/2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
+ dev: true
- inherits@2.0.4:
+ /inherits/2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- ini@1.3.8:
+ /ini/1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- ini@4.1.1:
+ /ini/4.1.1:
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- ini@5.0.0:
+ /ini/5.0.0:
resolution: {integrity: sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dev: true
- internal-slot@1.1.0:
+ /internal-slot/1.1.0:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
+ dependencies:
+ es-errors: 1.3.0
+ hasown: 2.0.2
+ side-channel: 1.1.0
+ dev: true
- ioredis@5.4.2:
- resolution: {integrity: sha512-0SZXGNGZ+WzISQ67QDyZ2x0+wVxjjUndtD8oSeik/4ajifeiRufed8fCb8QW8VMyi4MXcS+UO1k/0NGhvq1PAg==}
+ /ioredis/5.6.0:
+ resolution: {integrity: sha512-tBZlIIWbndeWBWCXWZiqtOF/yxf6yZX3tAlTJ7nfo5jhd6dctNxF7QnYlZLZ1a0o0pDoen7CgZqO+zjNaFbJAg==}
engines: {node: '>=12.22.0'}
+ dependencies:
+ '@ioredis/commands': 1.2.0
+ cluster-key-slot: 1.1.2
+ debug: 4.4.0
+ denque: 2.1.0
+ lodash.defaults: 4.2.0
+ lodash.isarguments: 3.1.0
+ redis-errors: 1.2.0
+ redis-parser: 3.0.0
+ standard-as-callback: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
- ip-address@9.0.5:
+ /ip-address/9.0.5:
resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
engines: {node: '>= 12'}
+ dependencies:
+ jsbn: 1.1.0
+ sprintf-js: 1.1.3
+ dev: true
- ipaddr.js@1.9.1:
+ /ipaddr.js/1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- ipaddr.js@2.2.0:
+ /ipaddr.js/2.2.0:
resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==}
engines: {node: '>= 10'}
+ dev: true
- iron-webcrypto@1.2.1:
+ /iron-webcrypto/1.2.1:
resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
- is-array-buffer@3.0.5:
+ /is-array-buffer/3.0.5:
resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
+ dev: true
- is-arrayish@0.2.1:
+ /is-arrayish/0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ dev: true
- is-arrayish@0.3.2:
+ /is-arrayish/0.3.2:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
- is-async-function@2.1.1:
+ /is-async-function/2.1.1:
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
engines: {node: '>= 0.4'}
-
- is-bigint@1.1.0:
- resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
- engines: {node: '>= 0.4'}
-
- is-binary-path@2.1.0:
+ dependencies:
+ async-function: 1.0.0
+ call-bound: 1.0.4
+ get-proto: 1.0.1
+ has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
+ dev: true
+
+ /is-bigint/1.1.0:
+ resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-bigints: 1.1.0
+ dev: true
+
+ /is-binary-path/2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
+ dependencies:
+ binary-extensions: 2.3.0
- is-boolean-object@1.2.1:
- resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==}
+ /is-boolean-object/1.2.2:
+ resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ has-tostringtag: 1.0.2
+ dev: true
- is-bun-module@1.3.0:
+ /is-bun-module/1.3.0:
resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==}
+ dependencies:
+ semver: 7.7.1
+ dev: true
- is-callable@1.2.7:
+ /is-callable/1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
+ dev: true
- is-core-module@2.16.1:
+ /is-core-module/2.16.1:
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
engines: {node: '>= 0.4'}
+ dependencies:
+ hasown: 2.0.2
- is-data-view@1.0.2:
+ /is-data-view/1.0.2:
resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
+ is-typed-array: 1.1.15
+ dev: true
- is-date-object@1.1.0:
+ /is-date-object/1.1.0:
resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ has-tostringtag: 1.0.2
+ dev: true
- is-docker@2.2.1:
+ /is-docker/2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
hasBin: true
- is-docker@3.0.0:
+ /is-docker/3.0.0:
resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true
- is-extglob@2.1.1:
+ /is-extglob/2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- is-finalizationregistry@1.1.1:
+ /is-finalizationregistry/1.1.1:
resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ dev: true
- is-fullwidth-code-point@3.0.0:
+ /is-fullwidth-code-point/3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- is-fullwidth-code-point@4.0.0:
+ /is-fullwidth-code-point/4.0.0:
resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
engines: {node: '>=12'}
+ dev: true
- is-fullwidth-code-point@5.0.0:
+ /is-fullwidth-code-point/5.0.0:
resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==}
engines: {node: '>=18'}
+ dependencies:
+ get-east-asian-width: 1.3.0
+ dev: true
- is-generator-function@1.1.0:
+ /is-generator-function/1.1.0:
resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ get-proto: 1.0.1
+ has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
+ dev: true
- is-glob@4.0.3:
+ /is-glob/4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extglob: 2.1.1
- is-inside-container@1.0.0:
+ /is-inside-container/1.0.0:
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
engines: {node: '>=14.16'}
hasBin: true
+ dependencies:
+ is-docker: 3.0.0
- is-installed-globally@1.0.0:
+ /is-installed-globally/1.0.0:
resolution: {integrity: sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==}
engines: {node: '>=18'}
+ dependencies:
+ global-directory: 4.0.1
+ is-path-inside: 4.0.0
- is-interactive@1.0.0:
+ /is-interactive/1.0.0:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
+ dev: true
- is-map@2.0.3:
+ /is-map/2.0.3:
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
+ dev: true
- is-module@1.0.0:
+ /is-module/1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
- is-network-error@1.1.0:
+ /is-network-error/1.1.0:
resolution: {integrity: sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==}
engines: {node: '>=16'}
+ dev: true
- is-number-object@1.1.1:
+ /is-number-object/1.1.1:
resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ has-tostringtag: 1.0.2
+ dev: true
- is-number@7.0.0:
+ /is-number/7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- is-path-inside@4.0.0:
+ /is-path-inside/4.0.0:
resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==}
engines: {node: '>=12'}
- is-plain-obj@3.0.0:
+ /is-plain-obj/3.0.0:
resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
engines: {node: '>=10'}
+ dev: true
- is-plain-obj@4.1.0:
+ /is-plain-obj/4.1.0:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
- is-plain-object@2.0.4:
+ /is-plain-object/2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: true
- is-plain-object@5.0.0:
+ /is-plain-object/5.0.0:
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
engines: {node: '>=0.10.0'}
+ dev: true
- is-potential-custom-element-name@1.0.1:
+ /is-potential-custom-element-name/1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+ dev: true
- is-reference@1.2.1:
+ /is-reference/1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
+ dependencies:
+ '@types/estree': 1.0.6
- is-reference@3.0.3:
+ /is-reference/3.0.3:
resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
+ dependencies:
+ '@types/estree': 1.0.6
- is-regex@1.2.1:
+ /is-regex/1.2.1:
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ gopd: 1.2.0
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
+ dev: true
- is-set@2.0.3:
+ /is-set/2.0.3:
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
engines: {node: '>= 0.4'}
+ dev: true
- is-shared-array-buffer@1.0.4:
+ /is-shared-array-buffer/1.0.4:
resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ dev: true
- is-ssh@1.4.0:
- resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==}
+ /is-ssh/1.4.1:
+ resolution: {integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==}
+ dependencies:
+ protocols: 2.0.2
- is-stream@2.0.1:
+ /is-stream/2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- is-stream@3.0.0:
+ /is-stream/3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- is-stream@4.0.1:
+ /is-stream/4.0.1:
resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
engines: {node: '>=18'}
- is-string@1.1.1:
+ /is-string/1.1.1:
resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ has-tostringtag: 1.0.2
+ dev: true
- is-subdir@1.2.0:
+ /is-subdir/1.2.0:
resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
engines: {node: '>=4'}
+ dependencies:
+ better-path-resolve: 1.0.0
+ dev: true
- is-symbol@1.1.1:
+ /is-symbol/1.1.1:
resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ has-symbols: 1.1.0
+ safe-regex-test: 1.1.0
+ dev: true
- is-typed-array@1.1.15:
+ /is-typed-array/1.1.15:
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ which-typed-array: 1.1.19
+ dev: true
- is-unicode-supported@0.1.0:
+ /is-unicode-supported/0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
+ dev: true
- is-unicode-supported@2.1.0:
+ /is-unicode-supported/2.1.0:
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
- is-weakmap@2.0.2:
+ /is-weakmap/2.0.2:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
+ dev: true
- is-weakref@1.1.0:
- resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==}
+ /is-weakref/1.1.1:
+ resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ dev: true
- is-weakset@2.0.4:
+ /is-weakset/2.0.4:
resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
+ dev: true
- is-what@3.14.1:
+ /is-what/3.14.1:
resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
- is-what@4.1.16:
+ /is-what/4.1.16:
resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
engines: {node: '>=12.13'}
- is-windows@1.0.2:
+ /is-windows/1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
+ dev: true
- is-wsl@2.2.0:
+ /is-wsl/2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
+ dependencies:
+ is-docker: 2.2.1
- is-wsl@3.1.0:
+ /is-wsl/3.1.0:
resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
engines: {node: '>=16'}
+ dependencies:
+ is-inside-container: 1.0.0
- is64bit@2.0.0:
+ /is64bit/2.0.0:
resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==}
engines: {node: '>=18'}
+ dependencies:
+ system-architecture: 0.1.0
- isarray@1.0.0:
+ /isarray/1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
- isarray@2.0.5:
+ /isarray/2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
+ dev: true
- isbinaryfile@4.0.10:
+ /isbinaryfile/4.0.10:
resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==}
engines: {node: '>= 8.0.0'}
+ dev: true
- isexe@2.0.0:
+ /isexe/2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- isexe@3.1.1:
+ /isexe/3.1.1:
resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
engines: {node: '>=16'}
- isobject@3.0.1:
+ /isobject/3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
+ dev: true
- istanbul-lib-coverage@3.2.2:
+ /istanbul-lib-coverage/3.2.2:
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
+ dev: true
- istanbul-lib-instrument@5.2.1:
+ /istanbul-lib-instrument/5.2.1:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/parser': 7.26.9
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-coverage: 3.2.2
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- istanbul-lib-instrument@6.0.3:
+ /istanbul-lib-instrument/6.0.3:
resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
engines: {node: '>=10'}
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/parser': 7.26.9
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-coverage: 3.2.2
+ semver: 7.7.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- istanbul-lib-report@3.0.1:
+ /istanbul-lib-report/3.0.1:
resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
engines: {node: '>=10'}
+ dependencies:
+ istanbul-lib-coverage: 3.2.2
+ make-dir: 4.0.0
+ supports-color: 7.2.0
+ dev: true
- istanbul-lib-source-maps@4.0.1:
+ /istanbul-lib-source-maps/4.0.1:
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
engines: {node: '>=10'}
+ dependencies:
+ debug: 4.4.0
+ istanbul-lib-coverage: 3.2.2
+ source-map: 0.6.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- istanbul-lib-source-maps@5.0.6:
+ /istanbul-lib-source-maps/5.0.6:
resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==}
engines: {node: '>=10'}
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ debug: 4.4.0
+ istanbul-lib-coverage: 3.2.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- istanbul-reports@3.1.7:
+ /istanbul-reports/3.1.7:
resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
engines: {node: '>=8'}
+ dependencies:
+ html-escaper: 2.0.2
+ istanbul-lib-report: 3.0.1
+ dev: true
- iterator.prototype@1.1.5:
+ /iterator.prototype/1.1.5:
resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.4
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ has-symbols: 1.1.0
+ set-function-name: 2.0.2
+ dev: true
- jackspeak@3.4.3:
+ /jackspeak/3.4.3:
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
+ dependencies:
+ '@isaacs/cliui': 8.0.2
+ optionalDependencies:
+ '@pkgjs/parseargs': 0.11.0
- jasmine-core@4.6.1:
+ /jasmine-core/4.6.1:
resolution: {integrity: sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==}
+ dev: true
- jasmine-core@5.2.0:
+ /jasmine-core/5.2.0:
resolution: {integrity: sha512-tSAtdrvWybZkQmmaIoDgnvHG8ORUNw5kEVlO5CvrXj02Jjr9TZrmjFq7FUiOUzJiOP2wLGYT6PgrQgQF4R1xiw==}
+ dev: true
- jest-worker@27.5.1:
+ /jest-worker/27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
+ dependencies:
+ '@types/node': 22.13.10
+ merge-stream: 2.0.0
+ supports-color: 8.1.1
+ dev: true
- jiti@1.21.7:
+ /jiti/1.21.7:
resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
hasBin: true
+ dev: true
- jiti@2.4.2:
+ /jiti/2.4.2:
resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
hasBin: true
- joycon@3.1.1:
+ /joycon/3.1.1:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'}
+ dev: true
- js-beautify@1.15.1:
- resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==}
+ /js-beautify/1.15.4:
+ resolution: {integrity: sha512-9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA==}
engines: {node: '>=14'}
hasBin: true
+ dependencies:
+ config-chain: 1.1.13
+ editorconfig: 1.0.4
+ glob: 10.4.5
+ js-cookie: 3.0.5
+ nopt: 7.2.1
+ dev: true
- js-cookie@3.0.5:
+ /js-cookie/3.0.5:
resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
engines: {node: '>=14'}
+ dev: true
- js-levenshtein@1.1.6:
+ /js-levenshtein/1.1.6:
resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==}
engines: {node: '>=0.10.0'}
- js-tokens@4.0.0:
+ /js-tokens/4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- js-tokens@9.0.1:
+ /js-tokens/9.0.1:
resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
- js-yaml@3.14.1:
+ /js-yaml/3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
+ dependencies:
+ argparse: 1.0.10
+ esprima: 4.0.1
+ dev: true
- js-yaml@4.1.0:
+ /js-yaml/4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
+ dependencies:
+ argparse: 2.0.1
- jsbn@1.1.0:
+ /jsbn/1.1.0:
resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
+ dev: true
- jsdom@23.0.0:
+ /jsdom/23.0.0:
resolution: {integrity: sha512-cbL/UCtohJguhFC7c2/hgW6BeZCNvP7URQGnx9tSJRYKCdnfbfWOrtuLTMfiB2VxKsx5wPHVsh/J0aBy9lIIhQ==}
engines: {node: '>=18'}
peerDependencies:
@@ -7593,146 +14897,268 @@ packages:
peerDependenciesMeta:
canvas:
optional: true
+ dependencies:
+ cssstyle: 3.0.0
+ data-urls: 5.0.0
+ decimal.js: 10.5.0
+ form-data: 4.0.2
+ html-encoding-sniffer: 4.0.0
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
+ is-potential-custom-element-name: 1.0.1
+ nwsapi: 2.2.18
+ parse5: 7.2.1
+ rrweb-cssom: 0.6.0
+ saxes: 6.0.0
+ symbol-tree: 3.2.4
+ tough-cookie: 4.1.4
+ w3c-xmlserializer: 5.0.0
+ webidl-conversions: 7.0.0
+ whatwg-encoding: 3.1.1
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.1.1
+ ws: 8.18.1
+ xml-name-validator: 5.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: true
- jsesc@3.0.2:
+ /jsesc/3.0.2:
resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
engines: {node: '>=6'}
hasBin: true
+ dev: true
- jsesc@3.1.0:
+ /jsesc/3.1.0:
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
engines: {node: '>=6'}
hasBin: true
- json-buffer@3.0.1:
+ /json-buffer/3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+ dev: true
- json-parse-even-better-errors@2.3.1:
+ /json-parse-even-better-errors/2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
+ dev: true
- json-parse-even-better-errors@3.0.2:
+ /json-parse-even-better-errors/3.0.2:
resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ dev: true
- json-parse-even-better-errors@4.0.0:
+ /json-parse-even-better-errors/4.0.0:
resolution: {integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dev: true
- json-schema-ref-resolver@2.0.1:
+ /json-schema-ref-resolver/2.0.1:
resolution: {integrity: sha512-HG0SIB9X4J8bwbxCbnd5FfPEbcXAJYTi1pBJeP/QPON+w8ovSME8iRG+ElHNxZNX2Qh6eYn1GdzJFS4cDFfx0Q==}
+ dependencies:
+ dequal: 2.0.3
- json-schema-traverse@0.4.1:
+ /json-schema-traverse/0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+ dev: true
- json-schema-traverse@1.0.0:
+ /json-schema-traverse/1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- json-schema@0.4.0:
+ /json-schema/0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
+ dev: true
- json-stable-stringify-without-jsonify@1.0.1:
+ /json-stable-stringify-without-jsonify/1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+ dev: true
- json5@1.0.2:
+ /json5/1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
+ dependencies:
+ minimist: 1.2.8
+ dev: true
- json5@2.2.3:
+ /json5/2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
hasBin: true
- jsonc-parser@3.3.1:
+ /jsonc-parser/3.3.1:
resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
+ dev: true
- jsonfile@4.0.0:
+ /jsonfile/4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
+ optionalDependencies:
+ graceful-fs: 4.2.11
+ dev: true
- jsonfile@6.1.0:
+ /jsonfile/6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
+ dependencies:
+ universalify: 2.0.1
+ optionalDependencies:
+ graceful-fs: 4.2.11
- jsonparse@1.3.1:
+ /jsonparse/1.3.1:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
+ dev: true
- jsx-ast-utils@3.3.5:
+ /jsx-ast-utils/3.3.5:
resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
engines: {node: '>=4.0'}
+ dependencies:
+ array-includes: 3.1.8
+ array.prototype.flat: 1.3.3
+ object.assign: 4.1.7
+ object.values: 1.2.1
+ dev: true
- karma-chrome-launcher@3.2.0:
+ /karma-chrome-launcher/3.2.0:
resolution: {integrity: sha512-rE9RkUPI7I9mAxByQWkGJFXfFD6lE4gC5nPuZdobf/QdTEJI6EU4yIay/cfU/xV4ZxlM5JiTv7zWYgA64NpS5Q==}
+ dependencies:
+ which: 1.3.1
+ dev: true
- karma-coverage@2.2.1:
+ /karma-coverage/2.2.1:
resolution: {integrity: sha512-yj7hbequkQP2qOSb20GuNSIyE//PgJWHwC2IydLE6XRtsnaflv+/OSGNssPjobYUlhVVagy99TQpqUt3vAUG7A==}
engines: {node: '>=10.0.0'}
+ dependencies:
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-instrument: 5.2.1
+ 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
+ dev: true
- karma-jasmine-html-reporter@2.1.0:
+ /karma-jasmine-html-reporter/2.1.0_jvw23k3cxymogxssauqt35ffa4:
resolution: {integrity: sha512-sPQE1+nlsn6Hwb5t+HHwyy0A1FNCVKuL1192b+XNauMYWThz2kweiBVW1DqloRpVvZIJkIoHVB7XRpK78n1xbQ==}
peerDependencies:
jasmine-core: ^4.0.0 || ^5.0.0
karma: ^6.0.0
karma-jasmine: ^5.0.0
+ dependencies:
+ jasmine-core: 5.2.0
+ karma: 6.4.4
+ karma-jasmine: 5.1.0_karma@6.4.4
+ dev: true
- karma-jasmine@5.1.0:
+ /karma-jasmine/5.1.0_karma@6.4.4:
resolution: {integrity: sha512-i/zQLFrfEpRyQoJF9fsCdTMOF5c2dK7C7OmsuKg2D0YSsuZSfQDiLuaiktbuio6F2wiCsZSnSnieIQ0ant/uzQ==}
engines: {node: '>=12'}
peerDependencies:
karma: ^6.0.0
+ dependencies:
+ jasmine-core: 4.6.1
+ karma: 6.4.4
+ dev: true
- karma-source-map-support@1.4.0:
+ /karma-source-map-support/1.4.0:
resolution: {integrity: sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==}
+ dependencies:
+ source-map-support: 0.5.21
+ dev: true
- karma@6.4.4:
+ /karma/6.4.4:
resolution: {integrity: sha512-LrtUxbdvt1gOpo3gxG+VAJlJAEMhbWlM4YrFQgql98FwF7+K8K12LYO4hnDdUkNjeztYrOXEMqgTajSWgmtI/w==}
engines: {node: '>= 10'}
hasBin: true
+ 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.21
+ 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.8.1
+ source-map: 0.6.1
+ tmp: 0.2.3
+ ua-parser-js: 0.7.40
+ yargs: 16.2.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - supports-color
+ - utf-8-validate
+ dev: true
- keyv@4.5.4:
+ /keyv/4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ dependencies:
+ json-buffer: 3.0.1
+ dev: true
- kind-of@6.0.3:
+ /kind-of/6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
+ dev: true
- kleur@3.0.3:
+ /kleur/3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- kleur@4.1.5:
+ /kleur/4.1.5:
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
- klona@2.0.6:
+ /klona/2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
- knitwork@1.2.0:
+ /knitwork/1.2.0:
resolution: {integrity: sha512-xYSH7AvuQ6nXkq42x0v5S8/Iry+cfulBz/DJQzhIyESdLD7425jXsPy4vn5cCXU+HhRN2kVw51Vd1K6/By4BQg==}
- known-css-properties@0.30.0:
+ /known-css-properties/0.30.0:
resolution: {integrity: sha512-VSWXYUnsPu9+WYKkfmJyLKtIvaRJi1kXUqVmBACORXZQxT5oZDsoZ2vQP+bQFDnWtpI/4eq3MLoRMjI2fnLzTQ==}
+ dev: true
- kolorist@1.8.0:
+ /kolorist/1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- language-subtag-registry@0.3.23:
+ /language-subtag-registry/0.3.23:
resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
+ dev: true
- language-tags@1.0.9:
+ /language-tags/1.0.9:
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
engines: {node: '>=0.10'}
+ dependencies:
+ language-subtag-registry: 0.3.23
+ dev: true
- launch-editor@2.10.0:
+ /launch-editor/2.10.0:
resolution: {integrity: sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==}
+ dependencies:
+ picocolors: 1.1.1
+ shell-quote: 1.8.2
- launch-editor@2.9.1:
- resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==}
-
- lazystream@1.0.1:
+ /lazystream/1.0.1:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
engines: {node: '>= 0.6.3'}
+ dependencies:
+ readable-stream: 2.3.8
- less-loader@12.2.0:
+ /less-loader/12.2.0_less@4.2.2+webpack@5.98.0:
resolution: {integrity: sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==}
engines: {node: '>= 18.12.0'}
peerDependencies:
@@ -7744,483 +15170,809 @@ packages:
optional: true
webpack:
optional: true
+ dependencies:
+ less: 4.2.2
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
- less@4.2.2:
+ /less/4.2.2:
resolution: {integrity: sha512-tkuLHQlvWUTeQ3doAqnHbNn8T6WX1KA8yvbKG9x4VtKtIjHsVKQZCH11zRgAfbDAXC2UNIg/K9BYAAcEzUIrNg==}
engines: {node: '>=6'}
hasBin: true
+ dependencies:
+ copy-anything: 2.0.6
+ parse-node-version: 1.0.1
+ tslib: 2.8.1
+ optionalDependencies:
+ errno: 0.1.8
+ graceful-fs: 4.2.11
+ image-size: 0.5.5
+ make-dir: 2.1.0
+ mime: 1.6.0
+ needle: 3.3.1
+ source-map: 0.6.1
- levn@0.4.1:
+ /levn/0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
+ dependencies:
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+ dev: true
- license-webpack-plugin@4.0.2:
+ /license-webpack-plugin/4.0.2_webpack@5.98.0:
resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==}
peerDependencies:
webpack: '*'
peerDependenciesMeta:
webpack:
optional: true
+ webpack-sources:
+ optional: true
+ dependencies:
+ webpack: 5.98.0_esbuild@0.25.0
+ webpack-sources: 3.2.3
+ dev: true
- light-my-request@6.5.1:
- resolution: {integrity: sha512-0q82RyxIextuDtkA0UDofhPHIiQ2kmpa7fwElCSlm/8nQl36cDU1Cw+CAO90Es0lReH2HChClKL84I86Nc52hg==}
+ /light-my-request/6.6.0:
+ resolution: {integrity: sha512-CHYbu8RtboSIoVsHZ6Ye4cj4Aw/yg2oAFimlF7mNvfDV192LR7nDiKtSIfCuLT7KokPSTn/9kfVLm5OGN0A28A==}
+ dependencies:
+ cookie: 1.0.2
+ process-warning: 4.0.1
+ set-cookie-parser: 2.7.1
- lilconfig@2.1.0:
+ /lilconfig/2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
+ dev: true
- lilconfig@3.1.3:
+ /lilconfig/3.1.3:
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
- lines-and-columns@1.2.4:
+ /lines-and-columns/1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+ dev: true
- lint-staged@15.3.0:
+ /lint-staged/15.3.0:
resolution: {integrity: sha512-vHFahytLoF2enJklgtOtCtIjZrKD/LoxlaUusd5nh7dWv/dkKQJY74ndFSzxCdv7g0ueGg1ORgTSt4Y9LPZn9A==}
engines: {node: '>=18.12.0'}
hasBin: true
+ dependencies:
+ chalk: 5.4.1
+ commander: 12.1.0
+ debug: 4.4.0
+ execa: 8.0.1
+ lilconfig: 3.1.3
+ listr2: 8.2.5
+ micromatch: 4.0.8
+ pidtree: 0.6.0
+ string-argv: 0.3.2
+ yaml: 2.6.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- listhen@1.9.0:
+ /listhen/1.9.0:
resolution: {integrity: sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==}
hasBin: true
-
- listr2@8.2.5:
- resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
+ dependencies:
+ '@parcel/watcher': 2.5.1
+ '@parcel/watcher-wasm': 2.5.1
+ citty: 0.1.6
+ clipboardy: 4.0.0
+ consola: 3.4.0
+ crossws: 0.3.4
+ defu: 6.1.4
+ get-port-please: 3.1.2
+ h3: 1.15.1
+ http-shutdown: 1.2.2
+ jiti: 2.4.2
+ mlly: 1.7.4
+ node-forge: 1.3.1
+ pathe: 1.1.2
+ std-env: 3.8.1
+ ufo: 1.5.4
+ untun: 0.1.3
+ uqr: 0.1.2
+
+ /listr2/8.2.5:
+ resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
engines: {node: '>=18.0.0'}
+ dependencies:
+ cli-truncate: 4.0.0
+ colorette: 2.0.20
+ eventemitter3: 5.0.1
+ log-update: 6.1.0
+ rfdc: 1.4.1
+ wrap-ansi: 9.0.0
+ dev: true
- lmdb@3.2.6:
+ /lmdb/3.2.6:
resolution: {integrity: sha512-SuHqzPl7mYStna8WRotY8XX/EUZBjjv3QyKIByeCLFfC9uXT/OIHByEcA07PzbMfQAM0KYJtLgtpMRlIe5dErQ==}
hasBin: true
+ requiresBuild: true
+ dependencies:
+ msgpackr: 1.11.2
+ node-addon-api: 6.1.0
+ node-gyp-build-optional-packages: 5.2.2
+ ordered-binary: 1.5.3
+ weak-lru-cache: 1.2.2
+ optionalDependencies:
+ '@lmdb/lmdb-darwin-arm64': 3.2.6
+ '@lmdb/lmdb-darwin-x64': 3.2.6
+ '@lmdb/lmdb-linux-arm': 3.2.6
+ '@lmdb/lmdb-linux-arm64': 3.2.6
+ '@lmdb/lmdb-linux-x64': 3.2.6
+ '@lmdb/lmdb-win32-x64': 3.2.6
+ dev: true
+ optional: true
- load-tsconfig@0.2.5:
+ /load-tsconfig/0.2.5:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dev: true
- loader-runner@4.3.0:
+ /loader-runner/4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
+ dev: true
- loader-utils@2.0.4:
+ /loader-utils/2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 3.0.0
+ json5: 2.2.3
+ dev: true
- loader-utils@3.3.1:
+ /loader-utils/3.3.1:
resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==}
engines: {node: '>= 12.13.0'}
+ dev: true
- local-pkg@0.5.1:
+ /local-pkg/0.5.1:
resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
engines: {node: '>=14'}
+ dependencies:
+ mlly: 1.7.4
+ pkg-types: 1.3.1
- local-pkg@1.0.0:
- resolution: {integrity: sha512-bbgPw/wmroJsil/GgL4qjDzs5YLTBMQ99weRsok1XCDccQeehbHA/I1oRvk2NPtr7KGZgT/Y5tPRnAtMqeG2Kg==}
+ /local-pkg/1.1.1:
+ resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==}
engines: {node: '>=14'}
+ dependencies:
+ mlly: 1.7.4
+ pkg-types: 2.1.0
+ quansync: 0.2.8
- locate-character@3.0.0:
+ /locate-character/3.0.0:
resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
- locate-path@5.0.0:
+ /locate-path/5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
+ dependencies:
+ p-locate: 4.1.0
+ dev: true
- locate-path@6.0.0:
+ /locate-path/6.0.0:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
+ dependencies:
+ p-locate: 5.0.0
+ dev: true
- locate-path@7.2.0:
+ /locate-path/7.2.0:
resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ p-locate: 6.0.0
+ dev: true
- lodash.debounce@4.0.8:
+ /lodash.debounce/4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
+ dev: true
- lodash.defaults@4.2.0:
+ /lodash.defaults/4.2.0:
resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
- lodash.isarguments@3.1.0:
+ /lodash.isarguments/3.1.0:
resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
- lodash.memoize@4.1.2:
+ /lodash.memoize/4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
- lodash.merge@4.6.2:
+ /lodash.merge/4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+ dev: true
- lodash.sortby@4.7.0:
+ /lodash.sortby/4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
+ dev: true
- lodash.startcase@4.4.0:
+ /lodash.startcase/4.4.0:
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
+ dev: true
- lodash.uniq@4.5.0:
+ /lodash.uniq/4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- lodash@4.17.21:
+ /lodash/4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- log-symbols@4.1.0:
+ /log-symbols/4.1.0:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
+ dependencies:
+ chalk: 4.1.2
+ is-unicode-supported: 0.1.0
+ dev: true
- log-update@6.1.0:
+ /log-update/6.1.0:
resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
engines: {node: '>=18'}
+ dependencies:
+ ansi-escapes: 7.0.0
+ cli-cursor: 5.0.0
+ slice-ansi: 7.1.0
+ strip-ansi: 7.1.0
+ wrap-ansi: 9.0.0
+ dev: true
- log4js@6.9.1:
+ /log4js/6.9.1:
resolution: {integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==}
engines: {node: '>=8.0'}
+ dependencies:
+ date-format: 4.0.14
+ debug: 4.4.0
+ flatted: 3.3.3
+ rfdc: 1.4.1
+ streamroller: 3.1.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- loose-envify@1.4.0:
+ /loose-envify/1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
+ dependencies:
+ js-tokens: 4.0.0
+ dev: true
- loupe@2.3.7:
+ /loupe/2.3.7:
resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+ dependencies:
+ get-func-name: 2.0.2
+ dev: true
- lru-cache@10.4.3:
+ /lru-cache/10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@4.1.5:
+ /lru-cache/4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
+ dependencies:
+ pseudomap: 1.0.2
+ yallist: 2.1.2
+ dev: true
- lru-cache@5.1.1:
+ /lru-cache/5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+ dependencies:
+ yallist: 3.1.1
- lru-cache@6.0.0:
+ /lru-cache/6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
+ dependencies:
+ yallist: 4.0.0
+ dev: true
- lru-cache@7.18.3:
+ /lru-cache/7.18.3:
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
engines: {node: '>=12'}
+ dev: true
- magic-string-ast@0.7.0:
- resolution: {integrity: sha512-686fgAHaJY7wLTFEq7nnKqeQrhqmXB19d1HnqT35Ci7BN6hbAYLZUezTQ062uUHM7ggZEQlqJ94Ftls+KDXU8Q==}
+ /magic-string-ast/0.7.1:
+ resolution: {integrity: sha512-ub9iytsEbT7Yw/Pd29mSo/cNQpaEu67zR1VVcXDiYjSFwzeBxNdTd0FMnSslLQXiRj8uGPzwsaoefrMD5XAmdw==}
engines: {node: '>=16.14.0'}
+ dependencies:
+ magic-string: 0.30.17
- magic-string@0.30.17:
+ /magic-string/0.30.17:
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
- magicast@0.3.5:
+ /magicast/0.3.5:
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
+ dependencies:
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
+ source-map-js: 1.2.1
- make-dir@2.1.0:
+ /make-dir/2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
+ requiresBuild: true
+ dependencies:
+ pify: 4.0.1
+ semver: 5.7.2
+ optional: true
- make-dir@4.0.0:
+ /make-dir/4.0.0:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
+ dependencies:
+ semver: 7.7.1
+ dev: true
- make-error@1.3.6:
+ /make-error/1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
+ dev: true
- make-fetch-happen@14.0.3:
+ /make-fetch-happen/14.0.3:
resolution: {integrity: sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ '@npmcli/agent': 3.0.0
+ cacache: 19.0.1
+ http-cache-semantics: 4.1.1
+ minipass: 7.1.2
+ minipass-fetch: 4.0.1
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ negotiator: 1.0.0
+ proc-log: 5.0.0
+ promise-retry: 2.0.1
+ ssri: 12.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- mark.js@8.11.1:
+ /mark.js/8.11.1:
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
+ dev: true
- marked-terminal@7.3.0:
+ /marked-terminal/7.3.0_marked@9.1.6:
resolution: {integrity: sha512-t4rBvPsHc57uE/2nJOLmMbZCQ4tgAccAED3ngXQqW6g+TxA488JzJ+FK3lQkzBQOI1mRV/r/Kq+1ZlJ4D0owQw==}
engines: {node: '>=16.0.0'}
peerDependencies:
marked: '>=1 <16'
+ dependencies:
+ ansi-escapes: 7.0.0
+ ansi-regex: 6.1.0
+ chalk: 5.4.1
+ cli-highlight: 2.1.11
+ cli-table3: 0.6.5
+ marked: 9.1.6
+ node-emoji: 2.2.0
+ supports-hyperlinks: 3.2.0
+ dev: true
- marked@9.1.6:
+ /marked/9.1.6:
resolution: {integrity: sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==}
engines: {node: '>= 16'}
hasBin: true
+ dev: true
- math-intrinsics@1.1.0:
+ /math-intrinsics/1.1.0:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
engines: {node: '>= 0.4'}
- mdast-util-to-hast@13.2.0:
+ /mdast-util-to-hast/13.2.0:
resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ '@ungap/structured-clone': 1.3.0
+ devlop: 1.1.0
+ micromark-util-sanitize-uri: 2.0.1
+ trim-lines: 3.0.1
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+ dev: true
- mdn-data@2.0.28:
+ /mdn-data/2.0.28:
resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
- mdn-data@2.0.30:
+ /mdn-data/2.0.30:
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
- media-typer@0.3.0:
+ /media-typer/0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
+ dev: true
- memfs@4.17.0:
+ /memfs/4.17.0:
resolution: {integrity: sha512-4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg==}
engines: {node: '>= 4.0.0'}
+ dependencies:
+ '@jsonjoy.com/json-pack': 1.1.1_tslib@2.8.1
+ '@jsonjoy.com/util': 1.5.0_tslib@2.8.1
+ tree-dump: 1.0.2_tslib@2.8.1
+ tslib: 2.8.1
+ dev: true
- memorystream@0.3.1:
+ /memorystream/0.3.1:
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
engines: {node: '>= 0.10.0'}
+ dev: true
- merge-descriptors@1.0.3:
+ /merge-descriptors/1.0.3:
resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
+ dev: true
- merge-stream@2.0.0:
+ /merge-stream/2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- merge2@1.4.1:
+ /merge2/1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- methods@1.1.2:
+ /methods/1.1.2:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
+ dev: true
- micromark-util-character@2.1.1:
+ /micromark-util-character/2.1.1:
resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
+ dependencies:
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+ dev: true
- micromark-util-encode@2.0.1:
+ /micromark-util-encode/2.0.1:
resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
+ dev: true
- micromark-util-sanitize-uri@2.0.1:
+ /micromark-util-sanitize-uri/2.0.1:
resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
+ dependencies:
+ micromark-util-character: 2.1.1
+ micromark-util-encode: 2.0.1
+ micromark-util-symbol: 2.0.1
+ dev: true
- micromark-util-symbol@2.0.1:
+ /micromark-util-symbol/2.0.1:
resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
+ dev: true
- micromark-util-types@2.0.1:
- resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==}
+ /micromark-util-types/2.0.2:
+ resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==}
+ dev: true
- micromatch@4.0.8:
+ /micromatch/4.0.8:
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
+ dependencies:
+ braces: 3.0.3
+ picomatch: 2.3.1
- mime-db@1.52.0:
+ /mime-db/1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
- mime-db@1.53.0:
+ /mime-db/1.53.0:
resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
engines: {node: '>= 0.6'}
+ dev: true
- mime-types@2.1.35:
+ /mime-types/2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
+ dependencies:
+ mime-db: 1.52.0
- mime@1.6.0:
+ /mime/1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
- mime@2.6.0:
+ /mime/2.6.0:
resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
engines: {node: '>=4.0.0'}
hasBin: true
+ dev: true
- mime@3.0.0:
+ /mime/3.0.0:
resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
engines: {node: '>=10.0.0'}
hasBin: true
- mime@4.0.6:
+ /mime/4.0.6:
resolution: {integrity: sha512-4rGt7rvQHBbaSOF9POGkk1ocRP16Md1x36Xma8sz8h8/vfCUI2OtEIeCqe4Ofes853x4xDoPiFLIT47J5fI/7A==}
engines: {node: '>=16'}
hasBin: true
- mimic-fn@2.1.0:
+ /mimic-fn/2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
+ dev: true
- mimic-fn@4.0.0:
+ /mimic-fn/4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
- mimic-function@5.0.1:
+ /mimic-function/5.0.1:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
+ dev: true
- mini-css-extract-plugin@2.9.2:
+ /mini-css-extract-plugin/2.9.2_webpack@5.98.0:
resolution: {integrity: sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
+ dependencies:
+ schema-utils: 4.3.0
+ tapable: 2.2.1
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
- minimalistic-assert@1.0.1:
+ /minimalistic-assert/1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
+ dev: true
- minimatch@3.1.2:
+ /minimatch/3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ dependencies:
+ brace-expansion: 1.1.11
- minimatch@5.1.6:
+ /minimatch/5.1.6:
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
engines: {node: '>=10'}
+ dependencies:
+ brace-expansion: 2.0.1
- minimatch@9.0.1:
+ /minimatch/9.0.1:
resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
engines: {node: '>=16 || 14 >=14.17'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: true
- minimatch@9.0.5:
+ /minimatch/9.0.5:
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
+ dependencies:
+ brace-expansion: 2.0.1
- minimist@1.2.8:
+ /minimist/1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass-collect@2.0.1:
+ /minipass-collect/2.0.1:
resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
engines: {node: '>=16 || 14 >=14.17'}
+ dependencies:
+ minipass: 7.1.2
+ dev: true
- minipass-fetch@4.0.1:
+ /minipass-fetch/4.0.1:
resolution: {integrity: sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ minipass: 7.1.2
+ minipass-sized: 1.0.3
+ minizlib: 3.0.1
+ optionalDependencies:
+ encoding: 0.1.13
+ dev: true
- minipass-flush@1.0.5:
+ /minipass-flush/1.0.5:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: true
- minipass-pipeline@1.2.4:
+ /minipass-pipeline/1.2.4:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
engines: {node: '>=8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: true
- minipass-sized@1.0.3:
+ /minipass-sized/1.0.3:
resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
engines: {node: '>=8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: true
- minipass@3.3.6:
+ /minipass/3.3.6:
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
+ dependencies:
+ yallist: 4.0.0
- minipass@5.0.0:
+ /minipass/5.0.0:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- minipass@7.1.2:
+ /minipass/7.1.2:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
- minisearch@6.3.0:
+ /minisearch/6.3.0:
resolution: {integrity: sha512-ihFnidEeU8iXzcVHy74dhkxh/dn8Dc08ERl0xwoMMGqp4+LvRSCgicb+zGqWthVokQKvCSxITlh3P08OzdTYCQ==}
+ dev: true
- minizlib@2.1.2:
+ /minizlib/2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ yallist: 4.0.0
- minizlib@3.0.1:
+ /minizlib/3.0.1:
resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==}
engines: {node: '>= 18'}
+ dependencies:
+ minipass: 7.1.2
+ rimraf: 5.0.10
- mitt@3.0.1:
+ /mitt/3.0.1:
resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
- mkdirp@0.5.6:
+ /mkdirp/0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
+ dependencies:
+ minimist: 1.2.8
+ dev: true
- mkdirp@1.0.4:
+ /mkdirp/1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
- mkdirp@3.0.1:
+ /mkdirp/3.0.1:
resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
engines: {node: '>=10'}
hasBin: true
- mlly@1.7.4:
+ /mlly/1.7.4:
resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
+ dependencies:
+ acorn: 8.14.1
+ pathe: 2.0.3
+ pkg-types: 1.3.1
+ ufo: 1.5.4
- mri@1.2.0:
+ /mri/1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
+ dev: true
- mrmime@2.0.0:
- resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
- engines: {node: '>=10'}
-
- mrmime@2.0.1:
+ /mrmime/2.0.1:
resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
engines: {node: '>=10'}
- ms@2.0.0:
+ /ms/2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- ms@2.1.2:
+ /ms/2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
+ dev: true
- ms@2.1.3:
+ /ms/2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- msgpackr-extract@3.0.3:
+ /msgpackr-extract/3.0.3:
resolution: {integrity: sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==}
hasBin: true
+ requiresBuild: true
+ dependencies:
+ node-gyp-build-optional-packages: 5.2.2
+ optionalDependencies:
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.3
+ dev: true
+ optional: true
- msgpackr@1.11.2:
+ /msgpackr/1.11.2:
resolution: {integrity: sha512-F9UngXRlPyWCDEASDpTf6c9uNhGPTqnTeLVt7bN+bU1eajoR/8V9ys2BRaV5C/e5ihE6sJ9uPIKaYt6bFuO32g==}
+ optionalDependencies:
+ msgpackr-extract: 3.0.3
+ dev: true
+ optional: true
- muggle-string@0.4.1:
+ /muggle-string/0.4.1:
resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
+ dev: true
- multicast-dns@7.2.5:
+ /multicast-dns/7.2.5:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
+ dependencies:
+ dns-packet: 5.6.1
+ thunky: 1.1.0
+ dev: true
- mute-stream@1.0.0:
+ /mute-stream/1.0.0:
resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ dev: true
- mute-stream@2.0.0:
+ /mute-stream/2.0.0:
resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dev: true
- mz@2.7.0:
+ /mz/2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
+ dependencies:
+ any-promise: 1.3.0
+ object-assign: 4.1.1
+ thenify-all: 1.6.0
+ dev: true
- nanoid@3.3.8:
- resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
+ /nanoid/3.3.9:
+ resolution: {integrity: sha512-SppoicMGpZvbF1l3z4x7No3OlIjP7QJvC9XR7AhZr1kL133KHnKPztkKDc+Ir4aJ/1VhTySrtKhrsycmrMQfvg==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@5.0.9:
- resolution: {integrity: sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q==}
- engines: {node: ^18 || >=20}
- hasBin: true
-
- nanoid@5.1.2:
- resolution: {integrity: sha512-b+CiXQCNMUGe0Ri64S9SXFcP9hogjAJ2Rd6GdVxhPLRm7mhGaM7VgOvCAJ1ZshfHbqVDI3uqTI5C8/GaKuLI7g==}
+ /nanoid/5.1.3:
+ resolution: {integrity: sha512-zAbEOEr7u2CbxwoMRlz/pNSpRP0FdAU4pRaYunCdEezWohXFs+a0Xw7RfkKaezMsmSM1vttcLthJtwRnVtOfHQ==}
engines: {node: ^18 || >=20}
hasBin: true
- nanotar@0.1.1:
+ /nanotar/0.1.1:
resolution: {integrity: sha512-AiJsGsSF3O0havL1BydvI4+wR76sKT+okKRwWIaK96cZUnXqH0uNBOsHlbwZq3+m2BR1VKqHDVudl3gO4mYjpQ==}
- natural-compare-lite@1.4.0:
+ /nanotar/0.2.0:
+ resolution: {integrity: sha512-9ca1h0Xjvo9bEkE4UOxgAzLV0jHKe6LMaxo37ND2DAhhAtd0j8pR1Wxz+/goMrZO8AEZTWCmyaOsFI/W5AdpCQ==}
+ dev: false
+
+ /natural-compare-lite/1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
+ dev: true
- natural-compare@1.4.0:
+ /natural-compare/1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ dev: true
- needle@3.3.1:
+ /needle/3.3.1:
resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
engines: {node: '>= 4.4.x'}
hasBin: true
+ requiresBuild: true
+ dependencies:
+ iconv-lite: 0.6.3
+ sax: 1.4.1
+ optional: true
- negotiator@0.6.3:
+ /negotiator/0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
+ dev: true
- negotiator@0.6.4:
+ /negotiator/0.6.4:
resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
engines: {node: '>= 0.6'}
+ dev: true
- negotiator@1.0.0:
+ /negotiator/1.0.0:
resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
engines: {node: '>= 0.6'}
+ dev: true
- neo-async@2.6.2:
+ /neo-async/2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- netmask@2.0.2:
+ /netmask/2.0.2:
resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
engines: {node: '>= 0.4.0'}
+ dev: true
- next@15.1.6:
+ /next/15.1.6_upmzqgzhjrquwzo2dphtigtdgi:
resolution: {integrity: sha512-Hch4wzbaX0vKQtalpXvUiw5sYivBy4cm5rzUKrBnUB/y436LGrvOUqYvlSeNVCWFO/770gDlltR9gqZH62ct4Q==}
engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
hasBin: true
@@ -8240,9 +15992,33 @@ packages:
optional: true
sass:
optional: true
+ dependencies:
+ '@next/env': 15.1.6
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.15
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001702
+ postcss: 8.4.31
+ react: 19.0.0
+ react-dom: 19.0.0_react@19.0.0
+ styled-jsx: 5.1.6_react@19.0.0
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.1.6
+ '@next/swc-darwin-x64': 15.1.6
+ '@next/swc-linux-arm64-gnu': 15.1.6
+ '@next/swc-linux-arm64-musl': 15.1.6
+ '@next/swc-linux-x64-gnu': 15.1.6
+ '@next/swc-linux-x64-musl': 15.1.6
+ '@next/swc-win32-arm64-msvc': 15.1.6
+ '@next/swc-win32-x64-msvc': 15.1.6
+ sharp: 0.33.5
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+ dev: false
- nitropack@2.10.4:
- resolution: {integrity: sha512-sJiG/MIQlZCVSw2cQrFG1H6mLeSqHlYfFerRjLKz69vUfdu0EL2l0WdOxlQbzJr3mMv/l4cOlCCLzVRzjzzF/g==}
+ /nitropack/2.11.6:
+ resolution: {integrity: sha512-iaLzOKYxsNL8G6h9cMFTC/hAN4RfhZsrFzFFzemr6Vfn57MooYEz6KLeUoRyTposlAeEWTVejz8naYOORIrnDg==}
engines: {node: ^16.11.0 || >=17.0.0}
hasBin: true
peerDependencies:
@@ -8250,133 +16026,443 @@ packages:
peerDependenciesMeta:
xml2js:
optional: true
+ dependencies:
+ '@cloudflare/kv-asset-handler': 0.3.4
+ '@netlify/functions': 3.0.0
+ '@rollup/plugin-alias': 5.1.1_rollup@4.35.0
+ '@rollup/plugin-commonjs': 28.0.3_rollup@4.35.0
+ '@rollup/plugin-inject': 5.0.5_rollup@4.35.0
+ '@rollup/plugin-json': 6.1.0_rollup@4.35.0
+ '@rollup/plugin-node-resolve': 16.0.0_rollup@4.35.0
+ '@rollup/plugin-replace': 6.0.2_rollup@4.35.0
+ '@rollup/plugin-terser': 0.4.4_rollup@4.35.0
+ '@types/http-proxy': 1.17.16
+ '@vercel/nft': 0.29.2_rollup@4.35.0
+ archiver: 7.0.1
+ c12: 3.0.2_magicast@0.3.5
+ chokidar: 4.0.3
+ citty: 0.1.6
+ compatx: 0.1.8
+ confbox: 0.2.1
+ consola: 3.4.0
+ cookie-es: 2.0.0
+ croner: 9.0.0
+ crossws: 0.3.4
+ db0: 0.3.1
+ defu: 6.1.4
+ destr: 2.0.3
+ dot-prop: 9.0.0
+ esbuild: 0.25.0
+ escape-string-regexp: 5.0.0
+ etag: 1.8.1
+ exsolve: 1.0.4
+ fs-extra: 11.3.0
+ globby: 14.1.0
+ gzip-size: 7.0.0
+ h3: 1.15.1
+ hookable: 5.5.3
+ httpxy: 0.1.7
+ ioredis: 5.6.0
+ jiti: 2.4.2
+ klona: 2.0.6
+ knitwork: 1.2.0
+ listhen: 1.9.0
+ magic-string: 0.30.17
+ magicast: 0.3.5
+ mime: 4.0.6
+ mlly: 1.7.4
+ node-fetch-native: 1.6.6
+ node-mock-http: 1.0.0
+ ofetch: 1.4.1
+ ohash: 2.0.11
+ openapi-typescript: 7.6.1
+ pathe: 2.0.3
+ perfect-debounce: 1.0.0
+ pkg-types: 2.1.0
+ pretty-bytes: 6.1.1
+ radix3: 1.1.2
+ rollup: 4.35.0
+ rollup-plugin-visualizer: 5.14.0_rollup@4.35.0
+ scule: 1.3.0
+ semver: 7.7.1
+ serve-placeholder: 2.0.2
+ serve-static: 1.16.2
+ source-map: 0.7.4
+ std-env: 3.8.1
+ ufo: 1.5.4
+ ultrahtml: 1.5.3
+ uncrypto: 0.1.3
+ unctx: 2.4.1
+ unenv: 2.0.0-rc.14
+ unimport: 4.1.2
+ unplugin-utils: 0.2.4
+ unstorage: 1.15.0_db0@0.3.1+ioredis@5.6.0
+ untyped: 2.0.0
+ unwasm: 0.3.9
+ youch: 4.1.0-beta.6
+ youch-core: 0.3.2
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@electric-sql/pglite'
+ - '@libsql/client'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - better-sqlite3
+ - drizzle-orm
+ - encoding
+ - idb-keyval
+ - mysql2
+ - rolldown
+ - sqlite3
+ - supports-color
+ - typescript
+ - uploadthing
+
+ /nitropack/2.11.6_typescript@5.5.3:
+ resolution: {integrity: sha512-iaLzOKYxsNL8G6h9cMFTC/hAN4RfhZsrFzFFzemr6Vfn57MooYEz6KLeUoRyTposlAeEWTVejz8naYOORIrnDg==}
+ engines: {node: ^16.11.0 || >=17.0.0}
+ hasBin: true
+ peerDependencies:
+ xml2js: ^0.6.2
+ peerDependenciesMeta:
+ xml2js:
+ optional: true
+ dependencies:
+ '@cloudflare/kv-asset-handler': 0.3.4
+ '@netlify/functions': 3.0.0
+ '@rollup/plugin-alias': 5.1.1_rollup@4.35.0
+ '@rollup/plugin-commonjs': 28.0.3_rollup@4.35.0
+ '@rollup/plugin-inject': 5.0.5_rollup@4.35.0
+ '@rollup/plugin-json': 6.1.0_rollup@4.35.0
+ '@rollup/plugin-node-resolve': 16.0.0_rollup@4.35.0
+ '@rollup/plugin-replace': 6.0.2_rollup@4.35.0
+ '@rollup/plugin-terser': 0.4.4_rollup@4.35.0
+ '@types/http-proxy': 1.17.16
+ '@vercel/nft': 0.29.2_rollup@4.35.0
+ archiver: 7.0.1
+ c12: 3.0.2_magicast@0.3.5
+ chokidar: 4.0.3
+ citty: 0.1.6
+ compatx: 0.1.8
+ confbox: 0.2.1
+ consola: 3.4.0
+ cookie-es: 2.0.0
+ croner: 9.0.0
+ crossws: 0.3.4
+ db0: 0.3.1
+ defu: 6.1.4
+ destr: 2.0.3
+ dot-prop: 9.0.0
+ esbuild: 0.25.0
+ escape-string-regexp: 5.0.0
+ etag: 1.8.1
+ exsolve: 1.0.4
+ fs-extra: 11.3.0
+ globby: 14.1.0
+ gzip-size: 7.0.0
+ h3: 1.15.1
+ hookable: 5.5.3
+ httpxy: 0.1.7
+ ioredis: 5.6.0
+ jiti: 2.4.2
+ klona: 2.0.6
+ knitwork: 1.2.0
+ listhen: 1.9.0
+ magic-string: 0.30.17
+ magicast: 0.3.5
+ mime: 4.0.6
+ mlly: 1.7.4
+ node-fetch-native: 1.6.6
+ node-mock-http: 1.0.0
+ ofetch: 1.4.1
+ ohash: 2.0.11
+ openapi-typescript: 7.6.1_typescript@5.5.3
+ pathe: 2.0.3
+ perfect-debounce: 1.0.0
+ pkg-types: 2.1.0
+ pretty-bytes: 6.1.1
+ radix3: 1.1.2
+ rollup: 4.35.0
+ rollup-plugin-visualizer: 5.14.0_rollup@4.35.0
+ scule: 1.3.0
+ semver: 7.7.1
+ serve-placeholder: 2.0.2
+ serve-static: 1.16.2
+ source-map: 0.7.4
+ std-env: 3.8.1
+ ufo: 1.5.4
+ ultrahtml: 1.5.3
+ uncrypto: 0.1.3
+ unctx: 2.4.1
+ unenv: 2.0.0-rc.14
+ unimport: 4.1.2
+ unplugin-utils: 0.2.4
+ unstorage: 1.15.0_db0@0.3.1+ioredis@5.6.0
+ untyped: 2.0.0
+ unwasm: 0.3.9
+ youch: 4.1.0-beta.6
+ youch-core: 0.3.2
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@electric-sql/pglite'
+ - '@libsql/client'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - better-sqlite3
+ - drizzle-orm
+ - encoding
+ - idb-keyval
+ - mysql2
+ - rolldown
+ - sqlite3
+ - supports-color
+ - typescript
+ - uploadthing
+ dev: true
+
+ /node-addon-api/6.1.0:
+ resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
+ dev: true
+ optional: true
+
+ /node-addon-api/7.1.1:
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
+
+ /node-domexception/1.0.0:
+ resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
+ engines: {node: '>=10.5.0'}
+ dev: true
+
+ /node-emoji/2.2.0:
+ resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@sindresorhus/is': 4.6.0
+ char-regex: 1.0.2
+ emojilib: 2.4.0
+ skin-tone: 2.0.0
+ dev: true
+
+ /node-fetch-native/1.6.6:
+ resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==}
+
+ /node-fetch/2.7.0:
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+ dependencies:
+ whatwg-url: 5.0.0
+
+ /node-fetch/3.3.2:
+ resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ data-uri-to-buffer: 4.0.1
+ fetch-blob: 3.2.0
+ formdata-polyfill: 4.0.10
+ dev: true
+
+ /node-forge/1.3.1:
+ resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
+ engines: {node: '>= 6.13.0'}
+
+ /node-gyp-build-optional-packages/5.2.2:
+ resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==}
+ hasBin: true
+ dependencies:
+ detect-libc: 2.0.3
+ dev: true
+ optional: true
- node-addon-api@6.1.0:
- resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
-
- node-addon-api@7.1.1:
- resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
-
- node-domexception@1.0.0:
- resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
- engines: {node: '>=10.5.0'}
-
- node-emoji@2.2.0:
- resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==}
- engines: {node: '>=18'}
-
- node-fetch-native@1.6.6:
- resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==}
-
- node-fetch@2.7.0:
- resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
-
- node-fetch@3.3.2:
- resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- node-forge@1.3.1:
- resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
- engines: {node: '>= 6.13.0'}
-
- node-gyp-build-optional-packages@5.2.2:
- resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==}
- hasBin: true
-
- node-gyp-build@4.8.4:
+ /node-gyp-build/4.8.4:
resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
hasBin: true
- node-gyp@11.1.0:
+ /node-gyp/11.1.0:
resolution: {integrity: sha512-/+7TuHKnBpnMvUQnsYEb0JOozDZqarQbfNuSGLXIjhStMT0fbw7IdSqWgopOP5xhRZE+lsbIvAHcekddruPZgQ==}
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
+ dependencies:
+ env-paths: 2.2.1
+ exponential-backoff: 3.1.2
+ glob: 10.4.5
+ graceful-fs: 4.2.11
+ make-fetch-happen: 14.0.3
+ nopt: 8.1.0
+ proc-log: 5.0.0
+ semver: 7.7.1
+ tar: 7.4.3
+ which: 5.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- node-releases@2.0.19:
+ /node-mock-http/1.0.0:
+ resolution: {integrity: sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==}
+
+ /node-releases/2.0.19:
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
- nopt@7.2.1:
+ /nopt/7.2.1:
resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
+ dependencies:
+ abbrev: 2.0.0
+ dev: true
- nopt@8.1.0:
+ /nopt/8.1.0:
resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==}
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
+ dependencies:
+ abbrev: 3.0.0
- normalize-path@3.0.0:
+ /normalize-path/3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- normalize-range@0.1.2:
+ /normalize-range/0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- npm-bundled@4.0.0:
+ /npm-bundled/4.0.0:
resolution: {integrity: sha512-IxaQZDMsqfQ2Lz37VvyyEtKLe8FsRZuysmedy/N06TU1RyVppYKXrO4xIhR0F+7ubIBox6Q7nir6fQI3ej39iA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ npm-normalize-package-bin: 4.0.0
+ dev: true
- npm-install-checks@7.1.1:
+ /npm-install-checks/7.1.1:
resolution: {integrity: sha512-u6DCwbow5ynAX5BdiHQ9qvexme4U3qHW3MWe5NqH+NeBm0LbiH6zvGjNNew1fY+AZZUtVHbOPF3j7mJxbUzpXg==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ semver: 7.7.1
+ dev: true
- npm-normalize-package-bin@3.0.1:
+ /npm-normalize-package-bin/3.0.1:
resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ dev: true
- npm-normalize-package-bin@4.0.0:
+ /npm-normalize-package-bin/4.0.0:
resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dev: true
- npm-package-arg@12.0.2:
+ /npm-package-arg/12.0.2:
resolution: {integrity: sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ hosted-git-info: 8.0.2
+ proc-log: 5.0.0
+ semver: 7.7.1
+ validate-npm-package-name: 6.0.0
+ dev: true
- npm-packlist@9.0.0:
+ /npm-packlist/9.0.0:
resolution: {integrity: sha512-8qSayfmHJQTx3nJWYbbUmflpyarbLMBc6LCAjYsiGtXxDB68HaZpb8re6zeaLGxZzDuMdhsg70jryJe+RrItVQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ ignore-walk: 7.0.0
+ dev: true
- npm-pick-manifest@10.0.0:
+ /npm-pick-manifest/10.0.0:
resolution: {integrity: sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ npm-install-checks: 7.1.1
+ npm-normalize-package-bin: 4.0.0
+ npm-package-arg: 12.0.2
+ semver: 7.7.1
+ dev: true
- npm-registry-fetch@18.0.2:
+ /npm-registry-fetch/18.0.2:
resolution: {integrity: sha512-LeVMZBBVy+oQb5R6FDV9OlJCcWDU+al10oKpe+nsvcHnG24Z3uM3SvJYKfGJlfGjVU8v9liejCrUR/M5HO5NEQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ '@npmcli/redact': 3.1.1
+ jsonparse: 1.3.1
+ make-fetch-happen: 14.0.3
+ minipass: 7.1.2
+ minipass-fetch: 4.0.1
+ minizlib: 3.0.1
+ npm-package-arg: 12.0.2
+ proc-log: 5.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- npm-run-all2@6.2.0:
+ /npm-run-all2/6.2.0:
resolution: {integrity: sha512-wA7yVIkthe6qJBfiJ2g6aweaaRlw72itsFGF6HuwCHKwtwAx/4BY1vVpk6bw6lS8RLMsexoasOkd0aYOmsFG7Q==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>= 8'}
hasBin: true
+ dependencies:
+ ansi-styles: 6.2.1
+ cross-spawn: 7.0.6
+ memorystream: 0.3.1
+ minimatch: 9.0.5
+ pidtree: 0.6.0
+ read-package-json-fast: 3.0.2
+ shell-quote: 1.8.2
+ dev: true
- npm-run-path@4.0.1:
+ /npm-run-path/4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
+ dependencies:
+ path-key: 3.1.1
- npm-run-path@5.3.0:
+ /npm-run-path/5.3.0:
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ path-key: 4.0.0
- npm-run-path@6.0.0:
+ /npm-run-path/6.0.0:
resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
engines: {node: '>=18'}
+ dependencies:
+ path-key: 4.0.0
+ unicorn-magic: 0.3.0
- nth-check@2.1.1:
+ /nth-check/2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+ dependencies:
+ boolbase: 1.0.0
- nuxi@3.21.1:
- resolution: {integrity: sha512-72OhQHeQg15SKZaoDjBTdrki4zqjShgVo69Dou7jm/euXchoss+VOU4/s73lvAXiVN2g84ogGdNSe0112N7ldA==}
+ /nuxi/3.22.5:
+ resolution: {integrity: sha512-fYEA7FDWQAVxGclBA/HHD+I4OurKuGBgxr/IGI6a78vjIg91AIhOPAzVcEkMtCSb0RWOnju3U1XO4ENnHMCq5Q==}
engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
- nuxt@3.14.1592:
+ /nuxt/3.14.1592_hfjqjp6w3rvckby5qzzmeb3n4u:
resolution: {integrity: sha512-roWAQH4Mb6WY72cNos+YVw0DgTCNAhNygiAMCedM7hbX6ESTR2n3VH7tU0yIWDPe/hfFdii4M4wWTTNHOtS44g==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
@@ -8388,12103 +16474,21 @@ packages:
optional: true
'@types/node':
optional: true
-
- nwsapi@2.2.16:
- resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==}
-
- nypm@0.3.12:
- resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==}
- engines: {node: ^14.16.0 || >=16.10.0}
- hasBin: true
-
- nypm@0.4.1:
- resolution: {integrity: sha512-1b9mihliBh8UCcKtcGRu//G50iHpjxIQVUqkdhPT/SDVE7KdJKoHXLS0heuYTQCx95dFqiyUbXZB9r8ikn+93g==}
- engines: {node: ^14.16.0 || >=16.10.0}
- hasBin: true
-
- nypm@0.5.2:
- resolution: {integrity: sha512-AHzvnyUJYSrrphPhRWWZNcoZfArGNp3Vrc4pm/ZurO74tYNTgAPrEyBQEKy+qioqmWlPXwvMZCG2wOaHlPG0Pw==}
- engines: {node: ^14.16.0 || >=16.10.0}
- hasBin: true
-
- object-assign@4.1.1:
- resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
- engines: {node: '>=0.10.0'}
-
- object-hash@3.0.0:
- resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
- engines: {node: '>= 6'}
-
- object-inspect@1.13.3:
- resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
- engines: {node: '>= 0.4'}
-
- object-keys@1.1.1:
- resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
- engines: {node: '>= 0.4'}
-
- object.assign@4.1.7:
- resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
- engines: {node: '>= 0.4'}
-
- object.entries@1.1.8:
- resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
- engines: {node: '>= 0.4'}
-
- object.fromentries@2.0.8:
- resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
- engines: {node: '>= 0.4'}
-
- object.groupby@1.0.3:
- resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
- engines: {node: '>= 0.4'}
-
- object.values@1.2.1:
- resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
- engines: {node: '>= 0.4'}
-
- obuf@1.1.2:
- resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
-
- ofetch@1.4.1:
- resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==}
-
- ohash@1.1.4:
- resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==}
-
- on-exit-leak-free@2.1.2:
- resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
- engines: {node: '>=14.0.0'}
-
- on-finished@2.3.0:
- resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
- engines: {node: '>= 0.8'}
-
- on-finished@2.4.1:
- 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==}
-
- onetime@5.1.2:
- resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
- engines: {node: '>=6'}
-
- onetime@6.0.0:
- resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
- engines: {node: '>=12'}
-
- onetime@7.0.0:
- resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
- engines: {node: '>=18'}
-
- oniguruma-to-es@2.3.0:
- resolution: {integrity: sha512-bwALDxriqfKGfUufKGGepCzu9x7nJQuoRoAFp4AnwehhC2crqrDIAP/uN2qdlsAvSMpeRC3+Yzhqc7hLmle5+g==}
-
- open@10.1.0:
- resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
- engines: {node: '>=18'}
-
- open@8.4.2:
- resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
- engines: {node: '>=12'}
-
- openapi-typescript@7.6.0:
- resolution: {integrity: sha512-p/xxKcWFR7aZDOAdnqYBQ1NdNyWdine+gHKHKvjxGXmlq8JT1G9+SkY8I5csKaktLHMbDDH6ZDeWQpydwBHa+Q==}
- hasBin: true
- peerDependencies:
- typescript: ^5.x
-
- optionator@0.9.4:
- 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'}
-
- ordered-binary@1.5.3:
- resolution: {integrity: sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==}
-
- os-tmpdir@1.0.2:
- resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
- engines: {node: '>=0.10.0'}
-
- outdent@0.5.0:
- resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
-
- own-keys@1.0.1:
- resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
- engines: {node: '>= 0.4'}
-
- p-filter@2.1.0:
- resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
- engines: {node: '>=8'}
-
- p-limit@2.3.0:
- resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
- engines: {node: '>=6'}
-
- p-limit@3.1.0:
- resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
- engines: {node: '>=10'}
-
- p-limit@4.0.0:
- resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- p-limit@5.0.0:
- resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
- engines: {node: '>=18'}
-
- p-locate@4.1.0:
- resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
- engines: {node: '>=8'}
-
- p-locate@5.0.0:
- resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
- engines: {node: '>=10'}
-
- p-locate@6.0.0:
- resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- p-map@2.1.0:
- resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
- engines: {node: '>=6'}
-
- p-map@7.0.3:
- resolution: {integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==}
- engines: {node: '>=18'}
-
- p-retry@6.2.1:
- resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==}
- engines: {node: '>=16.17'}
-
- p-try@2.2.0:
- resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
- engines: {node: '>=6'}
-
- pac-proxy-agent@7.1.0:
- resolution: {integrity: sha512-Z5FnLVVZSnX7WjBg0mhDtydeRZ1xMcATZThjySQUHqr+0ksP8kqaw23fNKkaaN/Z8gwLUs/W7xdl0I75eP2Xyw==}
- engines: {node: '>= 14'}
-
- pac-resolver@7.0.1:
- resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
- engines: {node: '>= 14'}
-
- package-json-from-dist@1.0.1:
- resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
-
- package-manager-detector@0.2.8:
- resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==}
-
- packrup@0.1.2:
- resolution: {integrity: sha512-ZcKU7zrr5GlonoS9cxxrb5HVswGnyj6jQvwFBa6p5VFw7G71VAHcUKL5wyZSU/ECtPM/9gacWxy2KFQKt1gMNA==}
-
- pacote@20.0.0:
- resolution: {integrity: sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A==}
- engines: {node: ^18.17.0 || >=20.5.0}
- hasBin: true
-
- parent-module@1.0.1:
- resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
- engines: {node: '>=6'}
-
- parse-git-config@3.0.0:
- resolution: {integrity: sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==}
- engines: {node: '>=8'}
-
- parse-json@5.2.0:
- resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
- engines: {node: '>=8'}
-
- parse-json@8.1.0:
- resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==}
- engines: {node: '>=18'}
-
- parse-ms@4.0.0:
- resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
- engines: {node: '>=18'}
-
- parse-node-version@1.0.1:
- resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
- engines: {node: '>= 0.10'}
-
- parse-path@7.0.0:
- resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==}
-
- parse-url@9.2.0:
- resolution: {integrity: sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==}
- engines: {node: '>=14.13.0'}
-
- parse5-html-rewriting-stream@7.0.0:
- resolution: {integrity: sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==}
-
- parse5-htmlparser2-tree-adapter@6.0.1:
- resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
-
- parse5-sax-parser@7.0.0:
- resolution: {integrity: sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==}
-
- parse5@5.1.1:
- resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==}
-
- parse5@6.0.1:
- resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
-
- parse5@7.2.1:
- resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
-
- parseurl@1.3.3:
- resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
- engines: {node: '>= 0.8'}
-
- path-browserify@1.0.1:
- resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
-
- path-exists@4.0.0:
- resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
- engines: {node: '>=8'}
-
- path-exists@5.0.0:
- resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- path-is-absolute@1.0.1:
- resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
- engines: {node: '>=0.10.0'}
-
- path-key@3.1.1:
- resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
- engines: {node: '>=8'}
-
- path-key@4.0.0:
- resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
- engines: {node: '>=12'}
-
- path-parse@1.0.7:
- resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
-
- path-scurry@1.11.1:
- resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
- engines: {node: '>=16 || 14 >=14.18'}
-
- path-to-regexp@0.1.10:
- resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==}
-
- path-to-regexp@0.1.12:
- resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
-
- path-type@4.0.0:
- resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
- engines: {node: '>=8'}
-
- path-type@5.0.0:
- resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
- engines: {node: '>=12'}
-
- path-type@6.0.0:
- resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==}
- engines: {node: '>=18'}
-
- pathe@1.1.2:
- resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
-
- pathe@2.0.2:
- resolution: {integrity: sha512-15Ztpk+nov8DR524R4BF7uEuzESgzUEAV4Ah7CUMNGXdE5ELuvxElxGXndBl32vMSsWa1jpNf22Z+Er3sKwq+w==}
-
- pathval@1.1.1:
- resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
-
- pend@1.2.0:
- resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
-
- perfect-debounce@1.0.0:
- resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
-
- picocolors@1.1.1:
- resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
-
- picomatch@2.3.1:
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
- engines: {node: '>=8.6'}
-
- picomatch@4.0.2:
- resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
- engines: {node: '>=12'}
-
- pidtree@0.6.0:
- resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
- 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'}
-
- pinia@2.3.0:
- resolution: {integrity: sha512-ohZj3jla0LL0OH5PlLTDMzqKiVw2XARmC1XYLdLWIPBMdhDW/123ZWr4zVAhtJm+aoSkFa13pYXskAvAscIkhQ==}
- peerDependencies:
- typescript: '>=4.4.4'
- vue: ^2.7.0 || ^3.5.11
- peerDependenciesMeta:
- typescript:
- optional: true
-
- pino-abstract-transport@2.0.0:
- resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==}
-
- pino-std-serializers@7.0.0:
- resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==}
-
- pino@9.6.0:
- resolution: {integrity: sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==}
- hasBin: true
-
- pirates@4.0.6:
- resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
- engines: {node: '>= 6'}
-
- piscina@4.8.0:
- resolution: {integrity: sha512-EZJb+ZxDrQf3dihsUL7p42pjNyrNIFJCrRHPMgxu/svsj+P3xS3fuEWp7k2+rfsavfl1N0G29b1HGs7J0m8rZA==}
-
- pkg-dir@7.0.0:
- resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
- engines: {node: '>=14.16'}
-
- pkg-types@1.3.1:
- resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
-
- pluralize@8.0.0:
- resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
- engines: {node: '>=4'}
-
- possible-typed-array-names@1.0.0:
- resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
- engines: {node: '>= 0.4'}
-
- postcss-calc@10.1.0:
- resolution: {integrity: sha512-uQ/LDGsf3mgsSUEXmAt3VsCSHR3aKqtEIkmB+4PhzYwRYOW5MZs/GhCCFpsOtJJkP6EC6uGipbrnaTjqaJZcJw==}
- engines: {node: ^18.12 || ^20.9 || >=22.0}
- peerDependencies:
- postcss: ^8.4.38
-
- postcss-colormin@7.0.2:
- resolution: {integrity: sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-convert-values@7.0.4:
- resolution: {integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-discard-comments@7.0.3:
- resolution: {integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-discard-duplicates@7.0.1:
- resolution: {integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-discard-empty@7.0.0:
- resolution: {integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-discard-overridden@7.0.0:
- resolution: {integrity: sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-import@15.1.0:
- resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- postcss: ^8.0.0
-
- postcss-js@4.0.1:
- resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
- engines: {node: ^12 || ^14 || >= 16}
- peerDependencies:
- postcss: ^8.4.21
-
- postcss-load-config@3.1.4:
- resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
- engines: {node: '>= 10'}
- peerDependencies:
- postcss: '>=8.0.9'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- postcss:
- optional: true
- ts-node:
- optional: true
-
- postcss-load-config@4.0.2:
- resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
- engines: {node: '>= 14'}
- peerDependencies:
- postcss: '>=8.0.9'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- postcss:
- optional: true
- ts-node:
- optional: true
-
- postcss-load-config@6.0.1:
- resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
- engines: {node: '>= 18'}
- peerDependencies:
- jiti: '>=1.21.0'
- postcss: '>=8.0.9'
- tsx: ^4.8.1
- yaml: ^2.4.2
- peerDependenciesMeta:
- jiti:
- optional: true
- postcss:
- optional: true
- tsx:
- optional: true
- yaml:
- optional: true
-
- postcss-loader@8.1.1:
- resolution: {integrity: sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==}
- engines: {node: '>= 18.12.0'}
- peerDependencies:
- '@rspack/core': 0.x || 1.x
- postcss: ^7.0.0 || ^8.0.1
- webpack: ^5.0.0
- peerDependenciesMeta:
- '@rspack/core':
- optional: true
- webpack:
- optional: true
-
- postcss-media-query-parser@0.2.3:
- resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
-
- postcss-merge-longhand@7.0.4:
- resolution: {integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-merge-rules@7.0.4:
- resolution: {integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-minify-font-values@7.0.0:
- resolution: {integrity: sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-minify-gradients@7.0.0:
- resolution: {integrity: sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-minify-params@7.0.2:
- resolution: {integrity: sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-minify-selectors@7.0.4:
- resolution: {integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- 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.2.0:
- resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-modules-scope@3.2.1:
- resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==}
- 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-nested@6.2.0:
- resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.2.14
-
- postcss-normalize-charset@7.0.0:
- resolution: {integrity: sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-normalize-display-values@7.0.0:
- resolution: {integrity: sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-normalize-positions@7.0.0:
- resolution: {integrity: sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-normalize-repeat-style@7.0.0:
- resolution: {integrity: sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-normalize-string@7.0.0:
- resolution: {integrity: sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-normalize-timing-functions@7.0.0:
- resolution: {integrity: sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-normalize-unicode@7.0.2:
- resolution: {integrity: sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-normalize-url@7.0.0:
- resolution: {integrity: sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-normalize-whitespace@7.0.0:
- resolution: {integrity: sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-ordered-values@7.0.1:
- resolution: {integrity: sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-reduce-initial@7.0.2:
- resolution: {integrity: sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-reduce-transforms@7.0.0:
- resolution: {integrity: sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-safe-parser@6.0.0:
- resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.3.3
-
- postcss-scss@4.0.9:
- resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.4.29
-
- postcss-selector-parser@6.1.2:
- resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
- engines: {node: '>=4'}
-
- postcss-selector-parser@7.1.0:
- resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==}
- engines: {node: '>=4'}
-
- postcss-svgo@7.0.1:
- resolution: {integrity: sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==}
- engines: {node: ^18.12.0 || ^20.9.0 || >= 18}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-unique-selectors@7.0.3:
- resolution: {integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-value-parser@4.2.0:
- resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
-
- postcss@8.4.31:
- resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
- engines: {node: ^10 || ^12 || >=14}
-
- postcss@8.4.41:
- resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==}
- engines: {node: ^10 || ^12 || >=14}
-
- postcss@8.5.1:
- resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==}
- engines: {node: ^10 || ^12 || >=14}
-
- postcss@8.5.2:
- resolution: {integrity: sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==}
- engines: {node: ^10 || ^12 || >=14}
-
- postcss@8.5.3:
- resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
- engines: {node: ^10 || ^12 || >=14}
-
- preact@10.25.4:
- resolution: {integrity: sha512-jLdZDb+Q+odkHJ+MpW/9U5cODzqnB+fy2EiHSZES7ldV5LK7yjlVzTp7R8Xy6W6y75kfK8iWYtFVH7lvjwrCMA==}
-
- prelude-ls@1.2.1:
- resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
- engines: {node: '>= 0.8.0'}
-
- prettier-linter-helpers@1.0.0:
- resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
- engines: {node: '>=6.0.0'}
-
- prettier-plugin-svelte@3.1.2:
- resolution: {integrity: sha512-7xfMZtwgAWHMT0iZc8jN4o65zgbAQ3+O32V6W7pXrqNvKnHnkoyQCGCbKeUyXKZLbYE0YhFRnamfxfkEGxm8qA==}
- peerDependencies:
- prettier: ^3.0.0
- svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0
-
- prettier@2.8.8:
- resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
- engines: {node: '>=10.13.0'}
- hasBin: true
-
- prettier@3.4.2:
- resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
- engines: {node: '>=14'}
- hasBin: true
-
- pretty-bytes@6.1.1:
- resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==}
- engines: {node: ^14.13.1 || >=16.0.0}
-
- pretty-format@29.7.0:
- resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
- pretty-ms@9.2.0:
- resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
- engines: {node: '>=18'}
-
- proc-log@5.0.0:
- resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
- process-nextick-args@2.0.1:
- resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
-
- process-warning@4.0.1:
- resolution: {integrity: sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==}
-
- process@0.11.10:
- resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
- engines: {node: '>= 0.6.0'}
-
- progress@2.0.3:
- resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
- engines: {node: '>=0.4.0'}
-
- promise-retry@2.0.1:
- resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
- engines: {node: '>=10'}
-
- prompts@2.4.2:
- resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
- engines: {node: '>= 6'}
-
- prop-types@15.8.1:
- resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
-
- property-information@6.5.0:
- resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
-
- proto-list@1.2.4:
- resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
-
- protocols@2.0.1:
- resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==}
-
- proxy-addr@2.0.7:
- resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
- engines: {node: '>= 0.10'}
-
- proxy-agent@6.4.0:
- resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==}
- engines: {node: '>= 14'}
-
- proxy-from-env@1.1.0:
- resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
-
- prr@1.0.1:
- resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
-
- pseudomap@1.0.2:
- resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
-
- psl@1.15.0:
- resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
-
- pump@3.0.2:
- resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
-
- 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'}
-
- puppeteer-core@22.12.1:
- resolution: {integrity: sha512-XmqeDPVdC5/3nGJys1jbgeoZ02wP0WV1GBlPtr/ULRbGXJFuqgXMcKQ3eeNtFpBzGRbpeoCGWHge1ZWKWl0Exw==}
- engines: {node: '>=18'}
-
- puppeteer@22.12.1:
- resolution: {integrity: sha512-1GxY8dnEnHr1SLzdSDr0FCjM6JQfAh2E2I/EqzeF8a58DbGVk9oVjj4lFdqNoVbpgFSpAbz7VER9St7S1wDpNg==}
- engines: {node: '>=18'}
- hasBin: true
-
- 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'}
-
- querystringify@2.2.0:
- resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
-
- queue-microtask@1.2.3:
- resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
-
- quick-format-unescaped@4.0.4:
- resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==}
-
- 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'}
-
- rc9@2.1.2:
- resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
-
- react-dom@19.0.0:
- resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
- peerDependencies:
- react: ^19.0.0
-
- react-is@16.13.1:
- resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
-
- react-is@18.3.1:
- resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
-
- react-refresh@0.14.2:
- resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
- engines: {node: '>=0.10.0'}
-
- react-remove-scroll-bar@2.3.8:
- resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-remove-scroll@2.6.3:
- resolution: {integrity: sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-style-singleton@2.2.3:
- resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react@19.0.0:
- resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
- engines: {node: '>=0.10.0'}
-
- read-cache@1.0.0:
- resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
-
- read-package-json-fast@3.0.2:
- resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- read-yaml-file@1.1.0:
- resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
- engines: {node: '>=6'}
-
- readable-stream@2.3.8:
- resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
-
- readable-stream@3.6.2:
- resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
- engines: {node: '>= 6'}
-
- readable-stream@4.7.0:
- resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
- readdir-glob@1.1.3:
- resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
-
- readdirp@3.6.0:
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
- engines: {node: '>=8.10.0'}
-
- readdirp@4.1.2:
- resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
- engines: {node: '>= 14.18.0'}
-
- real-require@0.2.0:
- resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
- engines: {node: '>= 12.13.0'}
-
- redis-errors@1.2.0:
- resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==}
- engines: {node: '>=4'}
-
- redis-parser@3.0.0:
- resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==}
- engines: {node: '>=4'}
-
- reflect-metadata@0.2.2:
- resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
-
- reflect.getprototypeof@1.0.10:
- resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
- engines: {node: '>= 0.4'}
-
- regenerate-unicode-properties@10.2.0:
- resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
- engines: {node: '>=4'}
-
- regenerate@1.4.2:
- resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
-
- regenerator-runtime@0.14.1:
- resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
-
- regenerator-transform@0.15.2:
- resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
-
- regex-parser@2.3.1:
- resolution: {integrity: sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==}
-
- regex-recursion@5.1.1:
- resolution: {integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==}
-
- regex-utilities@2.3.0:
- resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
-
- regex@5.1.1:
- resolution: {integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==}
-
- regexp.prototype.flags@1.5.4:
- resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
- engines: {node: '>= 0.4'}
-
- regexpu-core@6.2.0:
- resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
- engines: {node: '>=4'}
-
- regjsgen@0.8.0:
- resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
-
- regjsparser@0.12.0:
- resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
- hasBin: true
-
- remove-accents@0.5.0:
- resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==}
-
- require-directory@2.1.1:
- resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
- engines: {node: '>=0.10.0'}
-
- require-from-string@2.0.2:
- resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
- engines: {node: '>=0.10.0'}
-
- requireindex@1.2.0:
- resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==}
- engines: {node: '>=0.10.5'}
-
- requires-port@1.0.0:
- resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
-
- resolve-from@4.0.0:
- resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
- engines: {node: '>=4'}
-
- resolve-from@5.0.0:
- resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
- engines: {node: '>=8'}
-
- 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.10:
- resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
- engines: {node: '>= 0.4'}
- hasBin: true
-
- resolve@2.0.0-next.5:
- resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
- hasBin: true
-
- restore-cursor@3.1.0:
- resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
- engines: {node: '>=8'}
-
- restore-cursor@5.1.0:
- resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
- engines: {node: '>=18'}
-
- ret@0.5.0:
- resolution: {integrity: sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==}
- engines: {node: '>=10'}
-
- retry@0.12.0:
- resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
- engines: {node: '>= 4'}
-
- retry@0.13.1:
- resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
- engines: {node: '>= 4'}
-
- reusify@1.0.4:
- resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
- engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
-
- rfdc@1.4.1:
- resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
-
- rimraf@3.0.2:
- resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
- deprecated: Rimraf versions prior to v4 are no longer supported
- hasBin: true
-
- rimraf@5.0.10:
- resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
- hasBin: true
-
- rollup-plugin-dts@6.1.1:
- resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==}
- engines: {node: '>=16'}
- peerDependencies:
- rollup: ^3.29.4 || ^4
- typescript: ^4.5 || ^5.0
-
- rollup-plugin-visualizer@5.14.0:
- resolution: {integrity: sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==}
- engines: {node: '>=18'}
- hasBin: true
- peerDependencies:
- rolldown: 1.x
- rollup: 2.x || 3.x || 4.x
- peerDependenciesMeta:
- rolldown:
- optional: true
- rollup:
- optional: true
-
- rollup@4.31.0:
- resolution: {integrity: sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
-
- rollup@4.34.8:
- resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
-
- rollup@4.34.9:
- resolution: {integrity: sha512-nF5XYqWWp9hx/LrpC8sZvvvmq0TeTjQgaZHYmAgwysT9nh8sWnZhBnM8ZyVbbJFIQBLwHDNoMqsBZBbUo4U8sQ==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
-
- rrweb-cssom@0.6.0:
- resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
-
- run-applescript@7.0.0:
- resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
- engines: {node: '>=18'}
-
- run-parallel@1.2.0:
- resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
-
- rxjs@7.8.1:
- resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
-
- sade@1.8.1:
- resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
- engines: {node: '>=6'}
-
- safe-array-concat@1.1.3:
- resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
- engines: {node: '>=0.4'}
-
- safe-buffer@5.1.2:
- resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
-
- safe-buffer@5.2.1:
- resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
-
- safe-push-apply@1.0.0:
- resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
- engines: {node: '>= 0.4'}
-
- safe-regex-test@1.1.0:
- resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
- engines: {node: '>= 0.4'}
-
- safe-regex2@4.0.1:
- resolution: {integrity: sha512-goqsB+bSlOmVX+CiFX2PFc1OV88j5jvBqIM+DgqrucHnUguAUNtiNOs+aTadq2NqsLQ+TQ3UEVG3gtSFcdlkCg==}
-
- safe-stable-stringify@2.5.0:
- resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
- engines: {node: '>=10'}
-
- safer-buffer@2.1.2:
- resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
-
- sass-loader@16.0.5:
- resolution: {integrity: sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==}
- engines: {node: '>= 18.12.0'}
- peerDependencies:
- '@rspack/core': 0.x || 1.x
- node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
- sass: ^1.3.0
- sass-embedded: '*'
- webpack: ^5.0.0
- peerDependenciesMeta:
- '@rspack/core':
- optional: true
- node-sass:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- webpack:
- optional: true
-
- sass@1.85.0:
- resolution: {integrity: sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==}
- engines: {node: '>=14.0.0'}
- hasBin: true
-
- sax@1.4.1:
- resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
-
- saxes@6.0.0:
- resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
- engines: {node: '>=v12.22.7'}
-
- scheduler@0.25.0:
- resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
-
- 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==}
-
- search-insights@2.17.3:
- resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==}
-
- secure-json-parse@3.0.2:
- resolution: {integrity: sha512-H6nS2o8bWfpFEV6U38sOSjS7bTbdgbCGU9wEM6W14P5H0QOsz94KCusifV44GpHDTu2nqZbuDNhTzu+mjDSw1w==}
-
- select-hose@2.0.0:
- resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
-
- selfsigned@2.4.1:
- resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
- engines: {node: '>=10'}
-
- semver@5.7.2:
- resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
- hasBin: true
-
- semver@6.3.1:
- resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
- hasBin: true
-
- semver@7.6.0:
- resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
- engines: {node: '>=10'}
- hasBin: true
-
- semver@7.7.0:
- resolution: {integrity: sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==}
- engines: {node: '>=10'}
- hasBin: true
-
- semver@7.7.1:
- resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
- engines: {node: '>=10'}
- hasBin: true
-
- send@0.19.0:
- resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
- engines: {node: '>= 0.8.0'}
-
- serialize-javascript@6.0.2:
- resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
-
- seroval-plugins@1.2.1:
- resolution: {integrity: sha512-H5vs53+39+x4Udwp4J5rNZfgFuA+Lt+uU+09w1gYBVWomtAl98B+E9w7yC05Xc81/HgLvJdlyqJbU0fJCKCmdw==}
- engines: {node: '>=10'}
- peerDependencies:
- seroval: ^1.0
-
- seroval@1.2.1:
- resolution: {integrity: sha512-yBxFFs3zmkvKNmR0pFSU//rIsYjuX418TnlDmc2weaq5XFDqDIV/NOMPBoLrbxjLH42p4UzRuXHryXh9dYcKcw==}
- 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'}
-
- set-cookie-parser@2.7.1:
- resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==}
-
- set-function-length@1.2.2:
- resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
- engines: {node: '>= 0.4'}
-
- set-function-name@2.0.2:
- resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
- engines: {node: '>= 0.4'}
-
- set-proto@1.0.0:
- resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
- engines: {node: '>= 0.4'}
-
- setprototypeof@1.1.0:
- resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
-
- setprototypeof@1.2.0:
- resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
-
- shallow-clone@3.0.1:
- resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
- engines: {node: '>=8'}
-
- sharp@0.33.5:
- resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
-
- shebang-command@1.2.0:
- resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
- engines: {node: '>=0.10.0'}
-
- shebang-command@2.0.0:
- resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
- engines: {node: '>=8'}
-
- shebang-regex@1.0.0:
- resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
- engines: {node: '>=0.10.0'}
-
- shebang-regex@3.0.0:
- resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
- engines: {node: '>=8'}
-
- shell-quote@1.8.2:
- resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
- engines: {node: '>= 0.4'}
-
- shiki@1.29.1:
- resolution: {integrity: sha512-TghWKV9pJTd/N+IgAIVJtr0qZkB7FfFCUrrEJc0aRmZupo3D1OCVRknQWVRVA7AX/M0Ld7QfoAruPzr3CnUJuw==}
-
- side-channel-list@1.0.0:
- resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
- engines: {node: '>= 0.4'}
-
- side-channel-map@1.0.1:
- resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
- engines: {node: '>= 0.4'}
-
- side-channel-weakmap@1.0.2:
- resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
- engines: {node: '>= 0.4'}
-
- side-channel@1.1.0:
- resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
- engines: {node: '>= 0.4'}
-
- siginfo@2.0.0:
- resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
-
- signal-exit@3.0.7:
- resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
-
- signal-exit@4.1.0:
- resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
- engines: {node: '>=14'}
-
- sigstore@3.1.0:
- resolution: {integrity: sha512-ZpzWAFHIFqyFE56dXqgX/DkDRZdz+rRcjoIk/RQU4IX0wiCv1l8S7ZrXDHcCc+uaf+6o7w3h2l3g6GYG5TKN9Q==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
- simple-git@3.27.0:
- resolution: {integrity: sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA==}
-
- simple-swizzle@0.2.2:
- resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
-
- sirv@3.0.0:
- resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
- engines: {node: '>=18'}
-
- sisteransi@1.0.5:
- resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
-
- skin-tone@2.0.0:
- resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==}
- engines: {node: '>=8'}
-
- slash@3.0.0:
- resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
- engines: {node: '>=8'}
-
- slash@5.1.0:
- resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
- engines: {node: '>=14.16'}
-
- slice-ansi@5.0.0:
- resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
- engines: {node: '>=12'}
-
- slice-ansi@7.1.0:
- resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==}
- engines: {node: '>=18'}
-
- smart-buffer@4.2.0:
- resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
- engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
-
- smob@1.5.0:
- resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
-
- 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.8.1:
- resolution: {integrity: sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==}
- engines: {node: '>=10.2.0'}
-
- sockjs@0.3.24:
- resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
-
- socks-proxy-agent@8.0.5:
- resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==}
- engines: {node: '>= 14'}
-
- socks@2.8.3:
- resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
- engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
-
- solid-js@1.9.4:
- resolution: {integrity: sha512-ipQl8FJ31bFUoBNScDQTG3BjN6+9Rg+Q+f10bUbnO6EOTTf5NGerJeHc7wyu5I4RMHEl/WwZwUmy/PTRgxxZ8g==}
-
- sonic-boom@4.2.0:
- resolution: {integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==}
-
- source-map-js@1.2.1:
- resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
- engines: {node: '>=0.10.0'}
-
- source-map-loader@5.0.0:
- resolution: {integrity: sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==}
- engines: {node: '>= 18.12.0'}
- peerDependencies:
- webpack: ^5.72.1
-
- source-map-support@0.5.21:
- resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
-
- source-map@0.6.1:
- resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
- engines: {node: '>=0.10.0'}
-
- source-map@0.7.4:
- resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
- engines: {node: '>= 8'}
-
- source-map@0.8.0-beta.0:
- resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
- engines: {node: '>= 8'}
-
- space-separated-tokens@2.0.2:
- resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
-
- spawndamnit@2.0.0:
- resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==}
-
- spawndamnit@3.0.1:
- resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==}
-
- spdx-correct@3.2.0:
- resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
-
- spdx-exceptions@2.5.0:
- resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
-
- spdx-expression-parse@3.0.1:
- resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
-
- spdx-license-ids@3.0.21:
- resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==}
-
- 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'}
-
- split2@4.2.0:
- resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
- engines: {node: '>= 10.x'}
-
- sprintf-js@1.0.3:
- resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
-
- sprintf-js@1.1.3:
- resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
-
- ssri@12.0.0:
- resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
- stable-hash@0.0.4:
- resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
-
- stackback@0.0.2:
- resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
-
- standard-as-callback@2.1.0:
- resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
-
- statuses@1.5.0:
- 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'}
-
- std-env@3.8.0:
- resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==}
-
- streamroller@3.1.5:
- resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==}
- engines: {node: '>=8.0'}
-
- streamsearch@1.1.0:
- resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
- engines: {node: '>=10.0.0'}
-
- streamx@2.22.0:
- resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==}
-
- string-argv@0.3.2:
- resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
- engines: {node: '>=0.6.19'}
-
- string-width@4.2.3:
- resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
- engines: {node: '>=8'}
-
- string-width@5.1.2:
- resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
- engines: {node: '>=12'}
-
- string-width@7.2.0:
- resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
- engines: {node: '>=18'}
-
- string.prototype.includes@2.0.1:
- resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
- engines: {node: '>= 0.4'}
-
- string.prototype.matchall@4.0.12:
- resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
- engines: {node: '>= 0.4'}
-
- string.prototype.repeat@1.0.0:
- resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
-
- string.prototype.trim@1.2.10:
- resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
- engines: {node: '>= 0.4'}
-
- string.prototype.trimend@1.0.9:
- resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
- engines: {node: '>= 0.4'}
-
- string.prototype.trimstart@1.0.8:
- resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
- engines: {node: '>= 0.4'}
-
- string_decoder@1.1.1:
- resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
-
- string_decoder@1.3.0:
- resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
-
- stringify-entities@4.0.4:
- resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
-
- strip-ansi@6.0.1:
- resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
- engines: {node: '>=8'}
-
- strip-ansi@7.1.0:
- resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
- engines: {node: '>=12'}
-
- strip-bom@3.0.0:
- resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
- engines: {node: '>=4'}
-
- strip-final-newline@3.0.0:
- resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
- engines: {node: '>=12'}
-
- strip-final-newline@4.0.0:
- resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
- engines: {node: '>=18'}
-
- strip-json-comments@3.1.1:
- resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
- engines: {node: '>=8'}
-
- strip-literal@2.1.1:
- resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
-
- strip-literal@3.0.0:
- resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
-
- styled-jsx@5.1.6:
- resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@babel/core': '*'
- babel-plugin-macros: '*'
- react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- babel-plugin-macros:
- optional: true
-
- stylehacks@7.0.4:
- resolution: {integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- sucrase@3.35.0:
- resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
- engines: {node: '>=16 || 14 >=14.17'}
- hasBin: true
-
- superjson@2.2.2:
- resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
- engines: {node: '>=16'}
-
- supports-color@7.2.0:
- resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
- engines: {node: '>=8'}
-
- supports-color@8.1.1:
- resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
- engines: {node: '>=10'}
-
- supports-color@9.4.0:
- resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==}
- engines: {node: '>=12'}
-
- supports-hyperlinks@3.1.0:
- resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==}
- engines: {node: '>=14.18'}
-
- supports-preserve-symlinks-flag@1.0.0:
- resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
- engines: {node: '>= 0.4'}
-
- svelte-check@4.1.4:
- resolution: {integrity: sha512-v0j7yLbT29MezzaQJPEDwksybTE2Ups9rUxEXy92T06TiA0cbqcO8wAOwNUVkFW6B0hsYHA+oAX3BS8b/2oHtw==}
- engines: {node: '>= 18.0.0'}
- hasBin: true
- peerDependencies:
- svelte: ^4.0.0 || ^5.0.0-next.0
- typescript: '>=5.0.0'
-
- svelte-eslint-parser@0.43.0:
- resolution: {integrity: sha512-GpU52uPKKcVnh8tKN5P4UZpJ/fUDndmq7wfsvoVXsyP+aY0anol7Yqo01fyrlaWGMFfm4av5DyrjlaXdLRJvGA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- svelte: ^3.37.0 || ^4.0.0 || ^5.0.0
- peerDependenciesMeta:
- svelte:
- optional: true
-
- svelte@5.19.9:
- resolution: {integrity: sha512-860s752/ZZxHIsii31ELkdKBOCeAuDsfb/AGUXJyQyzUVLRSt4oqEw/BV5+2+mNg8mbqmD3OK+vMvwWMPM6f8A==}
- engines: {node: '>=18'}
-
- svg-tags@1.0.0:
- resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
-
- svgo@3.3.2:
- resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==}
- engines: {node: '>=14.0.0'}
- hasBin: 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==}
-
- synckit@0.9.2:
- resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
- engines: {node: ^14.18.0 || >=16.0.0}
-
- system-architecture@0.1.0:
- resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
- engines: {node: '>=18'}
-
- tabbable@6.2.0:
- resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
-
- tailwindcss@3.4.9:
- resolution: {integrity: sha512-1SEOvRr6sSdV5IDf9iC+NU4dhwdqzF4zKKq3sAbasUWHEM6lsMhX+eNN5gkPx1BvLFEnZQEUFbXnGj8Qlp83Pg==}
- engines: {node: '>=14.0.0'}
- hasBin: true
-
- tapable@2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
- engines: {node: '>=6'}
-
- tar-fs@3.0.5:
- resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==}
-
- tar-stream@3.1.7:
- resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
-
- tar@6.2.1:
- resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
- engines: {node: '>=10'}
-
- tar@7.4.3:
- resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
- engines: {node: '>=18'}
-
- term-size@2.2.1:
- resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
- engines: {node: '>=8'}
-
- terser-webpack-plugin@5.3.12:
- resolution: {integrity: sha512-jDLYqo7oF8tJIttjXO6jBY5Hk8p3A8W4ttih7cCEq64fQFWmgJ4VqAQjKr7WwIDlmXKEc6QeoRb5ecjZ+2afcg==}
- 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.39.0:
- resolution: {integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==}
- engines: {node: '>=10'}
- hasBin: true
-
- test-exclude@6.0.0:
- resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
- engines: {node: '>=8'}
-
- text-decoder@1.2.3:
- resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
-
- thenify-all@1.6.0:
- resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
- engines: {node: '>=0.8'}
-
- thenify@3.3.1:
- resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
-
- thingies@1.21.0:
- resolution: {integrity: sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==}
- engines: {node: '>=10.18'}
- peerDependencies:
- tslib: ^2
-
- thread-stream@3.1.0:
- resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==}
-
- through@2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
-
- thunky@1.1.0:
- resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
-
- tiny-invariant@1.3.3:
- resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
-
- tinybench@2.9.0:
- resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
-
- tinyexec@0.3.2:
- resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
-
- tinyglobby@0.2.10:
- resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
- engines: {node: '>=12.0.0'}
-
- tinypool@0.8.4:
- resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
- engines: {node: '>=14.0.0'}
-
- tinyspy@2.2.1:
- resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
- engines: {node: '>=14.0.0'}
-
- tmp@0.0.33:
- resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
- engines: {node: '>=0.6.0'}
-
- tmp@0.2.3:
- resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
- engines: {node: '>=14.14'}
-
- to-regex-range@5.0.1:
- resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
- engines: {node: '>=8.0'}
-
- toad-cache@3.7.0:
- resolution: {integrity: sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==}
- engines: {node: '>=12'}
-
- toidentifier@1.0.1:
- resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
- engines: {node: '>=0.6'}
-
- totalist@3.0.1:
- resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
- engines: {node: '>=6'}
-
- tough-cookie@4.1.4:
- resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
- engines: {node: '>=6'}
-
- tr46@0.0.3:
- resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
-
- tr46@1.0.1:
- resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
-
- tr46@5.0.0:
- resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
- engines: {node: '>=18'}
-
- tree-dump@1.0.2:
- resolution: {integrity: sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==}
- engines: {node: '>=10.0'}
- peerDependencies:
- tslib: '2'
-
- 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==}
-
- ts-api-utils@1.4.3:
- resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
- engines: {node: '>=16'}
- peerDependencies:
- typescript: '>=4.2.0'
-
- ts-api-utils@2.0.0:
- resolution: {integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==}
- engines: {node: '>=18.12'}
- peerDependencies:
- typescript: '>=4.8.4'
-
- ts-interface-checker@0.1.13:
- resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
-
- ts-node@10.9.2:
- resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
- hasBin: true
- peerDependencies:
- '@swc/core': '>=1.2.50'
- '@swc/wasm': '>=1.2.50'
- '@types/node': '*'
- typescript: '>=2.7'
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- '@swc/wasm':
- optional: true
-
- tsconfig-paths@3.15.0:
- resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
-
- tslib@1.14.1:
- resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
-
- tslib@2.8.1:
- resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
-
- tsup@8.3.5:
- resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==}
- engines: {node: '>=18'}
- hasBin: true
- peerDependencies:
- '@microsoft/api-extractor': ^7.36.0
- '@swc/core': ^1
- postcss: ^8.4.12
- typescript: '>=4.5.0'
- peerDependenciesMeta:
- '@microsoft/api-extractor':
- optional: true
- '@swc/core':
- optional: true
- postcss:
- optional: true
- typescript:
- optional: true
-
- 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'
-
- tuf-js@3.0.1:
- resolution: {integrity: sha512-+68OP1ZzSF84rTckf3FA95vJ1Zlx/uaXyiiKyPd1pA4rZNkpEvDAKmsu1xUSmbF/chCRYgZ6UZkDwC7PmzmAyA==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
- turbo-darwin-64@2.4.0:
- resolution: {integrity: sha512-kVMScnPUa3R4n7woNmkR15kOY0aUwCLJcUyH5UC59ggKqr5HIHwweKYK8N1pwBQso0LQF4I9i93hIzfJguCcwQ==}
- cpu: [x64]
- os: [darwin]
-
- turbo-darwin-arm64@2.4.0:
- resolution: {integrity: sha512-8JObIpfun1guA7UlFR5jC/SOVm49lRscxMxfg5jZ5ABft79rhFC+ygN9AwAhGKv6W2DUhIh2xENkSgu4EDmUyg==}
- cpu: [arm64]
- os: [darwin]
-
- turbo-linux-64@2.4.0:
- resolution: {integrity: sha512-xWDGGcRlBuGV7HXWAVuTY6vsQi4aZxGMAnuiuNDg8Ij1aHGohOM0RUsWMXjxz4vuJmjk9+/D6NQqHH3AJEXezg==}
- cpu: [x64]
- os: [linux]
-
- turbo-linux-arm64@2.4.0:
- resolution: {integrity: sha512-c3En99xMguc/Pdtk/rZP53LnDdw0W6lgUc04he8r8F+UHYSNvgzHh0WGXXmCC6lGbBH72kPhhGx4bAwyvi7dug==}
- cpu: [arm64]
- os: [linux]
-
- turbo-windows-64@2.4.0:
- resolution: {integrity: sha512-/gOORuOlyA8JDPzyA16CD3wvyRcuBFePa1URAnFUof9hXQmKxK0VvSDO79cYZFsJSchCKNJpckUS0gYxGsWwoA==}
- cpu: [x64]
- os: [win32]
-
- turbo-windows-arm64@2.4.0:
- resolution: {integrity: sha512-/DJIdTFijEMM5LSiEpSfarDOMOlYqJV+EzmppqWtHqDsOLF4hbbIBH9sJR6OOp5dURAu5eURBYdmvBRz9Lo6TA==}
- cpu: [arm64]
- os: [win32]
-
- turbo@2.4.0:
- resolution: {integrity: sha512-ah/yQp2oMif1X0u7fBJ4MLMygnkbKnW5O8SG6pJvloPCpHfFoZctkSVQiJ3VnvNTq71V2JJIdwmOeu1i34OQyg==}
- hasBin: true
-
- type-check@0.4.0:
- resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
- engines: {node: '>= 0.8.0'}
-
- type-detect@4.1.0:
- resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
- engines: {node: '>=4'}
-
- type-fest@0.20.2:
- 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@4.33.0:
- resolution: {integrity: sha512-s6zVrxuyKbbAsSAD5ZPTB77q4YIdRctkTbJ2/Dqlinwz+8ooH2gd+YA7VA6Pa93KML9GockVvoxjZ2vHP+mu8g==}
- engines: {node: '>=16'}
-
- type-is@1.6.18:
- resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
- engines: {node: '>= 0.6'}
-
- typed-array-buffer@1.0.3:
- resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
- engines: {node: '>= 0.4'}
-
- typed-array-byte-length@1.0.3:
- resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
- engines: {node: '>= 0.4'}
-
- typed-array-byte-offset@1.0.4:
- resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
- engines: {node: '>= 0.4'}
-
- typed-array-length@1.0.7:
- 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.19.1:
- resolution: {integrity: sha512-LKPUQpdEMVOeKluHi8md7rwLcoXHhwvWp3x+sJkMuq3gGm9yaYJtPo8sRZSblMFJ5pcOGCAak/scKf1mvZDlQw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.8.0'
-
- typescript@5.5.3:
- resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==}
- engines: {node: '>=14.17'}
- hasBin: true
-
- typescript@5.6.1-rc:
- resolution: {integrity: sha512-E3b2+1zEFu84jB0YQi9BORDjz9+jGbwwy1Zi3G0LUNw7a7cePUrHMRNy8aPh53nXpkFGVHSxIZo5vKTfYaFiBQ==}
- engines: {node: '>=14.17'}
- hasBin: true
-
- ua-parser-js@0.7.40:
- resolution: {integrity: sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ==}
- hasBin: true
-
- ufo@1.5.4:
- resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
-
- uglify-js@3.19.3:
- resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
- engines: {node: '>=0.8.0'}
- hasBin: true
-
- ultrahtml@1.5.3:
- resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==}
-
- unbox-primitive@1.1.0:
- resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
- engines: {node: '>= 0.4'}
-
- unbzip2-stream@1.4.3:
- resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
-
- uncrypto@0.1.3:
- resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
-
- unctx@2.4.1:
- resolution: {integrity: sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg==}
-
- undici-types@6.20.0:
- resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
-
- unenv@1.10.0:
- resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
-
- unhead@1.11.18:
- resolution: {integrity: sha512-TWgGUoZMpYe2yJwY6jZ0/9kpQT18ygr2h5lI6cUXdfD9UzDc0ytM9jGaleSYkj9guJWXkk7izYBnzJvxl8mRvQ==}
-
- unicode-canonical-property-names-ecmascript@2.0.1:
- resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
- engines: {node: '>=4'}
-
- unicode-emoji-modifier-base@1.0.0:
- resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==}
- engines: {node: '>=4'}
-
- unicode-match-property-ecmascript@2.0.0:
- resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
- engines: {node: '>=4'}
-
- unicode-match-property-value-ecmascript@2.2.0:
- resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
- engines: {node: '>=4'}
-
- unicode-property-aliases-ecmascript@2.1.0:
- resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
- engines: {node: '>=4'}
-
- unicorn-magic@0.1.0:
- resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
- engines: {node: '>=18'}
-
- unicorn-magic@0.3.0:
- resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
- engines: {node: '>=18'}
-
- unimport@3.14.6:
- resolution: {integrity: sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g==}
-
- unimport@4.0.0:
- resolution: {integrity: sha512-FH+yZ36YaVlh0ZjHesP20Q4uL+wL0EqTNxDZcUupsIn6WRYXZAbIYEMDLTaLBpkNVzFpqZXS+am51/HR3ANUNw==}
- engines: {node: '>=18.12.0'}
-
- unique-filename@4.0.0:
- resolution: {integrity: sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
- unique-slug@5.0.0:
- resolution: {integrity: sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
- unist-util-is@6.0.0:
- resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
-
- unist-util-position@5.0.0:
- resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
-
- unist-util-stringify-position@4.0.0:
- resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
-
- unist-util-visit-parents@6.0.1:
- resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
-
- unist-util-visit@5.0.0:
- resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
-
- universalify@0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
- engines: {node: '>= 4.0.0'}
-
- universalify@0.2.0:
- resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
- engines: {node: '>= 4.0.0'}
-
- universalify@2.0.1:
- resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
- engines: {node: '>= 10.0.0'}
-
- unpipe@1.0.0:
- resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
- engines: {node: '>= 0.8'}
-
- unplugin-vue-router@0.10.9:
- resolution: {integrity: sha512-DXmC0GMcROOnCmN56GRvi1bkkG1BnVs4xJqNvucBUeZkmB245URvtxOfbo3H6q4SOUQQbLPYWd6InzvjRh363A==}
- peerDependencies:
- vue-router: ^4.4.0
- peerDependenciesMeta:
- vue-router:
- optional: true
-
- unplugin@1.16.1:
- resolution: {integrity: sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==}
- engines: {node: '>=14.0.0'}
-
- unplugin@2.0.0-beta.1:
- resolution: {integrity: sha512-2qzQo5LN2DmUZXkWDHvGKLF5BP0WN+KthD6aPnPJ8plRBIjv4lh5O07eYcSxgO2znNw9s4MNhEO1sB+JDllDbQ==}
- engines: {node: '>=18.12.0'}
-
- unplugin@2.1.2:
- resolution: {integrity: sha512-Q3LU0e4zxKfRko1wMV2HmP8lB9KWislY7hxXpxd+lGx0PRInE4vhMBVEZwpdVYHvtqzhSrzuIfErsob6bQfCzw==}
- engines: {node: '>=18.12.0'}
-
- unstorage@1.14.4:
- resolution: {integrity: sha512-1SYeamwuYeQJtJ/USE1x4l17LkmQBzg7deBJ+U9qOBoHo15d1cDxG4jM31zKRgF7pG0kirZy4wVMX6WL6Zoscg==}
- peerDependencies:
- '@azure/app-configuration': ^1.8.0
- '@azure/cosmos': ^4.2.0
- '@azure/data-tables': ^13.3.0
- '@azure/identity': ^4.5.0
- '@azure/keyvault-secrets': ^4.9.0
- '@azure/storage-blob': ^12.26.0
- '@capacitor/preferences': ^6.0.3
- '@deno/kv': '>=0.8.4'
- '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0
- '@planetscale/database': ^1.19.0
- '@upstash/redis': ^1.34.3
- '@vercel/blob': '>=0.27.0'
- '@vercel/kv': ^1.0.1
- aws4fetch: ^1.0.20
- db0: '>=0.2.1'
- idb-keyval: ^6.2.1
- ioredis: ^5.4.2
- uploadthing: ^7.4.1
- peerDependenciesMeta:
- '@azure/app-configuration':
- optional: true
- '@azure/cosmos':
- optional: true
- '@azure/data-tables':
- optional: true
- '@azure/identity':
- optional: true
- '@azure/keyvault-secrets':
- optional: true
- '@azure/storage-blob':
- optional: true
- '@capacitor/preferences':
- optional: true
- '@deno/kv':
- optional: true
- '@netlify/blobs':
- optional: true
- '@planetscale/database':
- optional: true
- '@upstash/redis':
- optional: true
- '@vercel/blob':
- optional: true
- '@vercel/kv':
- optional: true
- aws4fetch:
- optional: true
- db0:
- optional: true
- idb-keyval:
- optional: true
- ioredis:
- optional: true
- uploadthing:
- optional: true
-
- untun@0.1.3:
- resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
- hasBin: true
-
- untyped@1.5.2:
- resolution: {integrity: sha512-eL/8PlhLcMmlMDtNPKhyyz9kEBDS3Uk4yMu/ewlkT2WFbtzScjHWPJLdQLmaGPUKjXzwe9MumOtOgc4Fro96Kg==}
- hasBin: true
-
- unwasm@0.3.9:
- resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==}
-
- update-browserslist-db@1.1.2:
- resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
-
- uqr@0.1.2:
- resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==}
-
- uri-js-replace@1.0.1:
- resolution: {integrity: sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==}
-
- uri-js@4.4.1:
- resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
-
- url-parse@1.5.10:
- resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
-
- urlpattern-polyfill@10.0.0:
- resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==}
-
- urlpattern-polyfill@8.0.2:
- resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==}
-
- use-callback-ref@1.3.3:
- resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- use-sidecar@1.1.3:
- resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- util-deprecate@1.0.2:
- resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
-
- utils-merge@1.0.1:
- resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
- engines: {node: '>= 0.4.0'}
-
- uuid@8.3.2:
- resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
- hasBin: true
-
- v8-compile-cache-lib@3.0.1:
- resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
-
- validate-npm-package-license@3.0.4:
- resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
-
- validate-npm-package-name@5.0.1:
- resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- validate-npm-package-name@6.0.0:
- resolution: {integrity: sha512-d7KLgL1LD3U3fgnvWEY1cQXoO/q6EQ1BSz48Sa149V/5zVTAbgmZIpyI8TRi6U9/JNyeYLlTKsEMPtLC27RFUg==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
- vary@1.1.2:
- resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
- engines: {node: '>= 0.8'}
-
- vfile-message@4.0.2:
- resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
-
- vfile@6.0.3:
- resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
-
- vite-hot-client@0.2.4:
- resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
- peerDependencies:
- vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
-
- vite-node@1.6.0:
- resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
-
- vite-node@2.1.8:
- resolution: {integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
-
- vite-plugin-checker@0.8.0:
- resolution: {integrity: sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g==}
- engines: {node: '>=14.16'}
- peerDependencies:
- '@biomejs/biome': '>=1.7'
- eslint: '>=7'
- meow: ^9.0.0
- optionator: ^0.9.1
- stylelint: '>=13'
- typescript: '*'
- vite: '>=2.0.0'
- vls: '*'
- vti: '*'
- vue-tsc: ~2.1.6
- peerDependenciesMeta:
- '@biomejs/biome':
- optional: true
- eslint:
- optional: true
- meow:
- optional: true
- optionator:
- optional: true
- stylelint:
- optional: true
- typescript:
- optional: true
- vls:
- optional: true
- vti:
- optional: true
- vue-tsc:
- optional: true
-
- vite-plugin-inspect@0.8.9:
- resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
- engines: {node: '>=14'}
- peerDependencies:
- '@nuxt/kit': '*'
- vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1
- peerDependenciesMeta:
- '@nuxt/kit':
- optional: true
-
- vite-plugin-vue-devtools@7.7.0:
- resolution: {integrity: sha512-1dWiREwIl4JELwXGHXih80hIgjcViMcZGr3j0edo6NQ9kNzAOxMIUgFqc/TO1ary4ZroJUxoB0YDI6jnDf13iQ==}
- engines: {node: '>=v14.21.3'}
- peerDependencies:
- vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
-
- vite-plugin-vue-inspector@5.3.1:
- resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
- peerDependencies:
- vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
-
- vite@5.4.14:
- resolution: {integrity: sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
-
- vite@6.0.9:
- resolution: {integrity: sha512-MSgUxHcaXLtnBPktkbUSoQUANApKYuxZ6DrbVENlIorbhL2dZydTLaZ01tjUoE3szeFzlFk9ANOKk0xurh4MKA==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- jiti: '>=1.21.0'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.16.0
- tsx: ^4.8.1
- yaml: ^2.4.2
- peerDependenciesMeta:
- '@types/node':
- optional: true
- jiti:
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- tsx:
- optional: true
- yaml:
- optional: true
-
- vite@6.1.0:
- resolution: {integrity: sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- jiti: '>=1.21.0'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.16.0
- tsx: ^4.8.1
- yaml: ^2.4.2
- peerDependenciesMeta:
- '@types/node':
- optional: true
- jiti:
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- tsx:
- optional: true
- yaml:
- optional: true
-
- vitefu@1.0.5:
- resolution: {integrity: sha512-h4Vflt9gxODPFNGPwp4zAMZRpZR7eslzwH2c5hn5kNZ5rhnKyRJ50U+yGCdc2IRaBs8O4haIgLNGrV5CrpMsCA==}
- peerDependencies:
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
- peerDependenciesMeta:
- vite:
- optional: true
-
- vitepress@1.3.0:
- resolution: {integrity: sha512-Cbm2AgXcCrukUeV+/24g1ZDSvw8blamh/1uf2pz3ApFpaYb9T7mo4imWDZ6APn2uPo4bJ6sgOzvsJ4aH+oLbBA==}
- hasBin: true
- peerDependencies:
- markdown-it-mathjax3: ^4
- postcss: ^8
- peerDependenciesMeta:
- markdown-it-mathjax3:
- optional: true
- postcss:
- optional: true
-
- vitest-environment-nuxt@1.0.1:
- resolution: {integrity: sha512-eBCwtIQriXW5/M49FjqNKfnlJYlG2LWMSNFsRVKomc8CaMqmhQPBS5LZ9DlgYL9T8xIVsiA6RZn2lk7vxov3Ow==}
-
- vitest@1.6.0:
- resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@edge-runtime/vm': '*'
- '@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 1.6.0
- '@vitest/ui': 1.6.0
- happy-dom: '*'
- jsdom: '*'
- peerDependenciesMeta:
- '@edge-runtime/vm':
- optional: true
- '@types/node':
- optional: true
- '@vitest/browser':
- optional: true
- '@vitest/ui':
- optional: true
- happy-dom:
- optional: true
- jsdom:
- optional: true
-
- void-elements@2.0.1:
- resolution: {integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==}
- engines: {node: '>=0.10.0'}
-
- vscode-jsonrpc@6.0.0:
- resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==}
- engines: {node: '>=8.0.0 || >=10.0.0'}
-
- vscode-languageclient@7.0.0:
- resolution: {integrity: sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==}
- engines: {vscode: ^1.52.0}
-
- vscode-languageserver-protocol@3.16.0:
- resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==}
-
- vscode-languageserver-textdocument@1.0.12:
- resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
-
- vscode-languageserver-types@3.16.0:
- resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==}
-
- vscode-languageserver@7.0.0:
- resolution: {integrity: sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==}
- hasBin: true
-
- vscode-uri@3.0.8:
- resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
-
- vue-bundle-renderer@2.1.1:
- resolution: {integrity: sha512-+qALLI5cQncuetYOXp4yScwYvqh8c6SMXee3B+M7oTZxOgtESP0l4j/fXdEJoZ+EdMxkGWIj+aSEyjXkOdmd7g==}
-
- vue-component-type-helpers@2.2.0:
- resolution: {integrity: sha512-cYrAnv2me7bPDcg9kIcGwjJiSB6Qyi08+jLDo9yuvoFQjzHiPTzML7RnkJB1+3P6KMsX/KbCD4QE3Tv/knEllw==}
-
- vue-demi@0.14.10:
- resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
- engines: {node: '>=12'}
- hasBin: true
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.0.0-0 || ^2.6.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
-
- vue-devtools-stub@0.1.0:
- resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
-
- vue-eslint-parser@9.4.3:
- resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
- engines: {node: ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '>=6.0.0'
-
- vue-router@4.5.0:
- resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
- peerDependencies:
- vue: ^3.2.0
-
- vue-tsc@2.2.0:
- resolution: {integrity: sha512-gtmM1sUuJ8aSb0KoAFmK9yMxb8TxjewmxqTJ1aKphD5Cbu0rULFY6+UQT51zW7SpUcenfPUuflKyVwyx9Qdnxg==}
- hasBin: true
- peerDependencies:
- typescript: '>=5.0.0'
-
- vue@3.5.13:
- resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- w3c-xmlserializer@5.0.0:
- resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
- engines: {node: '>=18'}
-
- watchpack@2.4.2:
- resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
- engines: {node: '>=10.13.0'}
-
- wbuf@1.7.3:
- resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
-
- wcwidth@1.0.1:
- resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
-
- weak-lru-cache@1.2.2:
- resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==}
-
- web-streams-polyfill@3.3.3:
- resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
- engines: {node: '>= 8'}
-
- webidl-conversions@3.0.1:
- resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
-
- webidl-conversions@4.0.2:
- resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
-
- webidl-conversions@7.0.0:
- resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
- engines: {node: '>=12'}
-
- webpack-dev-middleware@7.4.2:
- resolution: {integrity: sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==}
- engines: {node: '>= 18.12.0'}
- peerDependencies:
- webpack: ^5.0.0
- peerDependenciesMeta:
- webpack:
- optional: true
-
- webpack-dev-server@5.2.0:
- resolution: {integrity: sha512-90SqqYXA2SK36KcT6o1bvwvZfJFcmoamqeJY7+boioffX9g9C0wjjJRGUrQIuh43pb0ttX7+ssavmj/WN2RHtA==}
- engines: {node: '>= 18.12.0'}
- hasBin: true
- peerDependencies:
- webpack: ^5.0.0
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack:
- optional: true
- webpack-cli:
- optional: true
-
- webpack-merge@6.0.1:
- resolution: {integrity: sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==}
- engines: {node: '>=18.0.0'}
-
- webpack-sources@3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
- 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.98.0:
- resolution: {integrity: sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==}
- 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@3.1.1:
- resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
- engines: {node: '>=18'}
-
- whatwg-mimetype@4.0.0:
- resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
- engines: {node: '>=18'}
-
- whatwg-url@14.1.0:
- resolution: {integrity: sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==}
- engines: {node: '>=18'}
-
- whatwg-url@5.0.0:
- resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
-
- whatwg-url@7.1.0:
- resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
-
- which-boxed-primitive@1.1.1:
- resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
- engines: {node: '>= 0.4'}
-
- which-builtin-type@1.2.1:
- resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
- engines: {node: '>= 0.4'}
-
- which-collection@1.0.2:
- resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
- engines: {node: '>= 0.4'}
-
- which-typed-array@1.1.18:
- resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
- 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'}
- hasBin: true
-
- which@3.0.1:
- resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- hasBin: true
-
- which@5.0.0:
- resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
- hasBin: true
-
- why-is-node-running@2.3.0:
- resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
- engines: {node: '>=8'}
- hasBin: true
-
- wildcard@2.0.1:
- resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
-
- word-wrap@1.2.5:
- resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
- engines: {node: '>=0.10.0'}
-
- wordwrap@1.0.0:
- resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
-
- wrap-ansi@6.2.0:
- resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
- engines: {node: '>=8'}
-
- wrap-ansi@7.0.0:
- resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
- engines: {node: '>=10'}
-
- wrap-ansi@8.1.0:
- resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
- engines: {node: '>=12'}
-
- wrap-ansi@9.0.0:
- resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
- engines: {node: '>=18'}
-
- wrappy@1.0.2:
- resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
-
- 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'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
-
- ws@8.18.1:
- resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
- 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
-
- xml-name-validator@4.0.0:
- resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
- engines: {node: '>=12'}
-
- xml-name-validator@5.0.0:
- resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
- engines: {node: '>=18'}
-
- xmlchars@2.2.0:
- resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
-
- y18n@5.0.8:
- resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
- engines: {node: '>=10'}
-
- yallist@2.1.2:
- resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
-
- yallist@3.1.1:
- resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
-
- yallist@4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
-
- yallist@5.0.0:
- resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
- engines: {node: '>=18'}
-
- yaml-ast-parser@0.0.43:
- resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
-
- yaml@1.10.2:
- resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
- engines: {node: '>= 6'}
-
- yaml@2.6.1:
- resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
- engines: {node: '>= 14'}
- hasBin: true
-
- yaml@2.7.0:
- resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
- engines: {node: '>= 14'}
- hasBin: true
-
- yargs-parser@20.2.9:
- resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
- engines: {node: '>=10'}
-
- yargs-parser@21.1.1:
- resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
- engines: {node: '>=12'}
-
- yargs@16.2.0:
- resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
- engines: {node: '>=10'}
-
- yargs@17.7.2:
- resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
- engines: {node: '>=12'}
-
- yauzl@2.10.0:
- resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
-
- yn@3.1.1:
- resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
- engines: {node: '>=6'}
-
- yocto-queue@0.1.0:
- resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
- engines: {node: '>=10'}
-
- yocto-queue@1.1.1:
- resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
- engines: {node: '>=12.20'}
-
- yoctocolors-cjs@2.1.2:
- resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
- engines: {node: '>=18'}
-
- yoctocolors@2.1.1:
- resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
- engines: {node: '>=18'}
-
- zhead@2.2.4:
- resolution: {integrity: sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==}
-
- zimmerframe@1.1.2:
- resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==}
-
- zip-stream@6.0.1:
- resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
- engines: {node: '>= 14'}
-
- zod@3.23.8:
- resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
-
- zone.js@0.15.0:
- resolution: {integrity: sha512-9oxn0IIjbCZkJ67L+LkhYWRyAy7axphb3VgE2MBDlOqnmHMPWGYMxJxBYFueFq/JGY2GMwS0rU+UCLunEmy5UA==}
-
- zwitch@2.0.4:
- resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
-
-snapshots:
-
- '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.20.0)(algoliasearch@5.20.0)(search-insights@2.17.3)':
- dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.20.0)(algoliasearch@5.20.0)(search-insights@2.17.3)
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.20.0)(algoliasearch@5.20.0)
- transitivePeerDependencies:
- - '@algolia/client-search'
- - algoliasearch
- - search-insights
-
- '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.20.0)(algoliasearch@5.20.0)(search-insights@2.17.3)':
- dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.20.0)(algoliasearch@5.20.0)
- search-insights: 2.17.3
- transitivePeerDependencies:
- - '@algolia/client-search'
- - algoliasearch
-
- '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.20.0)(algoliasearch@5.20.0)':
- dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.20.0)(algoliasearch@5.20.0)
- '@algolia/client-search': 5.20.0
- algoliasearch: 5.20.0
-
- '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.20.0)(algoliasearch@5.20.0)':
- dependencies:
- '@algolia/client-search': 5.20.0
- algoliasearch: 5.20.0
-
- '@algolia/client-abtesting@5.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
- '@algolia/requester-browser-xhr': 5.20.0
- '@algolia/requester-fetch': 5.20.0
- '@algolia/requester-node-http': 5.20.0
-
- '@algolia/client-analytics@5.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
- '@algolia/requester-browser-xhr': 5.20.0
- '@algolia/requester-fetch': 5.20.0
- '@algolia/requester-node-http': 5.20.0
-
- '@algolia/client-common@5.20.0': {}
-
- '@algolia/client-insights@5.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
- '@algolia/requester-browser-xhr': 5.20.0
- '@algolia/requester-fetch': 5.20.0
- '@algolia/requester-node-http': 5.20.0
-
- '@algolia/client-personalization@5.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
- '@algolia/requester-browser-xhr': 5.20.0
- '@algolia/requester-fetch': 5.20.0
- '@algolia/requester-node-http': 5.20.0
-
- '@algolia/client-query-suggestions@5.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
- '@algolia/requester-browser-xhr': 5.20.0
- '@algolia/requester-fetch': 5.20.0
- '@algolia/requester-node-http': 5.20.0
-
- '@algolia/client-search@5.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
- '@algolia/requester-browser-xhr': 5.20.0
- '@algolia/requester-fetch': 5.20.0
- '@algolia/requester-node-http': 5.20.0
-
- '@algolia/ingestion@1.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
- '@algolia/requester-browser-xhr': 5.20.0
- '@algolia/requester-fetch': 5.20.0
- '@algolia/requester-node-http': 5.20.0
-
- '@algolia/monitoring@1.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
- '@algolia/requester-browser-xhr': 5.20.0
- '@algolia/requester-fetch': 5.20.0
- '@algolia/requester-node-http': 5.20.0
-
- '@algolia/recommend@5.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
- '@algolia/requester-browser-xhr': 5.20.0
- '@algolia/requester-fetch': 5.20.0
- '@algolia/requester-node-http': 5.20.0
-
- '@algolia/requester-browser-xhr@5.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
-
- '@algolia/requester-fetch@5.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
-
- '@algolia/requester-node-http@5.20.0':
- dependencies:
- '@algolia/client-common': 5.20.0
-
- '@alloc/quick-lru@5.2.0': {}
-
- '@ampproject/remapping@2.3.0':
- dependencies:
- '@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.25
-
- '@andrewbranch/untar.js@1.0.3': {}
-
- '@angular-devkit/architect@0.1902.0(chokidar@4.0.3)':
- dependencies:
- '@angular-devkit/core': 19.2.0(chokidar@4.0.3)
- rxjs: 7.8.1
- transitivePeerDependencies:
- - chokidar
-
- '@angular-devkit/build-angular@19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.13.8)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3)))(typescript@5.5.3)(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0)':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1902.0(chokidar@4.0.3)
- '@angular-devkit/build-webpack': 0.1902.0(chokidar@4.0.3)(webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.0)))(webpack@5.98.0(esbuild@0.25.0))
- '@angular-devkit/core': 19.2.0(chokidar@4.0.3)
- '@angular/build': 19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.13.8)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(less@4.2.2)(postcss@8.5.2)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3)))(terser@5.39.0)(typescript@5.5.3)(yaml@2.7.0)
- '@angular/compiler-cli': 19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3)
- '@babel/core': 7.26.9
- '@babel/generator': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.9)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-runtime': 7.26.9(@babel/core@7.26.9)
- '@babel/preset-env': 7.26.9(@babel/core@7.26.9)
- '@babel/runtime': 7.26.9
- '@discoveryjs/json-ext': 0.6.3
- '@ngtools/webpack': 19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(typescript@5.5.3)(webpack@5.98.0(esbuild@0.25.0))
- '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- ansi-colors: 4.1.3
- autoprefixer: 10.4.20(postcss@8.5.2)
- babel-loader: 9.2.1(@babel/core@7.26.9)(webpack@5.98.0(esbuild@0.25.0))
- browserslist: 4.24.4
- copy-webpack-plugin: 12.0.2(webpack@5.98.0(esbuild@0.25.0))
- css-loader: 7.1.2(webpack@5.98.0(esbuild@0.25.0))
- esbuild-wasm: 0.25.0
- fast-glob: 3.3.3
- http-proxy-middleware: 3.0.3
- istanbul-lib-instrument: 6.0.3
- jsonc-parser: 3.3.1
- karma-source-map-support: 1.4.0
- less: 4.2.2
- less-loader: 12.2.0(less@4.2.2)(webpack@5.98.0(esbuild@0.25.0))
- license-webpack-plugin: 4.0.2(webpack@5.98.0(esbuild@0.25.0))
- loader-utils: 3.3.1
- mini-css-extract-plugin: 2.9.2(webpack@5.98.0(esbuild@0.25.0))
- open: 10.1.0
- ora: 5.4.1
- picomatch: 4.0.2
- piscina: 4.8.0
- postcss: 8.5.2
- postcss-loader: 8.1.1(postcss@8.5.2)(typescript@5.5.3)(webpack@5.98.0(esbuild@0.25.0))
- resolve-url-loader: 5.0.0
- rxjs: 7.8.1
- sass: 1.85.0
- sass-loader: 16.0.5(sass@1.85.0)(webpack@5.98.0(esbuild@0.25.0))
- semver: 7.7.1
- source-map-loader: 5.0.0(webpack@5.98.0(esbuild@0.25.0))
- source-map-support: 0.5.21
- terser: 5.39.0
- tree-kill: 1.2.2
- tslib: 2.8.1
- typescript: 5.5.3
- webpack: 5.98.0(esbuild@0.24.2)
- webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.0))
- webpack-dev-server: 5.2.0(webpack@5.98.0(esbuild@0.25.0))
- webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0(webpack@5.98.0(esbuild@0.25.0))
- optionalDependencies:
- esbuild: 0.25.0
- karma: 6.4.4
- tailwindcss: 3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3))
- transitivePeerDependencies:
- - '@angular/compiler'
- - '@rspack/core'
- - '@swc/core'
- - '@types/node'
- - bufferutil
- - chokidar
- - debug
- - html-webpack-plugin
- - jiti
- - lightningcss
- - node-sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - tsx
- - uglify-js
- - utf-8-validate
- - vite
- - webpack-cli
- - yaml
-
- '@angular-devkit/build-webpack@0.1902.0(chokidar@4.0.3)(webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.0)))(webpack@5.98.0(esbuild@0.25.0))':
- dependencies:
- '@angular-devkit/architect': 0.1902.0(chokidar@4.0.3)
- rxjs: 7.8.1
- webpack: 5.98.0(esbuild@0.24.2)
- webpack-dev-server: 5.2.0(webpack@5.98.0(esbuild@0.25.0))
- transitivePeerDependencies:
- - chokidar
-
- '@angular-devkit/core@19.2.0(chokidar@4.0.3)':
- dependencies:
- ajv: 8.17.1
- ajv-formats: 3.0.1(ajv@8.17.1)
- jsonc-parser: 3.3.1
- picomatch: 4.0.2
- rxjs: 7.8.1
- source-map: 0.7.4
- optionalDependencies:
- chokidar: 4.0.3
-
- '@angular-devkit/schematics@19.2.0(chokidar@4.0.3)':
- dependencies:
- '@angular-devkit/core': 19.2.0(chokidar@4.0.3)
- jsonc-parser: 3.3.1
- magic-string: 0.30.17
- ora: 5.4.1
- rxjs: 7.8.1
- transitivePeerDependencies:
- - chokidar
-
- '@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))':
- dependencies:
- '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
- tslib: 2.8.1
-
- '@angular/build@19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.13.8)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(less@4.2.2)(postcss@8.5.2)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3)))(terser@5.39.0)(typescript@5.5.3)(yaml@2.7.0)':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1902.0(chokidar@4.0.3)
- '@angular/compiler': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- '@angular/compiler-cli': 19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3)
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.9)
- '@inquirer/confirm': 5.1.6(@types/node@22.13.8)
- '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- beasties: 0.2.0
- browserslist: 4.24.4
- esbuild: 0.25.0
- fast-glob: 3.3.3
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
- istanbul-lib-instrument: 6.0.3
- listr2: 8.2.5
- magic-string: 0.30.17
- mrmime: 2.0.1
- parse5-html-rewriting-stream: 7.0.0
- picomatch: 4.0.2
- piscina: 4.8.0
- rollup: 4.34.8
- sass: 1.85.0
- semver: 7.7.1
- source-map-support: 0.5.21
- typescript: 5.5.3
- vite: 6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- watchpack: 2.4.2
- optionalDependencies:
- karma: 6.4.4
- less: 4.2.2
- lmdb: 3.2.6
- postcss: 8.5.2
- tailwindcss: 3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3))
- transitivePeerDependencies:
- - '@types/node'
- - chokidar
- - jiti
- - lightningcss
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
-
- '@angular/cdk@19.2.1(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)':
- dependencies:
- '@angular/common': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
- rxjs: 7.8.1
- tslib: 2.8.1
- optionalDependencies:
- parse5: 7.2.1
-
- '@angular/cli@19.2.0(@types/node@22.13.8)(chokidar@4.0.3)':
- dependencies:
- '@angular-devkit/architect': 0.1902.0(chokidar@4.0.3)
- '@angular-devkit/core': 19.2.0(chokidar@4.0.3)
- '@angular-devkit/schematics': 19.2.0(chokidar@4.0.3)
- '@inquirer/prompts': 7.3.2(@types/node@22.13.8)
- '@listr2/prompt-adapter-inquirer': 2.0.18(@inquirer/prompts@7.3.2(@types/node@22.13.8))
- '@schematics/angular': 19.2.0(chokidar@4.0.3)
- '@yarnpkg/lockfile': 1.1.0
- ini: 5.0.0
- jsonc-parser: 3.3.1
- listr2: 8.2.5
- npm-package-arg: 12.0.2
- npm-pick-manifest: 10.0.0
- pacote: 20.0.0
- resolve: 1.22.10
- semver: 7.7.1
- symbol-observable: 4.0.0
- yargs: 17.7.2
- transitivePeerDependencies:
- - '@types/node'
- - chokidar
- - supports-color
-
- '@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)':
- dependencies:
- '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
- rxjs: 7.8.1
- tslib: 2.8.1
-
- '@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3)':
- dependencies:
- '@angular/compiler': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- '@babel/core': 7.26.9
- '@jridgewell/sourcemap-codec': 1.5.0
- chokidar: 4.0.3
- convert-source-map: 1.9.0
- reflect-metadata: 0.2.2
- semver: 7.7.1
- tslib: 2.8.1
- typescript: 5.5.3
- yargs: 17.7.2
- transitivePeerDependencies:
- - supports-color
-
- '@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))':
- dependencies:
- tslib: 2.8.1
- optionalDependencies:
- '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
-
- '@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)':
- dependencies:
- rxjs: 7.8.1
- tslib: 2.8.1
- zone.js: 0.15.0
-
- '@angular/forms@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)':
- dependencies:
- '@angular/common': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/platform-browser': 19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- rxjs: 7.8.1
- tslib: 2.8.1
-
- '@angular/material@19.2.1(@angular/cdk@19.2.1(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/forms@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)':
- dependencies:
- '@angular/cdk': 19.2.1(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/common': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/forms': 19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
- '@angular/platform-browser': 19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- rxjs: 7.8.1
- tslib: 2.8.1
-
- '@angular/platform-browser-dynamic@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))':
- dependencies:
- '@angular/common': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/compiler': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/platform-browser': 19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- tslib: 2.8.1
-
- '@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))':
- dependencies:
- '@angular/common': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
- tslib: 2.8.1
- optionalDependencies:
- '@angular/animations': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
-
- '@angular/router@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)':
- dependencies:
- '@angular/common': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/platform-browser': 19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
- rxjs: 7.8.1
- tslib: 2.8.1
-
- '@antfu/utils@0.7.10': {}
-
- '@arethetypeswrong/cli@0.17.2':
- dependencies:
- '@arethetypeswrong/core': 0.17.2
- chalk: 4.1.2
- cli-table3: 0.6.5
- commander: 10.0.1
- marked: 9.1.6
- marked-terminal: 7.3.0(marked@9.1.6)
- semver: 7.7.0
-
- '@arethetypeswrong/core@0.17.2':
- dependencies:
- '@andrewbranch/untar.js': 1.0.3
- cjs-module-lexer: 1.4.1
- fflate: 0.8.2
- lru-cache: 10.4.3
- semver: 7.7.1
- typescript: 5.6.1-rc
- validate-npm-package-name: 5.0.1
-
- '@babel/code-frame@7.26.2':
- dependencies:
- '@babel/helper-validator-identifier': 7.25.9
- js-tokens: 4.0.0
- picocolors: 1.1.1
-
- '@babel/compat-data@7.26.5': {}
-
- '@babel/compat-data@7.26.8': {}
-
- '@babel/core@7.26.7':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.5
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7)
- '@babel/helpers': 7.26.7
- '@babel/parser': 7.26.7
- '@babel/template': 7.25.9
- '@babel/traverse': 7.26.7
- '@babel/types': 7.26.7
- convert-source-map: 2.0.0
- debug: 4.4.0(supports-color@9.4.0)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/core@7.26.9':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helpers': 7.26.9
- '@babel/parser': 7.26.9
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- convert-source-map: 2.0.0
- debug: 4.4.0(supports-color@9.4.0)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/generator@7.26.5':
- dependencies:
- '@babel/parser': 7.26.7
- '@babel/types': 7.26.7
- '@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 3.1.0
-
- '@babel/generator@7.26.9':
- dependencies:
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
- '@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 3.1.0
-
- '@babel/helper-annotate-as-pure@7.25.9':
- dependencies:
- '@babel/types': 7.26.9
-
- '@babel/helper-compilation-targets@7.26.5':
- dependencies:
- '@babel/compat-data': 7.26.5
- '@babel/helper-validator-option': 7.25.9
- browserslist: 4.24.4
- lru-cache: 5.1.1
- semver: 6.3.1
-
- '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.7)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.9
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.9
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-create-class-features-plugin@7.26.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.9
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- regexpu-core: 6.2.0
- semver: 6.3.1
-
- '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- debug: 4.4.0(supports-color@9.4.0)
- lodash.debounce: 4.0.8
- resolve: 1.22.10
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-member-expression-to-functions@7.25.9':
- dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-imports@7.25.9':
- dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-optimise-call-expression@7.25.9':
- dependencies:
- '@babel/types': 7.26.9
-
- '@babel/helper-plugin-utils@7.26.5': {}
-
- '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
- dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-split-export-declaration@7.24.7':
- dependencies:
- '@babel/types': 7.26.9
-
- '@babel/helper-string-parser@7.25.9': {}
-
- '@babel/helper-validator-identifier@7.25.9': {}
-
- '@babel/helper-validator-option@7.25.9': {}
-
- '@babel/helper-wrap-function@7.25.9':
- dependencies:
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helpers@7.26.7':
- dependencies:
- '@babel/template': 7.25.9
- '@babel/types': 7.26.7
-
- '@babel/helpers@7.26.9':
- dependencies:
- '@babel/template': 7.26.9
- '@babel/types': 7.26.9
-
- '@babel/parser@7.26.7':
- dependencies:
- '@babel/types': 7.26.7
-
- '@babel/parser@7.26.9':
- dependencies:
- '@babel/types': 7.26.9
-
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
-
- '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.9)
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
- '@babel/traverse': 7.26.9
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/template': 7.26.9
-
- '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-for-of@7.26.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.9)
-
- '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- regenerator-transform: 0.15.2
-
- '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-runtime@7.26.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.9)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.9)
- babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.9)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-typescript@7.26.7(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.7)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-typescript@7.26.7(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/preset-env@7.26.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-validator-option': 7.25.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.9)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.9)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.9)
- '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-for-of': 7.26.9(@babel/core@7.26.9)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.9)
- '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.9)
- '@babel/plugin-transform-typeof-symbol': 7.26.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.9)
- babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.9)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.9)
- babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.9)
- core-js-compat: 3.41.0
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/types': 7.26.9
- esutils: 2.0.3
-
- '@babel/runtime@7.26.9':
- dependencies:
- regenerator-runtime: 0.14.1
-
- '@babel/standalone@7.26.7': {}
-
- '@babel/template@7.25.9':
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.7
- '@babel/types': 7.26.7
-
- '@babel/template@7.26.9':
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
-
- '@babel/traverse@7.26.7':
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.9
- '@babel/parser': 7.26.7
- '@babel/template': 7.25.9
- '@babel/types': 7.26.7
- debug: 4.4.0(supports-color@9.4.0)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/traverse@7.26.9':
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.9
- '@babel/parser': 7.26.9
- '@babel/template': 7.26.9
- '@babel/types': 7.26.9
- debug: 4.4.0(supports-color@9.4.0)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/types@7.26.7':
- dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
-
- '@babel/types@7.26.9':
- dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
-
- '@bcoe/v8-coverage@0.2.3': {}
-
- '@changesets/apply-release-plan@7.0.8':
- dependencies:
- '@changesets/config': 3.0.5
- '@changesets/get-version-range-type': 0.4.0
- '@changesets/git': 3.0.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- detect-indent: 6.1.0
- fs-extra: 7.0.1
- lodash.startcase: 4.4.0
- outdent: 0.5.0
- prettier: 2.8.8
- resolve-from: 5.0.0
- semver: 7.7.1
-
- '@changesets/assemble-release-plan@6.0.5':
- dependencies:
- '@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- semver: 7.7.1
-
- '@changesets/changelog-git@0.2.0':
- dependencies:
- '@changesets/types': 6.0.0
-
- '@changesets/changelog-github@0.5.0(encoding@0.1.13)':
- dependencies:
- '@changesets/get-github-info': 0.6.0(encoding@0.1.13)
- '@changesets/types': 6.0.0
- dotenv: 8.6.0
- transitivePeerDependencies:
- - encoding
-
- '@changesets/cli@2.27.8':
- dependencies:
- '@changesets/apply-release-plan': 7.0.8
- '@changesets/assemble-release-plan': 6.0.5
- '@changesets/changelog-git': 0.2.0
- '@changesets/config': 3.0.5
- '@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
- '@changesets/get-release-plan': 4.0.6
- '@changesets/git': 3.0.2
- '@changesets/logger': 0.1.1
- '@changesets/pre': 2.0.1
- '@changesets/read': 0.6.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
- '@changesets/write': 0.3.2
- '@manypkg/get-packages': 1.1.3
- '@types/semver': 7.5.8
- ansi-colors: 4.1.3
- ci-info: 3.9.0
- enquirer: 2.4.1
- external-editor: 3.1.0
- fs-extra: 7.0.1
- mri: 1.2.0
- outdent: 0.5.0
- p-limit: 2.3.0
- package-manager-detector: 0.2.8
- picocolors: 1.1.1
- resolve-from: 5.0.0
- semver: 7.7.0
- spawndamnit: 2.0.0
- term-size: 2.2.1
-
- '@changesets/config@3.0.5':
- dependencies:
- '@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
- '@changesets/logger': 0.1.1
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- fs-extra: 7.0.1
- micromatch: 4.0.8
-
- '@changesets/errors@0.2.0':
- dependencies:
- extendable-error: 0.1.7
-
- '@changesets/get-dependents-graph@2.1.2':
- dependencies:
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- picocolors: 1.1.1
- semver: 7.7.1
-
- '@changesets/get-github-info@0.6.0(encoding@0.1.13)':
- dependencies:
- dataloader: 1.4.0
- node-fetch: 2.7.0(encoding@0.1.13)
- transitivePeerDependencies:
- - encoding
-
- '@changesets/get-release-plan@4.0.6':
- dependencies:
- '@changesets/assemble-release-plan': 6.0.5
- '@changesets/config': 3.0.5
- '@changesets/pre': 2.0.1
- '@changesets/read': 0.6.2
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
-
- '@changesets/get-version-range-type@0.4.0': {}
-
- '@changesets/git@3.0.2':
- dependencies:
- '@changesets/errors': 0.2.0
- '@manypkg/get-packages': 1.1.3
- is-subdir: 1.2.0
- micromatch: 4.0.8
- spawndamnit: 3.0.1
-
- '@changesets/logger@0.1.1':
- dependencies:
- picocolors: 1.1.1
-
- '@changesets/parse@0.4.0':
- dependencies:
- '@changesets/types': 6.0.0
- js-yaml: 3.14.1
-
- '@changesets/pre@2.0.1':
- dependencies:
- '@changesets/errors': 0.2.0
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- fs-extra: 7.0.1
-
- '@changesets/read@0.6.2':
- dependencies:
- '@changesets/git': 3.0.2
- '@changesets/logger': 0.1.1
- '@changesets/parse': 0.4.0
- '@changesets/types': 6.0.0
- fs-extra: 7.0.1
- p-filter: 2.1.0
- picocolors: 1.1.1
-
- '@changesets/should-skip-package@0.1.1':
- dependencies:
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
-
- '@changesets/types@4.1.0': {}
-
- '@changesets/types@6.0.0': {}
-
- '@changesets/write@0.3.2':
- dependencies:
- '@changesets/types': 6.0.0
- fs-extra: 7.0.1
- human-id: 1.0.2
- prettier: 2.8.8
-
- '@cloudflare/kv-asset-handler@0.3.4':
- dependencies:
- mime: 3.0.0
-
- '@colors/colors@1.5.0': {}
-
- '@cspotcode/source-map-support@0.8.1':
- dependencies:
- '@jridgewell/trace-mapping': 0.3.9
-
- '@discoveryjs/json-ext@0.6.3': {}
-
- '@docsearch/css@3.8.3': {}
-
- '@docsearch/js@3.8.3(@algolia/client-search@5.20.0)(search-insights@2.17.3)':
- dependencies:
- '@docsearch/react': 3.8.3(@algolia/client-search@5.20.0)(search-insights@2.17.3)
- preact: 10.25.4
- transitivePeerDependencies:
- - '@algolia/client-search'
- - '@types/react'
- - react
- - react-dom
- - search-insights
-
- '@docsearch/react@3.8.3(@algolia/client-search@5.20.0)(search-insights@2.17.3)':
- dependencies:
- '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.20.0)(algoliasearch@5.20.0)(search-insights@2.17.3)
- '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.20.0)(algoliasearch@5.20.0)
- '@docsearch/css': 3.8.3
- algoliasearch: 5.20.0
- optionalDependencies:
- search-insights: 2.17.3
- transitivePeerDependencies:
- - '@algolia/client-search'
-
- '@emnapi/runtime@1.3.1':
- dependencies:
- tslib: 2.8.1
- optional: true
-
- '@esbuild/aix-ppc64@0.21.5':
- optional: true
-
- '@esbuild/aix-ppc64@0.24.2':
- optional: true
-
- '@esbuild/aix-ppc64@0.25.0':
- optional: true
-
- '@esbuild/android-arm64@0.21.5':
- optional: true
-
- '@esbuild/android-arm64@0.24.2':
- optional: true
-
- '@esbuild/android-arm64@0.25.0':
- optional: true
-
- '@esbuild/android-arm@0.21.5':
- optional: true
-
- '@esbuild/android-arm@0.24.2':
- optional: true
-
- '@esbuild/android-arm@0.25.0':
- optional: true
-
- '@esbuild/android-x64@0.21.5':
- optional: true
-
- '@esbuild/android-x64@0.24.2':
- optional: true
-
- '@esbuild/android-x64@0.25.0':
- optional: true
-
- '@esbuild/darwin-arm64@0.21.5':
- optional: true
-
- '@esbuild/darwin-arm64@0.24.2':
- optional: true
-
- '@esbuild/darwin-arm64@0.25.0':
- optional: true
-
- '@esbuild/darwin-x64@0.21.5':
- optional: true
-
- '@esbuild/darwin-x64@0.24.2':
- optional: true
-
- '@esbuild/darwin-x64@0.25.0':
- optional: true
-
- '@esbuild/freebsd-arm64@0.21.5':
- optional: true
-
- '@esbuild/freebsd-arm64@0.24.2':
- optional: true
-
- '@esbuild/freebsd-arm64@0.25.0':
- optional: true
-
- '@esbuild/freebsd-x64@0.21.5':
- optional: true
-
- '@esbuild/freebsd-x64@0.24.2':
- optional: true
-
- '@esbuild/freebsd-x64@0.25.0':
- optional: true
-
- '@esbuild/linux-arm64@0.21.5':
- optional: true
-
- '@esbuild/linux-arm64@0.24.2':
- optional: true
-
- '@esbuild/linux-arm64@0.25.0':
- optional: true
-
- '@esbuild/linux-arm@0.21.5':
- optional: true
-
- '@esbuild/linux-arm@0.24.2':
- optional: true
-
- '@esbuild/linux-arm@0.25.0':
- optional: true
-
- '@esbuild/linux-ia32@0.21.5':
- optional: true
-
- '@esbuild/linux-ia32@0.24.2':
- optional: true
-
- '@esbuild/linux-ia32@0.25.0':
- optional: true
-
- '@esbuild/linux-loong64@0.21.5':
- optional: true
-
- '@esbuild/linux-loong64@0.24.2':
- optional: true
-
- '@esbuild/linux-loong64@0.25.0':
- optional: true
-
- '@esbuild/linux-mips64el@0.21.5':
- optional: true
-
- '@esbuild/linux-mips64el@0.24.2':
- optional: true
-
- '@esbuild/linux-mips64el@0.25.0':
- optional: true
-
- '@esbuild/linux-ppc64@0.21.5':
- optional: true
-
- '@esbuild/linux-ppc64@0.24.2':
- optional: true
-
- '@esbuild/linux-ppc64@0.25.0':
- optional: true
-
- '@esbuild/linux-riscv64@0.21.5':
- optional: true
-
- '@esbuild/linux-riscv64@0.24.2':
- optional: true
-
- '@esbuild/linux-riscv64@0.25.0':
- optional: true
-
- '@esbuild/linux-s390x@0.21.5':
- optional: true
-
- '@esbuild/linux-s390x@0.24.2':
- optional: true
-
- '@esbuild/linux-s390x@0.25.0':
- optional: true
-
- '@esbuild/linux-x64@0.21.5':
- optional: true
-
- '@esbuild/linux-x64@0.24.2':
- optional: true
-
- '@esbuild/linux-x64@0.25.0':
- optional: true
-
- '@esbuild/netbsd-arm64@0.24.2':
- optional: true
-
- '@esbuild/netbsd-arm64@0.25.0':
- optional: true
-
- '@esbuild/netbsd-x64@0.21.5':
- optional: true
-
- '@esbuild/netbsd-x64@0.24.2':
- optional: true
-
- '@esbuild/netbsd-x64@0.25.0':
- optional: true
-
- '@esbuild/openbsd-arm64@0.24.2':
- optional: true
-
- '@esbuild/openbsd-arm64@0.25.0':
- optional: true
-
- '@esbuild/openbsd-x64@0.21.5':
- optional: true
-
- '@esbuild/openbsd-x64@0.24.2':
- optional: true
-
- '@esbuild/openbsd-x64@0.25.0':
- optional: true
-
- '@esbuild/sunos-x64@0.21.5':
- optional: true
-
- '@esbuild/sunos-x64@0.24.2':
- optional: true
-
- '@esbuild/sunos-x64@0.25.0':
- optional: true
-
- '@esbuild/win32-arm64@0.21.5':
- optional: true
-
- '@esbuild/win32-arm64@0.24.2':
- optional: true
-
- '@esbuild/win32-arm64@0.25.0':
- optional: true
-
- '@esbuild/win32-ia32@0.21.5':
- optional: true
-
- '@esbuild/win32-ia32@0.24.2':
- optional: true
-
- '@esbuild/win32-ia32@0.25.0':
- optional: true
-
- '@esbuild/win32-x64@0.21.5':
- optional: true
-
- '@esbuild/win32-x64@0.24.2':
- optional: true
-
- '@esbuild/win32-x64@0.25.0':
- optional: true
-
- '@eslint-community/eslint-utils@4.4.1(eslint@9.17.0(jiti@2.4.2))':
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
- eslint-visitor-keys: 3.4.3
-
- '@eslint-community/regexpp@4.12.1': {}
-
- '@eslint/config-array@0.19.1':
- dependencies:
- '@eslint/object-schema': 2.1.5
- debug: 4.4.0(supports-color@9.4.0)
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
-
- '@eslint/core@0.10.0':
- dependencies:
- '@types/json-schema': 7.0.15
-
- '@eslint/core@0.9.1':
- dependencies:
- '@types/json-schema': 7.0.15
-
- '@eslint/eslintrc@3.2.0':
- dependencies:
- ajv: 6.12.6
- debug: 4.4.0(supports-color@9.4.0)
- espree: 10.3.0
- globals: 14.0.0
- ignore: 5.3.2
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- minimatch: 3.1.2
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
-
- '@eslint/js@9.17.0': {}
-
- '@eslint/object-schema@2.1.5': {}
-
- '@eslint/plugin-kit@0.2.5':
- dependencies:
- '@eslint/core': 0.10.0
- levn: 0.4.1
-
- '@fastify/ajv-compiler@4.0.2':
- dependencies:
- ajv: 8.17.1
- ajv-formats: 3.0.1(ajv@8.17.1)
- fast-uri: 3.0.6
-
- '@fastify/error@4.0.0': {}
-
- '@fastify/fast-json-stringify-compiler@5.0.2':
- dependencies:
- fast-json-stringify: 6.0.1
-
- '@fastify/merge-json-schemas@0.2.1':
- dependencies:
- dequal: 2.0.3
-
- '@floating-ui/core@1.6.9':
- dependencies:
- '@floating-ui/utils': 0.2.9
-
- '@floating-ui/dom@1.6.13':
- dependencies:
- '@floating-ui/core': 1.6.9
- '@floating-ui/utils': 0.2.9
-
- '@floating-ui/react-dom@2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@floating-ui/dom': 1.6.13
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@floating-ui/utils@0.2.9': {}
-
- '@fontsource/fira-mono@5.0.0': {}
-
- '@hey-api/json-schema-ref-parser@1.0.2':
- dependencies:
- '@jsdevtools/ono': 7.1.3
- '@types/json-schema': 7.0.15
- js-yaml: 4.1.0
-
- '@humanfs/core@0.19.1': {}
-
- '@humanfs/node@0.16.6':
- dependencies:
- '@humanfs/core': 0.19.1
- '@humanwhocodes/retry': 0.3.1
-
- '@humanwhocodes/module-importer@1.0.1': {}
-
- '@humanwhocodes/retry@0.3.1': {}
-
- '@humanwhocodes/retry@0.4.1': {}
-
- '@img/sharp-darwin-arm64@0.33.5':
- optionalDependencies:
- '@img/sharp-libvips-darwin-arm64': 1.0.4
- optional: true
-
- '@img/sharp-darwin-x64@0.33.5':
- optionalDependencies:
- '@img/sharp-libvips-darwin-x64': 1.0.4
- optional: true
-
- '@img/sharp-libvips-darwin-arm64@1.0.4':
- optional: true
-
- '@img/sharp-libvips-darwin-x64@1.0.4':
- optional: true
-
- '@img/sharp-libvips-linux-arm64@1.0.4':
- optional: true
-
- '@img/sharp-libvips-linux-arm@1.0.5':
- optional: true
-
- '@img/sharp-libvips-linux-s390x@1.0.4':
- optional: true
-
- '@img/sharp-libvips-linux-x64@1.0.4':
- optional: true
-
- '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
- optional: true
-
- '@img/sharp-libvips-linuxmusl-x64@1.0.4':
- optional: true
-
- '@img/sharp-linux-arm64@0.33.5':
- optionalDependencies:
- '@img/sharp-libvips-linux-arm64': 1.0.4
- optional: true
-
- '@img/sharp-linux-arm@0.33.5':
- optionalDependencies:
- '@img/sharp-libvips-linux-arm': 1.0.5
- optional: true
-
- '@img/sharp-linux-s390x@0.33.5':
- optionalDependencies:
- '@img/sharp-libvips-linux-s390x': 1.0.4
- optional: true
-
- '@img/sharp-linux-x64@0.33.5':
- optionalDependencies:
- '@img/sharp-libvips-linux-x64': 1.0.4
- optional: true
-
- '@img/sharp-linuxmusl-arm64@0.33.5':
- optionalDependencies:
- '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
- optional: true
-
- '@img/sharp-linuxmusl-x64@0.33.5':
- optionalDependencies:
- '@img/sharp-libvips-linuxmusl-x64': 1.0.4
- optional: true
-
- '@img/sharp-wasm32@0.33.5':
- dependencies:
- '@emnapi/runtime': 1.3.1
- optional: true
-
- '@img/sharp-win32-ia32@0.33.5':
- optional: true
-
- '@img/sharp-win32-x64@0.33.5':
- optional: true
-
- '@inquirer/checkbox@4.1.2(@types/node@22.13.8)':
- dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.8)
- '@inquirer/figures': 1.0.10
- '@inquirer/type': 3.0.4(@types/node@22.13.8)
- ansi-escapes: 4.3.2
- yoctocolors-cjs: 2.1.2
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/confirm@5.1.6(@types/node@22.13.8)':
- dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.8)
- '@inquirer/type': 3.0.4(@types/node@22.13.8)
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/core@10.1.7(@types/node@22.13.8)':
- dependencies:
- '@inquirer/figures': 1.0.10
- '@inquirer/type': 3.0.4(@types/node@22.13.8)
- ansi-escapes: 4.3.2
- cli-width: 4.1.0
- mute-stream: 2.0.0
- signal-exit: 4.1.0
- wrap-ansi: 6.2.0
- yoctocolors-cjs: 2.1.2
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/editor@4.2.7(@types/node@22.13.8)':
- dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.8)
- '@inquirer/type': 3.0.4(@types/node@22.13.8)
- external-editor: 3.1.0
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/expand@4.0.9(@types/node@22.13.8)':
- dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.8)
- '@inquirer/type': 3.0.4(@types/node@22.13.8)
- yoctocolors-cjs: 2.1.2
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/figures@1.0.10': {}
-
- '@inquirer/input@4.1.6(@types/node@22.13.8)':
- dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.8)
- '@inquirer/type': 3.0.4(@types/node@22.13.8)
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/number@3.0.9(@types/node@22.13.8)':
- dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.8)
- '@inquirer/type': 3.0.4(@types/node@22.13.8)
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/password@4.0.9(@types/node@22.13.8)':
- dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.8)
- '@inquirer/type': 3.0.4(@types/node@22.13.8)
- ansi-escapes: 4.3.2
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/prompts@7.3.2(@types/node@22.13.8)':
- dependencies:
- '@inquirer/checkbox': 4.1.2(@types/node@22.13.8)
- '@inquirer/confirm': 5.1.6(@types/node@22.13.8)
- '@inquirer/editor': 4.2.7(@types/node@22.13.8)
- '@inquirer/expand': 4.0.9(@types/node@22.13.8)
- '@inquirer/input': 4.1.6(@types/node@22.13.8)
- '@inquirer/number': 3.0.9(@types/node@22.13.8)
- '@inquirer/password': 4.0.9(@types/node@22.13.8)
- '@inquirer/rawlist': 4.0.9(@types/node@22.13.8)
- '@inquirer/search': 3.0.9(@types/node@22.13.8)
- '@inquirer/select': 4.0.9(@types/node@22.13.8)
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/rawlist@4.0.9(@types/node@22.13.8)':
- dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.8)
- '@inquirer/type': 3.0.4(@types/node@22.13.8)
- yoctocolors-cjs: 2.1.2
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/search@3.0.9(@types/node@22.13.8)':
- dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.8)
- '@inquirer/figures': 1.0.10
- '@inquirer/type': 3.0.4(@types/node@22.13.8)
- yoctocolors-cjs: 2.1.2
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/select@4.0.9(@types/node@22.13.8)':
- dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.8)
- '@inquirer/figures': 1.0.10
- '@inquirer/type': 3.0.4(@types/node@22.13.8)
- ansi-escapes: 4.3.2
- yoctocolors-cjs: 2.1.2
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/type@1.5.5':
- dependencies:
- mute-stream: 1.0.0
-
- '@inquirer/type@3.0.4(@types/node@22.13.8)':
- optionalDependencies:
- '@types/node': 22.13.8
-
- '@ioredis/commands@1.2.0': {}
-
- '@isaacs/cliui@8.0.2':
- dependencies:
- string-width: 5.1.2
- string-width-cjs: string-width@4.2.3
- strip-ansi: 7.1.0
- strip-ansi-cjs: strip-ansi@6.0.1
- wrap-ansi: 8.1.0
- wrap-ansi-cjs: wrap-ansi@7.0.0
-
- '@isaacs/fs-minipass@4.0.1':
- dependencies:
- minipass: 7.1.2
-
- '@istanbuljs/schema@0.1.3': {}
-
- '@jest/schemas@29.6.3':
- dependencies:
- '@sinclair/typebox': 0.27.8
-
- '@jridgewell/gen-mapping@0.3.8':
- dependencies:
- '@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.25
-
- '@jridgewell/resolve-uri@3.1.2': {}
-
- '@jridgewell/set-array@1.2.1': {}
-
- '@jridgewell/source-map@0.3.6':
- dependencies:
- '@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.25
-
- '@jridgewell/sourcemap-codec@1.5.0': {}
-
- '@jridgewell/trace-mapping@0.3.25':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
-
- '@jridgewell/trace-mapping@0.3.9':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
-
- '@jsdevtools/ono@7.1.3': {}
-
- '@jsonjoy.com/base64@1.1.2(tslib@2.8.1)':
- dependencies:
- tslib: 2.8.1
-
- '@jsonjoy.com/json-pack@1.1.1(tslib@2.8.1)':
- dependencies:
- '@jsonjoy.com/base64': 1.1.2(tslib@2.8.1)
- '@jsonjoy.com/util': 1.5.0(tslib@2.8.1)
- hyperdyperid: 1.2.0
- thingies: 1.21.0(tslib@2.8.1)
- tslib: 2.8.1
-
- '@jsonjoy.com/util@1.5.0(tslib@2.8.1)':
- dependencies:
- tslib: 2.8.1
-
- '@kwsites/file-exists@1.1.1':
- dependencies:
- debug: 4.4.0(supports-color@9.4.0)
- transitivePeerDependencies:
- - supports-color
-
- '@kwsites/promise-deferred@1.1.1': {}
-
- '@leichtgewicht/ip-codec@2.0.5': {}
-
- '@listr2/prompt-adapter-inquirer@2.0.18(@inquirer/prompts@7.3.2(@types/node@22.13.8))':
- dependencies:
- '@inquirer/prompts': 7.3.2(@types/node@22.13.8)
- '@inquirer/type': 1.5.5
-
- '@lmdb/lmdb-darwin-arm64@3.2.6':
- optional: true
-
- '@lmdb/lmdb-darwin-x64@3.2.6':
- optional: true
-
- '@lmdb/lmdb-linux-arm64@3.2.6':
- optional: true
-
- '@lmdb/lmdb-linux-arm@3.2.6':
- optional: true
-
- '@lmdb/lmdb-linux-x64@3.2.6':
- optional: true
-
- '@lmdb/lmdb-win32-x64@3.2.6':
- optional: true
-
- '@manypkg/find-root@1.1.0':
- dependencies:
- '@babel/runtime': 7.26.9
- '@types/node': 12.20.55
- find-up: 4.1.0
- fs-extra: 8.1.0
-
- '@manypkg/get-packages@1.1.3':
- dependencies:
- '@babel/runtime': 7.26.9
- '@changesets/types': 4.1.0
- '@manypkg/find-root': 1.1.0
- fs-extra: 8.1.0
- globby: 11.1.0
- read-yaml-file: 1.1.0
-
- '@mapbox/node-pre-gyp@2.0.0(encoding@0.1.13)':
- dependencies:
- consola: 3.4.0
- detect-libc: 2.0.3
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
- node-fetch: 2.7.0(encoding@0.1.13)
- nopt: 8.1.0
- semver: 7.7.1
- tar: 7.4.3
- transitivePeerDependencies:
- - encoding
- - supports-color
-
- '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
- optional: true
-
- '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
- optional: true
-
- '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
- optional: true
-
- '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
- optional: true
-
- '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
- optional: true
-
- '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
- optional: true
-
- '@napi-rs/nice-android-arm-eabi@1.0.1':
- optional: true
-
- '@napi-rs/nice-android-arm64@1.0.1':
- optional: true
-
- '@napi-rs/nice-darwin-arm64@1.0.1':
- optional: true
-
- '@napi-rs/nice-darwin-x64@1.0.1':
- optional: true
-
- '@napi-rs/nice-freebsd-x64@1.0.1':
- optional: true
-
- '@napi-rs/nice-linux-arm-gnueabihf@1.0.1':
- optional: true
-
- '@napi-rs/nice-linux-arm64-gnu@1.0.1':
- optional: true
-
- '@napi-rs/nice-linux-arm64-musl@1.0.1':
- optional: true
-
- '@napi-rs/nice-linux-ppc64-gnu@1.0.1':
- optional: true
-
- '@napi-rs/nice-linux-riscv64-gnu@1.0.1':
- optional: true
-
- '@napi-rs/nice-linux-s390x-gnu@1.0.1':
- optional: true
-
- '@napi-rs/nice-linux-x64-gnu@1.0.1':
- optional: true
-
- '@napi-rs/nice-linux-x64-musl@1.0.1':
- optional: true
-
- '@napi-rs/nice-win32-arm64-msvc@1.0.1':
- optional: true
-
- '@napi-rs/nice-win32-ia32-msvc@1.0.1':
- optional: true
-
- '@napi-rs/nice-win32-x64-msvc@1.0.1':
- optional: true
-
- '@napi-rs/nice@1.0.1':
- optionalDependencies:
- '@napi-rs/nice-android-arm-eabi': 1.0.1
- '@napi-rs/nice-android-arm64': 1.0.1
- '@napi-rs/nice-darwin-arm64': 1.0.1
- '@napi-rs/nice-darwin-x64': 1.0.1
- '@napi-rs/nice-freebsd-x64': 1.0.1
- '@napi-rs/nice-linux-arm-gnueabihf': 1.0.1
- '@napi-rs/nice-linux-arm64-gnu': 1.0.1
- '@napi-rs/nice-linux-arm64-musl': 1.0.1
- '@napi-rs/nice-linux-ppc64-gnu': 1.0.1
- '@napi-rs/nice-linux-riscv64-gnu': 1.0.1
- '@napi-rs/nice-linux-s390x-gnu': 1.0.1
- '@napi-rs/nice-linux-x64-gnu': 1.0.1
- '@napi-rs/nice-linux-x64-musl': 1.0.1
- '@napi-rs/nice-win32-arm64-msvc': 1.0.1
- '@napi-rs/nice-win32-ia32-msvc': 1.0.1
- '@napi-rs/nice-win32-x64-msvc': 1.0.1
- optional: true
-
- '@neoconfetti/svelte@2.0.0': {}
-
- '@netlify/functions@2.8.2':
- dependencies:
- '@netlify/serverless-functions-api': 1.26.1
-
- '@netlify/node-cookies@0.1.0': {}
-
- '@netlify/serverless-functions-api@1.26.1':
- dependencies:
- '@netlify/node-cookies': 0.1.0
- urlpattern-polyfill: 8.0.2
-
- '@next/env@15.1.6': {}
-
- '@next/eslint-plugin-next@15.1.6':
- dependencies:
- fast-glob: 3.3.1
-
- '@next/swc-darwin-arm64@15.1.6':
- optional: true
-
- '@next/swc-darwin-x64@15.1.6':
- optional: true
-
- '@next/swc-linux-arm64-gnu@15.1.6':
- optional: true
-
- '@next/swc-linux-arm64-musl@15.1.6':
- optional: true
-
- '@next/swc-linux-x64-gnu@15.1.6':
- optional: true
-
- '@next/swc-linux-x64-musl@15.1.6':
- optional: true
-
- '@next/swc-win32-arm64-msvc@15.1.6':
- optional: true
-
- '@next/swc-win32-x64-msvc@15.1.6':
- optional: true
-
- '@ngtools/webpack@19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3))(typescript@5.5.3)(webpack@5.98.0(esbuild@0.25.0))':
- dependencies:
- '@angular/compiler-cli': 19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.3)
- typescript: 5.5.3
- webpack: 5.98.0(esbuild@0.24.2)
-
- '@nodelib/fs.scandir@2.1.5':
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- run-parallel: 1.2.0
-
- '@nodelib/fs.stat@2.0.5': {}
-
- '@nodelib/fs.walk@1.2.8':
- dependencies:
- '@nodelib/fs.scandir': 2.1.5
- fastq: 1.18.0
-
- '@nolyfill/is-core-module@1.0.39': {}
-
- '@npmcli/agent@3.0.0':
- dependencies:
- agent-base: 7.1.3
- http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
- lru-cache: 10.4.3
- socks-proxy-agent: 8.0.5
- transitivePeerDependencies:
- - supports-color
-
- '@npmcli/fs@4.0.0':
- dependencies:
- semver: 7.7.1
-
- '@npmcli/git@6.0.3':
- dependencies:
- '@npmcli/promise-spawn': 8.0.2
- ini: 5.0.0
- lru-cache: 10.4.3
- npm-pick-manifest: 10.0.0
- proc-log: 5.0.0
- promise-retry: 2.0.1
- semver: 7.7.1
- which: 5.0.0
-
- '@npmcli/installed-package-contents@3.0.0':
- dependencies:
- npm-bundled: 4.0.0
- npm-normalize-package-bin: 4.0.0
-
- '@npmcli/node-gyp@4.0.0': {}
-
- '@npmcli/package-json@6.1.1':
- dependencies:
- '@npmcli/git': 6.0.3
- glob: 10.4.3
- hosted-git-info: 8.0.2
- json-parse-even-better-errors: 4.0.0
- proc-log: 5.0.0
- semver: 7.7.1
- validate-npm-package-license: 3.0.4
-
- '@npmcli/promise-spawn@8.0.2':
- dependencies:
- which: 5.0.0
-
- '@npmcli/redact@3.1.1': {}
-
- '@npmcli/run-script@9.0.2':
- dependencies:
- '@npmcli/node-gyp': 4.0.0
- '@npmcli/package-json': 6.1.1
- '@npmcli/promise-spawn': 8.0.2
- node-gyp: 11.1.0
- proc-log: 5.0.0
- which: 5.0.0
- transitivePeerDependencies:
- - supports-color
-
- '@nuxt/devalue@2.0.2': {}
-
- '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(rollup@4.31.0)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
- dependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.31.0)
- '@nuxt/schema': 3.15.4
- execa: 7.2.0
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(rollup@4.34.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
- dependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.34.9)
- '@nuxt/schema': 3.15.4
- execa: 7.2.0
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(rollup@4.34.9)(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
- dependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.34.9)
- '@nuxt/schema': 3.15.4
- execa: 7.2.0
- vite: 6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/devtools-wizard@1.7.0':
- dependencies:
- consola: 3.4.0
- diff: 7.0.0
- execa: 7.2.0
- global-directory: 4.0.1
- magicast: 0.3.5
- pathe: 1.1.2
- pkg-types: 1.3.1
- prompts: 2.4.2
- rc9: 2.1.2
- semver: 7.7.1
-
- '@nuxt/devtools@1.7.0(rollup@4.31.0)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- '@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(rollup@4.31.0)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- '@nuxt/devtools-wizard': 1.7.0
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.31.0)
- '@vue/devtools-core': 7.6.8(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))
- '@vue/devtools-kit': 7.6.8
- birpc: 0.2.19
- consola: 3.4.0
- cronstrue: 2.53.0
- destr: 2.0.3
- error-stack-parser-es: 0.1.5
- execa: 7.2.0
- fast-npm-meta: 0.2.2
- flatted: 3.3.2
- get-port-please: 3.1.2
- hookable: 5.5.3
- image-meta: 0.2.1
- is-installed-globally: 1.0.0
- launch-editor: 2.9.1
- local-pkg: 0.5.1
- magicast: 0.3.5
- nypm: 0.4.1
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- rc9: 2.1.2
- scule: 1.3.0
- semver: 7.7.1
- simple-git: 3.27.0
- sirv: 3.0.0
- tinyglobby: 0.2.10
- unimport: 3.14.6(rollup@4.31.0)
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5)(rollup@4.31.0))(rollup@4.31.0)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- vite-plugin-vue-inspector: 5.3.1(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- which: 3.0.1
- ws: 8.18.0
- transitivePeerDependencies:
- - bufferutil
- - rollup
- - supports-color
- - utf-8-validate
- - vue
-
- '@nuxt/devtools@1.7.0(rollup@4.34.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- '@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(rollup@4.34.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- '@nuxt/devtools-wizard': 1.7.0
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.34.9)
- '@vue/devtools-core': 7.6.8(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))
- '@vue/devtools-kit': 7.6.8
- birpc: 0.2.19
- consola: 3.4.0
- cronstrue: 2.53.0
- destr: 2.0.3
- error-stack-parser-es: 0.1.5
- execa: 7.2.0
- fast-npm-meta: 0.2.2
- flatted: 3.3.2
- get-port-please: 3.1.2
- hookable: 5.5.3
- image-meta: 0.2.1
- is-installed-globally: 1.0.0
- launch-editor: 2.9.1
- local-pkg: 0.5.1
- magicast: 0.3.5
- nypm: 0.4.1
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- rc9: 2.1.2
- scule: 1.3.0
- semver: 7.7.1
- simple-git: 3.27.0
- sirv: 3.0.0
- tinyglobby: 0.2.10
- unimport: 3.14.6(rollup@4.34.9)
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5)(rollup@4.34.9))(rollup@4.34.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- vite-plugin-vue-inspector: 5.3.1(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- which: 3.0.1
- ws: 8.18.0
- transitivePeerDependencies:
- - bufferutil
- - rollup
- - supports-color
- - utf-8-validate
- - vue
-
- '@nuxt/devtools@1.7.0(rollup@4.34.9)(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(rollup@4.34.9)(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- '@nuxt/devtools-wizard': 1.7.0
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.34.9)
- '@vue/devtools-core': 7.6.8(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
- '@vue/devtools-kit': 7.6.8
- birpc: 0.2.19
- consola: 3.4.0
- cronstrue: 2.53.0
- destr: 2.0.3
- error-stack-parser-es: 0.1.5
- execa: 7.2.0
- fast-npm-meta: 0.2.2
- flatted: 3.3.2
- get-port-please: 3.1.2
- hookable: 5.5.3
- image-meta: 0.2.1
- is-installed-globally: 1.0.0
- launch-editor: 2.9.1
- local-pkg: 0.5.1
- magicast: 0.3.5
- nypm: 0.4.1
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- rc9: 2.1.2
- scule: 1.3.0
- semver: 7.7.1
- simple-git: 3.27.0
- sirv: 3.0.0
- tinyglobby: 0.2.10
- unimport: 3.14.6(rollup@4.34.9)
- vite: 6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5)(rollup@4.34.9))(rollup@4.34.9)(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- vite-plugin-vue-inspector: 5.3.1(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- which: 3.0.1
- ws: 8.18.0
- transitivePeerDependencies:
- - bufferutil
- - rollup
- - supports-color
- - utf-8-validate
- - vue
-
- '@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.31.0)':
- dependencies:
- '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.31.0)
- c12: 2.0.1(magicast@0.3.5)
- consola: 3.4.0
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- hash-sum: 2.0.0
- ignore: 6.0.2
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- mlly: 1.7.4
- pathe: 1.1.2
- pkg-types: 1.3.1
- scule: 1.3.0
- semver: 7.7.1
- ufo: 1.5.4
- unctx: 2.4.1
- unimport: 3.14.6(rollup@4.31.0)
- untyped: 1.5.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.34.9)':
- dependencies:
- '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.34.9)
- c12: 2.0.1(magicast@0.3.5)
- consola: 3.4.0
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- hash-sum: 2.0.0
- ignore: 6.0.2
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- mlly: 1.7.4
- pathe: 1.1.2
- pkg-types: 1.3.1
- scule: 1.3.0
- semver: 7.7.1
- ufo: 1.5.4
- unctx: 2.4.1
- unimport: 3.14.6(rollup@4.34.9)
- untyped: 1.5.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/kit@3.15.4(magicast@0.3.5)(rollup@4.31.0)':
- dependencies:
- c12: 2.0.1(magicast@0.3.5)
- consola: 3.4.0
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- ignore: 7.0.3
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- mlly: 1.7.4
- ohash: 1.1.4
- pathe: 2.0.2
- pkg-types: 1.3.1
- scule: 1.3.0
- semver: 7.7.1
- std-env: 3.8.0
- ufo: 1.5.4
- unctx: 2.4.1
- unimport: 4.0.0(rollup@4.31.0)
- untyped: 1.5.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/kit@3.15.4(magicast@0.3.5)(rollup@4.34.9)':
- dependencies:
- c12: 2.0.1(magicast@0.3.5)
- consola: 3.4.0
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- ignore: 7.0.3
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- mlly: 1.7.4
- ohash: 1.1.4
- pathe: 2.0.2
- pkg-types: 1.3.1
- scule: 1.3.0
- semver: 7.7.1
- std-env: 3.8.0
- ufo: 1.5.4
- unctx: 2.4.1
- unimport: 4.0.0(rollup@4.34.9)
- untyped: 1.5.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/schema@3.14.1592(magicast@0.3.5)(rollup@4.31.0)':
- dependencies:
- c12: 2.0.1(magicast@0.3.5)
- compatx: 0.1.8
- consola: 3.4.0
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.3.1
- scule: 1.3.0
- std-env: 3.8.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.14.6(rollup@4.31.0)
- untyped: 1.5.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/schema@3.14.1592(magicast@0.3.5)(rollup@4.34.9)':
- dependencies:
- c12: 2.0.1(magicast@0.3.5)
- compatx: 0.1.8
- consola: 3.4.0
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.3.1
- scule: 1.3.0
- std-env: 3.8.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.14.6(rollup@4.34.9)
- untyped: 1.5.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/schema@3.15.4':
- dependencies:
- consola: 3.4.0
- defu: 6.1.4
- pathe: 2.0.2
- std-env: 3.8.0
-
- '@nuxt/telemetry@2.6.4(magicast@0.3.5)(rollup@4.31.0)':
- dependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.31.0)
- citty: 0.1.6
- consola: 3.4.0
- destr: 2.0.3
- dotenv: 16.4.7
- git-url-parse: 16.0.0
- is-docker: 3.0.0
- ofetch: 1.4.1
- package-manager-detector: 0.2.8
- parse-git-config: 3.0.0
- pathe: 2.0.2
- rc9: 2.1.2
- std-env: 3.8.0
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/telemetry@2.6.4(magicast@0.3.5)(rollup@4.34.9)':
- dependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.34.9)
- citty: 0.1.6
- consola: 3.4.0
- destr: 2.0.3
- dotenv: 16.4.7
- git-url-parse: 16.0.0
- is-docker: 3.0.0
- ofetch: 1.4.1
- package-manager-detector: 0.2.8
- parse-git-config: 3.0.0
- pathe: 2.0.2
- rc9: 2.1.2
- std-env: 3.8.0
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/test-utils@3.14.0(@vue/test-utils@2.4.6)(h3@1.14.0)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@4.31.0)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.13.8)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.31.0)
- '@nuxt/schema': 3.15.4
- c12: 1.11.2(magicast@0.3.5)
- consola: 3.4.0
- defu: 6.1.4
- destr: 2.0.3
- estree-walker: 3.0.3
- execa: 8.0.1
- fake-indexeddb: 6.0.0
- get-port-please: 3.1.2
- h3: 1.14.0
- local-pkg: 0.5.1
- magic-string: 0.30.17
- nitropack: 2.10.4(encoding@0.1.13)(typescript@5.6.1-rc)
- node-fetch-native: 1.6.6
- ofetch: 1.4.1
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- radix3: 1.1.2
- scule: 1.3.0
- std-env: 3.8.0
- ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 1.16.1
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vitest-environment-nuxt: 1.0.1(@vue/test-utils@2.4.6)(h3@1.14.0)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@4.31.0)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.13.8)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
- vue: 3.5.13(typescript@5.6.1-rc)
- vue-router: 4.5.0(vue@3.5.13(typescript@5.6.1-rc))
- optionalDependencies:
- '@vue/test-utils': 2.4.6
- jsdom: 23.0.0
- vitest: 1.6.0(@types/node@22.13.8)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/vite-builder@3.14.1592(@types/node@22.13.8)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.31.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.31.0)
- '@rollup/plugin-replace': 6.0.2(rollup@4.31.0)
- '@vitejs/plugin-vue': 5.2.1(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))
- '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))
- autoprefixer: 10.4.20(postcss@8.5.3)
- clear: 0.1.0
- consola: 3.4.0
- cssnano: 7.0.6(postcss@8.5.3)
- defu: 6.1.4
- esbuild: 0.24.2
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- externality: 1.0.2
- get-port-please: 3.1.2
- h3: 1.14.0
- jiti: 2.4.2
- knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0(rollup@4.31.0)
- std-env: 3.8.0
- strip-literal: 2.1.1
- ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 1.16.1
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-node: 2.1.8(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.6.1-rc)(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))
- vue: 3.5.13(typescript@5.6.1-rc)
- vue-bundle-renderer: 2.1.1
- transitivePeerDependencies:
- - '@biomejs/biome'
- - '@types/node'
- - eslint
- - less
- - lightningcss
- - magicast
- - meow
- - optionator
- - rolldown
- - rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - vls
- - vti
- - vue-tsc
-
- '@nuxt/vite-builder@3.14.1592(@types/node@22.13.8)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.9)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.34.9)
- '@rollup/plugin-replace': 6.0.2(rollup@4.34.9)
- '@vitejs/plugin-vue': 5.2.1(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))
- '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))
- autoprefixer: 10.4.20(postcss@8.5.3)
- clear: 0.1.0
- consola: 3.4.0
- cssnano: 7.0.6(postcss@8.5.3)
- defu: 6.1.4
- esbuild: 0.24.2
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- externality: 1.0.2
- get-port-please: 3.1.2
- h3: 1.14.0
- jiti: 2.4.2
- knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0(rollup@4.34.9)
- std-env: 3.8.0
- strip-literal: 2.1.1
- ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 1.16.1
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-node: 2.1.8(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.5.3)(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))
- vue: 3.5.13(typescript@5.5.3)
- vue-bundle-renderer: 2.1.1
- transitivePeerDependencies:
- - '@biomejs/biome'
- - '@types/node'
- - eslint
- - less
- - lightningcss
- - magicast
- - meow
- - optionator
- - rolldown
- - rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - vls
- - vti
- - vue-tsc
-
- '@nuxt/vite-builder@3.14.1592(@types/node@22.13.8)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.9)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.34.9)
- '@rollup/plugin-replace': 6.0.2(rollup@4.34.9)
- '@vitejs/plugin-vue': 5.2.1(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))
- '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))
- autoprefixer: 10.4.20(postcss@8.5.3)
- clear: 0.1.0
- consola: 3.4.0
- cssnano: 7.0.6(postcss@8.5.3)
- defu: 6.1.4
- esbuild: 0.24.2
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- externality: 1.0.2
- get-port-please: 3.1.2
- h3: 1.14.0
- jiti: 2.4.2
- knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0(rollup@4.34.9)
- std-env: 3.8.0
- strip-literal: 2.1.1
- ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 1.16.1
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-node: 2.1.8(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.6.1-rc)(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))
- vue: 3.5.13(typescript@5.6.1-rc)
- vue-bundle-renderer: 2.1.1
- transitivePeerDependencies:
- - '@biomejs/biome'
- - '@types/node'
- - eslint
- - less
- - lightningcss
- - magicast
- - meow
- - optionator
- - rolldown
- - rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - vls
- - vti
- - vue-tsc
-
- '@one-ini/wasm@0.1.1': {}
-
- '@parcel/watcher-android-arm64@2.5.1':
- optional: true
-
- '@parcel/watcher-darwin-arm64@2.5.1':
- optional: true
-
- '@parcel/watcher-darwin-x64@2.5.1':
- optional: true
-
- '@parcel/watcher-freebsd-x64@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm-glibc@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm-musl@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm64-glibc@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm64-musl@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-x64-glibc@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-x64-musl@2.5.1':
- optional: true
-
- '@parcel/watcher-wasm@2.5.1':
- dependencies:
- is-glob: 4.0.3
- micromatch: 4.0.8
-
- '@parcel/watcher-win32-arm64@2.5.1':
- optional: true
-
- '@parcel/watcher-win32-ia32@2.5.1':
- optional: true
-
- '@parcel/watcher-win32-x64@2.5.1':
- optional: true
-
- '@parcel/watcher@2.5.1':
- dependencies:
- detect-libc: 1.0.3
- is-glob: 4.0.3
- micromatch: 4.0.8
- node-addon-api: 7.1.1
- optionalDependencies:
- '@parcel/watcher-android-arm64': 2.5.1
- '@parcel/watcher-darwin-arm64': 2.5.1
- '@parcel/watcher-darwin-x64': 2.5.1
- '@parcel/watcher-freebsd-x64': 2.5.1
- '@parcel/watcher-linux-arm-glibc': 2.5.1
- '@parcel/watcher-linux-arm-musl': 2.5.1
- '@parcel/watcher-linux-arm64-glibc': 2.5.1
- '@parcel/watcher-linux-arm64-musl': 2.5.1
- '@parcel/watcher-linux-x64-glibc': 2.5.1
- '@parcel/watcher-linux-x64-musl': 2.5.1
- '@parcel/watcher-win32-arm64': 2.5.1
- '@parcel/watcher-win32-ia32': 2.5.1
- '@parcel/watcher-win32-x64': 2.5.1
-
- '@pkgjs/parseargs@0.11.0':
- optional: true
-
- '@pkgr/core@0.1.1': {}
-
- '@polka/url@1.0.0-next.28': {}
-
- '@puppeteer/browsers@2.2.3':
- dependencies:
- debug: 4.3.4
- extract-zip: 2.0.1
- progress: 2.0.3
- proxy-agent: 6.4.0
- semver: 7.6.0
- tar-fs: 3.0.5
- unbzip2-stream: 1.4.3
- yargs: 17.7.2
- transitivePeerDependencies:
- - bare-buffer
- - supports-color
-
- '@radix-ui/colors@3.0.0': {}
-
- '@radix-ui/number@1.1.0': {}
-
- '@radix-ui/primitive@1.1.1': {}
-
- '@radix-ui/react-accessible-icon@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-alert-dialog@1.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-dialog': 1.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-arrow@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-aspect-ratio@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-avatar@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-checkbox@1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-collection@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-context-menu@2.2.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-menu': 2.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-context@1.1.1(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-dialog@1.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-remove-scroll: 2.6.3(@types/react@19.0.1)(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-direction@1.1.0(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-dismissable-layer@1.1.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-dropdown-menu@2.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-menu': 2.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-form@0.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-label': 2.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-hover-card@1.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-icons@1.3.2(react@19.0.0)':
- dependencies:
- react: 19.0.0
-
- '@radix-ui/react-id@1.1.0(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-label@2.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-menu@2.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-remove-scroll: 2.6.3(@types/react@19.0.1)(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-navigation-menu@1.2.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-popover@1.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-remove-scroll: 2.6.3(@types/react@19.0.1)(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-popper@1.2.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-arrow': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/rect': 1.1.0
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-portal@1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-presence@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-primitive@2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-progress@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-radio-group@1.2.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-roving-focus@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-scroll-area@1.2.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-select@2.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-remove-scroll: 2.6.3(@types/react@19.0.1)(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-slider@1.2.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-slot@1.1.1(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-switch@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-tabs@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-toggle-group@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-toggle': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-toggle@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-tooltip@1.1.7(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-use-previous@1.1.0(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-use-rect@1.1.0(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- '@radix-ui/rect': 1.1.0
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-use-size@1.1.0(@types/react@19.0.1)(react@19.0.0)':
- dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- react: 19.0.0
- optionalDependencies:
- '@types/react': 19.0.1
-
- '@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@radix-ui/rect@1.1.0': {}
-
- '@radix-ui/themes@3.1.6(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/colors': 3.0.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-accessible-icon': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-alert-dialog': 1.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-aspect-ratio': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-avatar': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-checkbox': 1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-context-menu': 2.2.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-dialog': 1.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-dropdown-menu': 2.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-hover-card': 1.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-navigation-menu': 1.2.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-popover': 1.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-progress': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-radio-group': 1.2.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-scroll-area': 1.2.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-select': 2.1.5(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slider': 1.2.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-switch': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-tabs': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-toggle-group': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-tooltip': 1.1.7(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.5.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-remove-scroll-bar: 2.3.8(@types/react@19.0.1)(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
-
- '@redocly/ajv@8.11.2':
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js-replace: 1.0.1
-
- '@redocly/config@0.20.3': {}
-
- '@redocly/openapi-core@1.27.2(encoding@0.1.13)(supports-color@9.4.0)':
- dependencies:
- '@redocly/ajv': 8.11.2
- '@redocly/config': 0.20.3
- colorette: 1.4.0
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
- js-levenshtein: 1.1.6
- js-yaml: 4.1.0
- minimatch: 5.1.6
- node-fetch: 2.7.0(encoding@0.1.13)
- pluralize: 8.0.0
- yaml-ast-parser: 0.0.43
- transitivePeerDependencies:
- - encoding
- - supports-color
-
- '@rollup/plugin-alias@5.1.1(rollup@4.31.0)':
- optionalDependencies:
- rollup: 4.31.0
-
- '@rollup/plugin-commonjs@28.0.2(rollup@4.31.0)':
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- commondir: 1.0.1
- estree-walker: 2.0.2
- fdir: 6.4.3(picomatch@4.0.2)
- is-reference: 1.2.1
- magic-string: 0.30.17
- picomatch: 4.0.2
- optionalDependencies:
- rollup: 4.31.0
-
- '@rollup/plugin-inject@5.0.5(rollup@4.31.0)':
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- estree-walker: 2.0.2
- magic-string: 0.30.17
- optionalDependencies:
- rollup: 4.31.0
-
- '@rollup/plugin-json@6.1.0(rollup@4.31.0)':
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- optionalDependencies:
- rollup: 4.31.0
-
- '@rollup/plugin-node-resolve@15.3.1(rollup@4.31.0)':
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- '@types/resolve': 1.20.2
- deepmerge: 4.3.1
- is-module: 1.0.0
- resolve: 1.22.10
- optionalDependencies:
- rollup: 4.31.0
-
- '@rollup/plugin-replace@6.0.2(rollup@4.31.0)':
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- magic-string: 0.30.17
- optionalDependencies:
- rollup: 4.31.0
-
- '@rollup/plugin-replace@6.0.2(rollup@4.34.9)':
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.9)
- magic-string: 0.30.17
- optionalDependencies:
- rollup: 4.34.9
-
- '@rollup/plugin-terser@0.4.4(rollup@4.31.0)':
- dependencies:
- serialize-javascript: 6.0.2
- smob: 1.5.0
- terser: 5.39.0
- optionalDependencies:
- rollup: 4.31.0
-
- '@rollup/pluginutils@5.1.4(rollup@4.31.0)':
- dependencies:
- '@types/estree': 1.0.6
- estree-walker: 2.0.2
- picomatch: 4.0.2
- optionalDependencies:
- rollup: 4.31.0
-
- '@rollup/pluginutils@5.1.4(rollup@4.34.9)':
- dependencies:
- '@types/estree': 1.0.6
- estree-walker: 2.0.2
- picomatch: 4.0.2
- optionalDependencies:
- rollup: 4.34.9
-
- '@rollup/rollup-android-arm-eabi@4.31.0':
- optional: true
-
- '@rollup/rollup-android-arm-eabi@4.34.8':
- optional: true
-
- '@rollup/rollup-android-arm-eabi@4.34.9':
- optional: true
-
- '@rollup/rollup-android-arm64@4.31.0':
- optional: true
-
- '@rollup/rollup-android-arm64@4.34.8':
- optional: true
-
- '@rollup/rollup-android-arm64@4.34.9':
- optional: true
-
- '@rollup/rollup-darwin-arm64@4.31.0':
- optional: true
-
- '@rollup/rollup-darwin-arm64@4.34.8':
- optional: true
-
- '@rollup/rollup-darwin-arm64@4.34.9':
- optional: true
-
- '@rollup/rollup-darwin-x64@4.31.0':
- optional: true
-
- '@rollup/rollup-darwin-x64@4.34.8':
- optional: true
-
- '@rollup/rollup-darwin-x64@4.34.9':
- optional: true
-
- '@rollup/rollup-freebsd-arm64@4.31.0':
- optional: true
-
- '@rollup/rollup-freebsd-arm64@4.34.8':
- optional: true
-
- '@rollup/rollup-freebsd-arm64@4.34.9':
- optional: true
-
- '@rollup/rollup-freebsd-x64@4.31.0':
- optional: true
-
- '@rollup/rollup-freebsd-x64@4.34.8':
- optional: true
-
- '@rollup/rollup-freebsd-x64@4.34.9':
- optional: true
-
- '@rollup/rollup-linux-arm-gnueabihf@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
- optional: true
-
- '@rollup/rollup-linux-arm-gnueabihf@4.34.9':
- optional: true
-
- '@rollup/rollup-linux-arm-musleabihf@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-arm-musleabihf@4.34.8':
- optional: true
-
- '@rollup/rollup-linux-arm-musleabihf@4.34.9':
- optional: true
-
- '@rollup/rollup-linux-arm64-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-arm64-gnu@4.34.8':
- optional: true
-
- '@rollup/rollup-linux-arm64-gnu@4.34.9':
- optional: true
-
- '@rollup/rollup-linux-arm64-musl@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-arm64-musl@4.34.8':
- optional: true
-
- '@rollup/rollup-linux-arm64-musl@4.34.9':
- optional: true
-
- '@rollup/rollup-linux-loongarch64-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
- optional: true
-
- '@rollup/rollup-linux-loongarch64-gnu@4.34.9':
- optional: true
-
- '@rollup/rollup-linux-powerpc64le-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
- optional: true
-
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.9':
- optional: true
-
- '@rollup/rollup-linux-riscv64-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-riscv64-gnu@4.34.8':
- optional: true
-
- '@rollup/rollup-linux-riscv64-gnu@4.34.9':
- optional: true
-
- '@rollup/rollup-linux-s390x-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-s390x-gnu@4.34.8':
- optional: true
-
- '@rollup/rollup-linux-s390x-gnu@4.34.9':
- optional: true
-
- '@rollup/rollup-linux-x64-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-x64-gnu@4.34.8':
- optional: true
-
- '@rollup/rollup-linux-x64-gnu@4.34.9':
- optional: true
-
- '@rollup/rollup-linux-x64-musl@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-x64-musl@4.34.8':
- optional: true
-
- '@rollup/rollup-linux-x64-musl@4.34.9':
- optional: true
-
- '@rollup/rollup-win32-arm64-msvc@4.31.0':
- optional: true
-
- '@rollup/rollup-win32-arm64-msvc@4.34.8':
- optional: true
-
- '@rollup/rollup-win32-arm64-msvc@4.34.9':
- optional: true
-
- '@rollup/rollup-win32-ia32-msvc@4.31.0':
- optional: true
-
- '@rollup/rollup-win32-ia32-msvc@4.34.8':
- optional: true
-
- '@rollup/rollup-win32-ia32-msvc@4.34.9':
- optional: true
-
- '@rollup/rollup-win32-x64-msvc@4.31.0':
- optional: true
-
- '@rollup/rollup-win32-x64-msvc@4.34.8':
- optional: true
-
- '@rollup/rollup-win32-x64-msvc@4.34.9':
- optional: true
-
- '@rtsao/scc@1.1.0': {}
-
- '@rushstack/eslint-patch@1.10.5': {}
-
- '@schematics/angular@19.2.0(chokidar@4.0.3)':
- dependencies:
- '@angular-devkit/core': 19.2.0(chokidar@4.0.3)
- '@angular-devkit/schematics': 19.2.0(chokidar@4.0.3)
- jsonc-parser: 3.3.1
- transitivePeerDependencies:
- - chokidar
-
- '@sec-ant/readable-stream@0.4.1': {}
-
- '@seriousme/openapi-schema-validator@2.3.1':
- dependencies:
- ajv: 8.17.1
- ajv-draft-04: 1.0.0(ajv@8.17.1)
- ajv-formats: 3.0.1(ajv@8.17.1)
- js-yaml: 4.1.0
- minimist: 1.2.8
-
- '@shikijs/core@1.29.1':
- dependencies:
- '@shikijs/engine-javascript': 1.29.1
- '@shikijs/engine-oniguruma': 1.29.1
- '@shikijs/types': 1.29.1
- '@shikijs/vscode-textmate': 10.0.1
- '@types/hast': 3.0.4
- hast-util-to-html: 9.0.4
-
- '@shikijs/engine-javascript@1.29.1':
- dependencies:
- '@shikijs/types': 1.29.1
- '@shikijs/vscode-textmate': 10.0.1
- oniguruma-to-es: 2.3.0
-
- '@shikijs/engine-oniguruma@1.29.1':
- dependencies:
- '@shikijs/types': 1.29.1
- '@shikijs/vscode-textmate': 10.0.1
-
- '@shikijs/langs@1.29.1':
- dependencies:
- '@shikijs/types': 1.29.1
-
- '@shikijs/themes@1.29.1':
- dependencies:
- '@shikijs/types': 1.29.1
-
- '@shikijs/transformers@1.29.1':
- dependencies:
- '@shikijs/core': 1.29.1
- '@shikijs/types': 1.29.1
-
- '@shikijs/types@1.29.1':
- dependencies:
- '@shikijs/vscode-textmate': 10.0.1
- '@types/hast': 3.0.4
-
- '@shikijs/vscode-textmate@10.0.1': {}
-
- '@sigstore/bundle@3.1.0':
- dependencies:
- '@sigstore/protobuf-specs': 0.4.0
-
- '@sigstore/core@2.0.0': {}
-
- '@sigstore/protobuf-specs@0.4.0': {}
-
- '@sigstore/sign@3.1.0':
- dependencies:
- '@sigstore/bundle': 3.1.0
- '@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.4.0
- make-fetch-happen: 14.0.3
- proc-log: 5.0.0
- promise-retry: 2.0.1
- transitivePeerDependencies:
- - supports-color
-
- '@sigstore/tuf@3.1.0':
- dependencies:
- '@sigstore/protobuf-specs': 0.4.0
- tuf-js: 3.0.1
- transitivePeerDependencies:
- - supports-color
-
- '@sigstore/verify@2.1.0':
- dependencies:
- '@sigstore/bundle': 3.1.0
- '@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.4.0
-
- '@sinclair/typebox@0.27.8': {}
-
- '@sindresorhus/is@4.6.0': {}
-
- '@sindresorhus/merge-streams@2.3.0': {}
-
- '@sindresorhus/merge-streams@4.0.0': {}
-
- '@socket.io/component-emitter@3.1.2': {}
-
- '@stackblitz/sdk@1.11.0': {}
-
- '@sveltejs/adapter-auto@4.0.0(@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)))(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)))':
- dependencies:
- '@sveltejs/kit': 2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)))(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- import-meta-resolve: 4.1.0
-
- '@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)))(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
- dependencies:
- '@sveltejs/vite-plugin-svelte': 5.0.3(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- '@types/cookie': 0.6.0
- cookie: 0.6.0
- devalue: 5.1.1
- esm-env: 1.2.2
- import-meta-resolve: 4.1.0
- kleur: 4.1.5
- magic-string: 0.30.17
- mrmime: 2.0.0
- sade: 1.8.1
- set-cookie-parser: 2.7.1
- sirv: 3.0.0
- svelte: 5.19.9
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
-
- '@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)))(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
- dependencies:
- '@sveltejs/vite-plugin-svelte': 5.0.3(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- debug: 4.4.0(supports-color@9.4.0)
- svelte: 5.19.9
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- transitivePeerDependencies:
- - supports-color
-
- '@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
- dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)))(svelte@5.19.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- debug: 4.4.0(supports-color@9.4.0)
- deepmerge: 4.3.1
- kleur: 4.1.5
- magic-string: 0.30.17
- svelte: 5.19.9
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vitefu: 1.0.5(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- transitivePeerDependencies:
- - supports-color
-
- '@swc/counter@0.1.3': {}
-
- '@swc/helpers@0.5.15':
- dependencies:
- tslib: 2.8.1
-
- '@tanstack/angular-query-experimental@5.62.13(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))':
- dependencies:
- '@angular/common': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
- '@tanstack/query-core': 5.62.12
- '@tanstack/query-devtools': 5.62.9
-
- '@tanstack/match-sorter-utils@8.19.4':
- dependencies:
- remove-accents: 0.5.0
-
- '@tanstack/query-core@5.51.21': {}
-
- '@tanstack/query-core@5.62.12': {}
-
- '@tanstack/query-core@5.62.15': {}
-
- '@tanstack/query-devtools@5.62.9': {}
-
- '@tanstack/react-query-devtools@5.62.15(@tanstack/react-query@5.62.15(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@tanstack/query-devtools': 5.62.9
- '@tanstack/react-query': 5.62.15(react@19.0.0)
- react: 19.0.0
-
- '@tanstack/react-query@5.62.15(react@19.0.0)':
- dependencies:
- '@tanstack/query-core': 5.62.15
- react: 19.0.0
-
- '@tanstack/solid-query@5.51.21(solid-js@1.9.4)':
- dependencies:
- '@tanstack/query-core': 5.51.21
- solid-js: 1.9.4
-
- '@tanstack/svelte-query@5.62.12(svelte@5.19.9)':
- dependencies:
- '@tanstack/query-core': 5.62.12
- svelte: 5.19.9
-
- '@tanstack/vue-query-devtools@5.62.12(@tanstack/vue-query@5.62.12(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@tanstack/query-devtools': 5.62.9
- '@tanstack/vue-query': 5.62.12(vue@3.5.13(typescript@5.5.3))
- vue: 3.5.13(typescript@5.5.3)
-
- '@tanstack/vue-query@5.62.12(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@tanstack/match-sorter-utils': 8.19.4
- '@tanstack/query-core': 5.62.12
- '@vue/devtools-api': 6.6.4
- vue: 3.5.13(typescript@5.5.3)
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.5.3))
-
- '@tootallnate/quickjs-emscripten@0.23.0': {}
-
- '@trysound/sax@0.2.0': {}
-
- '@tsconfig/node10@1.0.11': {}
-
- '@tsconfig/node12@1.0.11': {}
-
- '@tsconfig/node14@1.0.3': {}
-
- '@tsconfig/node16@1.0.4': {}
-
- '@tsconfig/node20@20.1.4': {}
-
- '@tufjs/canonical-json@2.0.0': {}
-
- '@tufjs/models@3.0.1':
- dependencies:
- '@tufjs/canonical-json': 2.0.0
- minimatch: 9.0.5
-
- '@types/babel__core@7.20.5':
- dependencies:
- '@babel/parser': 7.26.7
- '@babel/types': 7.26.7
- '@types/babel__generator': 7.6.8
- '@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.20.6
-
- '@types/babel__generator@7.6.8':
- dependencies:
- '@babel/types': 7.26.7
-
- '@types/babel__template@7.4.4':
- dependencies:
- '@babel/parser': 7.26.7
- '@babel/types': 7.26.7
-
- '@types/babel__traverse@7.20.6':
- dependencies:
- '@babel/types': 7.26.7
-
- '@types/body-parser@1.19.5':
- dependencies:
- '@types/connect': 3.4.38
- '@types/node': 22.10.5
-
- '@types/bonjour@3.5.13':
- dependencies:
- '@types/node': 22.10.5
-
- '@types/connect-history-api-fallback@1.5.4':
- dependencies:
- '@types/express-serve-static-core': 5.0.6
- '@types/node': 22.10.5
-
- '@types/connect@3.4.38':
- dependencies:
- '@types/node': 22.10.5
-
- '@types/cookie@0.6.0': {}
-
- '@types/cors@2.8.17':
- dependencies:
- '@types/node': 22.10.5
-
- '@types/cross-spawn@6.0.6':
- dependencies:
- '@types/node': 22.10.5
-
- '@types/eslint-scope@3.7.7':
- dependencies:
- '@types/eslint': 9.6.0
- '@types/estree': 1.0.6
-
- '@types/eslint@9.6.0':
- dependencies:
- '@types/estree': 1.0.6
- '@types/json-schema': 7.0.15
-
- '@types/eslint@9.6.1':
- dependencies:
- '@types/estree': 1.0.6
- '@types/json-schema': 7.0.15
- optional: true
-
- '@types/estree@1.0.6': {}
-
- '@types/express-serve-static-core@4.19.6':
- dependencies:
- '@types/node': 22.10.5
- '@types/qs': 6.9.18
- '@types/range-parser': 1.2.7
- '@types/send': 0.17.4
-
- '@types/express-serve-static-core@5.0.6':
- dependencies:
- '@types/node': 22.10.5
- '@types/qs': 6.9.18
- '@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.6
- '@types/qs': 6.9.18
- '@types/serve-static': 1.15.7
-
- '@types/hast@3.0.4':
- dependencies:
- '@types/unist': 3.0.3
-
- '@types/http-errors@2.0.4': {}
-
- '@types/http-proxy@1.17.15':
- dependencies:
- '@types/node': 22.10.5
-
- '@types/http-proxy@1.17.16':
- dependencies:
- '@types/node': 22.10.5
-
- '@types/jasmine@5.1.5': {}
-
- '@types/jsdom@21.1.7':
- dependencies:
- '@types/node': 22.10.5
- '@types/tough-cookie': 4.0.5
- parse5: 7.2.1
-
- '@types/json-schema@7.0.15': {}
-
- '@types/json5@0.0.29': {}
-
- '@types/linkify-it@5.0.0': {}
-
- '@types/markdown-it@14.1.2':
- dependencies:
- '@types/linkify-it': 5.0.0
- '@types/mdurl': 2.0.0
-
- '@types/mdast@4.0.4':
- dependencies:
- '@types/unist': 3.0.3
-
- '@types/mdurl@2.0.0': {}
-
- '@types/mime@1.3.5': {}
-
- '@types/node-forge@1.3.11':
- dependencies:
- '@types/node': 22.10.5
-
- '@types/node@12.20.55': {}
-
- '@types/node@22.10.5':
- dependencies:
- undici-types: 6.20.0
-
- '@types/node@22.13.8':
- dependencies:
- undici-types: 6.20.0
-
- '@types/parse-path@7.0.3': {}
-
- '@types/qs@6.9.18': {}
-
- '@types/range-parser@1.2.7': {}
-
- '@types/react-dom@19.0.1':
- dependencies:
- '@types/react': 19.0.1
-
- '@types/react@19.0.1':
- dependencies:
- csstype: 3.1.3
-
- '@types/resolve@1.20.2': {}
-
- '@types/retry@0.12.2': {}
-
- '@types/semver@7.5.8': {}
-
- '@types/send@0.17.4':
- dependencies:
- '@types/mime': 1.3.5
- '@types/node': 22.10.5
-
- '@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.10.5
- '@types/send': 0.17.4
-
- '@types/sockjs@0.3.36':
- dependencies:
- '@types/node': 22.10.5
-
- '@types/tough-cookie@4.0.5': {}
-
- '@types/unist@3.0.3': {}
-
- '@types/web-bluetooth@0.0.20': {}
-
- '@types/ws@8.5.14':
- dependencies:
- '@types/node': 22.10.5
-
- '@types/yauzl@2.10.3':
- dependencies:
- '@types/node': 22.10.5
- optional: true
-
- '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/type-utils': 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/utils': 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/visitor-keys': 7.18.0
- eslint: 9.17.0(jiti@2.4.2)
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 1.4.3(typescript@5.5.3)
- optionalDependencies:
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/type-utils': 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/utils': 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/visitor-keys': 7.18.0
- eslint: 9.17.0(jiti@2.4.2)
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 1.4.3(typescript@5.5.3)
- optionalDependencies:
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/scope-manager': 8.19.1
- '@typescript-eslint/type-utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/visitor-keys': 8.19.1
- eslint: 9.17.0(jiti@2.4.2)
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 2.0.0(typescript@5.5.3)
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/experimental-utils@5.62.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- eslint: 9.17.0(jiti@2.4.2)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- '@typescript-eslint/scope-manager': 7.15.0
- '@typescript-eslint/types': 7.15.0
- '@typescript-eslint/typescript-estree': 7.15.0(typescript@5.5.3)
- '@typescript-eslint/visitor-keys': 7.15.0
- debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.17.0(jiti@2.4.2)
- optionalDependencies:
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- '@typescript-eslint/scope-manager': 8.19.1
- '@typescript-eslint/types': 8.19.1
- '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.5.3)
- '@typescript-eslint/visitor-keys': 8.19.1
- debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.17.0(jiti@2.4.2)
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/scope-manager@5.62.0':
- dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
-
- '@typescript-eslint/scope-manager@7.15.0':
- dependencies:
- '@typescript-eslint/types': 7.15.0
- '@typescript-eslint/visitor-keys': 7.15.0
-
- '@typescript-eslint/scope-manager@7.18.0':
- dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
-
- '@typescript-eslint/scope-manager@8.19.1':
- dependencies:
- '@typescript-eslint/types': 8.19.1
- '@typescript-eslint/visitor-keys': 8.19.1
-
- '@typescript-eslint/type-utils@7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.3)
- '@typescript-eslint/utils': 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.17.0(jiti@2.4.2)
- ts-api-utils: 1.4.3(typescript@5.5.3)
- optionalDependencies:
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/type-utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.5.3)
- '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.17.0(jiti@2.4.2)
- ts-api-utils: 2.0.0(typescript@5.5.3)
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/types@5.62.0': {}
-
- '@typescript-eslint/types@7.15.0': {}
-
- '@typescript-eslint/types@7.18.0': {}
-
- '@typescript-eslint/types@8.19.1': {}
-
- '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.3)':
- dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.4.0(supports-color@9.4.0)
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.7.1
- tsutils: 3.21.0(typescript@5.5.3)
- optionalDependencies:
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/typescript-estree@7.15.0(typescript@5.5.3)':
- dependencies:
- '@typescript-eslint/types': 7.15.0
- '@typescript-eslint/visitor-keys': 7.15.0
- debug: 4.4.0(supports-color@9.4.0)
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.0
- ts-api-utils: 1.4.3(typescript@5.5.3)
- optionalDependencies:
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.3)':
- dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.4.0(supports-color@9.4.0)
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 1.4.3(typescript@5.5.3)
- optionalDependencies:
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/typescript-estree@8.19.1(typescript@5.5.3)':
- dependencies:
- '@typescript-eslint/types': 8.19.1
- '@typescript-eslint/visitor-keys': 8.19.1
- debug: 4.4.0(supports-color@9.4.0)
- fast-glob: 3.3.3
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 2.0.0(typescript@5.5.3)
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/utils@5.62.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3)
- eslint: 9.17.0(jiti@2.4.2)
- eslint-scope: 5.1.1
- semver: 7.7.1
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.3)
- eslint: 9.17.0(jiti@2.4.2)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.19.1
- '@typescript-eslint/types': 8.19.1
- '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.5.3)
- eslint: 9.17.0(jiti@2.4.2)
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/visitor-keys@5.62.0':
- dependencies:
- '@typescript-eslint/types': 5.62.0
- eslint-visitor-keys: 3.4.3
-
- '@typescript-eslint/visitor-keys@7.15.0':
- dependencies:
- '@typescript-eslint/types': 7.15.0
- eslint-visitor-keys: 3.4.3
-
- '@typescript-eslint/visitor-keys@7.18.0':
- dependencies:
- '@typescript-eslint/types': 7.18.0
- eslint-visitor-keys: 3.4.3
-
- '@typescript-eslint/visitor-keys@8.19.1':
- dependencies:
- '@typescript-eslint/types': 8.19.1
- eslint-visitor-keys: 4.2.0
-
- '@ungap/structured-clone@1.3.0': {}
-
- '@unhead/dom@1.11.18':
- dependencies:
- '@unhead/schema': 1.11.18
- '@unhead/shared': 1.11.18
-
- '@unhead/schema@1.11.18':
- dependencies:
- hookable: 5.5.3
- zhead: 2.2.4
-
- '@unhead/shared@1.11.18':
- dependencies:
- '@unhead/schema': 1.11.18
- packrup: 0.1.2
-
- '@unhead/ssr@1.11.18':
- dependencies:
- '@unhead/schema': 1.11.18
- '@unhead/shared': 1.11.18
-
- '@unhead/vue@1.11.18(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@unhead/schema': 1.11.18
- '@unhead/shared': 1.11.18
- hookable: 5.5.3
- unhead: 1.11.18
- vue: 3.5.13(typescript@5.5.3)
-
- '@unhead/vue@1.11.18(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- '@unhead/schema': 1.11.18
- '@unhead/shared': 1.11.18
- hookable: 5.5.3
- unhead: 1.11.18
- vue: 3.5.13(typescript@5.6.1-rc)
-
- '@vercel/nft@0.27.10(encoding@0.1.13)(rollup@4.31.0)':
- dependencies:
- '@mapbox/node-pre-gyp': 2.0.0(encoding@0.1.13)
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- acorn: 8.14.0
- acorn-import-attributes: 1.9.5(acorn@8.14.0)
- async-sema: 3.1.1
- bindings: 1.5.0
- estree-walker: 2.0.2
- glob: 7.2.3
- graceful-fs: 4.2.11
- node-gyp-build: 4.8.4
- picomatch: 4.0.2
- resolve-from: 5.0.0
- transitivePeerDependencies:
- - encoding
- - rollup
- - supports-color
-
- '@vitejs/plugin-basic-ssl@1.2.0(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
- dependencies:
- vite: 6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
-
- '@vitejs/plugin-react@4.3.1(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.7)
- '@types/babel__core': 7.20.5
- react-refresh: 0.14.2
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- transitivePeerDependencies:
- - supports-color
-
- '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/plugin-transform-typescript': 7.26.7(@babel/core@7.26.7)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.7)
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vue: 3.5.13(typescript@5.5.3)
- transitivePeerDependencies:
- - supports-color
-
- '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/plugin-transform-typescript': 7.26.7(@babel/core@7.26.7)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.7)
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vue: 3.5.13(typescript@5.6.1-rc)
- transitivePeerDependencies:
- - supports-color
-
- '@vitejs/plugin-vue-jsx@4.1.1(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/plugin-transform-typescript': 7.26.7(@babel/core@7.26.7)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.7)
- vite: 6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vue: 3.5.13(typescript@5.5.3)
- transitivePeerDependencies:
- - supports-color
-
- '@vitejs/plugin-vue@5.2.1(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vue: 3.5.13(typescript@5.5.3)
-
- '@vitejs/plugin-vue@5.2.1(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vue: 3.5.13(typescript@5.6.1-rc)
-
- '@vitejs/plugin-vue@5.2.1(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- vite: 6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vue: 3.5.13(typescript@5.5.3)
-
- '@vitest/coverage-v8@1.6.0(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@bcoe/v8-coverage': 0.2.3
- debug: 4.4.0(supports-color@9.4.0)
- istanbul-lib-coverage: 3.2.2
- istanbul-lib-report: 3.0.1
- istanbul-lib-source-maps: 5.0.6
- istanbul-reports: 3.1.7
- magic-string: 0.30.17
- magicast: 0.3.5
- picocolors: 1.1.1
- std-env: 3.8.0
- strip-literal: 2.1.1
- test-exclude: 6.0.0
- vitest: 1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- transitivePeerDependencies:
- - supports-color
-
- '@vitest/expect@1.6.0':
- dependencies:
- '@vitest/spy': 1.6.0
- '@vitest/utils': 1.6.0
- chai: 4.5.0
-
- '@vitest/runner@1.6.0':
- dependencies:
- '@vitest/utils': 1.6.0
- p-limit: 5.0.0
- pathe: 1.1.2
-
- '@vitest/snapshot@1.6.0':
- dependencies:
- magic-string: 0.30.17
- pathe: 1.1.2
- pretty-format: 29.7.0
-
- '@vitest/spy@1.6.0':
- dependencies:
- tinyspy: 2.2.1
-
- '@vitest/utils@1.6.0':
- dependencies:
- diff-sequences: 29.6.3
- estree-walker: 3.0.3
- loupe: 2.3.7
- pretty-format: 29.7.0
-
- '@volar/language-core@2.4.11':
- dependencies:
- '@volar/source-map': 2.4.11
-
- '@volar/source-map@2.4.11': {}
-
- '@volar/typescript@2.4.11':
- dependencies:
- '@volar/language-core': 2.4.11
- path-browserify: 1.0.1
- vscode-uri: 3.0.8
-
- '@vue-macros/common@1.16.1(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@vue/compiler-sfc': 3.5.13
- ast-kit: 1.4.0
- local-pkg: 1.0.0
- magic-string-ast: 0.7.0
- pathe: 2.0.2
- picomatch: 4.0.2
- optionalDependencies:
- vue: 3.5.13(typescript@5.5.3)
-
- '@vue-macros/common@1.16.1(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- '@vue/compiler-sfc': 3.5.13
- ast-kit: 1.4.0
- local-pkg: 1.0.0
- magic-string-ast: 0.7.0
- pathe: 2.0.2
- picomatch: 4.0.2
- optionalDependencies:
- vue: 3.5.13(typescript@5.6.1-rc)
-
- '@vue/babel-helper-vue-transform-on@1.2.5': {}
-
- '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.26.7)':
- dependencies:
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.7)
- '@babel/template': 7.25.9
- '@babel/traverse': 7.26.7
- '@babel/types': 7.26.7
- '@vue/babel-helper-vue-transform-on': 1.2.5
- '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.26.7)
- html-tags: 3.3.1
- svg-tags: 1.0.0
- optionalDependencies:
- '@babel/core': 7.26.7
- transitivePeerDependencies:
- - supports-color
-
- '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.26.9)':
- dependencies:
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9)
- '@babel/template': 7.25.9
- '@babel/traverse': 7.26.7
- '@babel/types': 7.26.7
- '@vue/babel-helper-vue-transform-on': 1.2.5
- '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.26.9)
- html-tags: 3.3.1
- svg-tags: 1.0.0
- optionalDependencies:
- '@babel/core': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.26.7)':
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/core': 7.26.7
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/parser': 7.26.9
- '@vue/compiler-sfc': 3.5.13
- transitivePeerDependencies:
- - supports-color
-
- '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.26.9)':
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/parser': 7.26.9
- '@vue/compiler-sfc': 3.5.13
- transitivePeerDependencies:
- - supports-color
-
- '@vue/compiler-core@3.5.13':
- dependencies:
- '@babel/parser': 7.26.7
- '@vue/shared': 3.5.13
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.2.1
-
- '@vue/compiler-dom@3.5.13':
- dependencies:
- '@vue/compiler-core': 3.5.13
- '@vue/shared': 3.5.13
-
- '@vue/compiler-sfc@3.5.13':
- dependencies:
- '@babel/parser': 7.26.7
- '@vue/compiler-core': 3.5.13
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
- estree-walker: 2.0.2
- magic-string: 0.30.17
- postcss: 8.5.1
- source-map-js: 1.2.1
-
- '@vue/compiler-ssr@3.5.13':
- dependencies:
- '@vue/compiler-dom': 3.5.13
- '@vue/shared': 3.5.13
-
- '@vue/compiler-vue2@2.7.16':
- dependencies:
- de-indent: 1.0.2
- he: 1.2.0
-
- '@vue/devtools-api@6.6.4': {}
-
- '@vue/devtools-api@7.7.1':
- dependencies:
- '@vue/devtools-kit': 7.7.1
-
- '@vue/devtools-core@7.6.8(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- '@vue/devtools-kit': 7.7.1
- '@vue/devtools-shared': 7.7.1
- mitt: 3.0.1
- nanoid: 5.1.2
- pathe: 1.1.2
- vite-hot-client: 0.2.4(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- vue: 3.5.13(typescript@5.6.1-rc)
- transitivePeerDependencies:
- - vite
-
- '@vue/devtools-core@7.6.8(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@vue/devtools-kit': 7.7.1
- '@vue/devtools-shared': 7.7.1
- mitt: 3.0.1
- nanoid: 5.1.2
- pathe: 1.1.2
- vite-hot-client: 0.2.4(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- vue: 3.5.13(typescript@5.5.3)
- transitivePeerDependencies:
- - vite
-
- '@vue/devtools-core@7.7.1(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@vue/devtools-kit': 7.7.1
- '@vue/devtools-shared': 7.7.1
- mitt: 3.0.1
- nanoid: 5.0.9
- pathe: 2.0.2
- vite-hot-client: 0.2.4(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- vue: 3.5.13(typescript@5.5.3)
- transitivePeerDependencies:
- - vite
-
- '@vue/devtools-kit@7.6.8':
- dependencies:
- '@vue/devtools-shared': 7.7.1
- birpc: 0.2.19
- hookable: 5.5.3
- mitt: 3.0.1
- perfect-debounce: 1.0.0
- speakingurl: 14.0.1
- superjson: 2.2.2
-
- '@vue/devtools-kit@7.7.1':
- dependencies:
- '@vue/devtools-shared': 7.7.1
- birpc: 0.2.19
- hookable: 5.5.3
- mitt: 3.0.1
- perfect-debounce: 1.0.0
- speakingurl: 14.0.1
- superjson: 2.2.2
-
- '@vue/devtools-shared@7.7.1':
- dependencies:
- rfdc: 1.4.1
-
- '@vue/eslint-config-prettier@10.1.0(@types/eslint@9.6.1)(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2)':
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
- eslint-config-prettier: 9.1.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-prettier: 5.2.3(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2)
- prettier: 3.4.2
- transitivePeerDependencies:
- - '@types/eslint'
-
- '@vue/eslint-config-typescript@14.2.0(eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
- eslint-plugin-vue: 9.32.0(eslint@9.17.0(jiti@2.4.2))
- fast-glob: 3.3.3
- typescript-eslint: 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.4.2))
- optionalDependencies:
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@vue/language-core@2.2.0(typescript@5.5.3)':
- dependencies:
- '@volar/language-core': 2.4.11
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.13
- alien-signals: 0.4.14
- minimatch: 9.0.5
- muggle-string: 0.4.1
- path-browserify: 1.0.1
- optionalDependencies:
- typescript: 5.5.3
-
- '@vue/reactivity@3.5.13':
- dependencies:
- '@vue/shared': 3.5.13
-
- '@vue/runtime-core@3.5.13':
- dependencies:
- '@vue/reactivity': 3.5.13
- '@vue/shared': 3.5.13
-
- '@vue/runtime-dom@3.5.13':
- dependencies:
- '@vue/reactivity': 3.5.13
- '@vue/runtime-core': 3.5.13
- '@vue/shared': 3.5.13
- csstype: 3.1.3
-
- '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
- vue: 3.5.13(typescript@5.5.3)
-
- '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
- vue: 3.5.13(typescript@5.6.1-rc)
-
- '@vue/shared@3.5.13': {}
-
- '@vue/test-utils@2.4.6':
- dependencies:
- js-beautify: 1.15.1
- vue-component-type-helpers: 2.2.0
-
- '@vue/tsconfig@0.7.0(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3))':
- optionalDependencies:
- typescript: 5.5.3
- vue: 3.5.13(typescript@5.5.3)
-
- '@vueuse/core@10.11.1(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 10.11.1
- '@vueuse/shared': 10.11.1(vue@3.5.13(typescript@5.5.3))
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.5.3))
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@vueuse/integrations@10.11.1(axios@1.7.9)(focus-trap@7.6.4)(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- '@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.5.3))
- '@vueuse/shared': 10.11.1(vue@3.5.13(typescript@5.5.3))
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.5.3))
- optionalDependencies:
- axios: 1.7.9
- focus-trap: 7.6.4
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@vueuse/metadata@10.11.1': {}
-
- '@vueuse/shared@10.11.1(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.5.3))
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@webassemblyjs/ast@1.14.1':
- dependencies:
- '@webassemblyjs/helper-numbers': 1.13.2
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
-
- '@webassemblyjs/floating-point-hex-parser@1.13.2': {}
-
- '@webassemblyjs/helper-api-error@1.13.2': {}
-
- '@webassemblyjs/helper-buffer@1.14.1': {}
-
- '@webassemblyjs/helper-numbers@1.13.2':
- dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.13.2
- '@webassemblyjs/helper-api-error': 1.13.2
- '@xtuc/long': 4.2.2
-
- '@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
-
- '@webassemblyjs/helper-wasm-section@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/wasm-gen': 1.14.1
-
- '@webassemblyjs/ieee754@1.13.2':
- dependencies:
- '@xtuc/ieee754': 1.2.0
-
- '@webassemblyjs/leb128@1.13.2':
- dependencies:
- '@xtuc/long': 4.2.2
-
- '@webassemblyjs/utf8@1.13.2': {}
-
- '@webassemblyjs/wasm-edit@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/helper-wasm-section': 1.14.1
- '@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/wasm-opt': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
- '@webassemblyjs/wast-printer': 1.14.1
-
- '@webassemblyjs/wasm-gen@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/ieee754': 1.13.2
- '@webassemblyjs/leb128': 1.13.2
- '@webassemblyjs/utf8': 1.13.2
-
- '@webassemblyjs/wasm-opt@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
-
- '@webassemblyjs/wasm-parser@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-api-error': 1.13.2
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/ieee754': 1.13.2
- '@webassemblyjs/leb128': 1.13.2
- '@webassemblyjs/utf8': 1.13.2
-
- '@webassemblyjs/wast-printer@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@xtuc/long': 4.2.2
-
- '@xtuc/ieee754@1.2.0': {}
-
- '@xtuc/long@4.2.2': {}
-
- '@yarnpkg/lockfile@1.1.0': {}
-
- abbrev@2.0.0: {}
-
- abbrev@3.0.0: {}
-
- abort-controller@3.0.0:
- dependencies:
- event-target-shim: 5.0.1
-
- abstract-logging@2.0.1: {}
-
- accepts@1.3.8:
- dependencies:
- mime-types: 2.1.35
- negotiator: 0.6.3
-
- acorn-import-attributes@1.9.5(acorn@8.14.0):
- dependencies:
- acorn: 8.14.0
-
- acorn-jsx@5.3.2(acorn@7.4.1):
- dependencies:
- acorn: 7.4.1
-
- acorn-jsx@5.3.2(acorn@8.14.0):
- dependencies:
- acorn: 8.14.0
-
- acorn-typescript@1.4.13(acorn@8.14.0):
- dependencies:
- acorn: 8.14.0
-
- acorn-walk@8.3.4:
- dependencies:
- acorn: 8.14.0
-
- acorn@7.4.1: {}
-
- acorn@8.14.0: {}
-
- adjust-sourcemap-loader@4.0.0:
- dependencies:
- loader-utils: 2.0.4
- regex-parser: 2.3.1
-
- agent-base@7.1.3: {}
-
- ajv-draft-04@1.0.0(ajv@8.17.1):
- optionalDependencies:
- ajv: 8.17.1
-
- ajv-formats@2.1.1(ajv@8.17.1):
- optionalDependencies:
- ajv: 8.17.1
-
- ajv-formats@3.0.1(ajv@8.17.1):
- optionalDependencies:
- ajv: 8.17.1
-
- 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
- fast-json-stable-stringify: 2.1.0
- json-schema-traverse: 0.4.1
- uri-js: 4.4.1
-
- ajv@8.17.1:
- dependencies:
- fast-deep-equal: 3.1.3
- fast-uri: 3.0.6
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
-
- algoliasearch@5.20.0:
- dependencies:
- '@algolia/client-abtesting': 5.20.0
- '@algolia/client-analytics': 5.20.0
- '@algolia/client-common': 5.20.0
- '@algolia/client-insights': 5.20.0
- '@algolia/client-personalization': 5.20.0
- '@algolia/client-query-suggestions': 5.20.0
- '@algolia/client-search': 5.20.0
- '@algolia/ingestion': 1.20.0
- '@algolia/monitoring': 1.20.0
- '@algolia/recommend': 5.20.0
- '@algolia/requester-browser-xhr': 5.20.0
- '@algolia/requester-fetch': 5.20.0
- '@algolia/requester-node-http': 5.20.0
-
- alien-signals@0.4.14: {}
-
- ansi-colors@4.1.3: {}
-
- ansi-escapes@4.3.2:
- dependencies:
- type-fest: 0.21.3
-
- ansi-escapes@7.0.0:
- dependencies:
- environment: 1.1.0
-
- ansi-html-community@0.0.8: {}
-
- ansi-regex@5.0.1: {}
-
- ansi-regex@6.1.0: {}
-
- ansi-styles@4.3.0:
- dependencies:
- color-convert: 2.0.1
-
- ansi-styles@5.2.0: {}
-
- ansi-styles@6.2.1: {}
-
- any-promise@1.3.0: {}
-
- anymatch@3.1.3:
- dependencies:
- normalize-path: 3.0.0
- picomatch: 2.3.1
-
- archiver-utils@5.0.2:
- dependencies:
- glob: 10.4.3
- graceful-fs: 4.2.11
- is-stream: 2.0.1
- lazystream: 1.0.1
- lodash: 4.17.21
- normalize-path: 3.0.0
- readable-stream: 4.7.0
-
- archiver@7.0.1:
- dependencies:
- archiver-utils: 5.0.2
- async: 3.2.6
- buffer-crc32: 1.0.0
- readable-stream: 4.7.0
- readdir-glob: 1.1.3
- tar-stream: 3.1.7
- zip-stream: 6.0.1
-
- arg@4.1.3: {}
-
- arg@5.0.2: {}
-
- argparse@1.0.10:
- dependencies:
- sprintf-js: 1.0.3
-
- argparse@2.0.1: {}
-
- aria-hidden@1.2.4:
- dependencies:
- tslib: 2.8.1
-
- aria-query@5.3.2: {}
-
- array-buffer-byte-length@1.0.2:
- dependencies:
- call-bound: 1.0.3
- is-array-buffer: 3.0.5
-
- array-flatten@1.1.1: {}
-
- array-includes@3.1.8:
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
- is-string: 1.1.1
-
- array-union@2.1.0: {}
-
- array.prototype.findlast@1.2.5:
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- es-shim-unscopables: 1.0.2
-
- array.prototype.findlastindex@1.2.5:
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- es-shim-unscopables: 1.0.2
-
- array.prototype.flat@1.3.3:
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-shim-unscopables: 1.0.2
-
- array.prototype.flatmap@1.3.3:
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-shim-unscopables: 1.0.2
-
- array.prototype.tosorted@1.1.4:
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- es-shim-unscopables: 1.0.2
-
- arraybuffer.prototype.slice@1.0.4:
- dependencies:
- array-buffer-byte-length: 1.0.2
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- get-intrinsic: 1.2.7
- is-array-buffer: 3.0.5
-
- assertion-error@1.1.0: {}
-
- ast-kit@1.4.0:
- dependencies:
- '@babel/parser': 7.26.9
- pathe: 2.0.2
-
- ast-types-flow@0.0.8: {}
-
- ast-types@0.13.4:
- dependencies:
- tslib: 2.8.1
-
- ast-walker-scope@0.6.2:
- dependencies:
- '@babel/parser': 7.26.9
- ast-kit: 1.4.0
-
- async-function@1.0.0: {}
-
- async-sema@3.1.1: {}
-
- async@3.2.6: {}
-
- asynckit@0.4.0: {}
-
- atomic-sleep@1.0.0: {}
-
- autoprefixer@10.4.19(postcss@8.4.41):
- dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001696
- 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.41):
- dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001696
- 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.5.2):
- dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001696
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.1.1
- postcss: 8.5.2
- postcss-value-parser: 4.2.0
-
- autoprefixer@10.4.20(postcss@8.5.3):
- dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001696
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.1.1
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
-
- available-typed-arrays@1.0.7:
- dependencies:
- possible-typed-array-names: 1.0.0
-
- avvio@9.1.0:
- dependencies:
- '@fastify/error': 4.0.0
- fastq: 1.18.0
-
- axe-core@4.10.2: {}
-
- axios@1.7.9:
- dependencies:
- follow-redirects: 1.15.9(debug@4.4.0)
- form-data: 4.0.1
- proxy-from-env: 1.1.0
- transitivePeerDependencies:
- - debug
-
- axobject-query@4.1.0: {}
-
- b4a@1.6.7: {}
-
- babel-loader@9.2.1(@babel/core@7.26.9)(webpack@5.98.0(esbuild@0.25.0)):
- dependencies:
- '@babel/core': 7.26.9
- find-cache-dir: 4.0.0
- schema-utils: 4.3.0
- webpack: 5.98.0(esbuild@0.24.2)
-
- babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.9):
- dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.9):
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
- core-js-compat: 3.41.0
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.9):
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
- core-js-compat: 3.41.0
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.9):
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
-
- balanced-match@1.0.2: {}
-
- bare-events@2.5.4:
- optional: true
-
- bare-fs@2.3.5:
- dependencies:
- bare-events: 2.5.4
- bare-path: 2.1.3
- bare-stream: 2.6.4(bare-events@2.5.4)
- transitivePeerDependencies:
- - bare-buffer
- optional: true
-
- bare-os@2.4.4:
- optional: true
-
- bare-path@2.1.3:
- dependencies:
- bare-os: 2.4.4
- optional: true
-
- bare-stream@2.6.4(bare-events@2.5.4):
- dependencies:
- streamx: 2.22.0
- optionalDependencies:
- bare-events: 2.5.4
- optional: true
-
- base64-js@1.5.1: {}
-
- base64id@2.0.0: {}
-
- basic-ftp@5.0.5: {}
-
- batch@0.6.1: {}
-
- beasties@0.2.0:
- dependencies:
- css-select: 5.1.0
- css-what: 6.1.0
- dom-serializer: 2.0.0
- domhandler: 5.0.3
- htmlparser2: 9.1.0
- picocolors: 1.1.1
- postcss: 8.5.3
- postcss-media-query-parser: 0.2.3
-
- better-path-resolve@1.0.0:
- dependencies:
- is-windows: 1.0.2
-
- big.js@5.2.2: {}
-
- binary-extensions@2.3.0: {}
-
- bindings@1.5.0:
- dependencies:
- file-uri-to-path: 1.0.0
-
- birpc@0.2.19: {}
-
- bl@4.1.0:
- dependencies:
- buffer: 5.7.1
- inherits: 2.0.4
- readable-stream: 3.6.2
-
- 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
-
- bonjour-service@1.3.0:
- dependencies:
- fast-deep-equal: 3.1.3
- multicast-dns: 7.2.5
-
- boolbase@1.0.0: {}
-
- brace-expansion@1.1.11:
- dependencies:
- balanced-match: 1.0.2
- concat-map: 0.0.1
-
- brace-expansion@2.0.1:
- dependencies:
- balanced-match: 1.0.2
-
- braces@3.0.3:
- dependencies:
- fill-range: 7.1.1
-
- browserslist@4.24.4:
- dependencies:
- caniuse-lite: 1.0.30001696
- electron-to-chromium: 1.5.90
- node-releases: 2.0.19
- update-browserslist-db: 1.1.2(browserslist@4.24.4)
-
- buffer-crc32@0.2.13: {}
-
- buffer-crc32@1.0.0: {}
-
- buffer-from@1.1.2: {}
-
- buffer@5.7.1:
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
-
- buffer@6.0.3:
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
-
- bundle-name@4.1.0:
- dependencies:
- run-applescript: 7.0.0
-
- bundle-require@5.1.0(esbuild@0.24.2):
- dependencies:
- esbuild: 0.24.2
- load-tsconfig: 0.2.5
-
- busboy@1.6.0:
- dependencies:
- streamsearch: 1.1.0
-
- bytes@3.1.2: {}
-
- c12@1.11.2(magicast@0.3.5):
- dependencies:
- chokidar: 3.6.0
- confbox: 0.1.8
- defu: 6.1.4
- dotenv: 16.4.7
- giget: 1.2.4
- jiti: 1.21.7
- mlly: 1.7.4
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- rc9: 2.1.2
- optionalDependencies:
- magicast: 0.3.5
-
- c12@2.0.1(magicast@0.3.5):
- dependencies:
- chokidar: 4.0.3
- confbox: 0.1.8
- defu: 6.1.4
- dotenv: 16.4.7
- giget: 1.2.4
- jiti: 2.4.2
- mlly: 1.7.4
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- rc9: 2.1.2
- optionalDependencies:
- magicast: 0.3.5
-
- cac@6.7.14: {}
-
- cacache@19.0.1:
- dependencies:
- '@npmcli/fs': 4.0.0
- fs-minipass: 3.0.3
- glob: 10.4.3
- lru-cache: 10.4.3
- minipass: 7.1.2
- minipass-collect: 2.0.1
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- p-map: 7.0.3
- ssri: 12.0.0
- tar: 7.4.3
- unique-filename: 4.0.0
-
- call-bind-apply-helpers@1.0.1:
- dependencies:
- es-errors: 1.3.0
- function-bind: 1.1.2
-
- call-bind@1.0.8:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- es-define-property: 1.0.1
- get-intrinsic: 1.2.7
- set-function-length: 1.2.2
-
- call-bound@1.0.3:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- get-intrinsic: 1.2.7
-
- callsites@3.1.0: {}
-
- camelcase-css@2.0.1: {}
-
- caniuse-api@3.0.0:
- dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001696
- lodash.memoize: 4.1.2
- lodash.uniq: 4.5.0
-
- caniuse-lite@1.0.30001696: {}
-
- ccount@2.0.1: {}
-
- chai@4.5.0:
- dependencies:
- assertion-error: 1.1.0
- check-error: 1.0.3
- deep-eql: 4.1.4
- get-func-name: 2.0.2
- loupe: 2.3.7
- pathval: 1.1.1
- type-detect: 4.1.0
-
- chalk@4.1.2:
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
-
- chalk@5.4.1: {}
-
- change-case@5.4.4: {}
-
- char-regex@1.0.2: {}
-
- character-entities-html4@2.1.0: {}
-
- character-entities-legacy@3.0.0: {}
-
- chardet@0.7.0: {}
-
- check-error@1.0.3:
- dependencies:
- get-func-name: 2.0.2
-
- chokidar@3.6.0:
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.3
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
-
- chokidar@4.0.3:
- dependencies:
- readdirp: 4.1.2
-
- chownr@2.0.0: {}
-
- chownr@3.0.0: {}
-
- chrome-trace-event@1.0.4: {}
-
- chromium-bidi@0.5.24(devtools-protocol@0.0.1299070):
- dependencies:
- devtools-protocol: 0.0.1299070
- mitt: 3.0.1
- urlpattern-polyfill: 10.0.0
- zod: 3.23.8
-
- ci-info@3.9.0: {}
-
- citty@0.1.6:
- dependencies:
- consola: 3.4.0
-
- cjs-module-lexer@1.4.1: {}
-
- classnames@2.5.1: {}
-
- clear@0.1.0: {}
-
- cli-cursor@3.1.0:
- dependencies:
- restore-cursor: 3.1.0
-
- cli-cursor@5.0.0:
- dependencies:
- restore-cursor: 5.1.0
-
- cli-highlight@2.1.11:
- dependencies:
- chalk: 4.1.2
- highlight.js: 10.7.3
- mz: 2.7.0
- parse5: 5.1.1
- parse5-htmlparser2-tree-adapter: 6.0.1
- yargs: 16.2.0
-
- cli-spinners@2.9.2: {}
-
- cli-table3@0.6.5:
- dependencies:
- string-width: 4.2.3
- optionalDependencies:
- '@colors/colors': 1.5.0
-
- cli-truncate@4.0.0:
- dependencies:
- slice-ansi: 5.0.0
- string-width: 7.2.0
-
- cli-width@4.1.0: {}
-
- client-only@0.0.1: {}
-
- clipboardy@4.0.0:
- dependencies:
- execa: 8.0.1
- is-wsl: 3.1.0
- is64bit: 2.0.0
-
- cliui@7.0.4:
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
-
- cliui@8.0.1:
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
-
- clone-deep@4.0.1:
- dependencies:
- is-plain-object: 2.0.4
- kind-of: 6.0.3
- shallow-clone: 3.0.1
-
- clone@1.0.4: {}
-
- clsx@2.1.1: {}
-
- cluster-key-slot@1.1.2: {}
-
- color-convert@2.0.1:
- dependencies:
- color-name: 1.1.4
-
- color-name@1.1.4: {}
-
- color-string@1.9.1:
- dependencies:
- color-name: 1.1.4
- simple-swizzle: 0.2.2
-
- color@4.2.3:
- dependencies:
- color-convert: 2.0.1
- color-string: 1.9.1
-
- colord@2.9.3: {}
-
- colorette@1.4.0: {}
-
- colorette@2.0.20: {}
-
- combined-stream@1.0.8:
- dependencies:
- delayed-stream: 1.0.0
-
- comma-separated-tokens@2.0.3: {}
-
- commander@10.0.1: {}
-
- commander@12.1.0: {}
-
- commander@13.0.0: {}
-
- commander@2.20.3: {}
-
- commander@4.1.1: {}
-
- commander@7.2.0: {}
-
- commander@8.3.0: {}
-
- common-path-prefix@3.0.0: {}
-
- commondir@1.0.1: {}
-
- compatx@0.1.8: {}
-
- compress-commons@6.0.2:
- dependencies:
- crc-32: 1.2.2
- crc32-stream: 6.0.0
- is-stream: 2.0.1
- normalize-path: 3.0.0
- readable-stream: 4.7.0
-
- compressible@2.0.18:
- dependencies:
- mime-db: 1.53.0
-
- compression@1.8.0:
- dependencies:
- bytes: 3.1.2
- compressible: 2.0.18
- debug: 2.6.9
- negotiator: 0.6.4
- on-headers: 1.0.2
- safe-buffer: 5.2.1
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
-
- concat-map@0.0.1: {}
-
- confbox@0.1.8: {}
-
- config-chain@1.1.13:
- dependencies:
- ini: 1.3.8
- proto-list: 1.2.4
-
- connect-history-api-fallback@2.0.0: {}
-
- connect@3.7.0:
- dependencies:
- debug: 2.6.9
- finalhandler: 1.1.2
- parseurl: 1.3.3
- utils-merge: 1.0.1
- transitivePeerDependencies:
- - supports-color
-
- consola@3.4.0: {}
-
- content-disposition@0.5.4:
- dependencies:
- safe-buffer: 5.2.1
-
- content-type@1.0.5: {}
-
- convert-source-map@1.9.0: {}
-
- convert-source-map@2.0.0: {}
-
- cookie-es@1.2.2: {}
-
- cookie-signature@1.0.6: {}
-
- cookie@0.6.0: {}
-
- cookie@0.7.1: {}
-
- cookie@0.7.2: {}
-
- cookie@1.0.2: {}
-
- copy-anything@2.0.6:
- dependencies:
- is-what: 3.14.1
-
- copy-anything@3.0.5:
- dependencies:
- is-what: 4.1.16
-
- copy-webpack-plugin@12.0.2(webpack@5.98.0(esbuild@0.25.0)):
- dependencies:
- fast-glob: 3.3.3
- glob-parent: 6.0.2
- globby: 14.1.0
- normalize-path: 3.0.0
- schema-utils: 4.3.0
- serialize-javascript: 6.0.2
- webpack: 5.98.0(esbuild@0.24.2)
-
- core-js-compat@3.41.0:
- dependencies:
- browserslist: 4.24.4
-
- core-util-is@1.0.3: {}
-
- cors@2.8.5:
- dependencies:
- object-assign: 4.1.1
- vary: 1.1.2
-
- cosmiconfig@9.0.0(typescript@5.5.3):
- dependencies:
- env-paths: 2.2.1
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- parse-json: 5.2.0
- optionalDependencies:
- typescript: 5.5.3
-
- crc-32@1.2.2: {}
-
- crc32-stream@6.0.0:
- dependencies:
- crc-32: 1.2.2
- readable-stream: 4.7.0
-
- create-require@1.1.1: {}
-
- croner@9.0.0: {}
-
- cronstrue@2.53.0: {}
-
- cross-spawn@5.1.0:
- dependencies:
- lru-cache: 4.1.5
- shebang-command: 1.2.0
- which: 1.3.1
-
- cross-spawn@7.0.5:
- dependencies:
- path-key: 3.1.1
- shebang-command: 2.0.0
- which: 2.0.2
-
- cross-spawn@7.0.6:
- dependencies:
- path-key: 3.1.1
- shebang-command: 2.0.0
- which: 2.0.2
-
- crossws@0.3.3:
- dependencies:
- uncrypto: 0.1.3
-
- css-declaration-sorter@7.2.0(postcss@8.5.3):
- dependencies:
- postcss: 8.5.3
-
- css-loader@7.1.2(webpack@5.98.0(esbuild@0.25.0)):
- dependencies:
- icss-utils: 5.1.0(postcss@8.4.41)
- postcss: 8.4.41
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.41)
- postcss-modules-local-by-default: 4.2.0(postcss@8.4.41)
- postcss-modules-scope: 3.2.1(postcss@8.4.41)
- postcss-modules-values: 4.0.0(postcss@8.4.41)
- postcss-value-parser: 4.2.0
- semver: 7.7.1
- optionalDependencies:
- webpack: 5.98.0(esbuild@0.24.2)
-
- css-select@5.1.0:
- dependencies:
- boolbase: 1.0.0
- css-what: 6.1.0
- domhandler: 5.0.3
- domutils: 3.2.2
- nth-check: 2.1.1
-
- css-tree@2.2.1:
- dependencies:
- mdn-data: 2.0.28
- source-map-js: 1.2.1
-
- css-tree@2.3.1:
- dependencies:
- mdn-data: 2.0.30
- source-map-js: 1.2.1
-
- css-what@6.1.0: {}
-
- cssesc@3.0.0: {}
-
- cssnano-preset-default@7.0.6(postcss@8.5.3):
- dependencies:
- browserslist: 4.24.4
- css-declaration-sorter: 7.2.0(postcss@8.5.3)
- cssnano-utils: 5.0.0(postcss@8.5.3)
- postcss: 8.5.3
- postcss-calc: 10.1.0(postcss@8.5.3)
- postcss-colormin: 7.0.2(postcss@8.5.3)
- postcss-convert-values: 7.0.4(postcss@8.5.3)
- postcss-discard-comments: 7.0.3(postcss@8.5.3)
- postcss-discard-duplicates: 7.0.1(postcss@8.5.3)
- postcss-discard-empty: 7.0.0(postcss@8.5.3)
- postcss-discard-overridden: 7.0.0(postcss@8.5.3)
- postcss-merge-longhand: 7.0.4(postcss@8.5.3)
- postcss-merge-rules: 7.0.4(postcss@8.5.3)
- postcss-minify-font-values: 7.0.0(postcss@8.5.3)
- postcss-minify-gradients: 7.0.0(postcss@8.5.3)
- postcss-minify-params: 7.0.2(postcss@8.5.3)
- postcss-minify-selectors: 7.0.4(postcss@8.5.3)
- postcss-normalize-charset: 7.0.0(postcss@8.5.3)
- postcss-normalize-display-values: 7.0.0(postcss@8.5.3)
- postcss-normalize-positions: 7.0.0(postcss@8.5.3)
- postcss-normalize-repeat-style: 7.0.0(postcss@8.5.3)
- postcss-normalize-string: 7.0.0(postcss@8.5.3)
- postcss-normalize-timing-functions: 7.0.0(postcss@8.5.3)
- postcss-normalize-unicode: 7.0.2(postcss@8.5.3)
- postcss-normalize-url: 7.0.0(postcss@8.5.3)
- postcss-normalize-whitespace: 7.0.0(postcss@8.5.3)
- postcss-ordered-values: 7.0.1(postcss@8.5.3)
- postcss-reduce-initial: 7.0.2(postcss@8.5.3)
- postcss-reduce-transforms: 7.0.0(postcss@8.5.3)
- postcss-svgo: 7.0.1(postcss@8.5.3)
- postcss-unique-selectors: 7.0.3(postcss@8.5.3)
-
- cssnano-utils@5.0.0(postcss@8.5.3):
- dependencies:
- postcss: 8.5.3
-
- cssnano@7.0.6(postcss@8.5.3):
- dependencies:
- cssnano-preset-default: 7.0.6(postcss@8.5.3)
- lilconfig: 3.1.3
- postcss: 8.5.3
-
- csso@5.0.5:
- dependencies:
- css-tree: 2.2.1
-
- cssstyle@3.0.0:
- dependencies:
- rrweb-cssom: 0.6.0
-
- csstype@3.1.3: {}
-
- custom-event@1.0.1: {}
-
- damerau-levenshtein@1.0.8: {}
-
- data-uri-to-buffer@4.0.1: {}
-
- data-uri-to-buffer@6.0.2: {}
-
- data-urls@5.0.0:
- dependencies:
- whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.0
-
- data-view-buffer@1.0.2:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- is-data-view: 1.0.2
-
- data-view-byte-length@1.0.2:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- is-data-view: 1.0.2
-
- data-view-byte-offset@1.0.1:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- is-data-view: 1.0.2
-
- dataloader@1.4.0: {}
-
- date-format@4.0.14: {}
-
- db0@0.2.3: {}
-
- de-indent@1.0.2: {}
-
- debug@2.6.9:
- dependencies:
- ms: 2.0.0
-
- debug@3.2.7:
- dependencies:
- ms: 2.1.3
-
- debug@4.3.4:
- dependencies:
- ms: 2.1.2
-
- debug@4.3.7:
- dependencies:
- ms: 2.1.3
-
- debug@4.4.0(supports-color@9.4.0):
- dependencies:
- ms: 2.1.3
- optionalDependencies:
- supports-color: 9.4.0
-
- decimal.js@10.5.0: {}
-
- deep-eql@4.1.4:
- dependencies:
- type-detect: 4.1.0
-
- deep-is@0.1.4: {}
-
- deepmerge@4.3.1: {}
-
- default-browser-id@5.0.0: {}
-
- default-browser@5.2.1:
- dependencies:
- bundle-name: 4.1.0
- default-browser-id: 5.0.0
-
- defaults@1.0.4:
- dependencies:
- clone: 1.0.4
-
- define-data-property@1.1.4:
- dependencies:
- es-define-property: 1.0.1
- es-errors: 1.3.0
- gopd: 1.2.0
-
- define-lazy-prop@2.0.0: {}
-
- define-lazy-prop@3.0.0: {}
-
- define-properties@1.2.1:
- dependencies:
- define-data-property: 1.1.4
- has-property-descriptors: 1.0.2
- object-keys: 1.1.1
-
- defu@6.1.4: {}
-
- degenerator@5.0.1:
- dependencies:
- ast-types: 0.13.4
- escodegen: 2.1.0
- esprima: 4.0.1
-
- delayed-stream@1.0.0: {}
-
- denque@2.1.0: {}
-
- depd@1.1.2: {}
-
- depd@2.0.0: {}
-
- dequal@2.0.3: {}
-
- destr@2.0.3: {}
-
- destroy@1.2.0: {}
-
- detect-indent@6.1.0: {}
-
- detect-libc@1.0.3: {}
-
- detect-libc@2.0.3: {}
-
- detect-node-es@1.1.0: {}
-
- detect-node@2.1.0: {}
-
- devalue@5.1.1: {}
-
- devlop@1.1.0:
- dependencies:
- dequal: 2.0.3
-
- devtools-protocol@0.0.1299070: {}
-
- di@0.0.1: {}
-
- didyoumean@1.2.2: {}
-
- diff-sequences@29.6.3: {}
-
- diff@4.0.2: {}
-
- diff@7.0.0: {}
-
- dir-glob@3.0.1:
- dependencies:
- path-type: 4.0.0
-
- dlv@1.1.3: {}
-
- dns-packet@5.6.1:
- dependencies:
- '@leichtgewicht/ip-codec': 2.0.5
-
- doctrine@2.1.0:
- dependencies:
- esutils: 2.0.3
-
- dom-serialize@2.2.1:
- dependencies:
- custom-event: 1.0.1
- ent: 2.2.2
- extend: 3.0.2
- void-elements: 2.0.1
-
- dom-serializer@2.0.0:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 5.0.3
- entities: 4.5.0
-
- domelementtype@2.3.0: {}
-
- domhandler@5.0.3:
- dependencies:
- domelementtype: 2.3.0
-
- domutils@3.2.2:
- dependencies:
- dom-serializer: 2.0.0
- domelementtype: 2.3.0
- domhandler: 5.0.3
-
- dot-prop@9.0.0:
- dependencies:
- type-fest: 4.33.0
-
- dotenv@16.4.7: {}
-
- dotenv@8.6.0: {}
-
- dunder-proto@1.0.1:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- es-errors: 1.3.0
- gopd: 1.2.0
-
- duplexer@0.1.2: {}
-
- eastasianwidth@0.2.0: {}
-
- editorconfig@1.0.4:
- dependencies:
- '@one-ini/wasm': 0.1.1
- commander: 10.0.1
- minimatch: 9.0.1
- semver: 7.7.1
-
- ee-first@1.1.1: {}
-
- electron-to-chromium@1.5.90: {}
-
- emoji-regex-xs@1.0.0: {}
-
- emoji-regex@10.4.0: {}
-
- emoji-regex@8.0.0: {}
-
- emoji-regex@9.2.2: {}
-
- emojilib@2.4.0: {}
-
- emojis-list@3.0.0: {}
-
- encodeurl@1.0.2: {}
-
- encodeurl@2.0.0: {}
-
- encoding@0.1.13:
- dependencies:
- 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.6.4:
- dependencies:
- '@types/cors': 2.8.17
- '@types/node': 22.10.5
- accepts: 1.3.8
- base64id: 2.0.0
- cookie: 0.7.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.0:
- dependencies:
- graceful-fs: 4.2.11
- tapable: 2.2.1
-
- enhanced-resolve@5.18.1:
- dependencies:
- graceful-fs: 4.2.11
- tapable: 2.2.1
-
- enquirer@2.4.1:
- dependencies:
- ansi-colors: 4.1.3
- strip-ansi: 6.0.1
-
- ent@2.2.2:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- punycode: 1.4.1
- safe-regex-test: 1.1.0
-
- entities@4.5.0: {}
-
- env-paths@2.2.1: {}
-
- environment@1.1.0: {}
-
- err-code@2.0.3: {}
-
- errno@0.1.8:
- dependencies:
- prr: 1.0.1
- optional: true
-
- error-ex@1.3.2:
- dependencies:
- is-arrayish: 0.2.1
-
- error-stack-parser-es@0.1.5: {}
-
- errx@0.1.0: {}
-
- es-abstract@1.23.9:
- dependencies:
- array-buffer-byte-length: 1.0.2
- arraybuffer.prototype.slice: 1.0.4
- available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- call-bound: 1.0.3
- data-view-buffer: 1.0.2
- data-view-byte-length: 1.0.2
- data-view-byte-offset: 1.0.1
- es-define-property: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- es-set-tostringtag: 2.1.0
- es-to-primitive: 1.3.0
- function.prototype.name: 1.1.8
- get-intrinsic: 1.2.7
- get-proto: 1.0.1
- get-symbol-description: 1.1.0
- globalthis: 1.0.4
- gopd: 1.2.0
- has-property-descriptors: 1.0.2
- has-proto: 1.2.0
- has-symbols: 1.1.0
- hasown: 2.0.2
- internal-slot: 1.1.0
- is-array-buffer: 3.0.5
- is-callable: 1.2.7
- is-data-view: 1.0.2
- is-regex: 1.2.1
- is-shared-array-buffer: 1.0.4
- is-string: 1.1.1
- is-typed-array: 1.1.15
- is-weakref: 1.1.0
- math-intrinsics: 1.1.0
- object-inspect: 1.13.3
- object-keys: 1.1.1
- object.assign: 4.1.7
- own-keys: 1.0.1
- regexp.prototype.flags: 1.5.4
- safe-array-concat: 1.1.3
- safe-push-apply: 1.0.0
- safe-regex-test: 1.1.0
- set-proto: 1.0.0
- string.prototype.trim: 1.2.10
- string.prototype.trimend: 1.0.9
- string.prototype.trimstart: 1.0.8
- typed-array-buffer: 1.0.3
- typed-array-byte-length: 1.0.3
- typed-array-byte-offset: 1.0.4
- typed-array-length: 1.0.7
- unbox-primitive: 1.1.0
- which-typed-array: 1.1.18
-
- es-define-property@1.0.1: {}
-
- es-errors@1.3.0: {}
-
- es-iterator-helpers@1.2.1:
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- es-set-tostringtag: 2.1.0
- function-bind: 1.1.2
- get-intrinsic: 1.2.7
- globalthis: 1.0.4
- gopd: 1.2.0
- has-property-descriptors: 1.0.2
- has-proto: 1.2.0
- has-symbols: 1.1.0
- internal-slot: 1.1.0
- iterator.prototype: 1.1.5
- safe-array-concat: 1.1.3
-
- es-module-lexer@1.6.0: {}
-
- es-object-atoms@1.1.1:
- dependencies:
- es-errors: 1.3.0
-
- es-set-tostringtag@2.1.0:
- dependencies:
- es-errors: 1.3.0
- get-intrinsic: 1.2.7
- has-tostringtag: 1.0.2
- hasown: 2.0.2
-
- es-shim-unscopables@1.0.2:
- dependencies:
- hasown: 2.0.2
-
- es-to-primitive@1.3.0:
- dependencies:
- is-callable: 1.2.7
- is-date-object: 1.1.0
- is-symbol: 1.1.1
-
- esbuild-wasm@0.25.0: {}
-
- esbuild@0.21.5:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.21.5
- '@esbuild/android-arm': 0.21.5
- '@esbuild/android-arm64': 0.21.5
- '@esbuild/android-x64': 0.21.5
- '@esbuild/darwin-arm64': 0.21.5
- '@esbuild/darwin-x64': 0.21.5
- '@esbuild/freebsd-arm64': 0.21.5
- '@esbuild/freebsd-x64': 0.21.5
- '@esbuild/linux-arm': 0.21.5
- '@esbuild/linux-arm64': 0.21.5
- '@esbuild/linux-ia32': 0.21.5
- '@esbuild/linux-loong64': 0.21.5
- '@esbuild/linux-mips64el': 0.21.5
- '@esbuild/linux-ppc64': 0.21.5
- '@esbuild/linux-riscv64': 0.21.5
- '@esbuild/linux-s390x': 0.21.5
- '@esbuild/linux-x64': 0.21.5
- '@esbuild/netbsd-x64': 0.21.5
- '@esbuild/openbsd-x64': 0.21.5
- '@esbuild/sunos-x64': 0.21.5
- '@esbuild/win32-arm64': 0.21.5
- '@esbuild/win32-ia32': 0.21.5
- '@esbuild/win32-x64': 0.21.5
-
- esbuild@0.24.2:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.24.2
- '@esbuild/android-arm': 0.24.2
- '@esbuild/android-arm64': 0.24.2
- '@esbuild/android-x64': 0.24.2
- '@esbuild/darwin-arm64': 0.24.2
- '@esbuild/darwin-x64': 0.24.2
- '@esbuild/freebsd-arm64': 0.24.2
- '@esbuild/freebsd-x64': 0.24.2
- '@esbuild/linux-arm': 0.24.2
- '@esbuild/linux-arm64': 0.24.2
- '@esbuild/linux-ia32': 0.24.2
- '@esbuild/linux-loong64': 0.24.2
- '@esbuild/linux-mips64el': 0.24.2
- '@esbuild/linux-ppc64': 0.24.2
- '@esbuild/linux-riscv64': 0.24.2
- '@esbuild/linux-s390x': 0.24.2
- '@esbuild/linux-x64': 0.24.2
- '@esbuild/netbsd-arm64': 0.24.2
- '@esbuild/netbsd-x64': 0.24.2
- '@esbuild/openbsd-arm64': 0.24.2
- '@esbuild/openbsd-x64': 0.24.2
- '@esbuild/sunos-x64': 0.24.2
- '@esbuild/win32-arm64': 0.24.2
- '@esbuild/win32-ia32': 0.24.2
- '@esbuild/win32-x64': 0.24.2
-
- esbuild@0.25.0:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.0
- '@esbuild/android-arm': 0.25.0
- '@esbuild/android-arm64': 0.25.0
- '@esbuild/android-x64': 0.25.0
- '@esbuild/darwin-arm64': 0.25.0
- '@esbuild/darwin-x64': 0.25.0
- '@esbuild/freebsd-arm64': 0.25.0
- '@esbuild/freebsd-x64': 0.25.0
- '@esbuild/linux-arm': 0.25.0
- '@esbuild/linux-arm64': 0.25.0
- '@esbuild/linux-ia32': 0.25.0
- '@esbuild/linux-loong64': 0.25.0
- '@esbuild/linux-mips64el': 0.25.0
- '@esbuild/linux-ppc64': 0.25.0
- '@esbuild/linux-riscv64': 0.25.0
- '@esbuild/linux-s390x': 0.25.0
- '@esbuild/linux-x64': 0.25.0
- '@esbuild/netbsd-arm64': 0.25.0
- '@esbuild/netbsd-x64': 0.25.0
- '@esbuild/openbsd-arm64': 0.25.0
- '@esbuild/openbsd-x64': 0.25.0
- '@esbuild/sunos-x64': 0.25.0
- '@esbuild/win32-arm64': 0.25.0
- '@esbuild/win32-ia32': 0.25.0
- '@esbuild/win32-x64': 0.25.0
-
- escalade@3.2.0: {}
-
- escape-html@1.0.3: {}
-
- escape-string-regexp@4.0.0: {}
-
- escape-string-regexp@5.0.0: {}
-
- escodegen@2.1.0:
- dependencies:
- esprima: 4.0.1
- estraverse: 5.3.0
- esutils: 2.0.3
- optionalDependencies:
- source-map: 0.6.1
-
- eslint-compat-utils@0.5.1(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
- semver: 7.7.1
-
- eslint-config-next@15.1.6(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3):
- dependencies:
- '@next/eslint-plugin-next': 15.1.6
- '@rushstack/eslint-patch': 1.10.5
- '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/parser': 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- eslint: 9.17.0(jiti@2.4.2)
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-jsx-a11y: 6.10.2(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-react: 7.37.4(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-react-hooks: 5.1.0(eslint@9.17.0(jiti@2.4.2))
- optionalDependencies:
- typescript: 5.5.3
- transitivePeerDependencies:
- - eslint-import-resolver-webpack
- - eslint-plugin-import-x
- - supports-color
-
- eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
-
- eslint-import-resolver-node@0.3.9:
- dependencies:
- debug: 3.2.7
- is-core-module: 2.16.1
- resolve: 1.22.10
- transitivePeerDependencies:
- - supports-color
-
- eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- '@nolyfill/is-core-module': 1.0.39
- debug: 4.4.0(supports-color@9.4.0)
- enhanced-resolve: 5.18.0
- eslint: 9.17.0(jiti@2.4.2)
- fast-glob: 3.3.3
- get-tsconfig: 4.10.0
- is-bun-module: 1.3.0
- is-glob: 4.0.3
- stable-hash: 0.0.4
- optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2))
- transitivePeerDependencies:
- - supports-color
-
- eslint-module-utils@2.12.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- debug: 3.2.7
- optionalDependencies:
- '@typescript-eslint/parser': 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- eslint: 9.17.0(jiti@2.4.2)
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2))
- transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- '@rtsao/scc': 1.1.0
- array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
- array.prototype.flat: 1.3.3
- array.prototype.flatmap: 1.3.3
- debug: 3.2.7
- doctrine: 2.1.0
- eslint: 9.17.0(jiti@2.4.2)
- eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2))
- hasown: 2.0.2
- is-core-module: 2.16.1
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.fromentries: 2.0.8
- object.groupby: 1.0.3
- object.values: 1.2.1
- semver: 6.3.1
- string.prototype.trimend: 1.0.9
- tsconfig-paths: 3.15.0
- optionalDependencies:
- '@typescript-eslint/parser': 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
-
- eslint-plugin-jsx-a11y@6.10.2(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- aria-query: 5.3.2
- array-includes: 3.1.8
- array.prototype.flatmap: 1.3.3
- ast-types-flow: 0.0.8
- axe-core: 4.10.2
- axobject-query: 4.1.0
- damerau-levenshtein: 1.0.8
- emoji-regex: 9.2.2
- eslint: 9.17.0(jiti@2.4.2)
- hasown: 2.0.2
- jsx-ast-utils: 3.3.5
- language-tags: 1.0.9
- minimatch: 3.1.2
- object.fromentries: 2.0.8
- safe-regex-test: 1.1.0
- string.prototype.includes: 2.0.1
-
- eslint-plugin-prettier@5.2.3(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2):
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
- prettier: 3.4.2
- prettier-linter-helpers: 1.0.0
- synckit: 0.9.2
- optionalDependencies:
- '@types/eslint': 9.6.1
- eslint-config-prettier: 9.1.0(eslint@9.17.0(jiti@2.4.2))
-
- eslint-plugin-react-hooks@4.6.2(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
-
- eslint-plugin-react-hooks@5.1.0(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
-
- eslint-plugin-react-refresh@0.4.7(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
-
- eslint-plugin-react@7.37.4(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- array-includes: 3.1.8
- array.prototype.findlast: 1.2.5
- array.prototype.flatmap: 1.3.3
- array.prototype.tosorted: 1.1.4
- doctrine: 2.1.0
- es-iterator-helpers: 1.2.1
- eslint: 9.17.0(jiti@2.4.2)
- estraverse: 5.3.0
- hasown: 2.0.2
- jsx-ast-utils: 3.3.5
- minimatch: 3.1.2
- object.entries: 1.1.8
- object.fromentries: 2.0.8
- object.values: 1.2.1
- prop-types: 15.8.1
- resolve: 2.0.0-next.5
- semver: 6.3.1
- string.prototype.matchall: 4.0.12
- string.prototype.repeat: 1.0.0
-
- eslint-plugin-simple-import-sort@12.1.1(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
-
- eslint-plugin-sort-destructure-keys@2.0.0(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
- natural-compare-lite: 1.4.0
-
- eslint-plugin-sort-keys-fix@1.1.2:
- dependencies:
- espree: 6.2.1
- esutils: 2.0.3
- natural-compare: 1.4.0
- requireindex: 1.2.0
-
- eslint-plugin-svelte@2.36.0(eslint@9.17.0(jiti@2.4.2))(svelte@5.19.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3)):
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
- '@jridgewell/sourcemap-codec': 1.5.0
- debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.17.0(jiti@2.4.2)
- eslint-compat-utils: 0.5.1(eslint@9.17.0(jiti@2.4.2))
- esutils: 2.0.3
- known-css-properties: 0.30.0
- postcss: 8.4.41
- postcss-load-config: 3.1.4(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3))
- postcss-safe-parser: 6.0.0(postcss@8.4.41)
- postcss-selector-parser: 6.1.2
- semver: 7.7.0
- svelte-eslint-parser: 0.43.0(svelte@5.19.9)
- optionalDependencies:
- svelte: 5.19.9
- transitivePeerDependencies:
- - supports-color
- - ts-node
-
- eslint-plugin-typescript-sort-keys@3.3.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3):
- dependencies:
- '@typescript-eslint/experimental-utils': 5.62.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/parser': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- eslint: 9.17.0(jiti@2.4.2)
- json-schema: 0.4.0
- natural-compare-lite: 1.4.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.4.2)):
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
- eslint: 9.17.0(jiti@2.4.2)
- globals: 13.24.0
- natural-compare: 1.4.0
- nth-check: 2.1.1
- postcss-selector-parser: 6.1.2
- semver: 7.7.0
- vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.4.2))
- xml-name-validator: 4.0.0
- transitivePeerDependencies:
- - 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
- estraverse: 5.3.0
-
- eslint-scope@8.2.0:
- dependencies:
- esrecurse: 4.3.0
- estraverse: 5.3.0
-
- eslint-visitor-keys@1.3.0: {}
-
- eslint-visitor-keys@3.4.3: {}
-
- eslint-visitor-keys@4.2.0: {}
-
- eslint@9.17.0(jiti@2.4.2):
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
- '@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.19.1
- '@eslint/core': 0.9.1
- '@eslint/eslintrc': 3.2.0
- '@eslint/js': 9.17.0
- '@eslint/plugin-kit': 0.2.5
- '@humanfs/node': 0.16.6
- '@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.4.1
- '@types/estree': 1.0.6
- '@types/json-schema': 7.0.15
- ajv: 6.12.6
- chalk: 4.1.2
- cross-spawn: 7.0.6
- debug: 4.4.0(supports-color@9.4.0)
- escape-string-regexp: 4.0.0
- eslint-scope: 8.2.0
- eslint-visitor-keys: 4.2.0
- espree: 10.3.0
- esquery: 1.6.0
- esutils: 2.0.3
- fast-deep-equal: 3.1.3
- file-entry-cache: 8.0.0
- find-up: 5.0.0
- glob-parent: 6.0.2
- ignore: 5.3.2
- imurmurhash: 0.1.4
- is-glob: 4.0.3
- json-stable-stringify-without-jsonify: 1.0.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.4
- optionalDependencies:
- jiti: 2.4.2
- transitivePeerDependencies:
- - supports-color
-
- esm-env@1.2.2: {}
-
- espree@10.3.0:
- dependencies:
- acorn: 8.14.0
- acorn-jsx: 5.3.2(acorn@8.14.0)
- eslint-visitor-keys: 4.2.0
-
- espree@6.2.1:
- dependencies:
- acorn: 7.4.1
- acorn-jsx: 5.3.2(acorn@7.4.1)
- eslint-visitor-keys: 1.3.0
-
- espree@9.6.1:
- dependencies:
- acorn: 8.14.0
- acorn-jsx: 5.3.2(acorn@8.14.0)
- eslint-visitor-keys: 3.4.3
-
- esprima@4.0.1: {}
-
- esquery@1.6.0:
- dependencies:
- estraverse: 5.3.0
-
- esrap@1.4.3:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
-
- esrecurse@4.3.0:
- dependencies:
- estraverse: 5.3.0
-
- estraverse@4.3.0: {}
-
- estraverse@5.3.0: {}
-
- estree-walker@2.0.2: {}
-
- estree-walker@3.0.3:
- dependencies:
- '@types/estree': 1.0.6
-
- esutils@2.0.3: {}
-
- etag@1.8.1: {}
-
- event-target-shim@5.0.1: {}
-
- eventemitter3@4.0.7: {}
-
- eventemitter3@5.0.1: {}
-
- events@3.3.0: {}
-
- execa@7.2.0:
- dependencies:
- cross-spawn: 7.0.5
- get-stream: 6.0.1
- human-signals: 4.3.1
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.3.0
- onetime: 6.0.0
- signal-exit: 3.0.7
- strip-final-newline: 3.0.0
-
- execa@8.0.1:
- dependencies:
- cross-spawn: 7.0.5
- get-stream: 8.0.1
- human-signals: 5.0.0
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.3.0
- onetime: 6.0.0
- signal-exit: 4.1.0
- strip-final-newline: 3.0.0
-
- execa@9.5.2:
- dependencies:
- '@sindresorhus/merge-streams': 4.0.0
- cross-spawn: 7.0.5
- figures: 6.1.0
- get-stream: 9.0.1
- human-signals: 8.0.0
- is-plain-obj: 4.1.0
- is-stream: 4.0.1
- npm-run-path: 6.0.0
- pretty-ms: 9.2.0
- signal-exit: 4.1.0
- strip-final-newline: 4.0.0
- yoctocolors: 2.1.1
-
- exponential-backoff@3.1.2: {}
-
- express@4.21.0:
- 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.6.0
- 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.10
- 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@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
-
- extend@3.0.2: {}
-
- extendable-error@0.1.7: {}
-
- external-editor@3.1.0:
- dependencies:
- chardet: 0.7.0
- iconv-lite: 0.4.24
- tmp: 0.0.33
-
- externality@1.0.2:
- dependencies:
- enhanced-resolve: 5.18.1
- mlly: 1.7.4
- pathe: 1.1.2
- ufo: 1.5.4
-
- extract-zip@2.0.1:
- dependencies:
- debug: 4.3.4
- get-stream: 5.2.0
- yauzl: 2.10.0
- optionalDependencies:
- '@types/yauzl': 2.10.3
- transitivePeerDependencies:
- - supports-color
-
- fake-indexeddb@6.0.0: {}
-
- fast-decode-uri-component@1.0.1: {}
-
- fast-deep-equal@3.1.3: {}
-
- fast-diff@1.3.0: {}
-
- fast-fifo@1.3.2: {}
-
- fast-glob@3.3.1:
- 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
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.8
-
- fast-json-stable-stringify@2.1.0: {}
-
- fast-json-stringify@6.0.1:
- dependencies:
- '@fastify/merge-json-schemas': 0.2.1
- ajv: 8.17.1
- ajv-formats: 3.0.1(ajv@8.17.1)
- fast-uri: 3.0.6
- json-schema-ref-resolver: 2.0.1
- rfdc: 1.4.1
-
- fast-levenshtein@2.0.6: {}
-
- fast-npm-meta@0.2.2: {}
-
- fast-querystring@1.1.2:
- dependencies:
- fast-decode-uri-component: 1.0.1
-
- fast-redact@3.5.0: {}
-
- fast-uri@3.0.6: {}
-
- fastify-openapi-glue@4.8.0:
- dependencies:
- '@seriousme/openapi-schema-validator': 2.3.1
- fastify-plugin: 5.0.1
- js-yaml: 4.1.0
- minimist: 1.2.8
-
- fastify-plugin@5.0.1: {}
-
- fastify@5.2.0:
- dependencies:
- '@fastify/ajv-compiler': 4.0.2
- '@fastify/error': 4.0.0
- '@fastify/fast-json-stringify-compiler': 5.0.2
- abstract-logging: 2.0.1
- avvio: 9.1.0
- fast-json-stringify: 6.0.1
- find-my-way: 9.1.0
- light-my-request: 6.5.1
- pino: 9.6.0
- process-warning: 4.0.1
- proxy-addr: 2.0.7
- rfdc: 1.4.1
- secure-json-parse: 3.0.2
- semver: 7.7.0
- toad-cache: 3.7.0
-
- fastq@1.18.0:
- dependencies:
- reusify: 1.0.4
-
- faye-websocket@0.11.4:
- dependencies:
- websocket-driver: 0.7.4
-
- fd-slicer@1.1.0:
- dependencies:
- pend: 1.2.0
-
- fdir@6.4.3(picomatch@4.0.2):
- optionalDependencies:
- picomatch: 4.0.2
-
- fetch-blob@3.2.0:
- dependencies:
- node-domexception: 1.0.0
- web-streams-polyfill: 3.3.3
-
- fflate@0.8.2: {}
-
- figures@6.1.0:
- dependencies:
- is-unicode-supported: 2.1.0
-
- file-entry-cache@8.0.0:
- dependencies:
- flat-cache: 4.0.1
-
- file-uri-to-path@1.0.0: {}
-
- fill-range@7.1.1:
- dependencies:
- to-regex-range: 5.0.1
-
- finalhandler@1.1.2:
- dependencies:
- debug: 2.6.9
- encodeurl: 1.0.2
- escape-html: 1.0.3
- on-finished: 2.3.0
- parseurl: 1.3.3
- statuses: 1.5.0
- unpipe: 1.0.0
- 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
-
- find-cache-dir@4.0.0:
- dependencies:
- common-path-prefix: 3.0.0
- pkg-dir: 7.0.0
-
- find-my-way@9.1.0:
- dependencies:
- fast-deep-equal: 3.1.3
- fast-querystring: 1.1.2
- safe-regex2: 4.0.1
-
- find-up@4.1.0:
- dependencies:
- locate-path: 5.0.0
- path-exists: 4.0.0
-
- find-up@5.0.0:
- dependencies:
- locate-path: 6.0.0
- path-exists: 4.0.0
-
- find-up@6.3.0:
- dependencies:
- locate-path: 7.2.0
- path-exists: 5.0.0
-
- flat-cache@4.0.1:
- dependencies:
- flatted: 3.3.2
- keyv: 4.5.4
-
- flat@5.0.2: {}
-
- flatted@3.3.2: {}
-
- focus-trap@7.6.4:
- dependencies:
- tabbable: 6.2.0
-
- follow-redirects@1.15.9(debug@4.4.0):
- optionalDependencies:
- debug: 4.4.0(supports-color@9.4.0)
-
- for-each@0.3.4:
- dependencies:
- is-callable: 1.2.7
-
- foreground-child@3.3.0:
- dependencies:
- cross-spawn: 7.0.5
- signal-exit: 4.1.0
-
- form-data@4.0.1:
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
-
- formdata-polyfill@4.0.10:
- dependencies:
- fetch-blob: 3.2.0
-
- forwarded@0.2.0: {}
-
- fraction.js@4.3.7: {}
-
- fresh@0.5.2: {}
-
- fs-extra@11.3.0:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.1
-
- fs-extra@7.0.1:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
-
- fs-extra@8.1.0:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
-
- fs-minipass@2.1.0:
- dependencies:
- minipass: 3.3.6
-
- fs-minipass@3.0.3:
- dependencies:
- minipass: 7.1.2
-
- fs.realpath@1.0.0: {}
-
- fsevents@2.3.3:
- optional: true
-
- function-bind@1.1.2: {}
-
- function.prototype.name@1.1.8:
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- define-properties: 1.2.1
- functions-have-names: 1.2.3
- hasown: 2.0.2
- is-callable: 1.2.7
-
- functions-have-names@1.2.3: {}
-
- gensync@1.0.0-beta.2: {}
-
- get-caller-file@2.0.5: {}
-
- get-east-asian-width@1.3.0: {}
-
- get-func-name@2.0.2: {}
-
- get-intrinsic@1.2.7:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- es-define-property: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- function-bind: 1.1.2
- get-proto: 1.0.1
- gopd: 1.2.0
- has-symbols: 1.1.0
- hasown: 2.0.2
- math-intrinsics: 1.1.0
-
- get-nonce@1.0.1: {}
-
- get-port-please@3.1.2: {}
-
- get-proto@1.0.1:
- dependencies:
- dunder-proto: 1.0.1
- es-object-atoms: 1.1.1
-
- get-stream@5.2.0:
- dependencies:
- pump: 3.0.2
-
- get-stream@6.0.1: {}
-
- get-stream@8.0.1: {}
-
- get-stream@9.0.1:
- dependencies:
- '@sec-ant/readable-stream': 0.4.1
- is-stream: 4.0.1
-
- get-symbol-description@1.1.0:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.7
-
- get-tsconfig@4.10.0:
- dependencies:
- resolve-pkg-maps: 1.0.0
-
- get-uri@6.0.4:
- dependencies:
- basic-ftp: 5.0.5
- data-uri-to-buffer: 6.0.2
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
-
- giget@1.2.4:
- dependencies:
- citty: 0.1.6
- consola: 3.4.0
- defu: 6.1.4
- node-fetch-native: 1.6.6
- nypm: 0.5.2
- ohash: 1.1.4
- pathe: 2.0.2
- tar: 6.2.1
-
- git-config-path@2.0.0: {}
-
- git-up@8.0.0:
- dependencies:
- is-ssh: 1.4.0
- parse-url: 9.2.0
-
- git-url-parse@16.0.0:
- dependencies:
- git-up: 8.0.0
-
- glob-parent@5.1.2:
- dependencies:
- is-glob: 4.0.3
-
- glob-parent@6.0.2:
- dependencies:
- is-glob: 4.0.3
-
- glob-to-regexp@0.4.1: {}
-
- glob@10.4.3:
- dependencies:
- foreground-child: 3.3.0
- jackspeak: 3.4.3
- minimatch: 9.0.5
- minipass: 7.1.2
- package-json-from-dist: 1.0.1
- path-scurry: 1.11.1
-
- glob@7.2.3:
- 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
-
- global-directory@4.0.1:
- dependencies:
- ini: 4.1.1
-
- globals@11.12.0: {}
-
- globals@13.24.0:
- dependencies:
- type-fest: 0.20.2
-
- globals@14.0.0: {}
-
- globals@15.14.0: {}
-
- globalthis@1.0.4:
- dependencies:
- define-properties: 1.2.1
- gopd: 1.2.0
-
- globby@11.1.0:
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.3
- ignore: 5.3.2
- merge2: 1.4.1
- slash: 3.0.0
-
- globby@14.0.2:
- dependencies:
- '@sindresorhus/merge-streams': 2.3.0
- fast-glob: 3.3.3
- ignore: 5.3.2
- path-type: 5.0.0
- slash: 5.1.0
- unicorn-magic: 0.1.0
-
- globby@14.1.0:
- dependencies:
- '@sindresorhus/merge-streams': 2.3.0
- fast-glob: 3.3.3
- ignore: 7.0.3
- path-type: 6.0.0
- slash: 5.1.0
- unicorn-magic: 0.3.0
-
- gopd@1.2.0: {}
-
- graceful-fs@4.2.11: {}
-
- graphemer@1.4.0: {}
-
- gzip-size@7.0.0:
- dependencies:
- duplexer: 0.1.2
-
- h3@1.14.0:
- dependencies:
- cookie-es: 1.2.2
- crossws: 0.3.3
- defu: 6.1.4
- destr: 2.0.3
- iron-webcrypto: 1.2.1
- ohash: 1.1.4
- radix3: 1.1.2
- ufo: 1.5.4
- uncrypto: 0.1.3
- unenv: 1.10.0
-
- handle-thing@2.0.1: {}
-
- handlebars@4.7.8:
- dependencies:
- minimist: 1.2.8
- neo-async: 2.6.2
- source-map: 0.6.1
- wordwrap: 1.0.0
- optionalDependencies:
- uglify-js: 3.19.3
-
- has-bigints@1.1.0: {}
-
- has-flag@4.0.0: {}
-
- has-property-descriptors@1.0.2:
- dependencies:
- es-define-property: 1.0.1
-
- has-proto@1.2.0:
- dependencies:
- dunder-proto: 1.0.1
-
- has-symbols@1.1.0: {}
-
- has-tostringtag@1.0.2:
- dependencies:
- has-symbols: 1.1.0
-
- hash-sum@2.0.0: {}
-
- hasown@2.0.2:
- dependencies:
- function-bind: 1.1.2
-
- hast-util-to-html@9.0.4:
- dependencies:
- '@types/hast': 3.0.4
- '@types/unist': 3.0.3
- ccount: 2.0.1
- comma-separated-tokens: 2.0.3
- hast-util-whitespace: 3.0.0
- html-void-elements: 3.0.0
- mdast-util-to-hast: 13.2.0
- property-information: 6.5.0
- space-separated-tokens: 2.0.2
- stringify-entities: 4.0.4
- zwitch: 2.0.4
-
- hast-util-whitespace@3.0.0:
- dependencies:
- '@types/hast': 3.0.4
-
- he@1.2.0: {}
-
- highlight.js@10.7.3: {}
-
- hookable@5.5.3: {}
-
- hosted-git-info@8.0.2:
- dependencies:
- lru-cache: 10.4.3
-
- 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@4.0.0:
- dependencies:
- whatwg-encoding: 3.1.1
-
- html-escaper@2.0.2: {}
-
- html-tags@3.3.1: {}
-
- html-void-elements@3.0.0: {}
-
- htmlparser2@9.1.0:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 5.0.3
- domutils: 3.2.2
- entities: 4.5.0
-
- http-cache-semantics@4.1.1: {}
-
- 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-parser-js@0.5.9: {}
-
- http-proxy-agent@7.0.2:
- dependencies:
- agent-base: 7.1.3
- debug: 4.4.0(supports-color@9.4.0)
- transitivePeerDependencies:
- - supports-color
-
- http-proxy-middleware@2.0.7(@types/express@4.17.21):
- dependencies:
- '@types/http-proxy': 1.17.16
- http-proxy: 1.18.1(debug@4.4.0)
- 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-middleware@3.0.3:
- dependencies:
- '@types/http-proxy': 1.17.16
- debug: 4.4.0(supports-color@9.4.0)
- http-proxy: 1.18.1(debug@4.4.0)
- is-glob: 4.0.3
- is-plain-object: 5.0.0
- micromatch: 4.0.8
- transitivePeerDependencies:
- - supports-color
-
- http-proxy@1.18.1(debug@4.4.0):
- dependencies:
- eventemitter3: 4.0.7
- follow-redirects: 1.15.9(debug@4.4.0)
- requires-port: 1.0.0
- transitivePeerDependencies:
- - debug
-
- http-shutdown@1.2.2: {}
-
- https-proxy-agent@7.0.6(supports-color@9.4.0):
- dependencies:
- agent-base: 7.1.3
- debug: 4.4.0(supports-color@9.4.0)
- transitivePeerDependencies:
- - supports-color
-
- httpxy@0.1.7: {}
-
- human-id@1.0.2: {}
-
- human-signals@4.3.1: {}
-
- human-signals@5.0.0: {}
-
- human-signals@8.0.0: {}
-
- husky@9.1.7: {}
-
- hyperdyperid@1.2.0: {}
-
- iconv-lite@0.4.24:
- dependencies:
- safer-buffer: 2.1.2
-
- iconv-lite@0.6.3:
- dependencies:
- safer-buffer: 2.1.2
-
- icss-utils@5.1.0(postcss@8.4.41):
- dependencies:
- postcss: 8.4.41
-
- ieee754@1.2.1: {}
-
- ignore-walk@7.0.0:
- dependencies:
- minimatch: 9.0.5
-
- ignore@5.3.2: {}
-
- ignore@6.0.2: {}
-
- ignore@7.0.3: {}
-
- image-meta@0.2.1: {}
-
- image-size@0.5.5:
- optional: true
-
- immutable@5.0.3: {}
-
- import-fresh@3.3.0:
- dependencies:
- parent-module: 1.0.1
- resolve-from: 4.0.0
-
- import-meta-resolve@4.1.0: {}
-
- impound@0.2.0(rollup@4.31.0):
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- mlly: 1.7.4
- pathe: 1.1.2
- unenv: 1.10.0
- unplugin: 1.16.1
- transitivePeerDependencies:
- - rollup
-
- impound@0.2.0(rollup@4.34.9):
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.9)
- mlly: 1.7.4
- pathe: 1.1.2
- unenv: 1.10.0
- unplugin: 1.16.1
- transitivePeerDependencies:
- - rollup
-
- imurmurhash@0.1.4: {}
-
- index-to-position@0.1.2: {}
-
- 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@4.1.1: {}
-
- ini@5.0.0: {}
-
- internal-slot@1.1.0:
- dependencies:
- es-errors: 1.3.0
- hasown: 2.0.2
- side-channel: 1.1.0
-
- ioredis@5.4.2:
- dependencies:
- '@ioredis/commands': 1.2.0
- cluster-key-slot: 1.1.2
- debug: 4.4.0(supports-color@9.4.0)
- denque: 2.1.0
- lodash.defaults: 4.2.0
- lodash.isarguments: 3.1.0
- redis-errors: 1.2.0
- redis-parser: 3.0.0
- standard-as-callback: 2.1.0
- transitivePeerDependencies:
- - supports-color
-
- ip-address@9.0.5:
- dependencies:
- jsbn: 1.1.0
- sprintf-js: 1.1.3
-
- ipaddr.js@1.9.1: {}
-
- ipaddr.js@2.2.0: {}
-
- iron-webcrypto@1.2.1: {}
-
- is-array-buffer@3.0.5:
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
-
- is-arrayish@0.2.1: {}
-
- is-arrayish@0.3.2: {}
-
- is-async-function@2.1.1:
- dependencies:
- async-function: 1.0.0
- call-bound: 1.0.3
- get-proto: 1.0.1
- has-tostringtag: 1.0.2
- safe-regex-test: 1.1.0
-
- is-bigint@1.1.0:
- dependencies:
- has-bigints: 1.1.0
-
- is-binary-path@2.1.0:
- dependencies:
- binary-extensions: 2.3.0
-
- is-boolean-object@1.2.1:
- dependencies:
- call-bound: 1.0.3
- has-tostringtag: 1.0.2
-
- is-bun-module@1.3.0:
- dependencies:
- semver: 7.7.1
-
- is-callable@1.2.7: {}
-
- is-core-module@2.16.1:
- dependencies:
- hasown: 2.0.2
-
- is-data-view@1.0.2:
- dependencies:
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
- is-typed-array: 1.1.15
-
- is-date-object@1.1.0:
- dependencies:
- call-bound: 1.0.3
- has-tostringtag: 1.0.2
-
- is-docker@2.2.1: {}
-
- is-docker@3.0.0: {}
-
- is-extglob@2.1.1: {}
-
- is-finalizationregistry@1.1.1:
- dependencies:
- call-bound: 1.0.3
-
- is-fullwidth-code-point@3.0.0: {}
-
- is-fullwidth-code-point@4.0.0: {}
-
- is-fullwidth-code-point@5.0.0:
- dependencies:
- get-east-asian-width: 1.3.0
-
- is-generator-function@1.1.0:
- dependencies:
- call-bound: 1.0.3
- get-proto: 1.0.1
- has-tostringtag: 1.0.2
- safe-regex-test: 1.1.0
-
- is-glob@4.0.3:
- dependencies:
- is-extglob: 2.1.1
-
- is-inside-container@1.0.0:
- dependencies:
- is-docker: 3.0.0
-
- is-installed-globally@1.0.0:
- dependencies:
- global-directory: 4.0.1
- is-path-inside: 4.0.0
-
- is-interactive@1.0.0: {}
-
- is-map@2.0.3: {}
-
- is-module@1.0.0: {}
-
- is-network-error@1.1.0: {}
-
- is-number-object@1.1.1:
- dependencies:
- call-bound: 1.0.3
- has-tostringtag: 1.0.2
-
- is-number@7.0.0: {}
-
- is-path-inside@4.0.0: {}
-
- is-plain-obj@3.0.0: {}
-
- is-plain-obj@4.1.0: {}
-
- is-plain-object@2.0.4:
- dependencies:
- isobject: 3.0.1
-
- is-plain-object@5.0.0: {}
-
- is-potential-custom-element-name@1.0.1: {}
-
- is-reference@1.2.1:
- dependencies:
- '@types/estree': 1.0.6
-
- is-reference@3.0.3:
- dependencies:
- '@types/estree': 1.0.6
-
- is-regex@1.2.1:
- dependencies:
- call-bound: 1.0.3
- gopd: 1.2.0
- has-tostringtag: 1.0.2
- hasown: 2.0.2
-
- is-set@2.0.3: {}
-
- is-shared-array-buffer@1.0.4:
- dependencies:
- call-bound: 1.0.3
-
- is-ssh@1.4.0:
- dependencies:
- protocols: 2.0.1
-
- is-stream@2.0.1: {}
-
- is-stream@3.0.0: {}
-
- is-stream@4.0.1: {}
-
- is-string@1.1.1:
- dependencies:
- call-bound: 1.0.3
- has-tostringtag: 1.0.2
-
- is-subdir@1.2.0:
- dependencies:
- better-path-resolve: 1.0.0
-
- is-symbol@1.1.1:
- dependencies:
- call-bound: 1.0.3
- has-symbols: 1.1.0
- safe-regex-test: 1.1.0
-
- is-typed-array@1.1.15:
- dependencies:
- which-typed-array: 1.1.18
-
- is-unicode-supported@0.1.0: {}
-
- is-unicode-supported@2.1.0: {}
-
- is-weakmap@2.0.2: {}
-
- is-weakref@1.1.0:
- dependencies:
- call-bound: 1.0.3
-
- is-weakset@2.0.4:
- dependencies:
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
-
- is-what@3.14.1: {}
-
- is-what@4.1.16: {}
-
- is-windows@1.0.2: {}
-
- is-wsl@2.2.0:
- dependencies:
- is-docker: 2.2.1
-
- is-wsl@3.1.0:
- dependencies:
- is-inside-container: 1.0.0
-
- is64bit@2.0.0:
- dependencies:
- system-architecture: 0.1.0
-
- isarray@1.0.0: {}
-
- isarray@2.0.5: {}
-
- isbinaryfile@4.0.10: {}
-
- isexe@2.0.0: {}
-
- isexe@3.1.1: {}
-
- isobject@3.0.1: {}
-
- istanbul-lib-coverage@3.2.2: {}
-
- istanbul-lib-instrument@5.2.1:
- dependencies:
- '@babel/core': 7.26.9
- '@babel/parser': 7.26.7
- '@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.2
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- istanbul-lib-instrument@6.0.3:
- dependencies:
- '@babel/core': 7.26.9
- '@babel/parser': 7.26.9
- '@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.2
- semver: 7.7.1
- transitivePeerDependencies:
- - supports-color
-
- istanbul-lib-report@3.0.1:
- dependencies:
- istanbul-lib-coverage: 3.2.2
- make-dir: 4.0.0
- supports-color: 7.2.0
-
- istanbul-lib-source-maps@4.0.1:
- dependencies:
- debug: 4.4.0(supports-color@9.4.0)
- 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.25
- debug: 4.4.0(supports-color@9.4.0)
- istanbul-lib-coverage: 3.2.2
- transitivePeerDependencies:
- - supports-color
-
- istanbul-reports@3.1.7:
- dependencies:
- html-escaper: 2.0.2
- istanbul-lib-report: 3.0.1
-
- iterator.prototype@1.1.5:
- dependencies:
- define-data-property: 1.1.4
- es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
- get-proto: 1.0.1
- has-symbols: 1.1.0
- set-function-name: 2.0.2
-
- jackspeak@3.4.3:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
-
- jasmine-core@4.6.1: {}
-
- jasmine-core@5.2.0: {}
-
- jest-worker@27.5.1:
- dependencies:
- '@types/node': 22.10.5
- merge-stream: 2.0.0
- supports-color: 8.1.1
-
- jiti@1.21.7: {}
-
- jiti@2.4.2: {}
-
- joycon@3.1.1: {}
-
- js-beautify@1.15.1:
- dependencies:
- config-chain: 1.1.13
- editorconfig: 1.0.4
- glob: 10.4.3
- js-cookie: 3.0.5
- nopt: 7.2.1
-
- js-cookie@3.0.5: {}
-
- js-levenshtein@1.1.6: {}
-
- js-tokens@4.0.0: {}
-
- js-tokens@9.0.1: {}
-
- js-yaml@3.14.1:
- dependencies:
- argparse: 1.0.10
- esprima: 4.0.1
-
- js-yaml@4.1.0:
- dependencies:
- argparse: 2.0.1
-
- jsbn@1.1.0: {}
-
- jsdom@23.0.0:
- dependencies:
- cssstyle: 3.0.0
- data-urls: 5.0.0
- decimal.js: 10.5.0
- form-data: 4.0.1
- html-encoding-sniffer: 4.0.0
- http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
- is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.16
- parse5: 7.2.1
- rrweb-cssom: 0.6.0
- saxes: 6.0.0
- symbol-tree: 3.2.4
- tough-cookie: 4.1.4
- w3c-xmlserializer: 5.0.0
- webidl-conversions: 7.0.0
- whatwg-encoding: 3.1.1
- whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.0
- ws: 8.18.0
- xml-name-validator: 5.0.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- jsesc@3.0.2: {}
-
- jsesc@3.1.0: {}
-
- json-buffer@3.0.1: {}
-
- json-parse-even-better-errors@2.3.1: {}
-
- json-parse-even-better-errors@3.0.2: {}
-
- json-parse-even-better-errors@4.0.0: {}
-
- json-schema-ref-resolver@2.0.1:
- dependencies:
- dequal: 2.0.3
-
- json-schema-traverse@0.4.1: {}
-
- json-schema-traverse@1.0.0: {}
-
- json-schema@0.4.0: {}
-
- json-stable-stringify-without-jsonify@1.0.1: {}
-
- json5@1.0.2:
- dependencies:
- minimist: 1.2.8
-
- json5@2.2.3: {}
-
- jsonc-parser@3.3.1: {}
-
- jsonfile@4.0.0:
- optionalDependencies:
- graceful-fs: 4.2.11
-
- jsonfile@6.1.0:
- dependencies:
- universalify: 2.0.1
- optionalDependencies:
- graceful-fs: 4.2.11
-
- jsonparse@1.3.1: {}
-
- jsx-ast-utils@3.3.5:
- dependencies:
- array-includes: 3.1.8
- array.prototype.flat: 1.3.3
- object.assign: 4.1.7
- object.values: 1.2.1
-
- karma-chrome-launcher@3.2.0:
- dependencies:
- which: 1.3.1
-
- karma-coverage@2.2.1:
- dependencies:
- istanbul-lib-coverage: 3.2.2
- istanbul-lib-instrument: 5.2.1
- 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@2.1.0(jasmine-core@5.2.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4):
- dependencies:
- jasmine-core: 5.2.0
- karma: 6.4.4
- karma-jasmine: 5.1.0(karma@6.4.4)
-
- karma-jasmine@5.1.0(karma@6.4.4):
- dependencies:
- jasmine-core: 4.6.1
- karma: 6.4.4
-
- karma-source-map-support@1.4.0:
- dependencies:
- source-map-support: 0.5.21
-
- karma@6.4.4:
- 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(debug@4.4.0)
- isbinaryfile: 4.0.10
- lodash: 4.17.21
- 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.8.1
- source-map: 0.6.1
- tmp: 0.2.3
- ua-parser-js: 0.7.40
- yargs: 16.2.0
- transitivePeerDependencies:
- - bufferutil
- - debug
- - supports-color
- - utf-8-validate
-
- keyv@4.5.4:
- dependencies:
- json-buffer: 3.0.1
-
- kind-of@6.0.3: {}
-
- kleur@3.0.3: {}
-
- kleur@4.1.5: {}
-
- klona@2.0.6: {}
-
- knitwork@1.2.0: {}
-
- known-css-properties@0.30.0: {}
-
- kolorist@1.8.0: {}
-
- language-subtag-registry@0.3.23: {}
-
- language-tags@1.0.9:
- dependencies:
- language-subtag-registry: 0.3.23
-
- launch-editor@2.10.0:
- dependencies:
- picocolors: 1.1.1
- shell-quote: 1.8.2
-
- launch-editor@2.9.1:
- dependencies:
- picocolors: 1.1.1
- shell-quote: 1.8.2
-
- lazystream@1.0.1:
- dependencies:
- readable-stream: 2.3.8
-
- less-loader@12.2.0(less@4.2.2)(webpack@5.98.0(esbuild@0.25.0)):
- dependencies:
- less: 4.2.2
- optionalDependencies:
- webpack: 5.98.0(esbuild@0.24.2)
-
- less@4.2.2:
- dependencies:
- copy-anything: 2.0.6
- parse-node-version: 1.0.1
- tslib: 2.8.1
- optionalDependencies:
- errno: 0.1.8
- graceful-fs: 4.2.11
- image-size: 0.5.5
- make-dir: 2.1.0
- mime: 1.6.0
- needle: 3.3.1
- source-map: 0.6.1
-
- levn@0.4.1:
- dependencies:
- prelude-ls: 1.2.1
- type-check: 0.4.0
-
- license-webpack-plugin@4.0.2(webpack@5.98.0(esbuild@0.25.0)):
- dependencies:
- webpack-sources: 3.2.3
- optionalDependencies:
- webpack: 5.98.0(esbuild@0.24.2)
-
- light-my-request@6.5.1:
- dependencies:
- cookie: 1.0.2
- process-warning: 4.0.1
- set-cookie-parser: 2.7.1
-
- lilconfig@2.1.0: {}
-
- lilconfig@3.1.3: {}
-
- lines-and-columns@1.2.4: {}
-
- lint-staged@15.3.0:
- dependencies:
- chalk: 5.4.1
- commander: 12.1.0
- debug: 4.4.0(supports-color@9.4.0)
- execa: 8.0.1
- lilconfig: 3.1.3
- listr2: 8.2.5
- micromatch: 4.0.8
- pidtree: 0.6.0
- string-argv: 0.3.2
- yaml: 2.6.1
- transitivePeerDependencies:
- - supports-color
-
- listhen@1.9.0:
- dependencies:
- '@parcel/watcher': 2.5.1
- '@parcel/watcher-wasm': 2.5.1
- citty: 0.1.6
- clipboardy: 4.0.0
- consola: 3.4.0
- crossws: 0.3.3
- defu: 6.1.4
- get-port-please: 3.1.2
- h3: 1.14.0
- http-shutdown: 1.2.2
- jiti: 2.4.2
- mlly: 1.7.4
- node-forge: 1.3.1
- pathe: 1.1.2
- std-env: 3.8.0
- ufo: 1.5.4
- untun: 0.1.3
- uqr: 0.1.2
-
- listr2@8.2.5:
- dependencies:
- cli-truncate: 4.0.0
- colorette: 2.0.20
- eventemitter3: 5.0.1
- log-update: 6.1.0
- rfdc: 1.4.1
- wrap-ansi: 9.0.0
-
- lmdb@3.2.6:
- dependencies:
- msgpackr: 1.11.2
- node-addon-api: 6.1.0
- node-gyp-build-optional-packages: 5.2.2
- ordered-binary: 1.5.3
- weak-lru-cache: 1.2.2
- optionalDependencies:
- '@lmdb/lmdb-darwin-arm64': 3.2.6
- '@lmdb/lmdb-darwin-x64': 3.2.6
- '@lmdb/lmdb-linux-arm': 3.2.6
- '@lmdb/lmdb-linux-arm64': 3.2.6
- '@lmdb/lmdb-linux-x64': 3.2.6
- '@lmdb/lmdb-win32-x64': 3.2.6
- optional: true
-
- load-tsconfig@0.2.5: {}
-
- 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.3.1: {}
-
- local-pkg@0.5.1:
- dependencies:
- mlly: 1.7.4
- pkg-types: 1.3.1
-
- local-pkg@1.0.0:
- dependencies:
- mlly: 1.7.4
- pkg-types: 1.3.1
-
- locate-character@3.0.0: {}
-
- locate-path@5.0.0:
- dependencies:
- p-locate: 4.1.0
-
- locate-path@6.0.0:
- dependencies:
- p-locate: 5.0.0
-
- locate-path@7.2.0:
- dependencies:
- p-locate: 6.0.0
-
- lodash.debounce@4.0.8: {}
-
- lodash.defaults@4.2.0: {}
-
- lodash.isarguments@3.1.0: {}
-
- lodash.memoize@4.1.2: {}
-
- lodash.merge@4.6.2: {}
-
- lodash.sortby@4.7.0: {}
-
- lodash.startcase@4.4.0: {}
-
- lodash.uniq@4.5.0: {}
-
- lodash@4.17.21: {}
-
- log-symbols@4.1.0:
- dependencies:
- chalk: 4.1.2
- is-unicode-supported: 0.1.0
-
- log-update@6.1.0:
- dependencies:
- ansi-escapes: 7.0.0
- cli-cursor: 5.0.0
- slice-ansi: 7.1.0
- strip-ansi: 7.1.0
- wrap-ansi: 9.0.0
-
- log4js@6.9.1:
- dependencies:
- date-format: 4.0.14
- debug: 4.4.0(supports-color@9.4.0)
- flatted: 3.3.2
- rfdc: 1.4.1
- streamroller: 3.1.5
- transitivePeerDependencies:
- - supports-color
-
- loose-envify@1.4.0:
- dependencies:
- js-tokens: 4.0.0
-
- loupe@2.3.7:
- dependencies:
- get-func-name: 2.0.2
-
- lru-cache@10.4.3: {}
-
- lru-cache@4.1.5:
- dependencies:
- pseudomap: 1.0.2
- yallist: 2.1.2
-
- lru-cache@5.1.1:
- dependencies:
- yallist: 3.1.1
-
- lru-cache@6.0.0:
- dependencies:
- yallist: 4.0.0
-
- lru-cache@7.18.3: {}
-
- magic-string-ast@0.7.0:
- dependencies:
- magic-string: 0.30.17
-
- magic-string@0.30.17:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
-
- magicast@0.3.5:
- dependencies:
- '@babel/parser': 7.26.7
- '@babel/types': 7.26.7
- source-map-js: 1.2.1
-
- make-dir@2.1.0:
- dependencies:
- pify: 4.0.1
- semver: 5.7.2
- optional: true
-
- make-dir@4.0.0:
- dependencies:
- semver: 7.7.1
-
- make-error@1.3.6: {}
-
- make-fetch-happen@14.0.3:
- dependencies:
- '@npmcli/agent': 3.0.0
- cacache: 19.0.1
- http-cache-semantics: 4.1.1
- minipass: 7.1.2
- minipass-fetch: 4.0.1
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- negotiator: 1.0.0
- proc-log: 5.0.0
- promise-retry: 2.0.1
- ssri: 12.0.0
- transitivePeerDependencies:
- - supports-color
-
- mark.js@8.11.1: {}
-
- marked-terminal@7.3.0(marked@9.1.6):
- dependencies:
- ansi-escapes: 7.0.0
- ansi-regex: 6.1.0
- chalk: 5.4.1
- cli-highlight: 2.1.11
- cli-table3: 0.6.5
- marked: 9.1.6
- node-emoji: 2.2.0
- supports-hyperlinks: 3.1.0
-
- marked@9.1.6: {}
-
- math-intrinsics@1.1.0: {}
-
- mdast-util-to-hast@13.2.0:
- dependencies:
- '@types/hast': 3.0.4
- '@types/mdast': 4.0.4
- '@ungap/structured-clone': 1.3.0
- devlop: 1.1.0
- micromark-util-sanitize-uri: 2.0.1
- trim-lines: 3.0.1
- unist-util-position: 5.0.0
- unist-util-visit: 5.0.0
- vfile: 6.0.3
-
- mdn-data@2.0.28: {}
-
- mdn-data@2.0.30: {}
-
- media-typer@0.3.0: {}
-
- memfs@4.17.0:
- dependencies:
- '@jsonjoy.com/json-pack': 1.1.1(tslib@2.8.1)
- '@jsonjoy.com/util': 1.5.0(tslib@2.8.1)
- tree-dump: 1.0.2(tslib@2.8.1)
- tslib: 2.8.1
-
- memorystream@0.3.1: {}
-
- merge-descriptors@1.0.3: {}
-
- merge-stream@2.0.0: {}
-
- merge2@1.4.1: {}
-
- methods@1.1.2: {}
-
- micromark-util-character@2.1.1:
- dependencies:
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
-
- micromark-util-encode@2.0.1: {}
-
- micromark-util-sanitize-uri@2.0.1:
- dependencies:
- micromark-util-character: 2.1.1
- micromark-util-encode: 2.0.1
- micromark-util-symbol: 2.0.1
-
- micromark-util-symbol@2.0.1: {}
-
- micromark-util-types@2.0.1: {}
-
- micromatch@4.0.8:
- dependencies:
- braces: 3.0.3
- picomatch: 2.3.1
-
- mime-db@1.52.0: {}
-
- mime-db@1.53.0: {}
-
- mime-types@2.1.35:
- dependencies:
- mime-db: 1.52.0
-
- mime@1.6.0: {}
-
- mime@2.6.0: {}
-
- mime@3.0.0: {}
-
- mime@4.0.6: {}
-
- mimic-fn@2.1.0: {}
-
- mimic-fn@4.0.0: {}
-
- mimic-function@5.0.1: {}
-
- mini-css-extract-plugin@2.9.2(webpack@5.98.0(esbuild@0.25.0)):
- dependencies:
- schema-utils: 4.3.0
- tapable: 2.2.1
- webpack: 5.98.0(esbuild@0.24.2)
-
- minimalistic-assert@1.0.1: {}
-
- minimatch@3.1.2:
- dependencies:
- brace-expansion: 1.1.11
-
- minimatch@5.1.6:
- dependencies:
- brace-expansion: 2.0.1
-
- minimatch@9.0.1:
- dependencies:
- brace-expansion: 2.0.1
-
- minimatch@9.0.5:
- dependencies:
- brace-expansion: 2.0.1
-
- minimist@1.2.8: {}
-
- minipass-collect@2.0.1:
- dependencies:
- minipass: 7.1.2
-
- minipass-fetch@4.0.1:
- dependencies:
- minipass: 7.1.2
- minipass-sized: 1.0.3
- minizlib: 3.0.1
- optionalDependencies:
- encoding: 0.1.13
-
- minipass-flush@1.0.5:
- dependencies:
- minipass: 3.3.6
-
- minipass-pipeline@1.2.4:
- dependencies:
- minipass: 3.3.6
-
- minipass-sized@1.0.3:
- dependencies:
- minipass: 3.3.6
-
- minipass@3.3.6:
- dependencies:
- yallist: 4.0.0
-
- minipass@5.0.0: {}
-
- minipass@7.1.2: {}
-
- minisearch@6.3.0: {}
-
- minizlib@2.1.2:
- dependencies:
- minipass: 3.3.6
- yallist: 4.0.0
-
- minizlib@3.0.1:
- dependencies:
- minipass: 7.1.2
- rimraf: 5.0.10
-
- mitt@3.0.1: {}
-
- mkdirp@0.5.6:
- dependencies:
- minimist: 1.2.8
-
- mkdirp@1.0.4: {}
-
- mkdirp@3.0.1: {}
-
- mlly@1.7.4:
- dependencies:
- acorn: 8.14.0
- pathe: 2.0.2
- pkg-types: 1.3.1
- ufo: 1.5.4
-
- mri@1.2.0: {}
-
- mrmime@2.0.0: {}
-
- mrmime@2.0.1: {}
-
- ms@2.0.0: {}
-
- ms@2.1.2: {}
-
- ms@2.1.3: {}
-
- msgpackr-extract@3.0.3:
- dependencies:
- node-gyp-build-optional-packages: 5.2.2
- optionalDependencies:
- '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.3
- '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.3
- optional: true
-
- msgpackr@1.11.2:
- optionalDependencies:
- msgpackr-extract: 3.0.3
- optional: true
-
- muggle-string@0.4.1: {}
-
- multicast-dns@7.2.5:
- dependencies:
- dns-packet: 5.6.1
- thunky: 1.1.0
-
- mute-stream@1.0.0: {}
-
- mute-stream@2.0.0: {}
-
- mz@2.7.0:
- dependencies:
- any-promise: 1.3.0
- object-assign: 4.1.1
- thenify-all: 1.6.0
-
- nanoid@3.3.8: {}
-
- nanoid@5.0.9: {}
-
- nanoid@5.1.2: {}
-
- nanotar@0.1.1: {}
-
- natural-compare-lite@1.4.0: {}
-
- natural-compare@1.4.0: {}
-
- needle@3.3.1:
- dependencies:
- iconv-lite: 0.6.3
- sax: 1.4.1
- optional: true
-
- negotiator@0.6.3: {}
-
- negotiator@0.6.4: {}
-
- negotiator@1.0.0: {}
-
- neo-async@2.6.2: {}
-
- netmask@2.0.2: {}
-
- next@15.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0):
- dependencies:
- '@next/env': 15.1.6
- '@swc/counter': 0.1.3
- '@swc/helpers': 0.5.15
- busboy: 1.6.0
- caniuse-lite: 1.0.30001696
- postcss: 8.4.31
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- styled-jsx: 5.1.6(react@19.0.0)
- optionalDependencies:
- '@next/swc-darwin-arm64': 15.1.6
- '@next/swc-darwin-x64': 15.1.6
- '@next/swc-linux-arm64-gnu': 15.1.6
- '@next/swc-linux-arm64-musl': 15.1.6
- '@next/swc-linux-x64-gnu': 15.1.6
- '@next/swc-linux-x64-musl': 15.1.6
- '@next/swc-win32-arm64-msvc': 15.1.6
- '@next/swc-win32-x64-msvc': 15.1.6
- sass: 1.85.0
- sharp: 0.33.5
- transitivePeerDependencies:
- - '@babel/core'
- - babel-plugin-macros
-
- nitropack@2.10.4(encoding@0.1.13)(typescript@5.5.3):
- dependencies:
- '@cloudflare/kv-asset-handler': 0.3.4
- '@netlify/functions': 2.8.2
- '@rollup/plugin-alias': 5.1.1(rollup@4.31.0)
- '@rollup/plugin-commonjs': 28.0.2(rollup@4.31.0)
- '@rollup/plugin-inject': 5.0.5(rollup@4.31.0)
- '@rollup/plugin-json': 6.1.0(rollup@4.31.0)
- '@rollup/plugin-node-resolve': 15.3.1(rollup@4.31.0)
- '@rollup/plugin-replace': 6.0.2(rollup@4.31.0)
- '@rollup/plugin-terser': 0.4.4(rollup@4.31.0)
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- '@types/http-proxy': 1.17.15
- '@vercel/nft': 0.27.10(encoding@0.1.13)(rollup@4.31.0)
- archiver: 7.0.1
- c12: 2.0.1(magicast@0.3.5)
- chokidar: 3.6.0
- citty: 0.1.6
- compatx: 0.1.8
- confbox: 0.1.8
- consola: 3.4.0
- cookie-es: 1.2.2
- croner: 9.0.0
- crossws: 0.3.3
- db0: 0.2.3
- defu: 6.1.4
- destr: 2.0.3
- dot-prop: 9.0.0
- esbuild: 0.24.2
- escape-string-regexp: 5.0.0
- etag: 1.8.1
- fs-extra: 11.3.0
- globby: 14.0.2
- gzip-size: 7.0.0
- h3: 1.14.0
- hookable: 5.5.3
- httpxy: 0.1.7
- ioredis: 5.4.2
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- listhen: 1.9.0
- magic-string: 0.30.17
- magicast: 0.3.5
- mime: 4.0.6
- mlly: 1.7.4
- node-fetch-native: 1.6.6
- ofetch: 1.4.1
- ohash: 1.1.4
- openapi-typescript: 7.6.0(encoding@0.1.13)(typescript@5.5.3)
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- pretty-bytes: 6.1.1
- radix3: 1.1.2
- rollup: 4.31.0
- rollup-plugin-visualizer: 5.14.0(rollup@4.31.0)
- scule: 1.3.0
- semver: 7.7.1
- serve-placeholder: 2.0.2
- serve-static: 1.16.2
- std-env: 3.8.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unctx: 2.4.1
- unenv: 1.10.0
- unimport: 3.14.6(rollup@4.31.0)
- unstorage: 1.14.4(db0@0.2.3)(ioredis@5.4.2)
- untyped: 1.5.2
- unwasm: 0.3.9
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@electric-sql/pglite'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/kv'
- - aws4fetch
- - better-sqlite3
- - drizzle-orm
- - encoding
- - idb-keyval
- - mysql2
- - rolldown
- - sqlite3
- - supports-color
- - typescript
- - uploadthing
-
- nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.1-rc):
- dependencies:
- '@cloudflare/kv-asset-handler': 0.3.4
- '@netlify/functions': 2.8.2
- '@rollup/plugin-alias': 5.1.1(rollup@4.31.0)
- '@rollup/plugin-commonjs': 28.0.2(rollup@4.31.0)
- '@rollup/plugin-inject': 5.0.5(rollup@4.31.0)
- '@rollup/plugin-json': 6.1.0(rollup@4.31.0)
- '@rollup/plugin-node-resolve': 15.3.1(rollup@4.31.0)
- '@rollup/plugin-replace': 6.0.2(rollup@4.31.0)
- '@rollup/plugin-terser': 0.4.4(rollup@4.31.0)
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- '@types/http-proxy': 1.17.15
- '@vercel/nft': 0.27.10(encoding@0.1.13)(rollup@4.31.0)
- archiver: 7.0.1
- c12: 2.0.1(magicast@0.3.5)
- chokidar: 3.6.0
- citty: 0.1.6
- compatx: 0.1.8
- confbox: 0.1.8
- consola: 3.4.0
- cookie-es: 1.2.2
- croner: 9.0.0
- crossws: 0.3.3
- db0: 0.2.3
- defu: 6.1.4
- destr: 2.0.3
- dot-prop: 9.0.0
- esbuild: 0.24.2
- escape-string-regexp: 5.0.0
- etag: 1.8.1
- fs-extra: 11.3.0
- globby: 14.0.2
- gzip-size: 7.0.0
- h3: 1.14.0
- hookable: 5.5.3
- httpxy: 0.1.7
- ioredis: 5.4.2
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- listhen: 1.9.0
- magic-string: 0.30.17
- magicast: 0.3.5
- mime: 4.0.6
- mlly: 1.7.4
- node-fetch-native: 1.6.6
- ofetch: 1.4.1
- ohash: 1.1.4
- openapi-typescript: 7.6.0(encoding@0.1.13)(typescript@5.6.1-rc)
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- pretty-bytes: 6.1.1
- radix3: 1.1.2
- rollup: 4.31.0
- rollup-plugin-visualizer: 5.14.0(rollup@4.31.0)
- scule: 1.3.0
- semver: 7.7.1
- serve-placeholder: 2.0.2
- serve-static: 1.16.2
- std-env: 3.8.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unctx: 2.4.1
- unenv: 1.10.0
- unimport: 3.14.6(rollup@4.31.0)
- unstorage: 1.14.4(db0@0.2.3)(ioredis@5.4.2)
- untyped: 1.5.2
- unwasm: 0.3.9
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@electric-sql/pglite'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/kv'
- - aws4fetch
- - better-sqlite3
- - drizzle-orm
- - encoding
- - idb-keyval
- - mysql2
- - rolldown
- - sqlite3
- - supports-color
- - typescript
- - uploadthing
-
- node-addon-api@6.1.0:
- optional: true
-
- node-addon-api@7.1.1: {}
-
- node-domexception@1.0.0: {}
-
- node-emoji@2.2.0:
- dependencies:
- '@sindresorhus/is': 4.6.0
- char-regex: 1.0.2
- emojilib: 2.4.0
- skin-tone: 2.0.0
-
- node-fetch-native@1.6.6: {}
-
- node-fetch@2.7.0(encoding@0.1.13):
- dependencies:
- whatwg-url: 5.0.0
- optionalDependencies:
- encoding: 0.1.13
-
- node-fetch@3.3.2:
- dependencies:
- data-uri-to-buffer: 4.0.1
- fetch-blob: 3.2.0
- formdata-polyfill: 4.0.10
-
- node-forge@1.3.1: {}
-
- node-gyp-build-optional-packages@5.2.2:
- dependencies:
- detect-libc: 2.0.3
- optional: true
-
- node-gyp-build@4.8.4: {}
-
- node-gyp@11.1.0:
- dependencies:
- env-paths: 2.2.1
- exponential-backoff: 3.1.2
- glob: 10.4.3
- graceful-fs: 4.2.11
- make-fetch-happen: 14.0.3
- nopt: 8.1.0
- proc-log: 5.0.0
- semver: 7.7.1
- tar: 7.4.3
- which: 5.0.0
- transitivePeerDependencies:
- - supports-color
-
- node-releases@2.0.19: {}
-
- nopt@7.2.1:
- dependencies:
- abbrev: 2.0.0
-
- nopt@8.1.0:
- dependencies:
- abbrev: 3.0.0
-
- normalize-path@3.0.0: {}
-
- normalize-range@0.1.2: {}
-
- npm-bundled@4.0.0:
- dependencies:
- npm-normalize-package-bin: 4.0.0
-
- npm-install-checks@7.1.1:
- dependencies:
- semver: 7.7.1
-
- npm-normalize-package-bin@3.0.1: {}
-
- npm-normalize-package-bin@4.0.0: {}
-
- npm-package-arg@12.0.2:
- dependencies:
- hosted-git-info: 8.0.2
- proc-log: 5.0.0
- semver: 7.7.1
- validate-npm-package-name: 6.0.0
-
- npm-packlist@9.0.0:
- dependencies:
- ignore-walk: 7.0.0
-
- npm-pick-manifest@10.0.0:
- dependencies:
- npm-install-checks: 7.1.1
- npm-normalize-package-bin: 4.0.0
- npm-package-arg: 12.0.2
- semver: 7.7.1
-
- npm-registry-fetch@18.0.2:
- dependencies:
- '@npmcli/redact': 3.1.1
- jsonparse: 1.3.1
- make-fetch-happen: 14.0.3
- minipass: 7.1.2
- minipass-fetch: 4.0.1
- minizlib: 3.0.1
- npm-package-arg: 12.0.2
- proc-log: 5.0.0
- transitivePeerDependencies:
- - supports-color
-
- npm-run-all2@6.2.0:
- dependencies:
- ansi-styles: 6.2.1
- cross-spawn: 7.0.5
- memorystream: 0.3.1
- minimatch: 9.0.5
- pidtree: 0.6.0
- read-package-json-fast: 3.0.2
- shell-quote: 1.8.2
-
- npm-run-path@4.0.1:
- dependencies:
- path-key: 3.1.1
-
- npm-run-path@5.3.0:
- dependencies:
- path-key: 4.0.0
-
- npm-run-path@6.0.0:
- dependencies:
- path-key: 4.0.0
- unicorn-magic: 0.3.0
-
- nth-check@2.1.1:
- dependencies:
- boolbase: 1.0.0
-
- nuxi@3.21.1: {}
-
- nuxt@3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.13.8)(db0@0.2.3)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.31.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.7.0(rollup@4.31.0)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))
- '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.31.0)
- '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.31.0)
- '@nuxt/telemetry': 2.6.4(magicast@0.3.5)(rollup@4.31.0)
- '@nuxt/vite-builder': 3.14.1592(@types/node@22.13.8)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.31.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vue@3.5.13(typescript@5.6.1-rc))
- '@unhead/dom': 1.11.18
- '@unhead/shared': 1.11.18
- '@unhead/ssr': 1.11.18
- '@unhead/vue': 1.11.18(vue@3.5.13(typescript@5.6.1-rc))
+ '@nuxt/devtools': 1.7.0_gx3eanpxyarstd2l5jyn7akntm
+ '@nuxt/kit': 3.14.1592_rollup@4.35.0
+ '@nuxt/schema': 3.14.1592_rollup@4.35.0
+ '@nuxt/telemetry': 2.6.5
+ '@nuxt/vite-builder': 3.14.1592_yiryvljpiqju3elctnqosjliim
+ '@types/node': 22.13.10
+ '@unhead/dom': 1.11.20
+ '@unhead/shared': 1.11.20
+ '@unhead/ssr': 1.11.20
+ '@unhead/vue': 1.11.20_vue@3.5.13
'@vue/shared': 3.5.13
acorn: 8.14.0
- c12: 2.0.1(magicast@0.3.5)
+ c12: 2.0.4
chokidar: 4.0.3
compatx: 0.1.8
consola: 3.4.0
@@ -20496,29 +16500,29 @@ snapshots:
esbuild: 0.24.2
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
- globby: 14.0.2
- h3: 1.14.0
+ globby: 14.1.0
+ h3: 1.15.1
hookable: 5.5.3
ignore: 6.0.2
- impound: 0.2.0(rollup@4.31.0)
+ impound: 0.2.1_rollup@4.35.0
jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
magic-string: 0.30.17
mlly: 1.7.4
nanotar: 0.1.1
- nitropack: 2.10.4(encoding@0.1.13)(typescript@5.6.1-rc)
- nuxi: 3.21.1
+ nitropack: 2.11.6_typescript@5.5.3
+ nuxi: 3.22.5
nypm: 0.3.12
ofetch: 1.4.1
- ohash: 1.1.4
+ ohash: 1.1.6
pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.3.1
radix3: 1.1.2
scule: 1.3.0
- semver: 7.7.0
- std-env: 3.8.0
+ semver: 7.7.1
+ std-env: 3.8.1
strip-literal: 2.1.1
tinyglobby: 0.2.10
ufo: 1.5.4
@@ -20526,19 +16530,16 @@ snapshots:
uncrypto: 0.1.3
unctx: 2.4.1
unenv: 1.10.0
- unhead: 1.11.18
- unimport: 3.14.6(rollup@4.31.0)
+ unhead: 1.11.20
+ unimport: 3.14.6_rollup@4.35.0
unplugin: 1.16.1
- unplugin-vue-router: 0.10.9(rollup@4.31.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
- unstorage: 1.14.4(db0@0.2.3)(ioredis@5.4.2)
+ unplugin-vue-router: 0.10.9_jnksuln545bydhffx5f33xmx6y
+ unstorage: 1.15.0
untyped: 1.5.2
- vue: 3.5.13(typescript@5.6.1-rc)
+ vue: 3.5.13_typescript@5.5.3
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.5.0(vue@3.5.13(typescript@5.6.1-rc))
- optionalDependencies:
- '@parcel/watcher': 2.5.1
- '@types/node': 22.13.8
+ vue-router: 4.5.0_vue@3.5.13
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -20589,22 +16590,34 @@ snapshots:
- vti
- vue-tsc
- xml2js
+ dev: true
- nuxt@3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.13.8)(db0@0.2.3)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.9)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ /nuxt/3.14.1592_vite@6.0.9:
+ resolution: {integrity: sha512-roWAQH4Mb6WY72cNos+YVw0DgTCNAhNygiAMCedM7hbX6ESTR2n3VH7tU0yIWDPe/hfFdii4M4wWTTNHOtS44g==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ hasBin: true
+ peerDependencies:
+ '@parcel/watcher': ^2.1.0
+ '@types/node': ^14.18.0 || >=16.10.0
+ peerDependenciesMeta:
+ '@parcel/watcher':
+ optional: true
+ '@types/node':
+ optional: true
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.7.0(rollup@4.34.9)(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
- '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.34.9)
- '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.34.9)
- '@nuxt/telemetry': 2.6.4(magicast@0.3.5)(rollup@4.34.9)
- '@nuxt/vite-builder': 3.14.1592(@types/node@22.13.8)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.9)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3))
- '@unhead/dom': 1.11.18
- '@unhead/shared': 1.11.18
- '@unhead/ssr': 1.11.18
- '@unhead/vue': 1.11.18(vue@3.5.13(typescript@5.5.3))
+ '@nuxt/devtools': 1.7.0_vite@6.0.9+vue@3.5.13
+ '@nuxt/kit': 3.14.1592
+ '@nuxt/schema': 3.14.1592
+ '@nuxt/telemetry': 2.6.5
+ '@nuxt/vite-builder': 3.14.1592_vue@3.5.13
+ '@unhead/dom': 1.11.20
+ '@unhead/shared': 1.11.20
+ '@unhead/ssr': 1.11.20
+ '@unhead/vue': 1.11.20_vue@3.5.13
'@vue/shared': 3.5.13
acorn: 8.14.0
- c12: 2.0.1(magicast@0.3.5)
+ c12: 2.0.4
chokidar: 4.0.3
compatx: 0.1.8
consola: 3.4.0
@@ -20616,29 +16629,29 @@ snapshots:
esbuild: 0.24.2
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
- globby: 14.0.2
- h3: 1.14.0
+ globby: 14.1.0
+ h3: 1.15.1
hookable: 5.5.3
ignore: 6.0.2
- impound: 0.2.0(rollup@4.34.9)
+ impound: 0.2.1
jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
magic-string: 0.30.17
mlly: 1.7.4
nanotar: 0.1.1
- nitropack: 2.10.4(encoding@0.1.13)(typescript@5.5.3)
- nuxi: 3.21.1
+ nitropack: 2.11.6
+ nuxi: 3.22.5
nypm: 0.3.12
ofetch: 1.4.1
- ohash: 1.1.4
+ ohash: 1.1.6
pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.3.1
radix3: 1.1.2
scule: 1.3.0
- semver: 7.7.0
- std-env: 3.8.0
+ semver: 7.7.1
+ std-env: 3.8.1
strip-literal: 2.1.1
tinyglobby: 0.2.10
ufo: 1.5.4
@@ -20646,19 +16659,16 @@ snapshots:
uncrypto: 0.1.3
unctx: 2.4.1
unenv: 1.10.0
- unhead: 1.11.18
- unimport: 3.14.6(rollup@4.34.9)
+ unhead: 1.11.20
+ unimport: 3.14.6
unplugin: 1.16.1
- unplugin-vue-router: 0.10.9(rollup@4.34.9)(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3))
- unstorage: 1.14.4(db0@0.2.3)(ioredis@5.4.2)
+ unplugin-vue-router: 0.10.9_4zkhmgh5wx2nmrd47udboenwxe
+ unstorage: 1.15.0
untyped: 1.5.2
- vue: 3.5.13(typescript@5.5.3)
+ vue: 3.5.13
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.5.0(vue@3.5.13(typescript@5.5.3))
- optionalDependencies:
- '@parcel/watcher': 2.5.1
- '@types/node': 22.13.8
+ vue-router: 4.5.0_vue@3.5.13
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -20709,76 +16719,84 @@ snapshots:
- vti
- vue-tsc
- xml2js
+ dev: false
- nuxt@3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.13.8)(db0@0.2.3)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.9)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ /nuxt/3.16.0_vite@6.0.9:
+ resolution: {integrity: sha512-4j2tuHo+kcComQ1WrCD+i1w3UFOHrcnNH30cwiEY/WZZlBZOlC6DtUm6aBjhfpBFaMYsF4PbyKsNW+7FHwckHA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@parcel/watcher': ^2.1.0
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ peerDependenciesMeta:
+ '@parcel/watcher':
+ optional: true
+ '@types/node':
+ optional: true
dependencies:
+ '@nuxt/cli': 3.22.5
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.7.0(rollup@4.34.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))
- '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.34.9)
- '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.34.9)
- '@nuxt/telemetry': 2.6.4(magicast@0.3.5)(rollup@4.34.9)
- '@nuxt/vite-builder': 3.14.1592(@types/node@22.13.8)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.9)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vue@3.5.13(typescript@5.6.1-rc))
- '@unhead/dom': 1.11.18
- '@unhead/shared': 1.11.18
- '@unhead/ssr': 1.11.18
- '@unhead/vue': 1.11.18(vue@3.5.13(typescript@5.6.1-rc))
+ '@nuxt/devtools': 2.2.1_vite@6.0.9+vue@3.5.13
+ '@nuxt/kit': 3.16.0
+ '@nuxt/schema': 3.16.0
+ '@nuxt/telemetry': 2.6.5
+ '@nuxt/vite-builder': 3.16.0_vue@3.5.13
+ '@oxc-parser/wasm': 0.56.5
+ '@unhead/vue': 2.0.0-rc.9_vue@3.5.13
'@vue/shared': 3.5.13
- acorn: 8.14.0
- c12: 2.0.1(magicast@0.3.5)
+ c12: 3.0.2
chokidar: 4.0.3
compatx: 0.1.8
consola: 3.4.0
- cookie-es: 1.2.2
+ cookie-es: 2.0.0
defu: 6.1.4
destr: 2.0.3
devalue: 5.1.1
errx: 0.1.0
- esbuild: 0.24.2
+ esbuild: 0.25.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
- globby: 14.0.2
- h3: 1.14.0
+ exsolve: 1.0.4
+ globby: 14.1.0
+ h3: 1.15.1
hookable: 5.5.3
- ignore: 6.0.2
- impound: 0.2.0(rollup@4.34.9)
+ ignore: 7.0.3
+ impound: 0.2.1
jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
magic-string: 0.30.17
mlly: 1.7.4
- nanotar: 0.1.1
- nitropack: 2.10.4(encoding@0.1.13)(typescript@5.6.1-rc)
- nuxi: 3.21.1
- nypm: 0.3.12
+ nanotar: 0.2.0
+ nitropack: 2.11.6
+ nypm: 0.6.0
ofetch: 1.4.1
- ohash: 1.1.4
- pathe: 1.1.2
+ ohash: 2.0.11
+ on-change: 5.0.1
+ oxc-parser: 0.56.5
+ pathe: 2.0.3
perfect-debounce: 1.0.0
- pkg-types: 1.3.1
+ pkg-types: 2.1.0
radix3: 1.1.2
scule: 1.3.0
- semver: 7.7.0
- std-env: 3.8.0
- strip-literal: 2.1.1
- tinyglobby: 0.2.10
+ semver: 7.7.1
+ std-env: 3.8.1
+ strip-literal: 3.0.0
+ tinyglobby: 0.2.12
ufo: 1.5.4
ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.4.1
- unenv: 1.10.0
- unhead: 1.11.18
- unimport: 3.14.6(rollup@4.34.9)
- unplugin: 1.16.1
- unplugin-vue-router: 0.10.9(rollup@4.34.9)(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
- unstorage: 1.14.4(db0@0.2.3)(ioredis@5.4.2)
- untyped: 1.5.2
- vue: 3.5.13(typescript@5.6.1-rc)
+ unenv: 2.0.0-rc.14
+ unimport: 4.1.2
+ unplugin: 2.2.0
+ unplugin-vue-router: 0.12.0_4zkhmgh5wx2nmrd47udboenwxe
+ unstorage: 1.15.0
+ untyped: 2.0.0
+ vue: 3.5.13
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.5.0(vue@3.5.13(typescript@5.6.1-rc))
- optionalDependencies:
- '@parcel/watcher': 2.5.1
- '@types/node': 22.13.8
+ vue-router: 4.5.0_vue@3.5.13
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -20821,6 +16839,7 @@ snapshots:
- sugarss
- supports-color
- terser
+ - tsx
- typescript
- uploadthing
- utf-8-validate
@@ -20829,10 +16848,17 @@ snapshots:
- vti
- vue-tsc
- xml2js
+ - yaml
+ dev: false
- nwsapi@2.2.16: {}
+ /nwsapi/2.2.18:
+ resolution: {integrity: sha512-p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA==}
+ dev: true
- nypm@0.3.12:
+ /nypm/0.3.12:
+ resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==}
+ engines: {node: ^14.16.0 || >=16.10.0}
+ hasBin: true
dependencies:
citty: 0.1.6
consola: 3.4.0
@@ -20841,7 +16867,10 @@ snapshots:
pkg-types: 1.3.1
ufo: 1.5.4
- nypm@0.4.1:
+ /nypm/0.4.1:
+ resolution: {integrity: sha512-1b9mihliBh8UCcKtcGRu//G50iHpjxIQVUqkdhPT/SDVE7KdJKoHXLS0heuYTQCx95dFqiyUbXZB9r8ikn+93g==}
+ engines: {node: ^14.16.0 || >=16.10.0}
+ hasBin: true
dependencies:
citty: 0.1.6
consola: 3.4.0
@@ -20850,140 +16879,225 @@ snapshots:
tinyexec: 0.3.2
ufo: 1.5.4
- nypm@0.5.2:
+ /nypm/0.5.4:
+ resolution: {integrity: sha512-X0SNNrZiGU8/e/zAB7sCTtdxWTMSIO73q+xuKgglm2Yvzwlo8UoC5FNySQFCvl84uPaeADkqHUZUkWy4aH4xOA==}
+ engines: {node: ^14.16.0 || >=16.10.0}
+ hasBin: true
dependencies:
citty: 0.1.6
consola: 3.4.0
- pathe: 2.0.2
+ pathe: 2.0.3
pkg-types: 1.3.1
tinyexec: 0.3.2
ufo: 1.5.4
- object-assign@4.1.1: {}
+ /nypm/0.6.0:
+ resolution: {integrity: sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg==}
+ engines: {node: ^14.16.0 || >=16.10.0}
+ hasBin: true
+ dependencies:
+ citty: 0.1.6
+ consola: 3.4.0
+ pathe: 2.0.3
+ pkg-types: 2.1.0
+ tinyexec: 0.3.2
+
+ /object-assign/4.1.1:
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ engines: {node: '>=0.10.0'}
+ dev: true
- object-hash@3.0.0: {}
+ /object-hash/3.0.0:
+ resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
+ engines: {node: '>= 6'}
+ dev: true
- object-inspect@1.13.3: {}
+ /object-inspect/1.13.4:
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
+ engines: {node: '>= 0.4'}
+ dev: true
- object-keys@1.1.1: {}
+ /object-keys/1.1.1:
+ resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+ engines: {node: '>= 0.4'}
+ dev: true
- object.assign@4.1.7:
+ /object.assign/4.1.7:
+ resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-properties: 1.2.1
es-object-atoms: 1.1.1
has-symbols: 1.1.0
object-keys: 1.1.1
+ dev: true
- object.entries@1.1.8:
+ /object.entries/1.1.8:
+ resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
es-object-atoms: 1.1.1
+ dev: true
- object.fromentries@2.0.8:
+ /object.fromentries/2.0.8:
+ resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
es-abstract: 1.23.9
es-object-atoms: 1.1.1
+ dev: true
- object.groupby@1.0.3:
+ /object.groupby/1.0.3:
+ resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
es-abstract: 1.23.9
+ dev: true
- object.values@1.2.1:
+ /object.values/1.2.1:
+ resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-properties: 1.2.1
es-object-atoms: 1.1.1
+ dev: true
- obuf@1.1.2: {}
+ /obuf/1.1.2:
+ resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
+ dev: true
- ofetch@1.4.1:
+ /ofetch/1.4.1:
+ resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==}
dependencies:
destr: 2.0.3
node-fetch-native: 1.6.6
ufo: 1.5.4
- ohash@1.1.4: {}
+ /ohash/1.1.6:
+ resolution: {integrity: sha512-TBu7PtV8YkAZn0tSxobKY2n2aAQva936lhRrj6957aDaCf9IEtqsKbgMzXE/F/sjqYOwmrukeORHNLe5glk7Cg==}
- on-exit-leak-free@2.1.2: {}
+ /ohash/2.0.11:
+ resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
+
+ /on-change/5.0.1:
+ resolution: {integrity: sha512-n7THCP7RkyReRSLkJb8kUWoNsxUIBxTkIp3JKno+sEz6o/9AJ3w3P9fzQkITEkMwyTKJjZciF3v/pVoouxZZMg==}
+ engines: {node: '>=18'}
+ dev: false
+
+ /on-exit-leak-free/2.1.2:
+ resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
+ engines: {node: '>=14.0.0'}
- on-finished@2.3.0:
+ /on-finished/2.3.0:
+ resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
+ engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
+ dev: true
- on-finished@2.4.1:
+ /on-finished/2.4.1:
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+ engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
- on-headers@1.0.2: {}
+ /on-headers/1.0.2:
+ resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
+ engines: {node: '>= 0.8'}
+ dev: true
- once@1.4.0:
+ /once/1.4.0:
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
+ dev: true
- onetime@5.1.2:
+ /onetime/5.1.2:
+ resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
+ engines: {node: '>=6'}
dependencies:
mimic-fn: 2.1.0
+ dev: true
- onetime@6.0.0:
+ /onetime/6.0.0:
+ resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
+ engines: {node: '>=12'}
dependencies:
mimic-fn: 4.0.0
- onetime@7.0.0:
+ /onetime/7.0.0:
+ resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
+ engines: {node: '>=18'}
dependencies:
mimic-function: 5.0.1
+ dev: true
- oniguruma-to-es@2.3.0:
+ /oniguruma-to-es/2.3.0:
+ resolution: {integrity: sha512-bwALDxriqfKGfUufKGGepCzu9x7nJQuoRoAFp4AnwehhC2crqrDIAP/uN2qdlsAvSMpeRC3+Yzhqc7hLmle5+g==}
dependencies:
emoji-regex-xs: 1.0.0
regex: 5.1.1
regex-recursion: 5.1.1
+ dev: true
- open@10.1.0:
+ /open/10.1.0:
+ resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
+ engines: {node: '>=18'}
dependencies:
default-browser: 5.2.1
define-lazy-prop: 3.0.0
is-inside-container: 1.0.0
is-wsl: 3.1.0
- open@8.4.2:
+ /open/8.4.2:
+ resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
+ engines: {node: '>=12'}
dependencies:
define-lazy-prop: 2.0.0
is-docker: 2.2.1
is-wsl: 2.2.0
- openapi-typescript@7.6.0(encoding@0.1.13)(typescript@5.5.3):
+ /openapi-typescript/7.6.1:
+ resolution: {integrity: sha512-F7RXEeo/heF3O9lOXo2bNjCOtfp7u+D6W3a3VNEH2xE6v+fxLtn5nq0uvUcA1F5aT+CMhNeC5Uqtg5tlXFX/ag==}
+ hasBin: true
+ peerDependencies:
+ typescript: ^5.x
dependencies:
- '@redocly/openapi-core': 1.27.2(encoding@0.1.13)(supports-color@9.4.0)
+ '@redocly/openapi-core': 1.33.0_supports-color@9.4.0
ansi-colors: 4.1.3
change-case: 5.4.4
parse-json: 8.1.0
supports-color: 9.4.0
- typescript: 5.5.3
yargs-parser: 21.1.1
- transitivePeerDependencies:
- - encoding
- openapi-typescript@7.6.0(encoding@0.1.13)(typescript@5.6.1-rc):
+ /openapi-typescript/7.6.1_typescript@5.5.3:
+ resolution: {integrity: sha512-F7RXEeo/heF3O9lOXo2bNjCOtfp7u+D6W3a3VNEH2xE6v+fxLtn5nq0uvUcA1F5aT+CMhNeC5Uqtg5tlXFX/ag==}
+ hasBin: true
+ peerDependencies:
+ typescript: ^5.x
dependencies:
- '@redocly/openapi-core': 1.27.2(encoding@0.1.13)(supports-color@9.4.0)
+ '@redocly/openapi-core': 1.33.0_supports-color@9.4.0
ansi-colors: 4.1.3
change-case: 5.4.4
parse-json: 8.1.0
supports-color: 9.4.0
- typescript: 5.6.1-rc
+ typescript: 5.5.3
yargs-parser: 21.1.1
- transitivePeerDependencies:
- - encoding
+ dev: true
- optionator@0.9.4:
+ /optionator/0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
+ engines: {node: '>= 0.8.0'}
dependencies:
deep-is: 0.1.4
fast-levenshtein: 2.0.6
@@ -20991,8 +17105,11 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
word-wrap: 1.2.5
+ dev: true
- ora@5.4.1:
+ /ora/5.4.1:
+ resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
+ engines: {node: '>=10'}
dependencies:
bl: 4.1.0
chalk: 4.1.2
@@ -21003,95 +17120,174 @@ snapshots:
log-symbols: 4.1.0
strip-ansi: 6.0.1
wcwidth: 1.0.1
+ dev: true
- ordered-binary@1.5.3:
+ /ordered-binary/1.5.3:
+ resolution: {integrity: sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==}
+ dev: true
optional: true
- os-tmpdir@1.0.2: {}
+ /os-tmpdir/1.0.2:
+ resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
+ engines: {node: '>=0.10.0'}
+ dev: true
- outdent@0.5.0: {}
+ /outdent/0.5.0:
+ resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
+ dev: true
- own-keys@1.0.1:
+ /own-keys/1.0.1:
+ resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
+ engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
object-keys: 1.1.1
safe-push-apply: 1.0.0
+ dev: true
- p-filter@2.1.0:
+ /oxc-parser/0.56.5:
+ resolution: {integrity: sha512-MNT32sqiTFeSbQZP2WZIRQ/mlIpNNq4sua+/4hBG4qT5aef2iQe+1/BjezZURPlvucZeSfN1Y6b60l7OgBdyUA==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ '@oxc-project/types': 0.56.5
+ optionalDependencies:
+ '@oxc-parser/binding-darwin-arm64': 0.56.5
+ '@oxc-parser/binding-darwin-x64': 0.56.5
+ '@oxc-parser/binding-linux-arm-gnueabihf': 0.56.5
+ '@oxc-parser/binding-linux-arm64-gnu': 0.56.5
+ '@oxc-parser/binding-linux-arm64-musl': 0.56.5
+ '@oxc-parser/binding-linux-x64-gnu': 0.56.5
+ '@oxc-parser/binding-linux-x64-musl': 0.56.5
+ '@oxc-parser/binding-wasm32-wasi': 0.56.5
+ '@oxc-parser/binding-win32-arm64-msvc': 0.56.5
+ '@oxc-parser/binding-win32-x64-msvc': 0.56.5
+ dev: false
+
+ /p-filter/2.1.0:
+ resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
+ engines: {node: '>=8'}
dependencies:
p-map: 2.1.0
+ dev: true
- p-limit@2.3.0:
+ /p-limit/2.3.0:
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
dependencies:
p-try: 2.2.0
+ dev: true
- p-limit@3.1.0:
+ /p-limit/3.1.0:
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
dependencies:
yocto-queue: 0.1.0
+ dev: true
- p-limit@4.0.0:
+ /p-limit/4.0.0:
+ resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
- yocto-queue: 1.1.1
+ yocto-queue: 1.2.0
+ dev: true
- p-limit@5.0.0:
+ /p-limit/5.0.0:
+ resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
+ engines: {node: '>=18'}
dependencies:
- yocto-queue: 1.1.1
+ yocto-queue: 1.2.0
+ dev: true
- p-locate@4.1.0:
+ /p-locate/4.1.0:
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+ engines: {node: '>=8'}
dependencies:
p-limit: 2.3.0
+ dev: true
- p-locate@5.0.0:
+ /p-locate/5.0.0:
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
dependencies:
p-limit: 3.1.0
+ dev: true
- p-locate@6.0.0:
+ /p-locate/6.0.0:
+ resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
p-limit: 4.0.0
+ dev: true
- p-map@2.1.0: {}
+ /p-map/2.1.0:
+ resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
+ engines: {node: '>=6'}
+ dev: true
- p-map@7.0.3: {}
+ /p-map/7.0.3:
+ resolution: {integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==}
+ engines: {node: '>=18'}
+ dev: true
- p-retry@6.2.1:
+ /p-retry/6.2.1:
+ resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==}
+ engines: {node: '>=16.17'}
dependencies:
'@types/retry': 0.12.2
is-network-error: 1.1.0
retry: 0.13.1
+ dev: true
- p-try@2.2.0: {}
+ /p-try/2.2.0:
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
+ dev: true
- pac-proxy-agent@7.1.0:
+ /pac-proxy-agent/7.2.0:
+ resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==}
+ engines: {node: '>= 14'}
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
agent-base: 7.1.3
- debug: 4.3.4
+ debug: 4.4.0
get-uri: 6.0.4
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
+ https-proxy-agent: 7.0.6
pac-resolver: 7.0.1
socks-proxy-agent: 8.0.5
transitivePeerDependencies:
- supports-color
+ dev: true
- pac-resolver@7.0.1:
+ /pac-resolver/7.0.1:
+ resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
+ engines: {node: '>= 14'}
dependencies:
degenerator: 5.0.1
netmask: 2.0.2
+ dev: true
- package-json-from-dist@1.0.1: {}
+ /package-json-from-dist/1.0.1:
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
- package-manager-detector@0.2.8: {}
+ /package-manager-detector/0.2.11:
+ resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==}
+ dependencies:
+ quansync: 0.2.8
- packrup@0.1.2: {}
+ /packrup/0.1.2:
+ resolution: {integrity: sha512-ZcKU7zrr5GlonoS9cxxrb5HVswGnyj6jQvwFBa6p5VFw7G71VAHcUKL5wyZSU/ECtPM/9gacWxy2KFQKt1gMNA==}
- pacote@20.0.0:
+ /pacote/20.0.0:
+ resolution: {integrity: sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+ hasBin: true
dependencies:
'@npmcli/git': 6.0.3
'@npmcli/installed-package-contents': 3.0.0
'@npmcli/package-json': 6.1.1
'@npmcli/promise-spawn': 8.0.2
- '@npmcli/run-script': 9.0.2
+ '@npmcli/run-script': 9.1.0
cacache: 19.0.1
fs-minipass: 3.0.3
minipass: 7.1.2
@@ -21106,134 +17302,222 @@ snapshots:
tar: 6.2.1
transitivePeerDependencies:
- supports-color
+ dev: true
- parent-module@1.0.1:
+ /parent-module/1.0.1:
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+ engines: {node: '>=6'}
dependencies:
callsites: 3.1.0
+ dev: true
- parse-git-config@3.0.0:
+ /parse-git-config/3.0.0:
+ resolution: {integrity: sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==}
+ engines: {node: '>=8'}
dependencies:
git-config-path: 2.0.0
ini: 1.3.8
- parse-json@5.2.0:
+ /parse-json/5.2.0:
+ resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+ engines: {node: '>=8'}
dependencies:
'@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
+ dev: true
- parse-json@8.1.0:
+ /parse-json/8.1.0:
+ resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==}
+ engines: {node: '>=18'}
dependencies:
'@babel/code-frame': 7.26.2
index-to-position: 0.1.2
- type-fest: 4.33.0
+ type-fest: 4.37.0
- parse-ms@4.0.0: {}
+ /parse-ms/4.0.0:
+ resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
+ engines: {node: '>=18'}
- parse-node-version@1.0.1: {}
+ /parse-node-version/1.0.1:
+ resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
+ engines: {node: '>= 0.10'}
- parse-path@7.0.0:
+ /parse-path/7.0.1:
+ resolution: {integrity: sha512-6ReLMptznuuOEzLoGEa+I1oWRSj2Zna5jLWC+l6zlfAI4dbbSaIES29ThzuPkbhNahT65dWzfoZEO6cfJw2Ksg==}
dependencies:
- protocols: 2.0.1
+ protocols: 2.0.2
- parse-url@9.2.0:
+ /parse-url/9.2.0:
+ resolution: {integrity: sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==}
+ engines: {node: '>=14.13.0'}
dependencies:
'@types/parse-path': 7.0.3
- parse-path: 7.0.0
+ parse-path: 7.0.1
- parse5-html-rewriting-stream@7.0.0:
+ /parse5-html-rewriting-stream/7.0.0:
+ resolution: {integrity: sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==}
dependencies:
entities: 4.5.0
parse5: 7.2.1
parse5-sax-parser: 7.0.0
+ dev: true
- parse5-htmlparser2-tree-adapter@6.0.1:
+ /parse5-htmlparser2-tree-adapter/6.0.1:
+ resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
dependencies:
parse5: 6.0.1
+ dev: true
- parse5-sax-parser@7.0.0:
+ /parse5-sax-parser/7.0.0:
+ resolution: {integrity: sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==}
dependencies:
parse5: 7.2.1
+ dev: true
- parse5@5.1.1: {}
+ /parse5/5.1.1:
+ resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==}
+ dev: true
- parse5@6.0.1: {}
+ /parse5/6.0.1:
+ resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
+ dev: true
- parse5@7.2.1:
+ /parse5/7.2.1:
+ resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
dependencies:
entities: 4.5.0
- parseurl@1.3.3: {}
+ /parseurl/1.3.3:
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
+ engines: {node: '>= 0.8'}
- path-browserify@1.0.1: {}
+ /path-browserify/1.0.1:
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
+ dev: true
- path-exists@4.0.0: {}
+ /path-exists/4.0.0:
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
+ dev: true
- path-exists@5.0.0: {}
+ /path-exists/5.0.0:
+ resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dev: true
- path-is-absolute@1.0.1: {}
+ /path-is-absolute/1.0.1:
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
+ engines: {node: '>=0.10.0'}
+ dev: true
- path-key@3.1.1: {}
+ /path-key/3.1.1:
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+ engines: {node: '>=8'}
- path-key@4.0.0: {}
+ /path-key/4.0.0:
+ resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
+ engines: {node: '>=12'}
- path-parse@1.0.7: {}
+ /path-parse/1.0.7:
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-scurry@1.11.1:
+ /path-scurry/1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
dependencies:
lru-cache: 10.4.3
minipass: 7.1.2
- path-to-regexp@0.1.10: {}
-
- path-to-regexp@0.1.12: {}
+ /path-to-regexp/0.1.10:
+ resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==}
+ dev: true
- path-type@4.0.0: {}
+ /path-to-regexp/0.1.12:
+ resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
+ dev: true
- path-type@5.0.0: {}
+ /path-type/4.0.0:
+ resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
+ engines: {node: '>=8'}
+ dev: true
- path-type@6.0.0: {}
+ /path-type/6.0.0:
+ resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==}
+ engines: {node: '>=18'}
- pathe@1.1.2: {}
+ /pathe/1.1.2:
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
- pathe@2.0.2: {}
+ /pathe/2.0.3:
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
- pathval@1.1.1: {}
+ /pathval/1.1.1:
+ resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
+ dev: true
- pend@1.2.0: {}
+ /pend/1.2.0:
+ resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
+ dev: true
- perfect-debounce@1.0.0: {}
+ /perfect-debounce/1.0.0:
+ resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
- picocolors@1.1.1: {}
+ /picocolors/1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
- picomatch@2.3.1: {}
+ /picomatch/2.3.1:
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+ engines: {node: '>=8.6'}
- picomatch@4.0.2: {}
+ /picomatch/4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
- pidtree@0.6.0: {}
+ /pidtree/0.6.0:
+ resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
+ engines: {node: '>=0.10'}
+ hasBin: true
+ dev: true
- pify@2.3.0: {}
+ /pify/2.3.0:
+ resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
+ engines: {node: '>=0.10.0'}
+ dev: true
- pify@4.0.1: {}
+ /pify/4.0.1:
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+ engines: {node: '>=6'}
- pinia@2.3.0(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3)):
+ /pinia/2.3.0_3jdk7euojidjqlkepbdrol3p3i:
+ resolution: {integrity: sha512-ohZj3jla0LL0OH5PlLTDMzqKiVw2XARmC1XYLdLWIPBMdhDW/123ZWr4zVAhtJm+aoSkFa13pYXskAvAscIkhQ==}
+ peerDependencies:
+ typescript: '>=4.4.4'
+ vue: ^2.7.0 || ^3.5.11
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.13(typescript@5.5.3)
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.5.3))
- optionalDependencies:
typescript: 5.5.3
+ vue: 3.5.13_typescript@5.5.3
+ vue-demi: 0.14.10_vue@3.5.13
transitivePeerDependencies:
- '@vue/composition-api'
+ dev: false
- pino-abstract-transport@2.0.0:
+ /pino-abstract-transport/2.0.0:
+ resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==}
dependencies:
split2: 4.2.0
- pino-std-serializers@7.0.0: {}
+ /pino-std-serializers/7.0.0:
+ resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==}
- pino@9.6.0:
+ /pino/9.6.0:
+ resolution: {integrity: sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==}
+ hasBin: true
dependencies:
atomic-sleep: 1.0.0
fast-redact: 3.5.0
@@ -21247,33 +17531,62 @@ snapshots:
sonic-boom: 4.2.0
thread-stream: 3.1.0
- pirates@4.0.6: {}
+ /pirates/4.0.6:
+ resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ engines: {node: '>= 6'}
+ dev: true
- piscina@4.8.0:
+ /piscina/4.8.0:
+ resolution: {integrity: sha512-EZJb+ZxDrQf3dihsUL7p42pjNyrNIFJCrRHPMgxu/svsj+P3xS3fuEWp7k2+rfsavfl1N0G29b1HGs7J0m8rZA==}
optionalDependencies:
'@napi-rs/nice': 1.0.1
+ dev: true
- pkg-dir@7.0.0:
+ /pkg-dir/7.0.0:
+ resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
+ engines: {node: '>=14.16'}
dependencies:
find-up: 6.3.0
+ dev: true
- pkg-types@1.3.1:
+ /pkg-types/1.3.1:
+ resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
dependencies:
confbox: 0.1.8
mlly: 1.7.4
- pathe: 2.0.2
+ pathe: 2.0.3
- pluralize@8.0.0: {}
+ /pkg-types/2.1.0:
+ resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==}
+ dependencies:
+ confbox: 0.2.1
+ exsolve: 1.0.4
+ pathe: 2.0.3
+
+ /pluralize/8.0.0:
+ resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
+ engines: {node: '>=4'}
- possible-typed-array-names@1.0.0: {}
+ /possible-typed-array-names/1.1.0:
+ resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
+ engines: {node: '>= 0.4'}
+ dev: true
- postcss-calc@10.1.0(postcss@8.5.3):
+ /postcss-calc/10.1.1_postcss@8.5.3:
+ resolution: {integrity: sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==}
+ engines: {node: ^18.12 || ^20.9 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.38
dependencies:
postcss: 8.5.3
postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
- postcss-colormin@7.0.2(postcss@8.5.3):
+ /postcss-colormin/7.0.2_postcss@8.5.3:
+ resolution: {integrity: sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
browserslist: 4.24.4
caniuse-api: 3.0.0
@@ -21281,390 +17594,656 @@ snapshots:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-convert-values@7.0.4(postcss@8.5.3):
+ /postcss-convert-values/7.0.4_postcss@8.5.3:
+ resolution: {integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
browserslist: 4.24.4
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-discard-comments@7.0.3(postcss@8.5.3):
+ /postcss-discard-comments/7.0.3_postcss@8.5.3:
+ resolution: {integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-selector-parser: 6.1.2
- postcss-discard-duplicates@7.0.1(postcss@8.5.3):
+ /postcss-discard-duplicates/7.0.1_postcss@8.5.3:
+ resolution: {integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
- postcss-discard-empty@7.0.0(postcss@8.5.3):
+ /postcss-discard-empty/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
- postcss-discard-overridden@7.0.0(postcss@8.5.3):
+ /postcss-discard-overridden/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
- postcss-import@15.1.0(postcss@8.4.41):
+ /postcss-import/15.1.0_postcss@8.4.41:
+ resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ postcss: ^8.0.0
dependencies:
postcss: 8.4.41
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.10
+ dev: true
- postcss-js@4.0.1(postcss@8.4.41):
+ /postcss-js/4.0.1_postcss@8.4.41:
+ resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
+ engines: {node: ^12 || ^14 || >= 16}
+ peerDependencies:
+ postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
postcss: 8.4.41
+ dev: true
- postcss-load-config@3.1.4(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3)):
+ /postcss-load-config/3.1.4_postcss@8.5.3:
+ resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
+ engines: {node: '>= 10'}
+ peerDependencies:
+ postcss: '>=8.0.9'
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ postcss:
+ optional: true
+ ts-node:
+ optional: true
dependencies:
lilconfig: 2.1.0
+ postcss: 8.5.3
yaml: 1.10.2
- optionalDependencies:
- postcss: 8.4.41
- ts-node: 10.9.2(@types/node@22.13.8)(typescript@5.5.3)
+ dev: true
- postcss-load-config@4.0.2(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3)):
+ /postcss-load-config/4.0.2_postcss@8.4.41:
+ resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
+ engines: {node: '>= 14'}
+ peerDependencies:
+ postcss: '>=8.0.9'
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ postcss:
+ optional: true
+ ts-node:
+ optional: true
dependencies:
lilconfig: 3.1.3
- yaml: 2.7.0
- optionalDependencies:
postcss: 8.4.41
- ts-node: 10.9.2(@types/node@22.10.5)(typescript@5.5.3)
-
- postcss-load-config@4.0.2(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3)):
- dependencies:
- lilconfig: 3.1.3
yaml: 2.7.0
- optionalDependencies:
- postcss: 8.4.41
- ts-node: 10.9.2(@types/node@22.13.8)(typescript@5.5.3)
+ dev: true
- postcss-load-config@6.0.1(jiti@2.4.2)(postcss@8.5.3)(yaml@2.7.0):
+ /postcss-load-config/6.0.1:
+ resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
+ engines: {node: '>= 18'}
+ peerDependencies:
+ jiti: '>=1.21.0'
+ postcss: '>=8.0.9'
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ jiti:
+ optional: true
+ postcss:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
dependencies:
lilconfig: 3.1.3
- optionalDependencies:
- jiti: 2.4.2
- postcss: 8.5.3
- yaml: 2.7.0
+ dev: true
- postcss-loader@8.1.1(postcss@8.5.2)(typescript@5.5.3)(webpack@5.98.0(esbuild@0.25.0)):
+ /postcss-loader/8.1.1_xs7e2gsbl5bxvzarier6f656oi:
+ resolution: {integrity: sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ '@rspack/core': 0.x || 1.x
+ postcss: ^7.0.0 || ^8.0.1
+ webpack: ^5.0.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
dependencies:
- cosmiconfig: 9.0.0(typescript@5.5.3)
+ cosmiconfig: 9.0.0_typescript@5.5.3
jiti: 1.21.7
postcss: 8.5.2
semver: 7.7.1
- optionalDependencies:
- webpack: 5.98.0(esbuild@0.24.2)
+ webpack: 5.98.0_esbuild@0.25.0
transitivePeerDependencies:
- typescript
+ dev: true
- postcss-media-query-parser@0.2.3: {}
+ /postcss-media-query-parser/0.2.3:
+ resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
+ dev: true
- postcss-merge-longhand@7.0.4(postcss@8.5.3):
+ /postcss-merge-longhand/7.0.4_postcss@8.5.3:
+ resolution: {integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- stylehacks: 7.0.4(postcss@8.5.3)
+ stylehacks: 7.0.4_postcss@8.5.3
- postcss-merge-rules@7.0.4(postcss@8.5.3):
+ /postcss-merge-rules/7.0.4_postcss@8.5.3:
+ resolution: {integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
browserslist: 4.24.4
caniuse-api: 3.0.0
- cssnano-utils: 5.0.0(postcss@8.5.3)
+ cssnano-utils: 5.0.0_postcss@8.5.3
postcss: 8.5.3
postcss-selector-parser: 6.1.2
- postcss-minify-font-values@7.0.0(postcss@8.5.3):
+ /postcss-minify-font-values/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-gradients@7.0.0(postcss@8.5.3):
+ /postcss-minify-gradients/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
colord: 2.9.3
- cssnano-utils: 5.0.0(postcss@8.5.3)
+ cssnano-utils: 5.0.0_postcss@8.5.3
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-params@7.0.2(postcss@8.5.3):
+ /postcss-minify-params/7.0.2_postcss@8.5.3:
+ resolution: {integrity: sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
browserslist: 4.24.4
- cssnano-utils: 5.0.0(postcss@8.5.3)
+ cssnano-utils: 5.0.0_postcss@8.5.3
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-selectors@7.0.4(postcss@8.5.3):
+ /postcss-minify-selectors/7.0.4_postcss@8.5.3:
+ resolution: {integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
cssesc: 3.0.0
postcss: 8.5.3
postcss-selector-parser: 6.1.2
- postcss-modules-extract-imports@3.1.0(postcss@8.4.41):
+ /postcss-modules-extract-imports/3.1.0_postcss@8.5.3:
+ resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
dependencies:
- postcss: 8.4.41
+ postcss: 8.5.3
+ dev: true
- postcss-modules-local-by-default@4.2.0(postcss@8.4.41):
+ /postcss-modules-local-by-default/4.2.0_postcss@8.5.3:
+ resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.41)
- postcss: 8.4.41
+ icss-utils: 5.1.0_postcss@8.5.3
+ postcss: 8.5.3
postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
+ dev: true
- postcss-modules-scope@3.2.1(postcss@8.4.41):
+ /postcss-modules-scope/3.2.1_postcss@8.5.3:
+ resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
dependencies:
- postcss: 8.4.41
+ postcss: 8.5.3
postcss-selector-parser: 7.1.0
+ dev: true
- postcss-modules-values@4.0.0(postcss@8.4.41):
+ /postcss-modules-values/4.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.41)
- postcss: 8.4.41
+ icss-utils: 5.1.0_postcss@8.5.3
+ postcss: 8.5.3
+ dev: true
- postcss-nested@6.2.0(postcss@8.4.41):
+ /postcss-nested/6.2.0_postcss@8.4.41:
+ resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.2.14
dependencies:
postcss: 8.4.41
postcss-selector-parser: 6.1.2
+ dev: true
- postcss-normalize-charset@7.0.0(postcss@8.5.3):
+ /postcss-normalize-charset/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
- postcss-normalize-display-values@7.0.0(postcss@8.5.3):
+ /postcss-normalize-display-values/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-positions@7.0.0(postcss@8.5.3):
+ /postcss-normalize-positions/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@7.0.0(postcss@8.5.3):
+ /postcss-normalize-repeat-style/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-string@7.0.0(postcss@8.5.3):
+ /postcss-normalize-string/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@7.0.0(postcss@8.5.3):
+ /postcss-normalize-timing-functions/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@7.0.2(postcss@8.5.3):
+ /postcss-normalize-unicode/7.0.2_postcss@8.5.3:
+ resolution: {integrity: sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
browserslist: 4.24.4
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-url@7.0.0(postcss@8.5.3):
+ /postcss-normalize-url/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@7.0.0(postcss@8.5.3):
+ /postcss-normalize-whitespace/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-ordered-values@7.0.1(postcss@8.5.3):
+ /postcss-ordered-values/7.0.1_postcss@8.5.3:
+ resolution: {integrity: sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
- cssnano-utils: 5.0.0(postcss@8.5.3)
+ cssnano-utils: 5.0.0_postcss@8.5.3
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-reduce-initial@7.0.2(postcss@8.5.3):
+ /postcss-reduce-initial/7.0.2_postcss@8.5.3:
+ resolution: {integrity: sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
browserslist: 4.24.4
caniuse-api: 3.0.0
postcss: 8.5.3
- postcss-reduce-transforms@7.0.0(postcss@8.5.3):
+ /postcss-reduce-transforms/7.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-safe-parser@6.0.0(postcss@8.4.41):
+ /postcss-safe-parser/6.0.0_postcss@8.5.3:
+ resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.3.3
dependencies:
- postcss: 8.4.41
+ postcss: 8.5.3
+ dev: true
- postcss-scss@4.0.9(postcss@8.4.41):
+ /postcss-scss/4.0.9_postcss@8.5.3:
+ resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.4.29
dependencies:
- postcss: 8.4.41
+ postcss: 8.5.3
+ dev: true
- postcss-selector-parser@6.1.2:
+ /postcss-selector-parser/6.1.2:
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
+ engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-selector-parser@7.1.0:
+ /postcss-selector-parser/7.1.0:
+ resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==}
+ engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@7.0.1(postcss@8.5.3):
+ /postcss-svgo/7.0.1_postcss@8.5.3:
+ resolution: {integrity: sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >= 18}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
svgo: 3.3.2
- postcss-unique-selectors@7.0.3(postcss@8.5.3):
+ /postcss-unique-selectors/7.0.3_postcss@8.5.3:
+ resolution: {integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
postcss: 8.5.3
postcss-selector-parser: 6.1.2
- postcss-value-parser@4.2.0: {}
-
- postcss@8.4.31:
- dependencies:
- nanoid: 3.3.8
- picocolors: 1.1.1
- source-map-js: 1.2.1
+ /postcss-value-parser/4.2.0:
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss@8.4.41:
+ /postcss/8.4.31:
+ resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
+ engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.9
picocolors: 1.1.1
source-map-js: 1.2.1
+ dev: false
- postcss@8.5.1:
+ /postcss/8.4.41:
+ resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==}
+ engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.9
picocolors: 1.1.1
source-map-js: 1.2.1
+ dev: true
- postcss@8.5.2:
+ /postcss/8.5.2:
+ resolution: {integrity: sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==}
+ engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.9
picocolors: 1.1.1
source-map-js: 1.2.1
+ dev: true
- postcss@8.5.3:
+ /postcss/8.5.3:
+ resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
+ engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.9
picocolors: 1.1.1
source-map-js: 1.2.1
- preact@10.25.4: {}
+ /preact/10.26.4:
+ resolution: {integrity: sha512-KJhO7LBFTjP71d83trW+Ilnjbo+ySsaAgCfXOXUlmGzJ4ygYPWmysm77yg4emwfmoz3b22yvH5IsVFHbhUaH5w==}
+ dev: true
- prelude-ls@1.2.1: {}
+ /prelude-ls/1.2.1:
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
+ engines: {node: '>= 0.8.0'}
+ dev: true
- prettier-linter-helpers@1.0.0:
+ /prettier-linter-helpers/1.0.0:
+ resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
+ engines: {node: '>=6.0.0'}
dependencies:
fast-diff: 1.3.0
+ dev: true
- prettier-plugin-svelte@3.1.2(prettier@3.4.2)(svelte@5.19.9):
+ /prettier-plugin-svelte/3.1.2_d4fl4iupozqpdh7airl3rcs4ue:
+ resolution: {integrity: sha512-7xfMZtwgAWHMT0iZc8jN4o65zgbAQ3+O32V6W7pXrqNvKnHnkoyQCGCbKeUyXKZLbYE0YhFRnamfxfkEGxm8qA==}
+ peerDependencies:
+ prettier: ^3.0.0
+ svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0
dependencies:
prettier: 3.4.2
svelte: 5.19.9
+ dev: true
- prettier@2.8.8: {}
+ /prettier/2.8.8:
+ resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ dev: true
- prettier@3.4.2: {}
+ /prettier/3.4.2:
+ resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
+ engines: {node: '>=14'}
+ hasBin: true
+ dev: true
- pretty-bytes@6.1.1: {}
+ /pretty-bytes/6.1.1:
+ resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==}
+ engines: {node: ^14.13.1 || >=16.0.0}
- pretty-format@29.7.0:
+ /pretty-format/29.7.0:
+ resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/schemas': 29.6.3
ansi-styles: 5.2.0
react-is: 18.3.1
+ dev: true
- pretty-ms@9.2.0:
+ /pretty-ms/9.2.0:
+ resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
+ engines: {node: '>=18'}
dependencies:
parse-ms: 4.0.0
- proc-log@5.0.0: {}
+ /proc-log/5.0.0:
+ resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+ dev: true
- process-nextick-args@2.0.1: {}
+ /process-nextick-args/2.0.1:
+ resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- process-warning@4.0.1: {}
+ /process-warning/4.0.1:
+ resolution: {integrity: sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==}
- process@0.11.10: {}
+ /process/0.11.10:
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
- progress@2.0.3: {}
+ /progress/2.0.3:
+ resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
+ engines: {node: '>=0.4.0'}
+ dev: true
- promise-retry@2.0.1:
+ /promise-retry/2.0.1:
+ resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
+ engines: {node: '>=10'}
dependencies:
err-code: 2.0.3
retry: 0.12.0
+ dev: true
- prompts@2.4.2:
+ /prompts/2.4.2:
+ resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
+ engines: {node: '>= 6'}
dependencies:
kleur: 3.0.3
sisteransi: 1.0.5
- prop-types@15.8.1:
+ /prop-types/15.8.1:
+ resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
react-is: 16.13.1
+ dev: true
- property-information@6.5.0: {}
+ /property-information/7.0.0:
+ resolution: {integrity: sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==}
+ dev: true
- proto-list@1.2.4: {}
+ /proto-list/1.2.4:
+ resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
+ dev: true
- protocols@2.0.1: {}
+ /protocols/2.0.2:
+ resolution: {integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==}
- proxy-addr@2.0.7:
+ /proxy-addr/2.0.7:
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
+ engines: {node: '>= 0.10'}
dependencies:
forwarded: 0.2.0
ipaddr.js: 1.9.1
- proxy-agent@6.4.0:
+ /proxy-agent/6.4.0:
+ resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==}
+ engines: {node: '>= 14'}
dependencies:
agent-base: 7.1.3
- debug: 4.3.4
+ debug: 4.4.0
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
+ https-proxy-agent: 7.0.6
lru-cache: 7.18.3
- pac-proxy-agent: 7.1.0
+ pac-proxy-agent: 7.2.0
proxy-from-env: 1.1.0
socks-proxy-agent: 8.0.5
transitivePeerDependencies:
- supports-color
+ dev: true
- proxy-from-env@1.1.0: {}
+ /proxy-from-env/1.1.0:
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
- prr@1.0.1:
+ /prr/1.0.1:
+ resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
optional: true
- pseudomap@1.0.2: {}
+ /pseudomap/1.0.2:
+ resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
+ dev: true
- psl@1.15.0:
+ /psl/1.15.0:
+ resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
dependencies:
punycode: 2.3.1
+ dev: true
- pump@3.0.2:
+ /pump/3.0.2:
+ resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
+ dev: true
- punycode@1.4.1: {}
+ /punycode/1.4.1:
+ resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
+ dev: true
- punycode@2.3.1: {}
+ /punycode/2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
+ dev: true
- puppeteer-core@22.12.1:
+ /puppeteer-core/22.12.1:
+ resolution: {integrity: sha512-XmqeDPVdC5/3nGJys1jbgeoZ02wP0WV1GBlPtr/ULRbGXJFuqgXMcKQ3eeNtFpBzGRbpeoCGWHge1ZWKWl0Exw==}
+ engines: {node: '>=18'}
dependencies:
'@puppeteer/browsers': 2.2.3
- chromium-bidi: 0.5.24(devtools-protocol@0.0.1299070)
- debug: 4.4.0(supports-color@9.4.0)
+ chromium-bidi: 0.5.24_c4f7xbigk5ph7wwb2u23nrsx5q
+ debug: 4.4.0
devtools-protocol: 0.0.1299070
- ws: 8.18.0
+ ws: 8.18.1
transitivePeerDependencies:
- bare-buffer
- bufferutil
- supports-color
- utf-8-validate
+ dev: true
- puppeteer@22.12.1(typescript@5.5.3):
+ /puppeteer/22.12.1_typescript@5.5.3:
+ resolution: {integrity: sha512-1GxY8dnEnHr1SLzdSDr0FCjM6JQfAh2E2I/EqzeF8a58DbGVk9oVjj4lFdqNoVbpgFSpAbz7VER9St7S1wDpNg==}
+ engines: {node: '>=18'}
+ hasBin: true
+ requiresBuild: true
dependencies:
'@puppeteer/browsers': 2.2.3
- cosmiconfig: 9.0.0(typescript@5.5.3)
+ cosmiconfig: 9.0.0_typescript@5.5.3
devtools-protocol: 0.0.1299070
puppeteer-core: 22.12.1
transitivePeerDependencies:
@@ -21673,96 +18252,164 @@ snapshots:
- supports-color
- typescript
- utf-8-validate
+ dev: true
- qjobs@1.2.0: {}
+ /qjobs/1.2.0:
+ resolution: {integrity: sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==}
+ engines: {node: '>=0.9'}
+ dev: true
- qs@6.13.0:
+ /qs/6.13.0:
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
+ engines: {node: '>=0.6'}
dependencies:
side-channel: 1.1.0
+ dev: true
+
+ /quansync/0.2.8:
+ resolution: {integrity: sha512-4+saucphJMazjt7iOM27mbFCk+D9dd/zmgMDCzRZ8MEoBfYp7lAvoN38et/phRQF6wOPMy/OROBGgoWeSKyluA==}
- querystringify@2.2.0: {}
+ /querystringify/2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
+ dev: true
- queue-microtask@1.2.3: {}
+ /queue-microtask/1.2.3:
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- quick-format-unescaped@4.0.4: {}
+ /quick-format-unescaped/4.0.4:
+ resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==}
- radix3@1.1.2: {}
+ /radix3/1.1.2:
+ resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
- randombytes@2.1.0:
+ /randombytes/2.1.0:
+ resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
dependencies:
safe-buffer: 5.2.1
- range-parser@1.2.1: {}
+ /range-parser/1.2.1:
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
+ engines: {node: '>= 0.6'}
- raw-body@2.5.2:
+ /raw-body/2.5.2:
+ resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
+ engines: {node: '>= 0.8'}
dependencies:
bytes: 3.1.2
http-errors: 2.0.0
iconv-lite: 0.4.24
unpipe: 1.0.0
+ dev: true
- rc9@2.1.2:
+ /rc9/2.1.2:
+ resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
dependencies:
defu: 6.1.4
destr: 2.0.3
- react-dom@19.0.0(react@19.0.0):
+ /react-dom/19.0.0_react@19.0.0:
+ resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
+ peerDependencies:
+ react: ^19.0.0
dependencies:
react: 19.0.0
scheduler: 0.25.0
+ dev: false
- react-is@16.13.1: {}
+ /react-is/16.13.1:
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
+ dev: true
- react-is@18.3.1: {}
+ /react-is/18.3.1:
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
+ dev: true
- react-refresh@0.14.2: {}
+ /react-refresh/0.14.2:
+ resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
- react-remove-scroll-bar@2.3.8(@types/react@19.0.1)(react@19.0.0):
+ /react-remove-scroll-bar/2.3.8_2e3fe46pmji5vpxr5buusdg5gq:
+ resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
+ '@types/react': 19.0.1
react: 19.0.0
- react-style-singleton: 2.2.3(@types/react@19.0.1)(react@19.0.0)
+ react-style-singleton: 2.2.3_2e3fe46pmji5vpxr5buusdg5gq
tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.0.1
+ dev: false
- react-remove-scroll@2.6.3(@types/react@19.0.1)(react@19.0.0):
+ /react-remove-scroll/2.6.3_2e3fe46pmji5vpxr5buusdg5gq:
+ resolution: {integrity: sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
+ '@types/react': 19.0.1
react: 19.0.0
- react-remove-scroll-bar: 2.3.8(@types/react@19.0.1)(react@19.0.0)
- react-style-singleton: 2.2.3(@types/react@19.0.1)(react@19.0.0)
+ react-remove-scroll-bar: 2.3.8_2e3fe46pmji5vpxr5buusdg5gq
+ react-style-singleton: 2.2.3_2e3fe46pmji5vpxr5buusdg5gq
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.0.1)(react@19.0.0)
- use-sidecar: 1.1.3(@types/react@19.0.1)(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.1
+ use-callback-ref: 1.3.3_2e3fe46pmji5vpxr5buusdg5gq
+ use-sidecar: 1.1.3_2e3fe46pmji5vpxr5buusdg5gq
+ dev: false
- react-style-singleton@2.2.3(@types/react@19.0.1)(react@19.0.0):
+ /react-style-singleton/2.2.3_2e3fe46pmji5vpxr5buusdg5gq:
+ resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
+ '@types/react': 19.0.1
get-nonce: 1.0.1
react: 19.0.0
tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.0.1
+ dev: false
- react@19.0.0: {}
+ /react/19.0.0:
+ resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
+ engines: {node: '>=0.10.0'}
- read-cache@1.0.0:
+ /read-cache/1.0.0:
+ resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
dependencies:
pify: 2.3.0
+ dev: true
- read-package-json-fast@3.0.2:
+ /read-package-json-fast/3.0.2:
+ resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
json-parse-even-better-errors: 3.0.2
npm-normalize-package-bin: 3.0.1
+ dev: true
- read-yaml-file@1.1.0:
+ /read-yaml-file/1.1.0:
+ resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
+ engines: {node: '>=6'}
dependencies:
graceful-fs: 4.2.11
js-yaml: 3.14.1
pify: 4.0.1
strip-bom: 3.0.0
+ dev: true
- readable-stream@2.3.8:
+ /readable-stream/2.3.8:
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
core-util-is: 1.0.3
inherits: 2.0.4
@@ -21772,13 +18419,18 @@ snapshots:
string_decoder: 1.1.1
util-deprecate: 1.0.2
- readable-stream@3.6.2:
+ /readable-stream/3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ dev: true
- readable-stream@4.7.0:
+ /readable-stream/4.7.0:
+ resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
abort-controller: 3.0.0
buffer: 6.0.3
@@ -21786,63 +18438,98 @@ snapshots:
process: 0.11.10
string_decoder: 1.3.0
- readdir-glob@1.1.3:
+ /readdir-glob/1.1.3:
+ resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
dependencies:
minimatch: 5.1.6
- readdirp@3.6.0:
+ /readdirp/3.6.0:
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
+ engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
- readdirp@4.1.2: {}
+ /readdirp/4.1.2:
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
+ engines: {node: '>= 14.18.0'}
- real-require@0.2.0: {}
+ /real-require/0.2.0:
+ resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
+ engines: {node: '>= 12.13.0'}
- redis-errors@1.2.0: {}
+ /redis-errors/1.2.0:
+ resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==}
+ engines: {node: '>=4'}
- redis-parser@3.0.0:
+ /redis-parser/3.0.0:
+ resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==}
+ engines: {node: '>=4'}
dependencies:
redis-errors: 1.2.0
- reflect-metadata@0.2.2: {}
+ /reflect-metadata/0.2.2:
+ resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
+ dev: true
- reflect.getprototypeof@1.0.10:
+ /reflect.getprototypeof/1.0.10:
+ resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
es-abstract: 1.23.9
es-errors: 1.3.0
es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
get-proto: 1.0.1
which-builtin-type: 1.2.1
+ dev: true
- regenerate-unicode-properties@10.2.0:
+ /regenerate-unicode-properties/10.2.0:
+ resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
+ engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
+ dev: true
- regenerate@1.4.2: {}
+ /regenerate/1.4.2:
+ resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
+ dev: true
- regenerator-runtime@0.14.1: {}
+ /regenerator-runtime/0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
+ dev: true
- regenerator-transform@0.15.2:
+ /regenerator-transform/0.15.2:
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
'@babel/runtime': 7.26.9
+ dev: true
- regex-parser@2.3.1: {}
+ /regex-parser/2.3.1:
+ resolution: {integrity: sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==}
+ dev: true
- regex-recursion@5.1.1:
+ /regex-recursion/5.1.1:
+ resolution: {integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==}
dependencies:
regex: 5.1.1
regex-utilities: 2.3.0
+ dev: true
- regex-utilities@2.3.0: {}
+ /regex-utilities/2.3.0:
+ resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
+ dev: true
- regex@5.1.1:
+ /regex/5.1.1:
+ resolution: {integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==}
dependencies:
regex-utilities: 2.3.0
+ dev: true
- regexp.prototype.flags@1.5.4:
+ /regexp.prototype.flags/1.5.4:
+ resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
@@ -21850,8 +18537,11 @@ snapshots:
get-proto: 1.0.1
gopd: 1.2.0
set-function-name: 2.0.2
+ dev: true
- regexpu-core@6.2.0:
+ /regexpu-core/6.2.0:
+ resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
+ engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
regenerate-unicode-properties: 10.2.0
@@ -21859,104 +18549,188 @@ snapshots:
regjsparser: 0.12.0
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.2.0
+ dev: true
- regjsgen@0.8.0: {}
+ /regjsgen/0.8.0:
+ resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
+ dev: true
- regjsparser@0.12.0:
+ /regjsparser/0.12.0:
+ resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
+ hasBin: true
dependencies:
jsesc: 3.0.2
+ dev: true
- remove-accents@0.5.0: {}
+ /remove-accents/0.5.0:
+ resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==}
- require-directory@2.1.1: {}
+ /require-directory/2.1.1:
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+ engines: {node: '>=0.10.0'}
- require-from-string@2.0.2: {}
+ /require-from-string/2.0.2:
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
+ engines: {node: '>=0.10.0'}
- requireindex@1.2.0: {}
+ /requireindex/1.2.0:
+ resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==}
+ engines: {node: '>=0.10.5'}
+ dev: true
- requires-port@1.0.0: {}
+ /requires-port/1.0.0:
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+ dev: true
- resolve-from@4.0.0: {}
+ /resolve-from/4.0.0:
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+ engines: {node: '>=4'}
+ dev: true
- resolve-from@5.0.0: {}
+ /resolve-from/5.0.0:
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
+ engines: {node: '>=8'}
- resolve-pkg-maps@1.0.0: {}
+ /resolve-pkg-maps/1.0.0:
+ resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
+ dev: true
- resolve-url-loader@5.0.0:
+ /resolve-url-loader/5.0.0:
+ resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==}
+ engines: {node: '>=12'}
dependencies:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.4
- postcss: 8.4.41
+ postcss: 8.5.3
source-map: 0.6.1
+ dev: true
- resolve@1.22.10:
+ /resolve/1.22.10:
+ resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ engines: {node: '>= 0.4'}
+ hasBin: true
dependencies:
is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- resolve@2.0.0-next.5:
+ /resolve/2.0.0-next.5:
+ resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
+ hasBin: true
dependencies:
is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
+ dev: true
- restore-cursor@3.1.0:
+ /restore-cursor/3.1.0:
+ resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
+ engines: {node: '>=8'}
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
+ dev: true
- restore-cursor@5.1.0:
+ /restore-cursor/5.1.0:
+ resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
+ engines: {node: '>=18'}
dependencies:
onetime: 7.0.0
signal-exit: 4.1.0
+ dev: true
- ret@0.5.0: {}
+ /ret/0.5.0:
+ resolution: {integrity: sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==}
+ engines: {node: '>=10'}
- retry@0.12.0: {}
+ /retry/0.12.0:
+ resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
+ engines: {node: '>= 4'}
+ dev: true
- retry@0.13.1: {}
+ /retry/0.13.1:
+ resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
+ engines: {node: '>= 4'}
+ dev: true
- reusify@1.0.4: {}
+ /reusify/1.1.0:
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- rfdc@1.4.1: {}
+ /rfdc/1.4.1:
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rimraf@3.0.2:
+ /rimraf/3.0.2:
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
+ hasBin: true
dependencies:
glob: 7.2.3
+ dev: true
- rimraf@5.0.10:
+ /rimraf/5.0.10:
+ resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
+ hasBin: true
dependencies:
- glob: 10.4.3
+ glob: 10.4.5
- rollup-plugin-dts@6.1.1(rollup@4.31.0)(typescript@5.5.3):
+ /rollup-plugin-dts/6.1.1_tvniqcuwx6bs2alzrkuiqowlke:
+ resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ rollup: ^3.29.4 || ^4
+ typescript: ^4.5 || ^5.0
dependencies:
magic-string: 0.30.17
rollup: 4.31.0
typescript: 5.5.3
optionalDependencies:
'@babel/code-frame': 7.26.2
+ dev: true
- rollup-plugin-visualizer@5.14.0(rollup@4.31.0):
+ /rollup-plugin-visualizer/5.14.0:
+ resolution: {integrity: sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==}
+ engines: {node: '>=18'}
+ hasBin: true
+ peerDependencies:
+ rolldown: 1.x
+ rollup: 2.x || 3.x || 4.x
+ peerDependenciesMeta:
+ rolldown:
+ optional: true
+ rollup:
+ optional: true
dependencies:
open: 8.4.2
picomatch: 4.0.2
source-map: 0.7.4
yargs: 17.7.2
- optionalDependencies:
- rollup: 4.31.0
+ dev: false
- rollup-plugin-visualizer@5.14.0(rollup@4.34.9):
+ /rollup-plugin-visualizer/5.14.0_rollup@4.35.0:
+ resolution: {integrity: sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==}
+ engines: {node: '>=18'}
+ hasBin: true
+ peerDependencies:
+ rolldown: 1.x
+ rollup: 2.x || 3.x || 4.x
+ peerDependenciesMeta:
+ rolldown:
+ optional: true
+ rollup:
+ optional: true
dependencies:
open: 8.4.2
picomatch: 4.0.2
+ rollup: 4.35.0
source-map: 0.7.4
yargs: 17.7.2
- optionalDependencies:
- rollup: 4.34.9
- rollup@4.31.0:
+ /rollup/4.31.0:
+ resolution: {integrity: sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
@@ -21980,8 +18754,12 @@ snapshots:
'@rollup/rollup-win32-ia32-msvc': 4.31.0
'@rollup/rollup-win32-x64-msvc': 4.31.0
fsevents: 2.3.3
+ dev: true
- rollup@4.34.8:
+ /rollup/4.34.8:
+ resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
@@ -22005,88 +18783,143 @@ snapshots:
'@rollup/rollup-win32-ia32-msvc': 4.34.8
'@rollup/rollup-win32-x64-msvc': 4.34.8
fsevents: 2.3.3
+ dev: true
- rollup@4.34.9:
+ /rollup/4.35.0:
+ resolution: {integrity: sha512-kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.34.9
- '@rollup/rollup-android-arm64': 4.34.9
- '@rollup/rollup-darwin-arm64': 4.34.9
- '@rollup/rollup-darwin-x64': 4.34.9
- '@rollup/rollup-freebsd-arm64': 4.34.9
- '@rollup/rollup-freebsd-x64': 4.34.9
- '@rollup/rollup-linux-arm-gnueabihf': 4.34.9
- '@rollup/rollup-linux-arm-musleabihf': 4.34.9
- '@rollup/rollup-linux-arm64-gnu': 4.34.9
- '@rollup/rollup-linux-arm64-musl': 4.34.9
- '@rollup/rollup-linux-loongarch64-gnu': 4.34.9
- '@rollup/rollup-linux-powerpc64le-gnu': 4.34.9
- '@rollup/rollup-linux-riscv64-gnu': 4.34.9
- '@rollup/rollup-linux-s390x-gnu': 4.34.9
- '@rollup/rollup-linux-x64-gnu': 4.34.9
- '@rollup/rollup-linux-x64-musl': 4.34.9
- '@rollup/rollup-win32-arm64-msvc': 4.34.9
- '@rollup/rollup-win32-ia32-msvc': 4.34.9
- '@rollup/rollup-win32-x64-msvc': 4.34.9
+ '@rollup/rollup-android-arm-eabi': 4.35.0
+ '@rollup/rollup-android-arm64': 4.35.0
+ '@rollup/rollup-darwin-arm64': 4.35.0
+ '@rollup/rollup-darwin-x64': 4.35.0
+ '@rollup/rollup-freebsd-arm64': 4.35.0
+ '@rollup/rollup-freebsd-x64': 4.35.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.35.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.35.0
+ '@rollup/rollup-linux-arm64-gnu': 4.35.0
+ '@rollup/rollup-linux-arm64-musl': 4.35.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.35.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.35.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.35.0
+ '@rollup/rollup-linux-s390x-gnu': 4.35.0
+ '@rollup/rollup-linux-x64-gnu': 4.35.0
+ '@rollup/rollup-linux-x64-musl': 4.35.0
+ '@rollup/rollup-win32-arm64-msvc': 4.35.0
+ '@rollup/rollup-win32-ia32-msvc': 4.35.0
+ '@rollup/rollup-win32-x64-msvc': 4.35.0
fsevents: 2.3.3
- optional: true
- rrweb-cssom@0.6.0: {}
+ /rrweb-cssom/0.6.0:
+ resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
+ dev: true
- run-applescript@7.0.0: {}
+ /run-applescript/7.0.0:
+ resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
+ engines: {node: '>=18'}
- run-parallel@1.2.0:
+ /run-parallel/1.2.0:
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
- rxjs@7.8.1:
+ /rxjs/7.8.1:
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+ dependencies:
+ tslib: 2.8.1
+ dev: true
+
+ /rxjs/7.8.2:
+ resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
dependencies:
tslib: 2.8.1
- sade@1.8.1:
+ /sade/1.8.1:
+ resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
+ engines: {node: '>=6'}
dependencies:
mri: 1.2.0
+ dev: true
- safe-array-concat@1.1.3:
+ /safe-array-concat/1.1.3:
+ resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
+ engines: {node: '>=0.4'}
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
has-symbols: 1.1.0
isarray: 2.0.5
+ dev: true
- safe-buffer@5.1.2: {}
+ /safe-buffer/5.1.2:
+ resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- safe-buffer@5.2.1: {}
+ /safe-buffer/5.2.1:
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- safe-push-apply@1.0.0:
+ /safe-push-apply/1.0.0:
+ resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
+ engines: {node: '>= 0.4'}
dependencies:
es-errors: 1.3.0
isarray: 2.0.5
+ dev: true
- safe-regex-test@1.1.0:
+ /safe-regex-test/1.1.0:
+ resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
es-errors: 1.3.0
is-regex: 1.2.1
+ dev: true
- safe-regex2@4.0.1:
+ /safe-regex2/4.0.1:
+ resolution: {integrity: sha512-goqsB+bSlOmVX+CiFX2PFc1OV88j5jvBqIM+DgqrucHnUguAUNtiNOs+aTadq2NqsLQ+TQ3UEVG3gtSFcdlkCg==}
dependencies:
ret: 0.5.0
- safe-stable-stringify@2.5.0: {}
+ /safe-stable-stringify/2.5.0:
+ resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
+ engines: {node: '>=10'}
- safer-buffer@2.1.2: {}
+ /safer-buffer/2.1.2:
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass-loader@16.0.5(sass@1.85.0)(webpack@5.98.0(esbuild@0.25.0)):
+ /sass-loader/16.0.5_sass@1.85.0+webpack@5.98.0:
+ resolution: {integrity: sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ '@rspack/core': 0.x || 1.x
+ node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
+ sass: ^1.3.0
+ sass-embedded: '*'
+ webpack: ^5.0.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ node-sass:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ webpack:
+ optional: true
dependencies:
neo-async: 2.6.2
- optionalDependencies:
sass: 1.85.0
- webpack: 5.98.0(esbuild@0.24.2)
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
- sass@1.85.0:
+ /sass/1.85.0:
+ resolution: {integrity: sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
dependencies:
chokidar: 4.0.3
immutable: 5.0.3
@@ -22094,49 +18927,78 @@ snapshots:
optionalDependencies:
'@parcel/watcher': 2.5.1
- sax@1.4.1:
+ /sax/1.4.1:
+ resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
optional: true
- saxes@6.0.0:
+ /saxes/6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
dependencies:
xmlchars: 2.2.0
+ dev: true
- scheduler@0.25.0: {}
+ /scheduler/0.25.0:
+ resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
+ dev: false
- schema-utils@4.3.0:
+ /schema-utils/4.3.0:
+ resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
+ engines: {node: '>= 10.13.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)
+ ajv-formats: 2.1.1
+ ajv-keywords: 5.1.0_ajv@8.17.1
+ dev: true
- scule@1.3.0: {}
+ /scule/1.3.0:
+ resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
- search-insights@2.17.3: {}
+ /search-insights/2.17.3:
+ resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==}
+ dev: true
- secure-json-parse@3.0.2: {}
+ /secure-json-parse/3.0.2:
+ resolution: {integrity: sha512-H6nS2o8bWfpFEV6U38sOSjS7bTbdgbCGU9wEM6W14P5H0QOsz94KCusifV44GpHDTu2nqZbuDNhTzu+mjDSw1w==}
- select-hose@2.0.0: {}
+ /select-hose/2.0.0:
+ resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
+ dev: true
- selfsigned@2.4.1:
+ /selfsigned/2.4.1:
+ resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
+ engines: {node: '>=10'}
dependencies:
'@types/node-forge': 1.3.11
node-forge: 1.3.1
+ dev: true
- semver@5.7.2:
+ /semver/5.7.2:
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
+ hasBin: true
optional: true
- semver@6.3.1: {}
+ /semver/6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
+ hasBin: true
- semver@7.6.0:
+ /semver/7.6.0:
+ resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
+ engines: {node: '>=10'}
+ hasBin: true
dependencies:
lru-cache: 6.0.0
+ dev: true
- semver@7.7.0: {}
-
- semver@7.7.1: {}
+ /semver/7.7.1:
+ resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
+ engines: {node: '>=10'}
+ hasBin: true
- send@0.19.0:
+ /send/0.19.0:
+ resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
+ engines: {node: '>= 0.8.0'}
dependencies:
debug: 2.6.9
depd: 2.0.0
@@ -22154,17 +19016,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serialize-javascript@6.0.2:
+ /serialize-javascript/6.0.2:
+ resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
dependencies:
randombytes: 2.1.0
- seroval-plugins@1.2.1(seroval@1.2.1):
+ /seroval-plugins/1.2.1_seroval@1.2.1:
+ resolution: {integrity: sha512-H5vs53+39+x4Udwp4J5rNZfgFuA+Lt+uU+09w1gYBVWomtAl98B+E9w7yC05Xc81/HgLvJdlyqJbU0fJCKCmdw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ seroval: ^1.0
dependencies:
seroval: 1.2.1
+ dev: true
- seroval@1.2.1: {}
+ /seroval/1.2.1:
+ resolution: {integrity: sha512-yBxFFs3zmkvKNmR0pFSU//rIsYjuX418TnlDmc2weaq5XFDqDIV/NOMPBoLrbxjLH42p4UzRuXHryXh9dYcKcw==}
+ engines: {node: '>=10'}
+ dev: true
- serve-index@1.9.1:
+ /serve-index/1.9.1:
+ resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
+ engines: {node: '>= 0.8.0'}
dependencies:
accepts: 1.3.8
batch: 0.6.1
@@ -22175,12 +19048,16 @@ snapshots:
parseurl: 1.3.3
transitivePeerDependencies:
- supports-color
+ dev: true
- serve-placeholder@2.0.2:
+ /serve-placeholder/2.0.2:
+ resolution: {integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==}
dependencies:
defu: 6.1.4
- serve-static@1.16.2:
+ /serve-static/1.16.2:
+ resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
+ engines: {node: '>= 0.8.0'}
dependencies:
encodeurl: 2.0.0
escape-html: 1.0.3
@@ -22189,43 +19066,62 @@ snapshots:
transitivePeerDependencies:
- supports-color
- set-cookie-parser@2.7.1: {}
+ /set-cookie-parser/2.7.1:
+ resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==}
- set-function-length@1.2.2:
+ /set-function-length/1.2.2:
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
dependencies:
define-data-property: 1.1.4
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
gopd: 1.2.0
has-property-descriptors: 1.0.2
+ dev: true
- set-function-name@2.0.2:
+ /set-function-name/2.0.2:
+ resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
+ engines: {node: '>= 0.4'}
dependencies:
define-data-property: 1.1.4
es-errors: 1.3.0
functions-have-names: 1.2.3
has-property-descriptors: 1.0.2
+ dev: true
- set-proto@1.0.0:
+ /set-proto/1.0.0:
+ resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
+ engines: {node: '>= 0.4'}
dependencies:
dunder-proto: 1.0.1
es-errors: 1.3.0
es-object-atoms: 1.1.1
+ dev: true
- setprototypeof@1.1.0: {}
+ /setprototypeof/1.1.0:
+ resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
+ dev: true
- setprototypeof@1.2.0: {}
+ /setprototypeof/1.2.0:
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- shallow-clone@3.0.1:
+ /shallow-clone/3.0.1:
+ resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
+ engines: {node: '>=8'}
dependencies:
kind-of: 6.0.3
+ dev: true
- sharp@0.33.5:
+ /sharp/0.33.5:
+ resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ requiresBuild: true
dependencies:
color: 4.2.3
detect-libc: 2.0.3
- semver: 7.7.0
+ semver: 7.7.1
optionalDependencies:
'@img/sharp-darwin-arm64': 0.33.5
'@img/sharp-darwin-x64': 0.33.5
@@ -22247,66 +19143,99 @@ snapshots:
'@img/sharp-win32-ia32': 0.33.5
'@img/sharp-win32-x64': 0.33.5
- shebang-command@1.2.0:
+ /shebang-command/1.2.0:
+ resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
+ engines: {node: '>=0.10.0'}
dependencies:
shebang-regex: 1.0.0
+ dev: true
- shebang-command@2.0.0:
+ /shebang-command/2.0.0:
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+ engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
- shebang-regex@1.0.0: {}
+ /shebang-regex/1.0.0:
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
- shebang-regex@3.0.0: {}
+ /shebang-regex/3.0.0:
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+ engines: {node: '>=8'}
- shell-quote@1.8.2: {}
+ /shell-quote/1.8.2:
+ resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
+ engines: {node: '>= 0.4'}
- shiki@1.29.1:
+ /shiki/1.29.2:
+ resolution: {integrity: sha512-njXuliz/cP+67jU2hukkxCNuH1yUi4QfdZZY+sMr5PPrIyXSu5iTb/qYC4BiWWB0vZ+7TbdvYUCeL23zpwCfbg==}
dependencies:
- '@shikijs/core': 1.29.1
- '@shikijs/engine-javascript': 1.29.1
- '@shikijs/engine-oniguruma': 1.29.1
- '@shikijs/langs': 1.29.1
- '@shikijs/themes': 1.29.1
- '@shikijs/types': 1.29.1
- '@shikijs/vscode-textmate': 10.0.1
+ '@shikijs/core': 1.29.2
+ '@shikijs/engine-javascript': 1.29.2
+ '@shikijs/engine-oniguruma': 1.29.2
+ '@shikijs/langs': 1.29.2
+ '@shikijs/themes': 1.29.2
+ '@shikijs/types': 1.29.2
+ '@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
+ dev: true
- side-channel-list@1.0.0:
+ /side-channel-list/1.0.0:
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+ engines: {node: '>= 0.4'}
dependencies:
es-errors: 1.3.0
- object-inspect: 1.13.3
+ object-inspect: 1.13.4
+ dev: true
- side-channel-map@1.0.1:
+ /side-channel-map/1.0.1:
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
es-errors: 1.3.0
- get-intrinsic: 1.2.7
- object-inspect: 1.13.3
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+ dev: true
- side-channel-weakmap@1.0.2:
+ /side-channel-weakmap/1.0.2:
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
es-errors: 1.3.0
- get-intrinsic: 1.2.7
- object-inspect: 1.13.3
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
side-channel-map: 1.0.1
+ dev: true
- side-channel@1.1.0:
+ /side-channel/1.1.0:
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
+ engines: {node: '>= 0.4'}
dependencies:
es-errors: 1.3.0
- object-inspect: 1.13.3
+ object-inspect: 1.13.4
side-channel-list: 1.0.0
side-channel-map: 1.0.1
side-channel-weakmap: 1.0.2
+ dev: true
- siginfo@2.0.0: {}
+ /siginfo/2.0.0:
+ resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
+ dev: true
- signal-exit@3.0.7: {}
+ /signal-exit/3.0.7:
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- signal-exit@4.1.0: {}
+ /signal-exit/4.1.0:
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
- sigstore@3.1.0:
+ /sigstore/3.1.0:
+ resolution: {integrity: sha512-ZpzWAFHIFqyFE56dXqgX/DkDRZdz+rRcjoIk/RQU4IX0wiCv1l8S7ZrXDHcCc+uaf+6o7w3h2l3g6GYG5TKN9Q==}
+ engines: {node: ^18.17.0 || >=20.5.0}
dependencies:
'@sigstore/bundle': 3.1.0
'@sigstore/core': 2.0.0
@@ -22316,50 +19245,75 @@ snapshots:
'@sigstore/verify': 2.1.0
transitivePeerDependencies:
- supports-color
+ dev: true
- simple-git@3.27.0:
+ /simple-git/3.27.0:
+ resolution: {integrity: sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA==}
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
- simple-swizzle@0.2.2:
+ /simple-swizzle/0.2.2:
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
dependencies:
is-arrayish: 0.3.2
- sirv@3.0.0:
+ /sirv/3.0.1:
+ resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==}
+ engines: {node: '>=18'}
dependencies:
'@polka/url': 1.0.0-next.28
- mrmime: 2.0.0
+ mrmime: 2.0.1
totalist: 3.0.1
- sisteransi@1.0.5: {}
+ /sisteransi/1.0.5:
+ resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
- skin-tone@2.0.0:
+ /skin-tone/2.0.0:
+ resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==}
+ engines: {node: '>=8'}
dependencies:
unicode-emoji-modifier-base: 1.0.0
+ dev: true
- slash@3.0.0: {}
+ /slash/3.0.0:
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+ engines: {node: '>=8'}
+ dev: true
- slash@5.1.0: {}
+ /slash/5.1.0:
+ resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
+ engines: {node: '>=14.16'}
- slice-ansi@5.0.0:
+ /slice-ansi/5.0.0:
+ resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
+ engines: {node: '>=12'}
dependencies:
ansi-styles: 6.2.1
is-fullwidth-code-point: 4.0.0
+ dev: true
- slice-ansi@7.1.0:
+ /slice-ansi/7.1.0:
+ resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==}
+ engines: {node: '>=18'}
dependencies:
ansi-styles: 6.2.1
is-fullwidth-code-point: 5.0.0
+ dev: true
- smart-buffer@4.2.0: {}
+ /smart-buffer/4.2.0:
+ resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
+ engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
+ dev: true
- smob@1.5.0: {}
+ /smob/1.5.0:
+ resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
- socket.io-adapter@2.5.5:
+ /socket.io-adapter/2.5.5:
+ resolution: {integrity: sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==}
dependencies:
debug: 4.3.7
ws: 8.17.1
@@ -22367,15 +19321,21 @@ snapshots:
- bufferutil
- supports-color
- utf-8-validate
+ dev: true
- socket.io-parser@4.2.4:
+ /socket.io-parser/4.2.4:
+ resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==}
+ engines: {node: '>=10.0.0'}
dependencies:
'@socket.io/component-emitter': 3.1.2
debug: 4.3.7
transitivePeerDependencies:
- supports-color
+ dev: true
- socket.io@4.8.1:
+ /socket.io/4.8.1:
+ resolution: {integrity: sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==}
+ engines: {node: '>=10.2.0'}
dependencies:
accepts: 1.3.8
base64id: 2.0.0
@@ -22388,86 +19348,128 @@ snapshots:
- bufferutil
- supports-color
- utf-8-validate
+ dev: true
- sockjs@0.3.24:
+ /sockjs/0.3.24:
+ resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
dependencies:
faye-websocket: 0.11.4
uuid: 8.3.2
websocket-driver: 0.7.4
+ dev: true
- socks-proxy-agent@8.0.5:
+ /socks-proxy-agent/8.0.5:
+ resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==}
+ engines: {node: '>= 14'}
dependencies:
agent-base: 7.1.3
- debug: 4.3.4
- socks: 2.8.3
+ debug: 4.4.0
+ socks: 2.8.4
transitivePeerDependencies:
- supports-color
+ dev: true
- socks@2.8.3:
+ /socks/2.8.4:
+ resolution: {integrity: sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
dependencies:
ip-address: 9.0.5
smart-buffer: 4.2.0
+ dev: true
- solid-js@1.9.4:
+ /solid-js/1.9.5:
+ resolution: {integrity: sha512-ogI3DaFcyn6UhYhrgcyRAMbu/buBJitYQASZz5WzfQVPP10RD2AbCoRZ517psnezrasyCbWzIxZ6kVqet768xw==}
dependencies:
csstype: 3.1.3
seroval: 1.2.1
- seroval-plugins: 1.2.1(seroval@1.2.1)
+ seroval-plugins: 1.2.1_seroval@1.2.1
+ dev: true
- sonic-boom@4.2.0:
+ /sonic-boom/4.2.0:
+ resolution: {integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==}
dependencies:
atomic-sleep: 1.0.0
- source-map-js@1.2.1: {}
+ /source-map-js/1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
+ engines: {node: '>=0.10.0'}
- source-map-loader@5.0.0(webpack@5.98.0(esbuild@0.25.0)):
+ /source-map-loader/5.0.0_webpack@5.98.0:
+ resolution: {integrity: sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ webpack: ^5.72.1
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.1
- webpack: 5.98.0(esbuild@0.24.2)
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
- source-map-support@0.5.21:
+ /source-map-support/0.5.21:
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- source-map@0.6.1: {}
+ /source-map/0.6.1:
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
- source-map@0.7.4: {}
+ /source-map/0.7.4:
+ resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
+ engines: {node: '>= 8'}
- source-map@0.8.0-beta.0:
+ /source-map/0.8.0-beta.0:
+ resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
+ engines: {node: '>= 8'}
dependencies:
whatwg-url: 7.1.0
+ dev: true
- space-separated-tokens@2.0.2: {}
+ /space-separated-tokens/2.0.2:
+ resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
+ dev: true
- spawndamnit@2.0.0:
+ /spawndamnit/2.0.0:
+ resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==}
dependencies:
cross-spawn: 5.1.0
signal-exit: 3.0.7
+ dev: true
- spawndamnit@3.0.1:
+ /spawndamnit/3.0.1:
+ resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==}
dependencies:
- cross-spawn: 7.0.5
+ cross-spawn: 7.0.6
signal-exit: 4.1.0
+ dev: true
- spdx-correct@3.2.0:
+ /spdx-correct/3.2.0:
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
spdx-expression-parse: 3.0.1
spdx-license-ids: 3.0.21
+ dev: true
- spdx-exceptions@2.5.0: {}
+ /spdx-exceptions/2.5.0:
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
+ dev: true
- spdx-expression-parse@3.0.1:
+ /spdx-expression-parse/3.0.1:
+ resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
spdx-exceptions: 2.5.0
spdx-license-ids: 3.0.21
+ dev: true
- spdx-license-ids@3.0.21: {}
+ /spdx-license-ids/3.0.21:
+ resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==}
+ dev: true
- spdy-transport@3.0.0:
+ /spdy-transport/3.0.0:
+ resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
dependencies:
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -22475,249 +19477,408 @@ snapshots:
wbuf: 1.7.3
transitivePeerDependencies:
- supports-color
+ dev: true
- spdy@4.0.2:
+ /spdy/4.0.2:
+ resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
+ engines: {node: '>=6.0.0'}
dependencies:
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
spdy-transport: 3.0.0
transitivePeerDependencies:
- supports-color
+ dev: true
- speakingurl@14.0.1: {}
+ /speakingurl/14.0.1:
+ resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
+ engines: {node: '>=0.10.0'}
- split2@4.2.0: {}
+ /split2/4.2.0:
+ resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
+ engines: {node: '>= 10.x'}
- sprintf-js@1.0.3: {}
+ /sprintf-js/1.0.3:
+ resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+ dev: true
- sprintf-js@1.1.3: {}
+ /sprintf-js/1.1.3:
+ resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
+ dev: true
- ssri@12.0.0:
+ /ssri/12.0.0:
+ resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
dependencies:
minipass: 7.1.2
+ dev: true
- stable-hash@0.0.4: {}
+ /stable-hash/0.0.4:
+ resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
+ dev: true
- stackback@0.0.2: {}
+ /stackback/0.0.2:
+ resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
+ dev: true
- standard-as-callback@2.1.0: {}
+ /standard-as-callback/2.1.0:
+ resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
- statuses@1.5.0: {}
+ /statuses/1.5.0:
+ resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
+ engines: {node: '>= 0.6'}
+ dev: true
- statuses@2.0.1: {}
+ /statuses/2.0.1:
+ resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+ engines: {node: '>= 0.8'}
- std-env@3.8.0: {}
+ /std-env/3.8.1:
+ resolution: {integrity: sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==}
- streamroller@3.1.5:
+ /streamroller/3.1.5:
+ resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==}
+ engines: {node: '>=8.0'}
dependencies:
date-format: 4.0.14
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
fs-extra: 8.1.0
transitivePeerDependencies:
- supports-color
+ dev: true
- streamsearch@1.1.0: {}
+ /streamsearch/1.1.0:
+ resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
+ engines: {node: '>=10.0.0'}
+ dev: false
- streamx@2.22.0:
+ /streamx/2.22.0:
+ resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==}
dependencies:
fast-fifo: 1.3.2
text-decoder: 1.2.3
optionalDependencies:
bare-events: 2.5.4
- string-argv@0.3.2: {}
+ /string-argv/0.3.2:
+ resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
+ engines: {node: '>=0.6.19'}
+ dev: true
- string-width@4.2.3:
+ /string-width/4.2.3:
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
dependencies:
emoji-regex: 8.0.0
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- string-width@5.1.2:
+ /string-width/5.1.2:
+ resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
+ engines: {node: '>=12'}
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- string-width@7.2.0:
+ /string-width/7.2.0:
+ resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
+ engines: {node: '>=18'}
dependencies:
emoji-regex: 10.4.0
get-east-asian-width: 1.3.0
strip-ansi: 7.1.0
+ dev: true
- string.prototype.includes@2.0.1:
+ /string.prototype.includes/2.0.1:
+ resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
es-abstract: 1.23.9
+ dev: true
- string.prototype.matchall@4.0.12:
+ /string.prototype.matchall/4.0.12:
+ resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-properties: 1.2.1
es-abstract: 1.23.9
es-errors: 1.3.0
es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
gopd: 1.2.0
has-symbols: 1.1.0
internal-slot: 1.1.0
regexp.prototype.flags: 1.5.4
set-function-name: 2.0.2
side-channel: 1.1.0
+ dev: true
- string.prototype.repeat@1.0.0:
+ /string.prototype.repeat/1.0.0:
+ resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
dependencies:
define-properties: 1.2.1
es-abstract: 1.23.9
+ dev: true
- string.prototype.trim@1.2.10:
+ /string.prototype.trim/1.2.10:
+ resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-data-property: 1.1.4
define-properties: 1.2.1
es-abstract: 1.23.9
es-object-atoms: 1.1.1
has-property-descriptors: 1.0.2
+ dev: true
- string.prototype.trimend@1.0.9:
+ /string.prototype.trimend/1.0.9:
+ resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-properties: 1.2.1
es-object-atoms: 1.1.1
+ dev: true
- string.prototype.trimstart@1.0.8:
+ /string.prototype.trimstart/1.0.8:
+ resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
es-object-atoms: 1.1.1
+ dev: true
- string_decoder@1.1.1:
+ /string_decoder/1.1.1:
+ resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies:
safe-buffer: 5.1.2
- string_decoder@1.3.0:
+ /string_decoder/1.3.0:
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
dependencies:
safe-buffer: 5.2.1
- stringify-entities@4.0.4:
+ /stringify-entities/4.0.4:
+ resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
dependencies:
character-entities-html4: 2.1.0
character-entities-legacy: 3.0.0
+ dev: true
- strip-ansi@6.0.1:
+ /strip-ansi/6.0.1:
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.1.0:
+ /strip-ansi/7.1.0:
+ resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
+ engines: {node: '>=12'}
dependencies:
ansi-regex: 6.1.0
- strip-bom@3.0.0: {}
+ /strip-bom/3.0.0:
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
+ engines: {node: '>=4'}
+ dev: true
- strip-final-newline@3.0.0: {}
+ /strip-final-newline/3.0.0:
+ resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
+ engines: {node: '>=12'}
- strip-final-newline@4.0.0: {}
+ /strip-final-newline/4.0.0:
+ resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
+ engines: {node: '>=18'}
- strip-json-comments@3.1.1: {}
+ /strip-json-comments/3.1.1:
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
+ dev: true
- strip-literal@2.1.1:
+ /strip-literal/2.1.1:
+ resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
dependencies:
js-tokens: 9.0.1
- strip-literal@3.0.0:
+ /strip-literal/3.0.0:
+ resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
dependencies:
js-tokens: 9.0.1
- styled-jsx@5.1.6(react@19.0.0):
+ /structured-clone-es/1.0.0:
+ resolution: {integrity: sha512-FL8EeKFFyNQv5cMnXI31CIMCsFarSVI2bF0U0ImeNE3g/F1IvJQyqzOXxPBRXiwQfyBTlbNe88jh1jFW0O/jiQ==}
+ dev: false
+
+ /styled-jsx/5.1.6_react@19.0.0:
+ resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
+ engines: {node: '>= 12.0.0'}
+ peerDependencies:
+ '@babel/core': '*'
+ babel-plugin-macros: '*'
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ babel-plugin-macros:
+ optional: true
dependencies:
client-only: 0.0.1
react: 19.0.0
+ dev: false
- stylehacks@7.0.4(postcss@8.5.3):
+ /stylehacks/7.0.4_postcss@8.5.3:
+ resolution: {integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
+ peerDependencies:
+ postcss: ^8.4.31
dependencies:
browserslist: 4.24.4
postcss: 8.5.3
postcss-selector-parser: 6.1.2
- sucrase@3.35.0:
+ /sucrase/3.35.0:
+ resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ hasBin: true
dependencies:
'@jridgewell/gen-mapping': 0.3.8
commander: 4.1.1
- glob: 10.4.3
+ glob: 10.4.5
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
ts-interface-checker: 0.1.13
+ dev: true
- superjson@2.2.2:
+ /superjson/2.2.2:
+ resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
+ engines: {node: '>=16'}
dependencies:
copy-anything: 3.0.5
- supports-color@7.2.0:
+ /supports-color/10.0.0:
+ resolution: {integrity: sha512-HRVVSbCCMbj7/kdWF9Q+bbckjBHLtHMEoJWlkmYzzdwhYMkjkOwubLM6t7NbWKjgKamGDrWL1++KrjUO1t9oAQ==}
+ engines: {node: '>=18'}
+
+ /supports-color/7.2.0:
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+ engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
- supports-color@8.1.1:
+ /supports-color/8.1.1:
+ resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
+ engines: {node: '>=10'}
dependencies:
has-flag: 4.0.0
+ dev: true
- supports-color@9.4.0: {}
+ /supports-color/9.4.0:
+ resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==}
+ engines: {node: '>=12'}
- supports-hyperlinks@3.1.0:
+ /supports-hyperlinks/3.2.0:
+ resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==}
+ engines: {node: '>=14.18'}
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
+ dev: true
- supports-preserve-symlinks-flag@1.0.0: {}
+ /supports-preserve-symlinks-flag/1.0.0:
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
- svelte-check@4.1.4(picomatch@4.0.2)(svelte@5.19.9)(typescript@5.5.3):
+ /svelte-check/4.1.4_6p6tysakew3sev7ys2p7vrl5ri:
+ resolution: {integrity: sha512-v0j7yLbT29MezzaQJPEDwksybTE2Ups9rUxEXy92T06TiA0cbqcO8wAOwNUVkFW6B0hsYHA+oAX3BS8b/2oHtw==}
+ engines: {node: '>= 18.0.0'}
+ hasBin: true
+ peerDependencies:
+ svelte: ^4.0.0 || ^5.0.0-next.0
+ typescript: '>=5.0.0'
dependencies:
'@jridgewell/trace-mapping': 0.3.25
chokidar: 4.0.3
- fdir: 6.4.3(picomatch@4.0.2)
+ fdir: 6.4.3
picocolors: 1.1.1
sade: 1.8.1
svelte: 5.19.9
typescript: 5.5.3
transitivePeerDependencies:
- picomatch
+ dev: true
- svelte-eslint-parser@0.43.0(svelte@5.19.9):
+ /svelte-eslint-parser/0.43.0_svelte@5.19.9:
+ resolution: {integrity: sha512-GpU52uPKKcVnh8tKN5P4UZpJ/fUDndmq7wfsvoVXsyP+aY0anol7Yqo01fyrlaWGMFfm4av5DyrjlaXdLRJvGA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ svelte: ^3.37.0 || ^4.0.0 || ^5.0.0
+ peerDependenciesMeta:
+ svelte:
+ optional: true
dependencies:
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- postcss: 8.4.41
- postcss-scss: 4.0.9(postcss@8.4.41)
- optionalDependencies:
+ postcss: 8.5.3
+ postcss-scss: 4.0.9_postcss@8.5.3
svelte: 5.19.9
+ dev: true
- svelte@5.19.9:
+ /svelte/5.19.9:
+ resolution: {integrity: sha512-860s752/ZZxHIsii31ELkdKBOCeAuDsfb/AGUXJyQyzUVLRSt4oqEw/BV5+2+mNg8mbqmD3OK+vMvwWMPM6f8A==}
+ engines: {node: '>=18'}
dependencies:
'@ampproject/remapping': 2.3.0
'@jridgewell/sourcemap-codec': 1.5.0
'@types/estree': 1.0.6
- acorn: 8.14.0
- acorn-typescript: 1.4.13(acorn@8.14.0)
+ acorn: 8.14.1
+ acorn-typescript: 1.4.13_acorn@8.14.1
aria-query: 5.3.2
axobject-query: 4.1.0
clsx: 2.1.1
esm-env: 1.2.2
- esrap: 1.4.3
+ esrap: 1.4.5
is-reference: 3.0.3
locate-character: 3.0.0
magic-string: 0.30.17
zimmerframe: 1.1.2
- svg-tags@1.0.0: {}
+ /svelte/5.22.6:
+ resolution: {integrity: sha512-dxHyh3USJyayafSt5I5QD7KuoCM5ZGdIOtLQiKHEro7tymdh0jMcNkiSBVHW+LOA2jEqZEHhyfwN6/pCjx0Fug==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@sveltejs/acorn-typescript': 1.0.5_acorn@8.14.1
+ '@types/estree': 1.0.6
+ acorn: 8.14.1
+ aria-query: 5.3.2
+ axobject-query: 4.1.0
+ clsx: 2.1.1
+ esm-env: 1.2.2
+ esrap: 1.4.5
+ is-reference: 3.0.3
+ locate-character: 3.0.0
+ magic-string: 0.30.17
+ zimmerframe: 1.1.2
+ dev: true
- svgo@3.3.2:
+ /svgo/3.3.2:
+ resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
dependencies:
'@trysound/sax': 0.2.0
commander: 7.2.0
@@ -22727,47 +19888,35 @@ snapshots:
csso: 5.0.5
picocolors: 1.1.1
- symbol-observable@4.0.0: {}
+ /symbol-observable/4.0.0:
+ resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==}
+ engines: {node: '>=0.10'}
+ dev: true
- symbol-tree@3.2.4: {}
+ /symbol-tree/3.2.4:
+ resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
+ dev: true
- synckit@0.9.2:
+ /synckit/0.9.2:
+ resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
+ engines: {node: ^14.18.0 || >=16.0.0}
dependencies:
'@pkgr/core': 0.1.1
tslib: 2.8.1
+ dev: true
- system-architecture@0.1.0: {}
-
- tabbable@6.2.0: {}
+ /system-architecture/0.1.0:
+ resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
+ engines: {node: '>=18'}
- tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3)):
- dependencies:
- '@alloc/quick-lru': 5.2.0
- arg: 5.0.2
- chokidar: 3.6.0
- didyoumean: 1.2.2
- dlv: 1.1.3
- fast-glob: 3.3.3
- glob-parent: 6.0.2
- is-glob: 4.0.3
- jiti: 1.21.7
- lilconfig: 2.1.0
- micromatch: 4.0.8
- normalize-path: 3.0.0
- object-hash: 3.0.0
- picocolors: 1.1.1
- postcss: 8.4.41
- postcss-import: 15.1.0(postcss@8.4.41)
- postcss-js: 4.0.1(postcss@8.4.41)
- postcss-load-config: 4.0.2(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3))
- postcss-nested: 6.2.0(postcss@8.4.41)
- postcss-selector-parser: 6.1.2
- resolve: 1.22.10
- sucrase: 3.35.0
- transitivePeerDependencies:
- - ts-node
+ /tabbable/6.2.0:
+ resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
+ dev: true
- tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3)):
+ /tailwindcss/3.4.9:
+ resolution: {integrity: sha512-1SEOvRr6sSdV5IDf9iC+NU4dhwdqzF4zKKq3sAbasUWHEM6lsMhX+eNN5gkPx1BvLFEnZQEUFbXnGj8Qlp83Pg==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -22784,19 +19933,23 @@ snapshots:
object-hash: 3.0.0
picocolors: 1.1.1
postcss: 8.4.41
- postcss-import: 15.1.0(postcss@8.4.41)
- postcss-js: 4.0.1(postcss@8.4.41)
- postcss-load-config: 4.0.2(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3))
- postcss-nested: 6.2.0(postcss@8.4.41)
+ postcss-import: 15.1.0_postcss@8.4.41
+ postcss-js: 4.0.1_postcss@8.4.41
+ postcss-load-config: 4.0.2_postcss@8.4.41
+ postcss-nested: 6.2.0_postcss@8.4.41
postcss-selector-parser: 6.1.2
resolve: 1.22.10
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
+ dev: true
- tapable@2.2.1: {}
+ /tapable/2.2.1:
+ resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
+ engines: {node: '>=6'}
- tar-fs@3.0.5:
+ /tar-fs/3.0.5:
+ resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==}
dependencies:
pump: 3.0.2
tar-stream: 3.1.7
@@ -22805,14 +19958,18 @@ snapshots:
bare-path: 2.1.3
transitivePeerDependencies:
- bare-buffer
+ dev: true
- tar-stream@3.1.7:
+ /tar-stream/3.1.7:
+ resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
dependencies:
b4a: 1.6.7
fast-fifo: 1.3.2
streamx: 2.22.0
- tar@6.2.1:
+ /tar/6.2.1:
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
+ engines: {node: '>=10'}
dependencies:
chownr: 2.0.0
fs-minipass: 2.1.0
@@ -22821,7 +19978,9 @@ snapshots:
mkdirp: 1.0.4
yallist: 4.0.0
- tar@7.4.3:
+ /tar/7.4.3:
+ resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
+ engines: {node: '>=18'}
dependencies:
'@isaacs/fs-minipass': 4.0.1
chownr: 3.0.0
@@ -22830,150 +19989,270 @@ snapshots:
mkdirp: 3.0.1
yallist: 5.0.0
- term-size@2.2.1: {}
+ /term-size/2.2.1:
+ resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
+ engines: {node: '>=8'}
+ dev: true
- terser-webpack-plugin@5.3.12(esbuild@0.24.2)(webpack@5.98.0(esbuild@0.25.0)):
+ /terser-webpack-plugin/5.3.14_dflvnw2ohzw6dukrwawcjaonya:
+ 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
dependencies:
'@jridgewell/trace-mapping': 0.3.25
+ esbuild: 0.25.0
jest-worker: 27.5.1
schema-utils: 4.3.0
serialize-javascript: 6.0.2
terser: 5.39.0
- webpack: 5.98.0(esbuild@0.24.2)
- optionalDependencies:
- esbuild: 0.24.2
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
+
+ /terser-webpack-plugin/5.3.14_webpack@5.98.0:
+ 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
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ jest-worker: 27.5.1
+ schema-utils: 4.3.0
+ serialize-javascript: 6.0.2
+ terser: 5.39.0
+ webpack: 5.98.0
+ dev: true
- terser@5.39.0:
+ /terser/5.39.0:
+ resolution: {integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==}
+ engines: {node: '>=10'}
+ hasBin: true
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.14.0
+ acorn: 8.14.1
commander: 2.20.3
source-map-support: 0.5.21
- test-exclude@6.0.0:
+ /test-exclude/6.0.0:
+ resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
+ engines: {node: '>=8'}
dependencies:
'@istanbuljs/schema': 0.1.3
glob: 7.2.3
minimatch: 3.1.2
+ dev: true
- text-decoder@1.2.3:
+ /text-decoder/1.2.3:
+ resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
dependencies:
b4a: 1.6.7
- thenify-all@1.6.0:
+ /thenify-all/1.6.0:
+ resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
+ engines: {node: '>=0.8'}
dependencies:
thenify: 3.3.1
+ dev: true
- thenify@3.3.1:
+ /thenify/3.3.1:
+ resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
dependencies:
any-promise: 1.3.0
+ dev: true
- thingies@1.21.0(tslib@2.8.1):
+ /thingies/1.21.0_tslib@2.8.1:
+ resolution: {integrity: sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==}
+ engines: {node: '>=10.18'}
+ peerDependencies:
+ tslib: ^2
dependencies:
tslib: 2.8.1
+ dev: true
- thread-stream@3.1.0:
+ /thread-stream/3.1.0:
+ resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==}
dependencies:
real-require: 0.2.0
- through@2.3.8: {}
+ /through/2.3.8:
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+ dev: true
+
+ /thunky/1.1.0:
+ resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
+ dev: true
- thunky@1.1.0: {}
+ /tiny-invariant/1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
- tiny-invariant@1.3.3: {}
+ /tinybench/2.9.0:
+ resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
+ dev: true
- tinybench@2.9.0: {}
+ /tinyexec/0.3.2:
+ resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinyexec@0.3.2: {}
+ /tinyglobby/0.2.10:
+ resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
+ engines: {node: '>=12.0.0'}
+ dependencies:
+ fdir: 6.4.3_picomatch@4.0.2
+ picomatch: 4.0.2
- tinyglobby@0.2.10:
+ /tinyglobby/0.2.12:
+ resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
+ engines: {node: '>=12.0.0'}
dependencies:
- fdir: 6.4.3(picomatch@4.0.2)
+ fdir: 6.4.3_picomatch@4.0.2
picomatch: 4.0.2
- tinypool@0.8.4: {}
+ /tinypool/0.8.4:
+ resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
+ engines: {node: '>=14.0.0'}
+ dev: true
- tinyspy@2.2.1: {}
+ /tinyspy/2.2.1:
+ resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
+ engines: {node: '>=14.0.0'}
+ dev: true
- tmp@0.0.33:
+ /tmp/0.0.33:
+ resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
+ engines: {node: '>=0.6.0'}
dependencies:
os-tmpdir: 1.0.2
+ dev: true
- tmp@0.2.3: {}
+ /tmp/0.2.3:
+ resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
+ engines: {node: '>=14.14'}
+ dev: true
- to-regex-range@5.0.1:
+ /to-regex-range/5.0.1:
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+ engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
- toad-cache@3.7.0: {}
+ /toad-cache/3.7.0:
+ resolution: {integrity: sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==}
+ engines: {node: '>=12'}
- toidentifier@1.0.1: {}
+ /toidentifier/1.0.1:
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
+ engines: {node: '>=0.6'}
- totalist@3.0.1: {}
+ /totalist/3.0.1:
+ resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
+ engines: {node: '>=6'}
- tough-cookie@4.1.4:
+ /tough-cookie/4.1.4:
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
+ engines: {node: '>=6'}
dependencies:
psl: 1.15.0
punycode: 2.3.1
universalify: 0.2.0
url-parse: 1.5.10
+ dev: true
- tr46@0.0.3: {}
+ /tr46/0.0.3:
+ resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- tr46@1.0.1:
+ /tr46/1.0.1:
+ resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
dependencies:
punycode: 2.3.1
+ dev: true
- tr46@5.0.0:
+ /tr46/5.0.0:
+ resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ engines: {node: '>=18'}
dependencies:
punycode: 2.3.1
+ dev: true
- tree-dump@1.0.2(tslib@2.8.1):
+ /tree-dump/1.0.2_tslib@2.8.1:
+ resolution: {integrity: sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
dependencies:
tslib: 2.8.1
+ dev: true
- tree-kill@1.2.2: {}
-
- trim-lines@3.0.1: {}
-
- ts-api-utils@1.4.3(typescript@5.5.3):
- dependencies:
- typescript: 5.5.3
-
- ts-api-utils@2.0.0(typescript@5.5.3):
- dependencies:
- typescript: 5.5.3
+ /tree-kill/1.2.2:
+ resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
+ hasBin: true
+ dev: true
- ts-interface-checker@0.1.13: {}
+ /trim-lines/3.0.1:
+ resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
+ dev: true
- ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3):
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 22.10.5
- acorn: 8.14.0
- acorn-walk: 8.3.4
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
+ /ts-api-utils/1.4.3_typescript@5.5.3:
+ resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ typescript: '>=4.2.0'
+ dependencies:
typescript: 5.5.3
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- optional: true
+ dev: true
+
+ /ts-api-utils/2.0.1_typescript@5.5.3:
+ resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==}
+ engines: {node: '>=18.12'}
+ peerDependencies:
+ typescript: '>=4.8.4'
+ dependencies:
+ typescript: 5.5.3
+ dev: true
+
+ /ts-interface-checker/0.1.13:
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
+ dev: true
- ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.3):
+ /ts-node/10.9.2_vqq2jgqvcrokzxf4leekoaudga:
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
+ hasBin: true
+ peerDependencies:
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
+ peerDependenciesMeta:
+ '@swc/core':
+ optional: true
+ '@swc/wasm':
+ optional: true
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': 22.13.8
- acorn: 8.14.0
+ '@types/node': 22.13.10
+ acorn: 8.14.1
acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
@@ -22982,77 +20261,139 @@ snapshots:
typescript: 5.5.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
+ dev: true
- tsconfig-paths@3.15.0:
+ /tsconfig-paths/3.15.0:
+ resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
dependencies:
'@types/json5': 0.0.29
json5: 1.0.2
minimist: 1.2.8
strip-bom: 3.0.0
+ dev: true
- tslib@1.14.1: {}
+ /tslib/1.14.1:
+ resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+ dev: true
- tslib@2.8.1: {}
+ /tslib/2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- tsup@8.3.5(jiti@2.4.2)(postcss@8.5.3)(typescript@5.5.3)(yaml@2.7.0):
+ /tsup/8.3.5_typescript@5.5.3:
+ resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==}
+ engines: {node: '>=18'}
+ hasBin: true
+ peerDependencies:
+ '@microsoft/api-extractor': ^7.36.0
+ '@swc/core': ^1
+ postcss: ^8.4.12
+ typescript: '>=4.5.0'
+ peerDependenciesMeta:
+ '@microsoft/api-extractor':
+ optional: true
+ '@swc/core':
+ optional: true
+ postcss:
+ optional: true
+ typescript:
+ optional: true
dependencies:
- bundle-require: 5.1.0(esbuild@0.24.2)
+ bundle-require: 5.1.0_esbuild@0.24.2
cac: 6.7.14
chokidar: 4.0.3
consola: 3.4.0
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
esbuild: 0.24.2
joycon: 3.1.1
picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.3)(yaml@2.7.0)
+ postcss-load-config: 6.0.1
resolve-from: 5.0.0
rollup: 4.31.0
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tinyexec: 0.3.2
- tinyglobby: 0.2.10
+ tinyglobby: 0.2.12
tree-kill: 1.2.2
- optionalDependencies:
- postcss: 8.5.3
typescript: 5.5.3
transitivePeerDependencies:
- jiti
- supports-color
- tsx
- yaml
+ dev: true
- tsutils@3.21.0(typescript@5.5.3):
+ /tsutils/3.21.0_typescript@5.5.3:
+ 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'
dependencies:
tslib: 1.14.1
typescript: 5.5.3
+ dev: true
- tuf-js@3.0.1:
+ /tuf-js/3.0.1:
+ resolution: {integrity: sha512-+68OP1ZzSF84rTckf3FA95vJ1Zlx/uaXyiiKyPd1pA4rZNkpEvDAKmsu1xUSmbF/chCRYgZ6UZkDwC7PmzmAyA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
dependencies:
'@tufjs/models': 3.0.1
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
make-fetch-happen: 14.0.3
transitivePeerDependencies:
- supports-color
+ dev: true
- turbo-darwin-64@2.4.0:
+ /turbo-darwin-64/2.4.0:
+ resolution: {integrity: sha512-kVMScnPUa3R4n7woNmkR15kOY0aUwCLJcUyH5UC59ggKqr5HIHwweKYK8N1pwBQso0LQF4I9i93hIzfJguCcwQ==}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
optional: true
- turbo-darwin-arm64@2.4.0:
+ /turbo-darwin-arm64/2.4.0:
+ resolution: {integrity: sha512-8JObIpfun1guA7UlFR5jC/SOVm49lRscxMxfg5jZ5ABft79rhFC+ygN9AwAhGKv6W2DUhIh2xENkSgu4EDmUyg==}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
optional: true
- turbo-linux-64@2.4.0:
+ /turbo-linux-64/2.4.0:
+ resolution: {integrity: sha512-xWDGGcRlBuGV7HXWAVuTY6vsQi4aZxGMAnuiuNDg8Ij1aHGohOM0RUsWMXjxz4vuJmjk9+/D6NQqHH3AJEXezg==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
optional: true
- turbo-linux-arm64@2.4.0:
+ /turbo-linux-arm64/2.4.0:
+ resolution: {integrity: sha512-c3En99xMguc/Pdtk/rZP53LnDdw0W6lgUc04he8r8F+UHYSNvgzHh0WGXXmCC6lGbBH72kPhhGx4bAwyvi7dug==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
optional: true
- turbo-windows-64@2.4.0:
+ /turbo-windows-64/2.4.0:
+ resolution: {integrity: sha512-/gOORuOlyA8JDPzyA16CD3wvyRcuBFePa1URAnFUof9hXQmKxK0VvSDO79cYZFsJSchCKNJpckUS0gYxGsWwoA==}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
optional: true
- turbo-windows-arm64@2.4.0:
+ /turbo-windows-arm64/2.4.0:
+ resolution: {integrity: sha512-/DJIdTFijEMM5LSiEpSfarDOMOlYqJV+EzmppqWtHqDsOLF4hbbIBH9sJR6OOp5dURAu5eURBYdmvBRz9Lo6TA==}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
optional: true
- turbo@2.4.0:
+ /turbo/2.4.0:
+ resolution: {integrity: sha512-ah/yQp2oMif1X0u7fBJ4MLMygnkbKnW5O8SG6pJvloPCpHfFoZctkSVQiJ3VnvNTq71V2JJIdwmOeu1i34OQyg==}
+ hasBin: true
optionalDependencies:
turbo-darwin-64: 2.4.0
turbo-darwin-arm64: 2.4.0
@@ -23060,773 +20401,1753 @@ snapshots:
turbo-linux-arm64: 2.4.0
turbo-windows-64: 2.4.0
turbo-windows-arm64: 2.4.0
+ dev: true
+
+ /type-check/0.4.0:
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ prelude-ls: 1.2.1
+ dev: true
+
+ /type-detect/4.1.0:
+ resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /type-fest/0.20.2:
+ resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
+ engines: {node: '>=10'}
+ dev: true
+
+ /type-fest/0.21.3:
+ resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+ engines: {node: '>=10'}
+
+ /type-fest/4.37.0:
+ resolution: {integrity: sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==}
+ engines: {node: '>=16'}
+
+ /type-is/1.6.18:
+ resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ media-typer: 0.3.0
+ mime-types: 2.1.35
+ dev: true
+
+ /typed-array-buffer/1.0.3:
+ resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-typed-array: 1.1.15
+ dev: true
+
+ /typed-array-byte-length/1.0.3:
+ resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
+ dev: true
+
+ /typed-array-byte-offset/1.0.4:
+ resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
+ reflect.getprototypeof: 1.0.10
+ dev: true
+
+ /typed-array-length/1.0.7:
+ resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ is-typed-array: 1.1.15
+ possible-typed-array-names: 1.1.0
+ reflect.getprototypeof: 1.0.10
+ dev: true
+
+ /typed-assert/1.0.9:
+ resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==}
+ dev: true
+
+ /typescript-eslint/8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi:
+ resolution: {integrity: sha512-LKPUQpdEMVOeKluHi8md7rwLcoXHhwvWp3x+sJkMuq3gGm9yaYJtPo8sRZSblMFJ5pcOGCAak/scKf1mvZDlQw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.8.0'
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 8.19.1_lpim7asfdh6cjegyoqc2qmzxvm
+ '@typescript-eslint/parser': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/utils': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
+ eslint: 9.17.0
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /typescript-eslint/8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi:
+ resolution: {integrity: sha512-PtVz9nAnuNJuAVeUFvwztjuUgSnJInODAUx47VDwWPXzd5vismPOtPtt83tzNXyOjVQbPRp786D6WFW/M2koIA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.9.0'
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 8.26.0_v7em3iowsogr2ppwgchrzap2oy
+ '@typescript-eslint/parser': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ '@typescript-eslint/utils': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
+ eslint: 9.17.0
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /typescript/5.5.3:
+ resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ /typescript/5.6.1-rc:
+ resolution: {integrity: sha512-E3b2+1zEFu84jB0YQi9BORDjz9+jGbwwy1Zi3G0LUNw7a7cePUrHMRNy8aPh53nXpkFGVHSxIZo5vKTfYaFiBQ==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+ dev: true
+
+ /ua-parser-js/0.7.40:
+ resolution: {integrity: sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ==}
+ hasBin: true
+ dev: true
+
+ /ufo/1.5.4:
+ resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
+
+ /uglify-js/3.19.3:
+ resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
+ engines: {node: '>=0.8.0'}
+ hasBin: true
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /ultrahtml/1.5.3:
+ resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==}
+
+ /unbox-primitive/1.1.0:
+ resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bound: 1.0.4
+ has-bigints: 1.1.0
+ has-symbols: 1.1.0
+ which-boxed-primitive: 1.1.1
+ dev: true
+
+ /unbzip2-stream/1.4.3:
+ resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
+ dependencies:
+ buffer: 5.7.1
+ through: 2.3.8
+ dev: true
+
+ /uncrypto/0.1.3:
+ resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
+
+ /unctx/2.4.1:
+ resolution: {integrity: sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg==}
+ dependencies:
+ acorn: 8.14.1
+ estree-walker: 3.0.3
+ magic-string: 0.30.17
+ unplugin: 2.2.0
+
+ /undici-types/6.20.0:
+ resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
+
+ /unenv/1.10.0:
+ resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
+ dependencies:
+ consola: 3.4.0
+ defu: 6.1.4
+ mime: 3.0.0
+ node-fetch-native: 1.6.6
+ pathe: 1.1.2
+
+ /unenv/2.0.0-rc.14:
+ resolution: {integrity: sha512-od496pShMen7nOy5VmVJCnq8rptd45vh6Nx/r2iPbrba6pa6p+tS2ywuIHRZ/OBvSbQZB0kWvpO9XBNVFXHD3Q==}
+ dependencies:
+ defu: 6.1.4
+ exsolve: 1.0.4
+ ohash: 2.0.11
+ pathe: 2.0.3
+ ufo: 1.5.4
+
+ /unhead/1.11.20:
+ resolution: {integrity: sha512-3AsNQC0pjwlLqEYHLjtichGWankK8yqmocReITecmpB1H0aOabeESueyy+8X1gyJx4ftZVwo9hqQ4O3fPWffCA==}
+ dependencies:
+ '@unhead/dom': 1.11.20
+ '@unhead/schema': 1.11.20
+ '@unhead/shared': 1.11.20
+ hookable: 5.5.3
+
+ /unhead/2.0.0-rc.9:
+ resolution: {integrity: sha512-N1p9as7Hg9Gs3l5kkxxsi9eTa8xTHUADZgN1U+hCKHWKegGhvJ4wApzBjk4Zng7O92wPlPDGk8oHSWgO6jg6tw==}
+ dependencies:
+ hookable: 5.5.3
+ dev: false
+
+ /unicode-canonical-property-names-ecmascript/2.0.1:
+ resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /unicode-emoji-modifier-base/1.0.0:
+ resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /unicode-match-property-ecmascript/2.0.0:
+ resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
+ engines: {node: '>=4'}
+ dependencies:
+ unicode-canonical-property-names-ecmascript: 2.0.1
+ unicode-property-aliases-ecmascript: 2.1.0
+ dev: true
+
+ /unicode-match-property-value-ecmascript/2.2.0:
+ resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /unicode-property-aliases-ecmascript/2.1.0:
+ resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /unicorn-magic/0.3.0:
+ resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
+ engines: {node: '>=18'}
+
+ /unimport/3.14.6:
+ resolution: {integrity: sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g==}
+ dependencies:
+ '@rollup/pluginutils': 5.1.4
+ acorn: 8.14.1
+ escape-string-regexp: 5.0.0
+ estree-walker: 3.0.3
+ fast-glob: 3.3.3
+ local-pkg: 1.1.1
+ magic-string: 0.30.17
+ mlly: 1.7.4
+ pathe: 2.0.3
+ picomatch: 4.0.2
+ pkg-types: 1.3.1
+ scule: 1.3.0
+ strip-literal: 2.1.1
+ unplugin: 1.16.1
+ transitivePeerDependencies:
+ - rollup
+ dev: false
+
+ /unimport/3.14.6_rollup@4.35.0:
+ resolution: {integrity: sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g==}
+ dependencies:
+ '@rollup/pluginutils': 5.1.4_rollup@4.35.0
+ acorn: 8.14.1
+ escape-string-regexp: 5.0.0
+ estree-walker: 3.0.3
+ fast-glob: 3.3.3
+ local-pkg: 1.1.1
+ magic-string: 0.30.17
+ mlly: 1.7.4
+ pathe: 2.0.3
+ picomatch: 4.0.2
+ pkg-types: 1.3.1
+ scule: 1.3.0
+ strip-literal: 2.1.1
+ unplugin: 1.16.1
+ transitivePeerDependencies:
+ - rollup
+ dev: true
- type-check@0.4.0:
+ /unimport/4.1.2:
+ resolution: {integrity: sha512-oVUL7PSlyVV3QRhsdcyYEMaDX8HJyS/CnUonEJTYA3//bWO+o/4gG8F7auGWWWkrrxBQBYOO8DKe+C53ktpRXw==}
+ engines: {node: '>=18.12.0'}
dependencies:
- prelude-ls: 1.2.1
-
- type-detect@4.1.0: {}
-
- type-fest@0.20.2: {}
+ acorn: 8.14.1
+ escape-string-regexp: 5.0.0
+ estree-walker: 3.0.3
+ local-pkg: 1.1.1
+ magic-string: 0.30.17
+ mlly: 1.7.4
+ pathe: 2.0.3
+ picomatch: 4.0.2
+ pkg-types: 1.3.1
+ scule: 1.3.0
+ strip-literal: 3.0.0
+ tinyglobby: 0.2.12
+ unplugin: 2.2.0
+ unplugin-utils: 0.2.4
- type-fest@0.21.3: {}
+ /unique-filename/4.0.0:
+ resolution: {integrity: sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ unique-slug: 5.0.0
+ dev: true
- type-fest@4.33.0: {}
+ /unique-slug/5.0.0:
+ resolution: {integrity: sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+ dependencies:
+ imurmurhash: 0.1.4
+ dev: true
- type-is@1.6.18:
+ /unist-util-is/6.0.0:
+ resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
dependencies:
- media-typer: 0.3.0
- mime-types: 2.1.35
+ '@types/unist': 3.0.3
+ dev: true
- typed-array-buffer@1.0.3:
+ /unist-util-position/5.0.0:
+ resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- is-typed-array: 1.1.15
+ '@types/unist': 3.0.3
+ dev: true
- typed-array-byte-length@1.0.3:
+ /unist-util-stringify-position/4.0.0:
+ resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
dependencies:
- call-bind: 1.0.8
- for-each: 0.3.4
- gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
+ '@types/unist': 3.0.3
+ dev: true
- typed-array-byte-offset@1.0.4:
+ /unist-util-visit-parents/6.0.1:
+ resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
dependencies:
- available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- for-each: 0.3.4
- gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
- reflect.getprototypeof: 1.0.10
+ '@types/unist': 3.0.3
+ unist-util-is: 6.0.0
+ dev: true
- typed-array-length@1.0.7:
+ /unist-util-visit/5.0.0:
+ resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
dependencies:
- call-bind: 1.0.8
- for-each: 0.3.4
- gopd: 1.2.0
- is-typed-array: 1.1.15
- possible-typed-array-names: 1.0.0
- reflect.getprototypeof: 1.0.10
+ '@types/unist': 3.0.3
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
+ dev: true
+
+ /universalify/0.1.2:
+ resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
+ engines: {node: '>= 4.0.0'}
+ dev: true
- typed-assert@1.0.9: {}
+ /universalify/0.2.0:
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
+ engines: {node: '>= 4.0.0'}
+ dev: true
- typescript-eslint@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3):
- dependencies:
- '@typescript-eslint/eslint-plugin': 8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/parser': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- eslint: 9.17.0(jiti@2.4.2)
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
+ /universalify/2.0.1:
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
+ engines: {node: '>= 10.0.0'}
- typescript@5.5.3: {}
+ /unpipe/1.0.0:
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
+ engines: {node: '>= 0.8'}
+ dev: true
- typescript@5.6.1-rc: {}
+ /unplugin-utils/0.2.4:
+ resolution: {integrity: sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==}
+ engines: {node: '>=18.12.0'}
+ dependencies:
+ pathe: 2.0.3
+ picomatch: 4.0.2
- ua-parser-js@0.7.40: {}
+ /unplugin-vue-router/0.10.9_4zkhmgh5wx2nmrd47udboenwxe:
+ resolution: {integrity: sha512-DXmC0GMcROOnCmN56GRvi1bkkG1BnVs4xJqNvucBUeZkmB245URvtxOfbo3H6q4SOUQQbLPYWd6InzvjRh363A==}
+ peerDependencies:
+ vue-router: ^4.4.0
+ peerDependenciesMeta:
+ vue-router:
+ optional: true
+ dependencies:
+ '@babel/types': 7.26.9
+ '@rollup/pluginutils': 5.1.4
+ '@vue-macros/common': 1.16.1_vue@3.5.13
+ ast-walker-scope: 0.6.2
+ chokidar: 3.6.0
+ fast-glob: 3.3.3
+ json5: 2.2.3
+ local-pkg: 0.5.1
+ magic-string: 0.30.17
+ mlly: 1.7.4
+ pathe: 1.1.2
+ scule: 1.3.0
+ unplugin: 2.0.0-beta.1
+ vue-router: 4.5.0_vue@3.5.13
+ yaml: 2.7.0
+ transitivePeerDependencies:
+ - rollup
+ - vue
+ dev: false
- ufo@1.5.4: {}
+ /unplugin-vue-router/0.10.9_jnksuln545bydhffx5f33xmx6y:
+ resolution: {integrity: sha512-DXmC0GMcROOnCmN56GRvi1bkkG1BnVs4xJqNvucBUeZkmB245URvtxOfbo3H6q4SOUQQbLPYWd6InzvjRh363A==}
+ peerDependencies:
+ vue-router: ^4.4.0
+ peerDependenciesMeta:
+ vue-router:
+ optional: true
+ dependencies:
+ '@babel/types': 7.26.9
+ '@rollup/pluginutils': 5.1.4_rollup@4.35.0
+ '@vue-macros/common': 1.16.1_vue@3.5.13
+ ast-walker-scope: 0.6.2
+ chokidar: 3.6.0
+ fast-glob: 3.3.3
+ json5: 2.2.3
+ local-pkg: 0.5.1
+ magic-string: 0.30.17
+ mlly: 1.7.4
+ pathe: 1.1.2
+ scule: 1.3.0
+ unplugin: 2.0.0-beta.1
+ vue-router: 4.5.0_vue@3.5.13
+ yaml: 2.7.0
+ transitivePeerDependencies:
+ - rollup
+ - vue
+ dev: true
- uglify-js@3.19.3:
- optional: true
+ /unplugin-vue-router/0.12.0_4zkhmgh5wx2nmrd47udboenwxe:
+ resolution: {integrity: sha512-xjgheKU0MegvXQcy62GVea0LjyOdMxN0/QH+ijN29W62ZlMhG7o7K+0AYqfpprvPwpWtuRjiyC5jnV2SxWye2w==}
+ peerDependencies:
+ vue-router: ^4.4.0
+ peerDependenciesMeta:
+ vue-router:
+ optional: true
+ dependencies:
+ '@babel/types': 7.26.9
+ '@vue-macros/common': 1.16.1_vue@3.5.13
+ ast-walker-scope: 0.6.2
+ chokidar: 4.0.3
+ fast-glob: 3.3.3
+ json5: 2.2.3
+ local-pkg: 1.1.1
+ magic-string: 0.30.17
+ micromatch: 4.0.8
+ mlly: 1.7.4
+ pathe: 2.0.3
+ scule: 1.3.0
+ unplugin: 2.2.0
+ unplugin-utils: 0.2.4
+ vue-router: 4.5.0_vue@3.5.13
+ yaml: 2.7.0
+ transitivePeerDependencies:
+ - vue
+ dev: false
- ultrahtml@1.5.3: {}
+ /unplugin/1.16.1:
+ resolution: {integrity: sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ acorn: 8.14.1
+ webpack-virtual-modules: 0.6.2
- unbox-primitive@1.1.0:
+ /unplugin/2.0.0-beta.1:
+ resolution: {integrity: sha512-2qzQo5LN2DmUZXkWDHvGKLF5BP0WN+KthD6aPnPJ8plRBIjv4lh5O07eYcSxgO2znNw9s4MNhEO1sB+JDllDbQ==}
+ engines: {node: '>=18.12.0'}
dependencies:
- call-bound: 1.0.3
- has-bigints: 1.1.0
- has-symbols: 1.1.0
- which-boxed-primitive: 1.1.1
+ acorn: 8.14.1
+ webpack-virtual-modules: 0.6.2
- unbzip2-stream@1.4.3:
+ /unplugin/2.2.0:
+ resolution: {integrity: sha512-m1ekpSwuOT5hxkJeZGRxO7gXbXT3gF26NjQ7GdVHoLoF8/nopLcd/QfPigpCy7i51oFHiRJg/CyHhj4vs2+KGw==}
+ engines: {node: '>=18.12.0'}
dependencies:
- buffer: 5.7.1
- through: 2.3.8
+ acorn: 8.14.0
+ webpack-virtual-modules: 0.6.2
- uncrypto@0.1.3: {}
+ /unstorage/1.15.0:
+ resolution: {integrity: sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==}
+ peerDependencies:
+ '@azure/app-configuration': ^1.8.0
+ '@azure/cosmos': ^4.2.0
+ '@azure/data-tables': ^13.3.0
+ '@azure/identity': ^4.6.0
+ '@azure/keyvault-secrets': ^4.9.0
+ '@azure/storage-blob': ^12.26.0
+ '@capacitor/preferences': ^6.0.3
+ '@deno/kv': '>=0.9.0'
+ '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0
+ '@planetscale/database': ^1.19.0
+ '@upstash/redis': ^1.34.3
+ '@vercel/blob': '>=0.27.1'
+ '@vercel/kv': ^1.0.1
+ aws4fetch: ^1.0.20
+ db0: '>=0.2.1'
+ idb-keyval: ^6.2.1
+ ioredis: ^5.4.2
+ uploadthing: ^7.4.4
+ peerDependenciesMeta:
+ '@azure/app-configuration':
+ optional: true
+ '@azure/cosmos':
+ optional: true
+ '@azure/data-tables':
+ optional: true
+ '@azure/identity':
+ optional: true
+ '@azure/keyvault-secrets':
+ optional: true
+ '@azure/storage-blob':
+ optional: true
+ '@capacitor/preferences':
+ optional: true
+ '@deno/kv':
+ optional: true
+ '@netlify/blobs':
+ optional: true
+ '@planetscale/database':
+ optional: true
+ '@upstash/redis':
+ optional: true
+ '@vercel/blob':
+ optional: true
+ '@vercel/kv':
+ optional: true
+ aws4fetch:
+ optional: true
+ db0:
+ optional: true
+ idb-keyval:
+ optional: true
+ ioredis:
+ optional: true
+ uploadthing:
+ optional: true
+ dependencies:
+ anymatch: 3.1.3
+ chokidar: 4.0.3
+ destr: 2.0.3
+ h3: 1.15.1
+ lru-cache: 10.4.3
+ node-fetch-native: 1.6.6
+ ofetch: 1.4.1
+ ufo: 1.5.4
- unctx@2.4.1:
+ /unstorage/1.15.0_db0@0.3.1+ioredis@5.6.0:
+ resolution: {integrity: sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==}
+ peerDependencies:
+ '@azure/app-configuration': ^1.8.0
+ '@azure/cosmos': ^4.2.0
+ '@azure/data-tables': ^13.3.0
+ '@azure/identity': ^4.6.0
+ '@azure/keyvault-secrets': ^4.9.0
+ '@azure/storage-blob': ^12.26.0
+ '@capacitor/preferences': ^6.0.3
+ '@deno/kv': '>=0.9.0'
+ '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0
+ '@planetscale/database': ^1.19.0
+ '@upstash/redis': ^1.34.3
+ '@vercel/blob': '>=0.27.1'
+ '@vercel/kv': ^1.0.1
+ aws4fetch: ^1.0.20
+ db0: '>=0.2.1'
+ idb-keyval: ^6.2.1
+ ioredis: ^5.4.2
+ uploadthing: ^7.4.4
+ peerDependenciesMeta:
+ '@azure/app-configuration':
+ optional: true
+ '@azure/cosmos':
+ optional: true
+ '@azure/data-tables':
+ optional: true
+ '@azure/identity':
+ optional: true
+ '@azure/keyvault-secrets':
+ optional: true
+ '@azure/storage-blob':
+ optional: true
+ '@capacitor/preferences':
+ optional: true
+ '@deno/kv':
+ optional: true
+ '@netlify/blobs':
+ optional: true
+ '@planetscale/database':
+ optional: true
+ '@upstash/redis':
+ optional: true
+ '@vercel/blob':
+ optional: true
+ '@vercel/kv':
+ optional: true
+ aws4fetch:
+ optional: true
+ db0:
+ optional: true
+ idb-keyval:
+ optional: true
+ ioredis:
+ optional: true
+ uploadthing:
+ optional: true
dependencies:
- acorn: 8.14.0
- estree-walker: 3.0.3
- magic-string: 0.30.17
- unplugin: 2.1.2
-
- undici-types@6.20.0: {}
+ anymatch: 3.1.3
+ chokidar: 4.0.3
+ db0: 0.3.1
+ destr: 2.0.3
+ h3: 1.15.1
+ ioredis: 5.6.0
+ lru-cache: 10.4.3
+ node-fetch-native: 1.6.6
+ ofetch: 1.4.1
+ ufo: 1.5.4
- unenv@1.10.0:
+ /untun/0.1.3:
+ resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
+ hasBin: true
dependencies:
+ citty: 0.1.6
consola: 3.4.0
- defu: 6.1.4
- mime: 3.0.0
- node-fetch-native: 1.6.6
pathe: 1.1.2
- unhead@1.11.18:
- dependencies:
- '@unhead/dom': 1.11.18
- '@unhead/schema': 1.11.18
- '@unhead/shared': 1.11.18
- hookable: 5.5.3
-
- unicode-canonical-property-names-ecmascript@2.0.1: {}
-
- unicode-emoji-modifier-base@1.0.0: {}
-
- unicode-match-property-ecmascript@2.0.0:
- dependencies:
- unicode-canonical-property-names-ecmascript: 2.0.1
- unicode-property-aliases-ecmascript: 2.1.0
-
- unicode-match-property-value-ecmascript@2.2.0: {}
-
- unicode-property-aliases-ecmascript@2.1.0: {}
-
- unicorn-magic@0.1.0: {}
-
- unicorn-magic@0.3.0: {}
-
- unimport@3.14.6(rollup@4.31.0):
+ /untyped/1.5.2:
+ resolution: {integrity: sha512-eL/8PlhLcMmlMDtNPKhyyz9kEBDS3Uk4yMu/ewlkT2WFbtzScjHWPJLdQLmaGPUKjXzwe9MumOtOgc4Fro96Kg==}
+ hasBin: true
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- acorn: 8.14.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.3
- local-pkg: 1.0.0
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 2.0.2
- picomatch: 4.0.2
- pkg-types: 1.3.1
+ '@babel/core': 7.26.9
+ '@babel/standalone': 7.26.9
+ '@babel/types': 7.26.9
+ citty: 0.1.6
+ defu: 6.1.4
+ jiti: 2.4.2
+ knitwork: 1.2.0
scule: 1.3.0
- strip-literal: 2.1.1
- unplugin: 1.16.1
transitivePeerDependencies:
- - rollup
+ - supports-color
- unimport@3.14.6(rollup@4.34.9):
+ /untyped/2.0.0:
+ resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==}
+ hasBin: true
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.9)
- acorn: 8.14.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.3
- local-pkg: 1.0.0
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 2.0.2
- picomatch: 4.0.2
- pkg-types: 1.3.1
+ citty: 0.1.6
+ defu: 6.1.4
+ jiti: 2.4.2
+ knitwork: 1.2.0
scule: 1.3.0
- strip-literal: 2.1.1
- unplugin: 1.16.1
- transitivePeerDependencies:
- - rollup
- unimport@4.0.0(rollup@4.31.0):
+ /unwasm/0.3.9:
+ resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==}
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- acorn: 8.14.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.3
- local-pkg: 1.0.0
+ knitwork: 1.2.0
magic-string: 0.30.17
mlly: 1.7.4
- pathe: 2.0.2
- picomatch: 4.0.2
+ pathe: 1.1.2
pkg-types: 1.3.1
- scule: 1.3.0
- strip-literal: 3.0.0
- unplugin: 2.1.2
- transitivePeerDependencies:
- - rollup
+ unplugin: 1.16.1
- unimport@4.0.0(rollup@4.34.9):
+ /update-browserslist-db/1.1.3_browserslist@4.24.4:
+ resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.9)
- acorn: 8.14.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.3
- local-pkg: 1.0.0
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 2.0.2
- picomatch: 4.0.2
- pkg-types: 1.3.1
- scule: 1.3.0
- strip-literal: 3.0.0
- unplugin: 2.1.2
- transitivePeerDependencies:
- - rollup
+ browserslist: 4.24.4
+ escalade: 3.2.0
+ picocolors: 1.1.1
- unique-filename@4.0.0:
- dependencies:
- unique-slug: 5.0.0
+ /uqr/0.1.2:
+ resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==}
- unique-slug@5.0.0:
- dependencies:
- imurmurhash: 0.1.4
+ /uri-js-replace/1.0.1:
+ resolution: {integrity: sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==}
- unist-util-is@6.0.0:
+ /uri-js/4.4.1:
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
- '@types/unist': 3.0.3
+ punycode: 2.3.1
+ dev: true
- unist-util-position@5.0.0:
+ /url-parse/1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
dependencies:
- '@types/unist': 3.0.3
+ querystringify: 2.2.0
+ requires-port: 1.0.0
+ dev: true
- unist-util-stringify-position@4.0.0:
- dependencies:
- '@types/unist': 3.0.3
+ /urlpattern-polyfill/10.0.0:
+ resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==}
+ dev: true
+
+ /urlpattern-polyfill/8.0.2:
+ resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==}
- unist-util-visit-parents@6.0.1:
+ /use-callback-ref/1.3.3_2e3fe46pmji5vpxr5buusdg5gq:
+ resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@types/unist': 3.0.3
- unist-util-is: 6.0.0
+ '@types/react': 19.0.1
+ react: 19.0.0
+ tslib: 2.8.1
+ dev: false
- unist-util-visit@5.0.0:
+ /use-sidecar/1.1.3_2e3fe46pmji5vpxr5buusdg5gq:
+ resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@types/unist': 3.0.3
- unist-util-is: 6.0.0
- unist-util-visit-parents: 6.0.1
+ '@types/react': 19.0.1
+ detect-node-es: 1.1.0
+ react: 19.0.0
+ tslib: 2.8.1
+ dev: false
- universalify@0.1.2: {}
+ /util-deprecate/1.0.2:
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- universalify@0.2.0: {}
+ /utils-merge/1.0.1:
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
+ engines: {node: '>= 0.4.0'}
+ dev: true
- universalify@2.0.1: {}
+ /uuid/8.3.2:
+ resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
+ hasBin: true
+ dev: true
- unpipe@1.0.0: {}
+ /v8-compile-cache-lib/3.0.1:
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
+ dev: true
- unplugin-vue-router@0.10.9(rollup@4.31.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc)):
+ /validate-npm-package-license/3.0.4:
+ resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
- '@babel/types': 7.26.7
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- '@vue-macros/common': 1.16.1(vue@3.5.13(typescript@5.6.1-rc))
- ast-walker-scope: 0.6.2
- chokidar: 3.6.0
- fast-glob: 3.3.3
- json5: 2.2.3
- local-pkg: 0.5.1
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 1.1.2
- scule: 1.3.0
- unplugin: 2.0.0-beta.1
- yaml: 2.7.0
- optionalDependencies:
- vue-router: 4.5.0(vue@3.5.13(typescript@5.6.1-rc))
- transitivePeerDependencies:
- - rollup
- - vue
+ spdx-correct: 3.2.0
+ spdx-expression-parse: 3.0.1
+ dev: true
- unplugin-vue-router@0.10.9(rollup@4.34.9)(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3)):
- dependencies:
- '@babel/types': 7.26.7
- '@rollup/pluginutils': 5.1.4(rollup@4.34.9)
- '@vue-macros/common': 1.16.1(vue@3.5.13(typescript@5.5.3))
- ast-walker-scope: 0.6.2
- chokidar: 3.6.0
- fast-glob: 3.3.3
- json5: 2.2.3
- local-pkg: 0.5.1
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 1.1.2
- scule: 1.3.0
- unplugin: 2.0.0-beta.1
- yaml: 2.7.0
- optionalDependencies:
- vue-router: 4.5.0(vue@3.5.13(typescript@5.5.3))
- transitivePeerDependencies:
- - rollup
- - vue
+ /validate-npm-package-name/5.0.1:
+ resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ dev: true
+
+ /validate-npm-package-name/6.0.0:
+ resolution: {integrity: sha512-d7KLgL1LD3U3fgnvWEY1cQXoO/q6EQ1BSz48Sa149V/5zVTAbgmZIpyI8TRi6U9/JNyeYLlTKsEMPtLC27RFUg==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+ dev: true
+
+ /vary/1.1.2:
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
+ engines: {node: '>= 0.8'}
+ dev: true
- unplugin-vue-router@0.10.9(rollup@4.34.9)(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc)):
+ /vfile-message/4.0.2:
+ resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
dependencies:
- '@babel/types': 7.26.7
- '@rollup/pluginutils': 5.1.4(rollup@4.34.9)
- '@vue-macros/common': 1.16.1(vue@3.5.13(typescript@5.6.1-rc))
- ast-walker-scope: 0.6.2
- chokidar: 3.6.0
- fast-glob: 3.3.3
- json5: 2.2.3
- local-pkg: 0.5.1
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 1.1.2
- scule: 1.3.0
- unplugin: 2.0.0-beta.1
- yaml: 2.7.0
- optionalDependencies:
- vue-router: 4.5.0(vue@3.5.13(typescript@5.6.1-rc))
- transitivePeerDependencies:
- - rollup
- - vue
+ '@types/unist': 3.0.3
+ unist-util-stringify-position: 4.0.0
+ dev: true
- unplugin@1.16.1:
+ /vfile/6.0.3:
+ resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
dependencies:
- acorn: 8.14.0
- webpack-virtual-modules: 0.6.2
+ '@types/unist': 3.0.3
+ vfile-message: 4.0.2
+ dev: true
- unplugin@2.0.0-beta.1:
+ /vite-dev-rpc/1.0.7_vite@6.0.9:
+ resolution: {integrity: sha512-FxSTEofDbUi2XXujCA+hdzCDkXFG1PXktMjSk1efq9Qb5lOYaaM9zNSvKvPPF7645Bak79kSp1PTooMW2wktcA==}
+ peerDependencies:
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1
dependencies:
- acorn: 8.14.0
- webpack-virtual-modules: 0.6.2
+ birpc: 2.2.0
+ vite: 6.0.9_jiti@2.4.2
+ vite-hot-client: 2.0.4_vite@6.0.9
+ dev: false
- unplugin@2.1.2:
+ /vite-hot-client/0.2.4_vite@6.0.9:
+ resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
+ peerDependencies:
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
dependencies:
- acorn: 8.14.0
- webpack-virtual-modules: 0.6.2
+ vite: 6.0.9_@types+node@22.10.5
- unstorage@1.14.4(db0@0.2.3)(ioredis@5.4.2):
+ /vite-hot-client/0.2.4_vite@6.2.1:
+ resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
+ peerDependencies:
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
dependencies:
- anymatch: 3.1.3
- chokidar: 3.6.0
- destr: 2.0.3
- h3: 1.14.0
- lru-cache: 10.4.3
- node-fetch-native: 1.6.6
- ofetch: 1.4.1
- ufo: 1.5.4
- optionalDependencies:
- db0: 0.2.3
- ioredis: 5.4.2
+ vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
+ dev: true
- untun@0.1.3:
+ /vite-hot-client/2.0.4_vite@6.0.9:
+ resolution: {integrity: sha512-W9LOGAyGMrbGArYJN4LBCdOC5+Zwh7dHvOHC0KmGKkJhsOzaKbpo/jEjpPKVHIW0/jBWj8RZG0NUxfgA8BxgAg==}
+ peerDependencies:
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
dependencies:
- citty: 0.1.6
- consola: 3.4.0
- pathe: 1.1.2
+ vite: 6.0.9_jiti@2.4.2
+ dev: false
- untyped@1.5.2:
+ /vite-node/1.6.0:
+ resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
dependencies:
- '@babel/core': 7.26.9
- '@babel/standalone': 7.26.7
- '@babel/types': 7.26.7
- citty: 0.1.6
- defu: 6.1.4
- jiti: 2.4.2
- knitwork: 1.2.0
- scule: 1.3.0
+ cac: 6.7.14
+ debug: 4.4.0
+ pathe: 1.1.2
+ picocolors: 1.1.1
+ vite: 5.4.14
transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
- supports-color
+ - terser
+ dev: true
- unwasm@0.3.9:
+ /vite-node/1.6.0_@types+node@22.10.5:
+ resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
dependencies:
- knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
+ cac: 6.7.14
+ debug: 4.4.0
pathe: 1.1.2
- pkg-types: 1.3.1
- unplugin: 1.16.1
-
- update-browserslist-db@1.1.2(browserslist@4.24.4):
- dependencies:
- browserslist: 4.24.4
- escalade: 3.2.0
picocolors: 1.1.1
+ vite: 5.4.14_@types+node@22.10.5
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: true
- uqr@0.1.2: {}
-
- uri-js-replace@1.0.1: {}
-
- uri-js@4.4.1:
+ /vite-node/2.1.9:
+ resolution: {integrity: sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
dependencies:
- punycode: 2.3.1
+ cac: 6.7.14
+ debug: 4.4.0
+ es-module-lexer: 1.6.0
+ pathe: 1.1.2
+ vite: 5.4.14
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: false
- url-parse@1.5.10:
+ /vite-node/2.1.9_4c45tymmfdin4b4i5tudvmn5ny:
+ resolution: {integrity: sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
dependencies:
- querystringify: 2.2.0
- requires-port: 1.0.0
-
- urlpattern-polyfill@10.0.0: {}
-
- urlpattern-polyfill@8.0.2: {}
+ cac: 6.7.14
+ debug: 4.4.0
+ es-module-lexer: 1.6.0
+ pathe: 1.1.2
+ vite: 5.4.14_4c45tymmfdin4b4i5tudvmn5ny
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: true
- use-callback-ref@1.3.3(@types/react@19.0.1)(react@19.0.0):
+ /vite-node/3.0.8_jiti@2.4.2:
+ resolution: {integrity: sha512-6PhR4H9VGlcwXZ+KWCdMqbtG649xCPZqfI9j2PsK1FcXgEzro5bGHcVKFCTqPLaNKZES8Evqv4LwvZARsq5qlg==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
dependencies:
- react: 19.0.0
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.0.1
+ cac: 6.7.14
+ debug: 4.4.0
+ es-module-lexer: 1.6.0
+ pathe: 2.0.3
+ vite: 6.2.1_jiti@2.4.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - jiti
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+ dev: false
- use-sidecar@1.1.3(@types/react@19.0.1)(react@19.0.0):
+ /vite-plugin-checker/0.8.0_g2qas7ygesedvhf2ugjm5sssam:
+ resolution: {integrity: sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g==}
+ engines: {node: '>=14.16'}
+ peerDependencies:
+ '@biomejs/biome': '>=1.7'
+ eslint: '>=7'
+ meow: ^9.0.0
+ optionator: ^0.9.1
+ stylelint: '>=13'
+ typescript: '*'
+ vite: '>=2.0.0'
+ vls: '*'
+ vti: '*'
+ vue-tsc: ~2.1.6
+ peerDependenciesMeta:
+ '@biomejs/biome':
+ optional: true
+ eslint:
+ optional: true
+ meow:
+ optional: true
+ optionator:
+ optional: true
+ stylelint:
+ optional: true
+ typescript:
+ optional: true
+ vls:
+ optional: true
+ vti:
+ optional: true
+ vue-tsc:
+ optional: true
dependencies:
- detect-node-es: 1.1.0
- react: 19.0.0
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.0.1
-
- util-deprecate@1.0.2: {}
-
- utils-merge@1.0.1: {}
-
- uuid@8.3.2: {}
-
- v8-compile-cache-lib@3.0.1: {}
+ '@babel/code-frame': 7.26.2
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ chokidar: 3.6.0
+ commander: 8.3.0
+ eslint: 9.17.0
+ fast-glob: 3.3.3
+ fs-extra: 11.3.0
+ npm-run-path: 4.0.1
+ strip-ansi: 6.0.1
+ tiny-invariant: 1.3.3
+ typescript: 5.5.3
+ vite: 5.4.14_4c45tymmfdin4b4i5tudvmn5ny
+ vscode-languageclient: 7.0.0
+ vscode-languageserver: 7.0.0
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-uri: 3.1.0
+ dev: true
- validate-npm-package-license@3.0.4:
+ /vite-plugin-checker/0.8.0_vite@5.4.14:
+ resolution: {integrity: sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g==}
+ engines: {node: '>=14.16'}
+ peerDependencies:
+ '@biomejs/biome': '>=1.7'
+ eslint: '>=7'
+ meow: ^9.0.0
+ optionator: ^0.9.1
+ stylelint: '>=13'
+ typescript: '*'
+ vite: '>=2.0.0'
+ vls: '*'
+ vti: '*'
+ vue-tsc: ~2.1.6
+ peerDependenciesMeta:
+ '@biomejs/biome':
+ optional: true
+ eslint:
+ optional: true
+ meow:
+ optional: true
+ optionator:
+ optional: true
+ stylelint:
+ optional: true
+ typescript:
+ optional: true
+ vls:
+ optional: true
+ vti:
+ optional: true
+ vue-tsc:
+ optional: true
dependencies:
- spdx-correct: 3.2.0
- spdx-expression-parse: 3.0.1
-
- validate-npm-package-name@5.0.1: {}
-
- validate-npm-package-name@6.0.0: {}
-
- vary@1.1.2: {}
+ '@babel/code-frame': 7.26.2
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ chokidar: 3.6.0
+ commander: 8.3.0
+ fast-glob: 3.3.3
+ fs-extra: 11.3.0
+ npm-run-path: 4.0.1
+ strip-ansi: 6.0.1
+ tiny-invariant: 1.3.3
+ vite: 5.4.14
+ vscode-languageclient: 7.0.0
+ vscode-languageserver: 7.0.0
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-uri: 3.1.0
+ dev: false
- vfile-message@4.0.2:
+ /vite-plugin-checker/0.9.0_vite@6.2.1:
+ resolution: {integrity: sha512-gf/zc0KWX8ATEOgnpgAM1I+IbvWkkO80RB+FxlLtC5cabXSesbJmAUw6E+mMDDMGIT+VHAktmxJZpMTt3lSubQ==}
+ engines: {node: '>=14.16'}
+ peerDependencies:
+ '@biomejs/biome': '>=1.7'
+ eslint: '>=7'
+ meow: ^13.2.0
+ optionator: ^0.9.1
+ stylelint: '>=16'
+ typescript: '*'
+ vite: '>=2.0.0'
+ vls: '*'
+ vti: '*'
+ vue-tsc: ~2.2.2
+ peerDependenciesMeta:
+ '@biomejs/biome':
+ optional: true
+ eslint:
+ optional: true
+ meow:
+ optional: true
+ optionator:
+ optional: true
+ stylelint:
+ optional: true
+ typescript:
+ optional: true
+ vls:
+ optional: true
+ vti:
+ optional: true
+ vue-tsc:
+ optional: true
dependencies:
- '@types/unist': 3.0.3
- unist-util-stringify-position: 4.0.0
+ '@babel/code-frame': 7.26.2
+ chokidar: 4.0.3
+ npm-run-path: 6.0.0
+ picocolors: 1.1.1
+ picomatch: 4.0.2
+ strip-ansi: 7.1.0
+ tiny-invariant: 1.3.3
+ tinyglobby: 0.2.12
+ vite: 6.2.1_jiti@2.4.2
+ vscode-uri: 3.1.0
+ dev: false
- vfile@6.0.3:
+ /vite-plugin-inspect/0.8.9_b3axkq6gua4lp3ft5va6c2wj3y:
+ resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@nuxt/kit': '*'
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1
+ peerDependenciesMeta:
+ '@nuxt/kit':
+ optional: true
dependencies:
- '@types/unist': 3.0.3
- vfile-message: 4.0.2
+ '@antfu/utils': 0.7.10
+ '@nuxt/kit': 3.16.0_magicast@0.3.5
+ '@rollup/pluginutils': 5.1.4_rollup@4.35.0
+ debug: 4.4.0
+ error-stack-parser-es: 0.1.5
+ fs-extra: 11.3.0
+ open: 10.1.0
+ perfect-debounce: 1.0.0
+ picocolors: 1.1.1
+ sirv: 3.0.1
+ vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ dev: true
- vite-hot-client@0.2.4(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ /vite-plugin-inspect/0.8.9_bvsh322jwpdo7ddnjh6oe5rlyq:
+ resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@nuxt/kit': '*'
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1
+ peerDependenciesMeta:
+ '@nuxt/kit':
+ optional: true
dependencies:
- vite: 6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ '@antfu/utils': 0.7.10
+ '@nuxt/kit': 3.16.0_magicast@0.3.5
+ '@rollup/pluginutils': 5.1.4
+ debug: 4.4.0
+ error-stack-parser-es: 0.1.5
+ fs-extra: 11.3.0
+ open: 10.1.0
+ perfect-debounce: 1.0.0
+ picocolors: 1.1.1
+ sirv: 3.0.1
+ vite: 6.0.9
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ dev: false
- vite-hot-client@0.2.4(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ /vite-plugin-inspect/0.8.9_vite@6.0.9:
+ resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@nuxt/kit': '*'
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1
+ peerDependenciesMeta:
+ '@nuxt/kit':
+ optional: true
dependencies:
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ '@antfu/utils': 0.7.10
+ '@rollup/pluginutils': 5.1.4
+ debug: 4.4.0
+ error-stack-parser-es: 0.1.5
+ fs-extra: 11.3.0
+ open: 10.1.0
+ perfect-debounce: 1.0.0
+ picocolors: 1.1.1
+ sirv: 3.0.1
+ vite: 6.0.9_@types+node@22.10.5
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ dev: true
- vite-hot-client@0.2.4(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ /vite-plugin-inspect/11.0.0_bvsh322jwpdo7ddnjh6oe5rlyq:
+ resolution: {integrity: sha512-Q0RDNcMs1mbI2yGRwOzSapnnA6NFO0j88+Vb8pJX0iYMw34WczwKJi3JgheItDhbWRq/CLUR0cs+ajZpcUaIFQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@nuxt/kit': '*'
+ vite: ^6.0.0
+ peerDependenciesMeta:
+ '@nuxt/kit':
+ optional: true
dependencies:
- vite: 6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ '@nuxt/kit': 3.16.0_magicast@0.3.5
+ ansis: 3.17.0
+ debug: 4.4.0
+ error-stack-parser-es: 1.0.5
+ ohash: 2.0.11
+ open: 10.1.0
+ perfect-debounce: 1.0.0
+ sirv: 3.0.1
+ unplugin-utils: 0.2.4
+ vite: 6.0.9_jiti@2.4.2
+ vite-dev-rpc: 1.0.7_vite@6.0.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
- vite-node@1.6.0(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
+ /vite-plugin-vue-devtools/7.7.0_vite@6.0.9+vue@3.5.13:
+ resolution: {integrity: sha512-1dWiREwIl4JELwXGHXih80hIgjcViMcZGr3j0edo6NQ9kNzAOxMIUgFqc/TO1ary4ZroJUxoB0YDI6jnDf13iQ==}
+ engines: {node: '>=v14.21.3'}
+ peerDependencies:
+ vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
dependencies:
- cac: 6.7.14
- debug: 4.4.0(supports-color@9.4.0)
- pathe: 1.1.2
- picocolors: 1.1.1
- vite: 5.4.14(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ '@vue/devtools-core': 7.7.2_vite@6.0.9+vue@3.5.13
+ '@vue/devtools-kit': 7.7.2
+ '@vue/devtools-shared': 7.7.2
+ execa: 9.5.2
+ sirv: 3.0.1
+ vite: 6.0.9_@types+node@22.10.5
+ vite-plugin-inspect: 0.8.9_vite@6.0.9
+ vite-plugin-vue-inspector: 5.3.1_vite@6.0.9
transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
+ - '@nuxt/kit'
+ - rollup
- supports-color
- - terser
+ - vue
+ dev: true
- vite-node@1.6.0(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
+ /vite-plugin-vue-inspector/5.3.1_vite@6.0.9:
+ resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
+ peerDependencies:
+ vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
dependencies:
- cac: 6.7.14
- debug: 4.4.0(supports-color@9.4.0)
- pathe: 1.1.2
- picocolors: 1.1.1
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ '@babel/core': 7.26.9
+ '@babel/plugin-proposal-decorators': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-syntax-import-attributes': 7.26.0_@babel+core@7.26.9
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.26.9
+ '@babel/plugin-transform-typescript': 7.26.8_@babel+core@7.26.9
+ '@vue/babel-plugin-jsx': 1.3.0_@babel+core@7.26.9
+ '@vue/compiler-dom': 3.5.13
+ kolorist: 1.8.0
+ magic-string: 0.30.17
+ vite: 6.0.9_@types+node@22.10.5
transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- supports-color
- - terser
- vite-node@2.1.8(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
+ /vite-plugin-vue-inspector/5.3.1_vite@6.2.1:
+ resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
+ peerDependencies:
+ vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
dependencies:
- cac: 6.7.14
- debug: 4.4.0(supports-color@9.4.0)
- es-module-lexer: 1.6.0
- pathe: 1.1.2
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ '@babel/core': 7.26.9
+ '@babel/plugin-proposal-decorators': 7.25.9_@babel+core@7.26.9
+ '@babel/plugin-syntax-import-attributes': 7.26.0_@babel+core@7.26.9
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.26.9
+ '@babel/plugin-transform-typescript': 7.26.8_@babel+core@7.26.9
+ '@vue/babel-plugin-jsx': 1.3.0_@babel+core@7.26.9
+ '@vue/compiler-dom': 3.5.13
+ kolorist: 1.8.0
+ magic-string: 0.30.17
+ vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- supports-color
- - terser
+ dev: true
- vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.5.3)(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)):
+ /vite-plugin-vue-tracer/0.1.1_vite@6.0.9+vue@3.5.13:
+ resolution: {integrity: sha512-8BuReHmbSPd6iRQDQhlyK5+DexY1Hmb4K0GUVo9Te1Yaz8gyOZspBm9qdG1SvebdSIKw3WNlzpdstJ47TJ4bOw==}
+ peerDependencies:
+ vite: ^6.0.0
+ vue: ^3.5.0
dependencies:
- '@babel/code-frame': 7.26.2
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- chokidar: 3.6.0
- commander: 8.3.0
- fast-glob: 3.3.3
- fs-extra: 11.3.0
- npm-run-path: 4.0.1
- strip-ansi: 6.0.1
- tiny-invariant: 1.3.3
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vscode-languageclient: 7.0.0
- vscode-languageserver: 7.0.0
- vscode-languageserver-textdocument: 1.0.12
- vscode-uri: 3.0.8
+ estree-walker: 3.0.3
+ magic-string: 0.30.17
+ pathe: 2.0.3
+ source-map-js: 1.2.1
+ vite: 6.0.9_jiti@2.4.2
+ vue: 3.5.13
+ dev: false
+
+ /vite/5.4.14:
+ resolution: {integrity: sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ esbuild: 0.21.5
+ postcss: 8.5.3
+ rollup: 4.35.0
optionalDependencies:
- eslint: 9.17.0(jiti@2.4.2)
- optionator: 0.9.4
- typescript: 5.5.3
+ fsevents: 2.3.3
- vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.6.1-rc)(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)):
+ /vite/5.4.14_4c45tymmfdin4b4i5tudvmn5ny:
+ resolution: {integrity: sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
dependencies:
- '@babel/code-frame': 7.26.2
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- chokidar: 3.6.0
- commander: 8.3.0
- fast-glob: 3.3.3
- fs-extra: 11.3.0
- npm-run-path: 4.0.1
- strip-ansi: 6.0.1
- tiny-invariant: 1.3.3
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vscode-languageclient: 7.0.0
- vscode-languageserver: 7.0.0
- vscode-languageserver-textdocument: 1.0.12
- vscode-uri: 3.0.8
+ '@types/node': 22.13.10
+ esbuild: 0.21.5
+ less: 4.2.2
+ postcss: 8.5.3
+ rollup: 4.35.0
+ sass: 1.85.0
+ terser: 5.39.0
optionalDependencies:
- eslint: 9.17.0(jiti@2.4.2)
- optionator: 0.9.4
- typescript: 5.6.1-rc
+ fsevents: 2.3.3
+
+ /vite/5.4.14_@types+node@22.10.5:
+ resolution: {integrity: sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ '@types/node': 22.10.5
+ esbuild: 0.21.5
+ postcss: 8.5.3
+ rollup: 4.35.0
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: true
- vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5)(rollup@4.31.0))(rollup@4.31.0)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ /vite/6.0.9:
+ resolution: {integrity: sha512-MSgUxHcaXLtnBPktkbUSoQUANApKYuxZ6DrbVENlIorbhL2dZydTLaZ01tjUoE3szeFzlFk9ANOKk0xurh4MKA==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- debug: 4.4.0(supports-color@9.4.0)
- error-stack-parser-es: 0.1.5
- fs-extra: 11.3.0
- open: 10.1.0
- perfect-debounce: 1.0.0
- picocolors: 1.1.1
- sirv: 3.0.0
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ esbuild: 0.24.2
+ postcss: 8.5.3
+ rollup: 4.35.0
optionalDependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.31.0)
- transitivePeerDependencies:
- - rollup
- - supports-color
+ fsevents: 2.3.3
- vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5)(rollup@4.34.9))(rollup@4.34.9)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ /vite/6.0.9_@types+node@22.10.5:
+ resolution: {integrity: sha512-MSgUxHcaXLtnBPktkbUSoQUANApKYuxZ6DrbVENlIorbhL2dZydTLaZ01tjUoE3szeFzlFk9ANOKk0xurh4MKA==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.4(rollup@4.34.9)
- debug: 4.4.0(supports-color@9.4.0)
- error-stack-parser-es: 0.1.5
- fs-extra: 11.3.0
- open: 10.1.0
- perfect-debounce: 1.0.0
- picocolors: 1.1.1
- sirv: 3.0.0
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ '@types/node': 22.10.5
+ esbuild: 0.24.2
+ postcss: 8.5.3
+ rollup: 4.35.0
optionalDependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.34.9)
- transitivePeerDependencies:
- - rollup
- - supports-color
+ fsevents: 2.3.3
- vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5)(rollup@4.34.9))(rollup@4.34.9)(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ /vite/6.0.9_jiti@2.4.2:
+ resolution: {integrity: sha512-MSgUxHcaXLtnBPktkbUSoQUANApKYuxZ6DrbVENlIorbhL2dZydTLaZ01tjUoE3szeFzlFk9ANOKk0xurh4MKA==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.4(rollup@4.34.9)
- debug: 4.4.0(supports-color@9.4.0)
- error-stack-parser-es: 0.1.5
- fs-extra: 11.3.0
- open: 10.1.0
- perfect-debounce: 1.0.0
- picocolors: 1.1.1
- sirv: 3.0.0
- vite: 6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ esbuild: 0.24.2
+ jiti: 2.4.2
+ postcss: 8.5.3
+ rollup: 4.35.0
optionalDependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)(rollup@4.34.9)
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- vite-plugin-inspect@0.8.9(rollup@4.34.9)(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
- dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.4(rollup@4.34.9)
- debug: 4.4.0(supports-color@9.4.0)
- error-stack-parser-es: 0.1.5
- fs-extra: 11.3.0
- open: 10.1.0
- perfect-debounce: 1.0.0
- picocolors: 1.1.1
- sirv: 3.0.0
- vite: 6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- vite-plugin-vue-devtools@7.7.0(rollup@4.34.9)(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3)):
- dependencies:
- '@vue/devtools-core': 7.7.1(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
- '@vue/devtools-kit': 7.7.1
- '@vue/devtools-shared': 7.7.1
- execa: 9.5.2
- sirv: 3.0.0
- vite: 6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vite-plugin-inspect: 0.8.9(rollup@4.34.9)(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- vite-plugin-vue-inspector: 5.3.1(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- transitivePeerDependencies:
- - '@nuxt/kit'
- - rollup
- - supports-color
- - vue
-
- vite-plugin-vue-inspector@5.3.1(vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.9)
- '@babel/plugin-transform-typescript': 7.26.7(@babel/core@7.26.9)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.9)
- '@vue/compiler-dom': 3.5.13
- kolorist: 1.8.0
- magic-string: 0.30.17
- vite: 6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- transitivePeerDependencies:
- - supports-color
-
- vite-plugin-vue-inspector@5.3.1(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.9)
- '@babel/plugin-transform-typescript': 7.26.7(@babel/core@7.26.9)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.9)
- '@vue/compiler-dom': 3.5.13
- kolorist: 1.8.0
- magic-string: 0.30.17
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- transitivePeerDependencies:
- - supports-color
-
- vite-plugin-vue-inspector@5.3.1(vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.9)
- '@babel/plugin-transform-typescript': 7.26.7(@babel/core@7.26.9)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.9)
- '@vue/compiler-dom': 3.5.13
- kolorist: 1.8.0
- magic-string: 0.30.17
- vite: 6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- transitivePeerDependencies:
- - supports-color
+ fsevents: 2.3.3
- vite@5.4.14(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
+ /vite/6.1.0_4c45tymmfdin4b4i5tudvmn5ny:
+ resolution: {integrity: sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
dependencies:
- esbuild: 0.21.5
- postcss: 8.5.1
- rollup: 4.31.0
+ '@types/node': 22.13.10
+ esbuild: 0.24.2
+ less: 4.2.2
+ postcss: 8.5.3
+ rollup: 4.35.0
+ sass: 1.85.0
+ terser: 5.39.0
optionalDependencies:
- '@types/node': 22.10.5
fsevents: 2.3.3
+ dev: true
+
+ /vite/6.2.0_2ybhmnti7g23zofer2g3osvokq:
+ resolution: {integrity: sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+ dependencies:
+ esbuild: 0.25.0
less: 4.2.2
+ postcss: 8.5.3
+ rollup: 4.35.0
sass: 1.85.0
terser: 5.39.0
-
- vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
- dependencies:
- esbuild: 0.21.5
- postcss: 8.5.1
- rollup: 4.31.0
optionalDependencies:
- '@types/node': 22.13.8
fsevents: 2.3.3
- less: 4.2.2
- sass: 1.85.0
- terser: 5.39.0
+ dev: true
- vite@6.0.9(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0):
+ /vite/6.2.1_4c45tymmfdin4b4i5tudvmn5ny:
+ resolution: {integrity: sha512-n2GnqDb6XPhlt9B8olZPrgMD/es/Nd1RdChF6CBD/fHW6pUyUTt2sQW2fPRX5GiD9XEa6+8A6A4f2vT6pSsE7Q==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
dependencies:
- esbuild: 0.24.2
- postcss: 8.5.1
- rollup: 4.31.0
- optionalDependencies:
- '@types/node': 22.10.5
- fsevents: 2.3.3
- jiti: 2.4.2
+ '@types/node': 22.13.10
+ esbuild: 0.25.0
less: 4.2.2
+ postcss: 8.5.3
+ rollup: 4.35.0
sass: 1.85.0
terser: 5.39.0
- yaml: 2.7.0
-
- vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0):
- dependencies:
- esbuild: 0.24.2
- postcss: 8.5.1
- rollup: 4.31.0
optionalDependencies:
- '@types/node': 22.13.8
fsevents: 2.3.3
- jiti: 2.4.2
- less: 4.2.2
- sass: 1.85.0
- terser: 5.39.0
- yaml: 2.7.0
+ dev: true
- vite@6.1.0(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0):
+ /vite/6.2.1_jiti@2.4.2:
+ resolution: {integrity: sha512-n2GnqDb6XPhlt9B8olZPrgMD/es/Nd1RdChF6CBD/fHW6pUyUTt2sQW2fPRX5GiD9XEa6+8A6A4f2vT6pSsE7Q==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
dependencies:
- esbuild: 0.24.2
+ esbuild: 0.25.0
+ jiti: 2.4.2
postcss: 8.5.3
- rollup: 4.31.0
+ rollup: 4.35.0
optionalDependencies:
- '@types/node': 22.13.8
fsevents: 2.3.3
- jiti: 2.4.2
- less: 4.2.2
- sass: 1.85.0
- terser: 5.39.0
- yaml: 2.7.0
+ dev: false
- vitefu@1.0.5(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
- optionalDependencies:
- vite: 6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ /vitefu/1.0.6_vite@6.0.9:
+ resolution: {integrity: sha512-+Rex1GlappUyNN6UfwbVZne/9cYC4+R2XDk9xkNXBKMw6HQagdX9PgZ8V2v1WUSK1wfBLp7qbI1+XSNIlB1xmA==}
+ peerDependencies:
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ peerDependenciesMeta:
+ vite:
+ optional: true
+ dependencies:
+ vite: 6.0.9
+ dev: true
- vitepress@1.3.0(@algolia/client-search@5.20.0)(@types/node@22.13.8)(axios@1.7.9)(less@4.2.2)(postcss@8.5.3)(sass@1.85.0)(search-insights@2.17.3)(terser@5.39.0)(typescript@5.5.3):
+ /vitepress/1.3.0_lf5wzet23pep44me4gg534bzoa:
+ resolution: {integrity: sha512-Cbm2AgXcCrukUeV+/24g1ZDSvw8blamh/1uf2pz3ApFpaYb9T7mo4imWDZ6APn2uPo4bJ6sgOzvsJ4aH+oLbBA==}
+ hasBin: true
+ peerDependencies:
+ markdown-it-mathjax3: ^4
+ postcss: ^8
+ peerDependenciesMeta:
+ markdown-it-mathjax3:
+ optional: true
+ postcss:
+ optional: true
dependencies:
- '@docsearch/css': 3.8.3
- '@docsearch/js': 3.8.3(@algolia/client-search@5.20.0)(search-insights@2.17.3)
- '@shikijs/core': 1.29.1
- '@shikijs/transformers': 1.29.1
+ '@docsearch/css': 3.9.0
+ '@docsearch/js': 3.9.0_lf5wzet23pep44me4gg534bzoa
+ '@shikijs/core': 1.29.2
+ '@shikijs/transformers': 1.29.2
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.2.1(vite@5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))
- '@vue/devtools-api': 7.7.1
+ '@vitejs/plugin-vue': 5.2.1_vite@5.4.14+vue@3.5.13
+ '@vue/devtools-api': 7.7.2
'@vue/shared': 3.5.13
- '@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.5.3))
- '@vueuse/integrations': 10.11.1(axios@1.7.9)(focus-trap@7.6.4)(vue@3.5.13(typescript@5.5.3))
+ '@vueuse/core': 10.11.1_vue@3.5.13
+ '@vueuse/integrations': 10.11.1_q2nj55xqsxutrthy5peyde56gu
focus-trap: 7.6.4
mark.js: 8.11.1
minisearch: 6.3.0
- shiki: 1.29.1
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vue: 3.5.13(typescript@5.5.3)
- optionalDependencies:
- postcss: 8.5.3
+ shiki: 1.29.2
+ vite: 5.4.14
+ vue: 3.5.13
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -23854,31 +22175,59 @@ snapshots:
- terser
- typescript
- universal-cookie
+ dev: true
- vitest-environment-nuxt@1.0.1(@vue/test-utils@2.4.6)(h3@1.14.0)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@4.31.0)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.13.8)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc)):
+ /vitest-environment-nuxt/1.0.1:
+ resolution: {integrity: sha512-eBCwtIQriXW5/M49FjqNKfnlJYlG2LWMSNFsRVKomc8CaMqmhQPBS5LZ9DlgYL9T8xIVsiA6RZn2lk7vxov3Ow==}
dependencies:
- '@nuxt/test-utils': 3.14.0(@vue/test-utils@2.4.6)(h3@1.14.0)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@4.31.0)(vite@6.0.9(@types/node@22.13.8)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.13.8)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
+ '@nuxt/test-utils': 3.15.1
transitivePeerDependencies:
- '@cucumber/cucumber'
- '@jest/globals'
- '@playwright/test'
- '@testing-library/vue'
+ - '@types/node'
- '@vitest/ui'
- '@vue/test-utils'
- - h3
- happy-dom
- jsdom
+ - less
+ - lightningcss
- magicast
- - nitropack
- playwright-core
- - rollup
- - supports-color
- - vite
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - terser
+ - typescript
- vitest
- - vue
- - vue-router
+ dev: true
- vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
+ /vitest/1.6.0:
+ resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@types/node': ^18.0.0 || >=20.0.0
+ '@vitest/browser': 1.6.0
+ '@vitest/ui': 1.6.0
+ happy-dom: '*'
+ jsdom: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@types/node':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
dependencies:
'@vitest/expect': 1.6.0
'@vitest/runner': 1.6.0
@@ -23887,22 +22236,19 @@ snapshots:
'@vitest/utils': 1.6.0
acorn-walk: 8.3.4
chai: 4.5.0
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
execa: 8.0.1
local-pkg: 0.5.1
magic-string: 0.30.17
pathe: 1.1.2
picocolors: 1.1.1
- std-env: 3.8.0
+ std-env: 3.8.1
strip-literal: 2.1.1
tinybench: 2.9.0
tinypool: 0.8.4
- vite: 5.4.14(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-node: 1.6.0(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.14
+ vite-node: 1.6.0
why-is-node-running: 2.3.0
- optionalDependencies:
- '@types/node': 22.10.5
- jsdom: 23.0.0
transitivePeerDependencies:
- less
- lightningcss
@@ -23912,9 +22258,34 @@ snapshots:
- sugarss
- supports-color
- terser
+ dev: true
- vitest@1.6.0(@types/node@22.13.8)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
+ /vitest/1.6.0_@types+node@22.10.5:
+ resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@types/node': ^18.0.0 || >=20.0.0
+ '@vitest/browser': 1.6.0
+ '@vitest/ui': 1.6.0
+ happy-dom: '*'
+ jsdom: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@types/node':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
dependencies:
+ '@types/node': 22.10.5
'@vitest/expect': 1.6.0
'@vitest/runner': 1.6.0
'@vitest/snapshot': 1.6.0
@@ -23922,22 +22293,77 @@ snapshots:
'@vitest/utils': 1.6.0
acorn-walk: 8.3.4
chai: 4.5.0
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
execa: 8.0.1
local-pkg: 0.5.1
magic-string: 0.30.17
pathe: 1.1.2
picocolors: 1.1.1
- std-env: 3.8.0
+ std-env: 3.8.1
strip-literal: 2.1.1
tinybench: 2.9.0
tinypool: 0.8.4
- vite: 5.4.14(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-node: 1.6.0(@types/node@22.13.8)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.14_@types+node@22.10.5
+ vite-node: 1.6.0_@types+node@22.10.5
why-is-node-running: 2.3.0
- optionalDependencies:
- '@types/node': 22.13.8
+ transitivePeerDependencies:
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: true
+
+ /vitest/1.6.0_wg5rtkj7xukooy7t3bbdhu2byu:
+ resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@types/node': ^18.0.0 || >=20.0.0
+ '@vitest/browser': 1.6.0
+ '@vitest/ui': 1.6.0
+ happy-dom: '*'
+ jsdom: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@types/node':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+ dependencies:
+ '@types/node': 22.10.5
+ '@vitest/expect': 1.6.0
+ '@vitest/runner': 1.6.0
+ '@vitest/snapshot': 1.6.0
+ '@vitest/spy': 1.6.0
+ '@vitest/utils': 1.6.0
+ acorn-walk: 8.3.4
+ chai: 4.5.0
+ debug: 4.4.0
+ execa: 8.0.1
jsdom: 23.0.0
+ local-pkg: 0.5.1
+ magic-string: 0.30.17
+ pathe: 1.1.2
+ picocolors: 1.1.1
+ std-env: 3.8.1
+ strip-literal: 2.1.1
+ tinybench: 2.9.0
+ tinypool: 0.8.4
+ vite: 5.4.14_@types+node@22.10.5
+ vite-node: 1.6.0_@types+node@22.10.5
+ why-is-node-running: 2.3.0
transitivePeerDependencies:
- less
- lightningcss
@@ -23947,48 +22373,80 @@ snapshots:
- sugarss
- supports-color
- terser
+ dev: true
- void-elements@2.0.1: {}
+ /void-elements/2.0.1:
+ resolution: {integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==}
+ engines: {node: '>=0.10.0'}
+ dev: true
- vscode-jsonrpc@6.0.0: {}
+ /vscode-jsonrpc/6.0.0:
+ resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==}
+ engines: {node: '>=8.0.0 || >=10.0.0'}
- vscode-languageclient@7.0.0:
+ /vscode-languageclient/7.0.0:
+ resolution: {integrity: sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==}
+ engines: {vscode: ^1.52.0}
dependencies:
minimatch: 3.1.2
semver: 7.7.1
vscode-languageserver-protocol: 3.16.0
- vscode-languageserver-protocol@3.16.0:
+ /vscode-languageserver-protocol/3.16.0:
+ resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==}
dependencies:
vscode-jsonrpc: 6.0.0
vscode-languageserver-types: 3.16.0
- vscode-languageserver-textdocument@1.0.12: {}
+ /vscode-languageserver-textdocument/1.0.12:
+ resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
- vscode-languageserver-types@3.16.0: {}
+ /vscode-languageserver-types/3.16.0:
+ resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==}
- vscode-languageserver@7.0.0:
+ /vscode-languageserver/7.0.0:
+ resolution: {integrity: sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==}
+ hasBin: true
dependencies:
vscode-languageserver-protocol: 3.16.0
- vscode-uri@3.0.8: {}
+ /vscode-uri/3.1.0:
+ resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
- vue-bundle-renderer@2.1.1:
+ /vue-bundle-renderer/2.1.1:
+ resolution: {integrity: sha512-+qALLI5cQncuetYOXp4yScwYvqh8c6SMXee3B+M7oTZxOgtESP0l4j/fXdEJoZ+EdMxkGWIj+aSEyjXkOdmd7g==}
dependencies:
ufo: 1.5.4
- vue-component-type-helpers@2.2.0: {}
+ /vue-component-type-helpers/2.2.8:
+ resolution: {integrity: sha512-4bjIsC284coDO9om4HPA62M7wfsTvcmZyzdfR0aUlFXqq4tXxM1APyXpNVxPC8QazKw9OhmZNHBVDA6ODaZsrA==}
+ dev: true
- vue-demi@0.14.10(vue@3.5.13(typescript@5.5.3)):
+ /vue-demi/0.14.10_vue@3.5.13:
+ resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ peerDependencies:
+ '@vue/composition-api': ^1.0.0-rc.1
+ vue: ^3.0.0-0 || ^2.6.0
+ peerDependenciesMeta:
+ '@vue/composition-api':
+ optional: true
dependencies:
- vue: 3.5.13(typescript@5.5.3)
+ vue: 3.5.13_typescript@5.5.3
- vue-devtools-stub@0.1.0: {}
+ /vue-devtools-stub/0.1.0:
+ resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
- vue-eslint-parser@9.4.3(eslint@9.17.0(jiti@2.4.2)):
+ /vue-eslint-parser/9.4.3_eslint@9.17.0:
+ resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
+ engines: {node: ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: '>=6.0.0'
dependencies:
- debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.17.0(jiti@2.4.2)
+ debug: 4.4.0
+ eslint: 9.17.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
@@ -23997,72 +22455,113 @@ snapshots:
semver: 7.7.1
transitivePeerDependencies:
- supports-color
+ dev: true
- vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)):
- dependencies:
- '@vue/devtools-api': 6.6.4
- vue: 3.5.13(typescript@5.5.3)
-
- vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)):
+ /vue-router/4.5.0_vue@3.5.13:
+ resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
+ peerDependencies:
+ vue: ^3.2.0
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.13(typescript@5.6.1-rc)
+ vue: 3.5.13
- vue-tsc@2.2.0(typescript@5.5.3):
+ /vue-tsc/2.2.0_typescript@5.5.3:
+ resolution: {integrity: sha512-gtmM1sUuJ8aSb0KoAFmK9yMxb8TxjewmxqTJ1aKphD5Cbu0rULFY6+UQT51zW7SpUcenfPUuflKyVwyx9Qdnxg==}
+ hasBin: true
+ peerDependencies:
+ typescript: '>=5.0.0'
dependencies:
- '@volar/typescript': 2.4.11
- '@vue/language-core': 2.2.0(typescript@5.5.3)
+ '@volar/typescript': 2.4.12
+ '@vue/language-core': 2.2.0_typescript@5.5.3
typescript: 5.5.3
+ dev: true
- vue@3.5.13(typescript@5.5.3):
+ /vue/3.5.13:
+ resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
'@vue/compiler-dom': 3.5.13
'@vue/compiler-sfc': 3.5.13
'@vue/runtime-dom': 3.5.13
- '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.5.3))
+ '@vue/server-renderer': 3.5.13_vue@3.5.13
'@vue/shared': 3.5.13
- optionalDependencies:
- typescript: 5.5.3
- vue@3.5.13(typescript@5.6.1-rc):
+ /vue/3.5.13_typescript@5.5.3:
+ resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
'@vue/compiler-dom': 3.5.13
'@vue/compiler-sfc': 3.5.13
'@vue/runtime-dom': 3.5.13
- '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.6.1-rc))
+ '@vue/server-renderer': 3.5.13_vue@3.5.13
'@vue/shared': 3.5.13
- optionalDependencies:
- typescript: 5.6.1-rc
+ typescript: 5.5.3
- w3c-xmlserializer@5.0.0:
+ /w3c-xmlserializer/5.0.0:
+ resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
+ engines: {node: '>=18'}
dependencies:
xml-name-validator: 5.0.0
+ dev: true
- watchpack@2.4.2:
+ /watchpack/2.4.2:
+ resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
+ engines: {node: '>=10.13.0'}
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
+ dev: true
- wbuf@1.7.3:
+ /wbuf/1.7.3:
+ resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
dependencies:
minimalistic-assert: 1.0.1
+ dev: true
- wcwidth@1.0.1:
+ /wcwidth/1.0.1:
+ resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
dependencies:
defaults: 1.0.4
+ dev: true
- weak-lru-cache@1.2.2:
+ /weak-lru-cache/1.2.2:
+ resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==}
+ dev: true
optional: true
- web-streams-polyfill@3.3.3: {}
+ /web-streams-polyfill/3.3.3:
+ resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
+ engines: {node: '>= 8'}
+ dev: true
- webidl-conversions@3.0.1: {}
+ /webidl-conversions/3.0.1:
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- webidl-conversions@4.0.2: {}
+ /webidl-conversions/4.0.2:
+ resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
+ dev: true
- webidl-conversions@7.0.0: {}
+ /webidl-conversions/7.0.0:
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
+ dev: true
- webpack-dev-middleware@7.4.2(webpack@5.98.0(esbuild@0.25.0)):
+ /webpack-dev-middleware/7.4.2_webpack@5.98.0:
+ resolution: {integrity: sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ webpack: ^5.0.0
+ peerDependenciesMeta:
+ webpack:
+ optional: true
dependencies:
colorette: 2.0.20
memfs: 4.17.0
@@ -24070,10 +22569,21 @@ snapshots:
on-finished: 2.4.1
range-parser: 1.2.1
schema-utils: 4.3.0
- optionalDependencies:
- webpack: 5.98.0(esbuild@0.24.2)
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
- webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.0)):
+ /webpack-dev-server/5.2.0_webpack@5.98.0:
+ resolution: {integrity: sha512-90SqqYXA2SK36KcT6o1bvwvZfJFcmoamqeJY7+boioffX9g9C0wjjJRGUrQIuh43pb0ttX7+ssavmj/WN2RHtA==}
+ engines: {node: '>= 18.12.0'}
+ hasBin: true
+ peerDependencies:
+ webpack: ^5.0.0
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack:
+ optional: true
+ webpack-cli:
+ optional: true
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -24081,7 +22591,7 @@ snapshots:
'@types/serve-index': 1.9.4
'@types/serve-static': 1.15.7
'@types/sockjs': 0.3.36
- '@types/ws': 8.5.14
+ '@types/ws': 8.18.0
ansi-html-community: 0.0.8
bonjour-service: 1.3.0
chokidar: 3.6.0
@@ -24090,7 +22600,7 @@ snapshots:
connect-history-api-fallback: 2.0.0
express: 4.21.2
graceful-fs: 4.2.11
- http-proxy-middleware: 2.0.7(@types/express@4.17.21)
+ http-proxy-middleware: 2.0.7_@types+express@4.17.21
ipaddr.js: 2.2.0
launch-editor: 2.10.0
open: 10.1.0
@@ -24100,39 +22610,102 @@ snapshots:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.0))
+ webpack: 5.98.0
+ webpack-dev-middleware: 7.4.2_webpack@5.98.0
ws: 8.18.1
- optionalDependencies:
- webpack: 5.98.0(esbuild@0.24.2)
transitivePeerDependencies:
- bufferutil
- debug
- supports-color
- utf-8-validate
+ dev: true
- webpack-merge@6.0.1:
+ /webpack-merge/6.0.1:
+ resolution: {integrity: sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==}
+ engines: {node: '>=18.0.0'}
dependencies:
clone-deep: 4.0.1
flat: 5.0.2
wildcard: 2.0.1
+ dev: true
- webpack-sources@3.2.3: {}
+ /webpack-sources/3.2.3:
+ resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
+ engines: {node: '>=10.13.0'}
+ dev: true
- webpack-subresource-integrity@5.1.0(webpack@5.98.0(esbuild@0.25.0)):
+ /webpack-subresource-integrity/5.1.0_webpack@5.98.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
dependencies:
typed-assert: 1.0.9
- webpack: 5.98.0(esbuild@0.24.2)
+ webpack: 5.98.0_esbuild@0.25.0
+ dev: true
- webpack-virtual-modules@0.6.2: {}
+ /webpack-virtual-modules/0.6.2:
+ resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
- webpack@5.98.0(esbuild@0.24.2):
+ /webpack/5.98.0:
+ resolution: {integrity: sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.6
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
- acorn: 8.14.0
+ acorn: 8.14.1
+ browserslist: 4.24.4
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.18.1
+ es-module-lexer: 1.6.0
+ eslint-scope: 5.1.1
+ events: 3.3.0
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ json-parse-even-better-errors: 2.3.1
+ loader-runner: 4.3.0
+ mime-types: 2.1.35
+ neo-async: 2.6.2
+ schema-utils: 4.3.0
+ tapable: 2.2.1
+ terser-webpack-plugin: 5.3.14_webpack@5.98.0
+ watchpack: 2.4.2
+ webpack-sources: 3.2.3
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
+ dev: true
+
+ /webpack/5.98.0_esbuild@0.25.0:
+ resolution: {integrity: sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+ dependencies:
+ '@types/eslint-scope': 3.7.7
+ '@types/estree': 1.0.6
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/wasm-edit': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ acorn: 8.14.1
browserslist: 4.24.4
chrome-trace-event: 1.0.4
enhanced-resolve: 5.18.1
@@ -24147,55 +22720,79 @@ snapshots:
neo-async: 2.6.2
schema-utils: 4.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.12(esbuild@0.24.2)(webpack@5.98.0(esbuild@0.25.0))
+ terser-webpack-plugin: 5.3.14_dflvnw2ohzw6dukrwawcjaonya
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
+ dev: true
- websocket-driver@0.7.4:
+ /websocket-driver/0.7.4:
+ resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
+ engines: {node: '>=0.8.0'}
dependencies:
http-parser-js: 0.5.9
safe-buffer: 5.2.1
websocket-extensions: 0.1.4
+ dev: true
- websocket-extensions@0.1.4: {}
+ /websocket-extensions/0.1.4:
+ resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
+ engines: {node: '>=0.8.0'}
+ dev: true
- whatwg-encoding@3.1.1:
+ /whatwg-encoding/3.1.1:
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
dependencies:
iconv-lite: 0.6.3
+ dev: true
- whatwg-mimetype@4.0.0: {}
+ /whatwg-mimetype/4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
+ dev: true
- whatwg-url@14.1.0:
+ /whatwg-url/14.1.1:
+ resolution: {integrity: sha512-mDGf9diDad/giZ/Sm9Xi2YcyzaFpbdLpJPr+E9fSkyQ7KpQD4SdFcugkRQYzhmfI4KeV4Qpnn2sKPdo+kmsgRQ==}
+ engines: {node: '>=18'}
dependencies:
tr46: 5.0.0
webidl-conversions: 7.0.0
+ dev: true
- whatwg-url@5.0.0:
+ /whatwg-url/5.0.0:
+ resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
- whatwg-url@7.1.0:
+ /whatwg-url/7.1.0:
+ resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
dependencies:
lodash.sortby: 4.7.0
tr46: 1.0.1
webidl-conversions: 4.0.2
+ dev: true
- which-boxed-primitive@1.1.1:
+ /which-boxed-primitive/1.1.1:
+ resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
+ engines: {node: '>= 0.4'}
dependencies:
is-bigint: 1.1.0
- is-boolean-object: 1.2.1
+ is-boolean-object: 1.2.2
is-number-object: 1.1.1
is-string: 1.1.1
is-symbol: 1.1.1
+ dev: true
- which-builtin-type@1.2.1:
+ /which-builtin-type/1.2.1:
+ resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
function.prototype.name: 1.1.8
has-tostringtag: 1.0.2
is-async-function: 2.1.1
@@ -24203,116 +22800,212 @@ snapshots:
is-finalizationregistry: 1.1.1
is-generator-function: 1.1.0
is-regex: 1.2.1
- is-weakref: 1.1.0
+ is-weakref: 1.1.1
isarray: 2.0.5
which-boxed-primitive: 1.1.1
which-collection: 1.0.2
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.19
+ dev: true
- which-collection@1.0.2:
+ /which-collection/1.0.2:
+ resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
+ engines: {node: '>= 0.4'}
dependencies:
is-map: 2.0.3
is-set: 2.0.3
is-weakmap: 2.0.2
is-weakset: 2.0.4
+ dev: true
- which-typed-array@1.1.18:
+ /which-typed-array/1.1.19:
+ resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
+ engines: {node: '>= 0.4'}
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.8
- call-bound: 1.0.3
- for-each: 0.3.4
+ call-bound: 1.0.4
+ for-each: 0.3.5
+ get-proto: 1.0.1
gopd: 1.2.0
has-tostringtag: 1.0.2
+ dev: true
- which@1.3.1:
+ /which/1.3.1:
+ resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
+ hasBin: true
dependencies:
isexe: 2.0.0
+ dev: true
- which@2.0.2:
+ /which/2.0.2:
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
+ hasBin: true
dependencies:
isexe: 2.0.0
- which@3.0.1:
+ /which/3.0.1:
+ resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ hasBin: true
dependencies:
isexe: 2.0.0
- which@5.0.0:
+ /which/5.0.0:
+ resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+ hasBin: true
dependencies:
isexe: 3.1.1
- why-is-node-running@2.3.0:
+ /why-is-node-running/2.3.0:
+ resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
+ engines: {node: '>=8'}
+ hasBin: true
dependencies:
siginfo: 2.0.0
stackback: 0.0.2
+ dev: true
- wildcard@2.0.1: {}
+ /wildcard/2.0.1:
+ resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
+ dev: true
- word-wrap@1.2.5: {}
+ /word-wrap/1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
- wordwrap@1.0.0: {}
+ /wordwrap/1.0.0:
+ resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
+ dev: false
- wrap-ansi@6.2.0:
+ /wrap-ansi/6.2.0:
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
+ dev: true
- wrap-ansi@7.0.0:
+ /wrap-ansi/7.0.0:
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
+ engines: {node: '>=10'}
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- wrap-ansi@8.1.0:
+ /wrap-ansi/8.1.0:
+ resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
+ engines: {node: '>=12'}
dependencies:
ansi-styles: 6.2.1
string-width: 5.1.2
strip-ansi: 7.1.0
- wrap-ansi@9.0.0:
+ /wrap-ansi/9.0.0:
+ resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
+ engines: {node: '>=18'}
dependencies:
ansi-styles: 6.2.1
string-width: 7.2.0
strip-ansi: 7.1.0
+ dev: true
- wrappy@1.0.2: {}
-
- ws@8.17.1: {}
+ /wrappy/1.0.2:
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+ dev: true
- ws@8.18.0: {}
+ /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
+ dev: true
- ws@8.18.1: {}
+ /ws/8.18.1:
+ resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
+ 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
- xml-name-validator@4.0.0: {}
+ /xml-name-validator/4.0.0:
+ resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
+ engines: {node: '>=12'}
+ dev: true
- xml-name-validator@5.0.0: {}
+ /xml-name-validator/5.0.0:
+ resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
+ engines: {node: '>=18'}
+ dev: true
- xmlchars@2.2.0: {}
+ /xmlchars/2.2.0:
+ resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
+ dev: true
- y18n@5.0.8: {}
+ /y18n/5.0.8:
+ resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
+ engines: {node: '>=10'}
- yallist@2.1.2: {}
+ /yallist/2.1.2:
+ resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
+ dev: true
- yallist@3.1.1: {}
+ /yallist/3.1.1:
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- yallist@4.0.0: {}
+ /yallist/4.0.0:
+ resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- yallist@5.0.0: {}
+ /yallist/5.0.0:
+ resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
+ engines: {node: '>=18'}
- yaml-ast-parser@0.0.43: {}
+ /yaml-ast-parser/0.0.43:
+ resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
- yaml@1.10.2: {}
+ /yaml/1.10.2:
+ resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
+ engines: {node: '>= 6'}
+ dev: true
- yaml@2.6.1: {}
+ /yaml/2.6.1:
+ resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
+ engines: {node: '>= 14'}
+ hasBin: true
+ dev: true
- yaml@2.7.0: {}
+ /yaml/2.7.0:
+ resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
+ engines: {node: '>= 14'}
+ hasBin: true
- yargs-parser@20.2.9: {}
+ /yargs-parser/20.2.9:
+ resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
+ engines: {node: '>=10'}
+ dev: true
- yargs-parser@21.1.1: {}
+ /yargs-parser/21.1.1:
+ resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
+ engines: {node: '>=12'}
- yargs@16.2.0:
+ /yargs/16.2.0:
+ resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
+ engines: {node: '>=10'}
dependencies:
cliui: 7.0.4
escalade: 3.2.0
@@ -24321,8 +23014,11 @@ snapshots:
string-width: 4.2.3
y18n: 5.0.8
yargs-parser: 20.2.9
+ dev: true
- yargs@17.7.2:
+ /yargs/17.7.2:
+ resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
+ engines: {node: '>=12'}
dependencies:
cliui: 8.0.1
escalade: 3.2.0
@@ -24332,33 +23028,73 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
- yauzl@2.10.0:
+ /yauzl/2.10.0:
+ resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
dependencies:
buffer-crc32: 0.2.13
fd-slicer: 1.1.0
+ dev: true
+
+ /yn/3.1.1:
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
+ engines: {node: '>=6'}
+ dev: true
- yn@3.1.1: {}
+ /yocto-queue/0.1.0:
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
+ dev: true
+
+ /yocto-queue/1.2.0:
+ resolution: {integrity: sha512-KHBC7z61OJeaMGnF3wqNZj+GGNXOyypZviiKpQeiHirG5Ib1ImwcLBH70rbMSkKfSmUNBsdf2PwaEJtKvgmkNw==}
+ engines: {node: '>=12.20'}
+ dev: true
- yocto-queue@0.1.0: {}
+ /yoctocolors-cjs/2.1.2:
+ resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
+ engines: {node: '>=18'}
+ dev: true
- yocto-queue@1.1.1: {}
+ /yoctocolors/2.1.1:
+ resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
+ engines: {node: '>=18'}
- yoctocolors-cjs@2.1.2: {}
+ /youch-core/0.3.2:
+ resolution: {integrity: sha512-fusrlIMLeRvTFYLUjJ9KzlGC3N+6MOPJ68HNj/yJv2nz7zq8t4HEviLms2gkdRPUS7F5rZ5n+pYx9r88m6IE1g==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@poppinss/exception': 1.2.1
+ error-stack-parser-es: 1.0.5
- yoctocolors@2.1.1: {}
+ /youch/4.1.0-beta.6:
+ resolution: {integrity: sha512-y1aNsEeoLXnWb6pI9TvfNPIxySyo4Un3OGxKn7rsNj8+tgSquzXEWkzfA5y6gU0fvzmQgvx3JBn/p51qQ8Xg9A==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@poppinss/dumper': 0.6.3
+ '@speed-highlight/core': 1.2.7
+ cookie: 1.0.2
+ youch-core: 0.3.2
- zhead@2.2.4: {}
+ /zhead/2.2.4:
+ resolution: {integrity: sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==}
- zimmerframe@1.1.2: {}
+ /zimmerframe/1.1.2:
+ resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==}
- zip-stream@6.0.1:
+ /zip-stream/6.0.1:
+ resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
+ engines: {node: '>= 14'}
dependencies:
archiver-utils: 5.0.2
compress-commons: 6.0.2
readable-stream: 4.7.0
- zod@3.23.8: {}
+ /zod/3.23.8:
+ resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
- zone.js@0.15.0: {}
+ /zone.js/0.15.0:
+ resolution: {integrity: sha512-9oxn0IIjbCZkJ67L+LkhYWRyAy7axphb3VgE2MBDlOqnmHMPWGYMxJxBYFueFq/JGY2GMwS0rU+UCLunEmy5UA==}
- zwitch@2.0.4: {}
+ /zwitch/2.0.4:
+ resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
+ dev: true
From c0f1efdbb8aeaee9b42f41b6d163820e6d10010d Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 9 Mar 2025 12:38:44 +0100
Subject: [PATCH 05/18] fix build
---
.../src/plugins/@hey-api/client-angular/config.ts | 12 +++++-------
.../src/plugins/@hey-api/client-angular/plugin.ts | 2 +-
.../src/plugins/@hey-api/client-angular/types.d.ts | 6 +-----
.../src/plugins/@hey-api/client-core/types.d.ts | 13 +++++++++++--
packages/openapi-ts/src/plugins/index.ts | 4 ++++
5 files changed, 22 insertions(+), 15 deletions(-)
diff --git a/packages/openapi-ts/src/plugins/@hey-api/client-angular/config.ts b/packages/openapi-ts/src/plugins/@hey-api/client-angular/config.ts
index ec63e400c..aac6173dc 100644
--- a/packages/openapi-ts/src/plugins/@hey-api/client-angular/config.ts
+++ b/packages/openapi-ts/src/plugins/@hey-api/client-angular/config.ts
@@ -1,16 +1,14 @@
import type { Plugin } from '../../types';
-import { handler } from './plugin';
+import { clientDefaultConfig } from '../client-core/config';
+import { handler } from '../client-core/plugin';
+// import { handler } from './plugin';
import type { Config } from './types';
export const defaultConfig: Plugin.Config = {
+ ...clientDefaultConfig,
_handler: handler,
- _handlerLegacy: () => {
- // TODO: Add error for dx?
- },
- _tags: ['client'],
- bundle: false,
+ _handlerLegacy: () => {},
name: '@hey-api/client-angular',
- output: 'client',
throwOnError: false,
};
diff --git a/packages/openapi-ts/src/plugins/@hey-api/client-angular/plugin.ts b/packages/openapi-ts/src/plugins/@hey-api/client-angular/plugin.ts
index 0f725b326..7d04b3a16 100644
--- a/packages/openapi-ts/src/plugins/@hey-api/client-angular/plugin.ts
+++ b/packages/openapi-ts/src/plugins/@hey-api/client-angular/plugin.ts
@@ -1,7 +1,7 @@
import { compiler } from '../../../compiler';
import { clientModulePath } from '../../../generate/client';
+import type { PluginHandler } from '../client-core/types';
import { clientId } from '../client-core/utils';
-import type { PluginHandler } from './types';
export const handler: PluginHandler = ({ context, plugin }) => {
const file = context.createFile({
diff --git a/packages/openapi-ts/src/plugins/@hey-api/client-angular/types.d.ts b/packages/openapi-ts/src/plugins/@hey-api/client-angular/types.d.ts
index 8c29a31d2..f0dad534e 100644
--- a/packages/openapi-ts/src/plugins/@hey-api/client-angular/types.d.ts
+++ b/packages/openapi-ts/src/plugins/@hey-api/client-angular/types.d.ts
@@ -1,4 +1,4 @@
-import type { Client, Plugin } from '../../types';
+import type { Plugin } from '../../types';
export interface Config
extends Plugin.Name<'@hey-api/client-angular'>,
@@ -10,7 +10,3 @@ export interface Config
*/
throwOnError?: boolean;
}
-
-export type PluginHandler = Plugin.Handler;
-
-export type PluginInstance = Plugin.Instance;
diff --git a/packages/openapi-ts/src/plugins/@hey-api/client-core/types.d.ts b/packages/openapi-ts/src/plugins/@hey-api/client-core/types.d.ts
index 56b827452..bc6560863 100644
--- a/packages/openapi-ts/src/plugins/@hey-api/client-core/types.d.ts
+++ b/packages/openapi-ts/src/plugins/@hey-api/client-core/types.d.ts
@@ -1,16 +1,25 @@
import type { Plugin } from '../../types';
+import type { Config as ClientAngularConfig } from '../client-angular';
import type { Config as ClientAxiosConfig } from '../client-axios';
import type { Config as ClientFetchConfig } from '../client-fetch';
import type { Config as ClientNextConfig } from '../client-next';
import type { Config as ClientNuxtConfig } from '../client-nuxt';
export type PluginHandler = Plugin.Handler<
- ClientAxiosConfig | ClientFetchConfig | ClientNextConfig | ClientNuxtConfig,
+ | ClientAxiosConfig
+ | ClientFetchConfig
+ | ClientNextConfig
+ | ClientNuxtConfig
+ | ClientAngularConfig,
ReturnType
>;
export type PluginInstance = Plugin.Instance<
- ClientAxiosConfig | ClientFetchConfig | ClientNextConfig | ClientNuxtConfig
+ | ClientAxiosConfig
+ | ClientFetchConfig
+ | ClientNextConfig
+ | ClientNuxtConfig
+ | ClientAngularConfig
>;
/**
diff --git a/packages/openapi-ts/src/plugins/index.ts b/packages/openapi-ts/src/plugins/index.ts
index 1ae4abb87..1be49f40f 100644
--- a/packages/openapi-ts/src/plugins/index.ts
+++ b/packages/openapi-ts/src/plugins/index.ts
@@ -110,8 +110,12 @@ export type UserPlugins =
export type ClientPlugins =
| Plugin.Config
| Plugin.Config
+ | Plugin.Config
+ | Plugin.Config
| Plugin.Config
| Plugin.Config
+ | Plugin.Config
+ | Plugin.Config
| Plugin.Config
| Plugin.Config
| Plugin.Config
From 4eb786be157e9d2cbdd7a3744be070ab028c68a9 Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 9 Mar 2025 15:16:20 +0100
Subject: [PATCH 06/18] stuff
---
.vscode/settings.json | 3 -
packages/client-angular/CHANGELOG.md | 46 ++
packages/client-angular/README.md | 11 +-
packages/client-angular/package.json | 8 +-
.../{index.test.ts => client.test.ts} | 2 +-
packages/client-angular/src/client.ts | 178 ++++++
packages/client-angular/src/index.ts | 201 +++---
packages/client-angular/src/types.ts | 39 +-
packages/client-angular/src/utils.ts | 18 +-
pnpm-lock.yaml | 588 ++++++++----------
10 files changed, 626 insertions(+), 468 deletions(-)
rename packages/client-angular/src/__tests__/{index.test.ts => client.test.ts} (95%)
create mode 100644 packages/client-angular/src/client.ts
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 6df8dbfe3..4aab4d29c 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,7 +1,4 @@
{
- "editor.codeActionsOnSave": {
- "source.fixAll.eslint": "explicit"
- },
"editor.quickSuggestions": {
"strings": true
},
diff --git a/packages/client-angular/CHANGELOG.md b/packages/client-angular/CHANGELOG.md
index e43bdf3e9..9a949804d 100644
--- a/packages/client-angular/CHANGELOG.md
+++ b/packages/client-angular/CHANGELOG.md
@@ -1,5 +1,51 @@
# @hey-api/client-angular
+## 0.8.3
+
+### Patch Changes
+
+- [#1774](https://github.com/hey-api/openapi-ts/pull/1774) [`c0b36b9`](https://github.com/hey-api/openapi-ts/commit/c0b36b95645d484034c3af145c5554867568979b) Thanks [@mrlubos](https://github.com/mrlubos)! - docs: announce Hey API platform
+
+## 0.8.2
+
+### Patch Changes
+
+- [#1753](https://github.com/hey-api/openapi-ts/pull/1753) [`b8cc9f8`](https://github.com/hey-api/openapi-ts/commit/b8cc9f8a5eaf4f4ff345abc49c14c6b96744c2ea) Thanks [@LinuCC](https://github.com/LinuCC)! - fix: dropping Content-Type header with falsey but valid json body
+
+## 0.8.1
+
+### Patch Changes
+
+- [#1674](https://github.com/hey-api/openapi-ts/pull/1674) [`7f0f4a7`](https://github.com/hey-api/openapi-ts/commit/7f0f4a76b06c8fafb33581b522faf8efc6fd85ac) Thanks [@ale18V](https://github.com/ale18V)! - Return a string from urlSearchParamsBodySerializer instead of a URLSearchParams object.
+ This is due to some runtimes not being able to handle the URLSearchParams object as fetch body.
+
+## 0.8.0
+
+### Minor Changes
+
+- [#1661](https://github.com/hey-api/openapi-ts/pull/1661) [`bb6d46a`](https://github.com/hey-api/openapi-ts/commit/bb6d46ae119ce4e7e3a2ab3fded74ac4fb4cdff2) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: make createConfig, CreateClientConfig, and Config accept ClientOptions generic
+
+ ### Added `ClientOptions` interface
+
+ The `Config` interface now accepts an optional generic extending `ClientOptions` instead of `boolean` type `ThrowOnError`.
+
+ ```ts
+ type Foo = Config; // [!code --]
+ type Foo = Config<{ throwOnError: false }>; // [!code ++]
+ ```
+
+## 0.7.3
+
+### Patch Changes
+
+- [#1637](https://github.com/hey-api/openapi-ts/pull/1637) [`2dc380e`](https://github.com/hey-api/openapi-ts/commit/2dc380eabc17c723654beb04ecd7bce6d33d3b49) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: update keywords in package.json
+
+- [#1649](https://github.com/hey-api/openapi-ts/pull/1649) [`603541e`](https://github.com/hey-api/openapi-ts/commit/603541e307dc2953da7dddd300176865629b50bb) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: handle BigInt in JSON body serializer
+
+- [#1646](https://github.com/hey-api/openapi-ts/pull/1646) [`2cbffeb`](https://github.com/hey-api/openapi-ts/commit/2cbffeb2cdd6c6143cd68cac68369584879dda31) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: remove client from Options interface
+
+- [#1646](https://github.com/hey-api/openapi-ts/pull/1646) [`2cbffeb`](https://github.com/hey-api/openapi-ts/commit/2cbffeb2cdd6c6143cd68cac68369584879dda31) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: export TDataShape interface
+
## 0.7.2
### Patch Changes
diff --git a/packages/client-angular/README.md b/packages/client-angular/README.md
index f006f5c38..4ccc8d893 100644
--- a/packages/client-angular/README.md
+++ b/packages/client-angular/README.md
@@ -15,6 +15,11 @@
- granular request and response customization options
- minimal learning curve thanks to extending the underlying technology
- support bundling inside the generated output
+- [platform](https://heyapi.dev/openapi-ts/integrations) for automating codegen builds
+
+## Platform
+
+Our platform for OpenAPI specifications is now available. Automatically update your code when the APIs it depends on change. [Find out more](https://heyapi.dev/openapi-ts/integrations).
## Documentation
@@ -30,10 +35,6 @@ Love Hey API? Become our [sponsor](https://github.com/sponsors/hey-api).
-## GitHub Integration (coming soon)
-
-Automatically update your code when the APIs it depends on change. [Find out more](https://heyapi.dev/openapi-ts/integrations.html).
-
## Migration Guides
-[OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating.html#openapi-typescript-codegen)
+[OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating#openapi-typescript-codegen)
diff --git a/packages/client-angular/package.json b/packages/client-angular/package.json
index 0d5e70c39..2dcdbc595 100644
--- a/packages/client-angular/package.json
+++ b/packages/client-angular/package.json
@@ -65,14 +65,14 @@
"typecheck": "vitest --typecheck --watch=false"
},
"devDependencies": {
- "@angular/common": "19.1.3",
- "@angular/core": "19.1.3",
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0",
"@hey-api/client-core": "workspace:*",
"rxjs": "7.8.1"
},
"peerDependencies": {
- "@angular/common": "19.1.3",
- "@angular/core": "19.1.3",
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0",
"rxjs": "7.8.1"
}
}
diff --git a/packages/client-angular/src/__tests__/index.test.ts b/packages/client-angular/src/__tests__/client.test.ts
similarity index 95%
rename from packages/client-angular/src/__tests__/index.test.ts
rename to packages/client-angular/src/__tests__/client.test.ts
index de88d72d3..441903954 100644
--- a/packages/client-angular/src/__tests__/index.test.ts
+++ b/packages/client-angular/src/__tests__/client.test.ts
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
-import { createClient } from '../index';
+import { createClient } from '../client';
describe('buildUrl', () => {
const client = createClient();
diff --git a/packages/client-angular/src/client.ts b/packages/client-angular/src/client.ts
new file mode 100644
index 000000000..a0b5c5986
--- /dev/null
+++ b/packages/client-angular/src/client.ts
@@ -0,0 +1,178 @@
+import type { HttpClient } from '@angular/common/http';
+import {
+ type HttpErrorResponse,
+ HttpEventType,
+ HttpRequest,
+ type HttpResponse,
+} from '@angular/common/http';
+import { provideAppInitializer } from '@angular/core';
+import { filter, firstValueFrom, map } from 'rxjs';
+
+import type { Client, Config, RequestOptions } from './types';
+import {
+ buildUrl,
+ createConfig,
+ createInterceptors,
+ mergeConfigs,
+ mergeHeaders,
+ setAuthParams,
+} from './utils';
+
+type ReqInit = Omit & {
+ body?: any;
+ headers: ReturnType;
+};
+
+export let _defaultHttpClient: HttpClient;
+
+export function provideHeyApiClient(httpClientGetter: () => HttpClient) {
+ return provideAppInitializer(() => {
+ _defaultHttpClient = httpClientGetter();
+ });
+}
+
+export const createClient = (config: Config = {}): Client => {
+ let _config = mergeConfigs(createConfig(), config);
+
+ const getConfig = (): Config => ({ ..._config });
+
+ const setConfig = (config: Config): Config => {
+ _config = mergeConfigs(_config, config);
+ return getConfig();
+ };
+
+ const interceptors = createInterceptors<
+ HttpRequest,
+ HttpResponse,
+ HttpErrorResponse,
+ RequestOptions
+ >();
+
+ const request: Client['request'] = async (options) => {
+ const opts = {
+ ..._config,
+ ...options,
+ headers: mergeHeaders(_config.headers, options.headers),
+ };
+
+ if (opts.security) {
+ await setAuthParams({
+ ...opts,
+ security: opts.security,
+ });
+ }
+
+ if (opts.body && opts.bodySerializer) {
+ opts.body = opts.bodySerializer(opts.body);
+ }
+
+ // remove Content-Type header if body is empty to avoid sending invalid requests
+ if (!opts.body) {
+ opts.headers.delete('Content-Type');
+ }
+
+ const url = buildUrl(opts);
+ const { method, ...requestInit }: ReqInit = {
+ redirect: 'follow',
+ ...opts,
+ };
+
+ const _httpClient = opts.httpClient ?? _defaultHttpClient;
+
+ let _request = new HttpRequest(method, url, requestInit);
+
+ for (const fn of interceptors.request._fns) {
+ _request = await fn(_request, opts);
+ }
+ try {
+ let response = await firstValueFrom(
+ _httpClient.request(_request).pipe(
+ filter((event) => event.type === HttpEventType.Response),
+ map((event) => event as HttpResponse),
+ ),
+ );
+
+ for (const fn of interceptors.response._fns) {
+ response = await fn(response, _request, opts);
+ }
+
+ const result = {
+ request: _request,
+ response,
+ };
+
+ if (response.ok) {
+ if (
+ response.status === 204 ||
+ response.headers.get('Content-Length') === '0'
+ ) {
+ return {
+ data: {},
+ ...result,
+ };
+ }
+
+ // const parseAs =
+ // (opts.parseAs === 'auto'
+ // ? getParseAs(response.headers.get('Content-Type'))
+ // : opts.parseAs) ?? 'json';
+
+ let data = response.body;
+ // if (parseAs === 'stream') {
+ // return {
+ // data: response.body,
+ // ...result,
+ // };
+ // }
+
+ // let data = await response[parseAs]();
+ // if (parseAs === 'json') {
+ if (opts.responseValidator) {
+ await opts.responseValidator(data);
+ }
+
+ if (opts.responseTransformer) {
+ data = await opts.responseTransformer(data);
+ }
+ // }
+
+ return {
+ data,
+ ...result,
+ };
+ }
+ } catch (err) {
+ let finalError = err;
+
+ for (const fn of interceptors.error._fns) {
+ finalError = await fn(err, err, _request, opts);
+ }
+
+ if (opts.throwOnError) {
+ throw finalError;
+ }
+
+ return {
+ error: finalError,
+ ...err,
+ };
+ }
+ };
+
+ return {
+ buildUrl,
+ connect: (options) => request({ ...options, method: 'CONNECT' }),
+ delete: (options) => request({ ...options, method: 'DELETE' }),
+ get: (options) => request({ ...options, method: 'GET' }),
+ getConfig,
+ head: (options) => request({ ...options, method: 'HEAD' }),
+ interceptors,
+ options: (options) => request({ ...options, method: 'OPTIONS' }),
+ patch: (options) => request({ ...options, method: 'PATCH' }),
+ post: (options) => request({ ...options, method: 'POST' }),
+ put: (options) => request({ ...options, method: 'PUT' }),
+ request,
+ setConfig,
+ trace: (options) => request({ ...options, method: 'TRACE' }),
+ };
+};
diff --git a/packages/client-angular/src/index.ts b/packages/client-angular/src/index.ts
index 917ae0de3..9b20434da 100644
--- a/packages/client-angular/src/index.ts
+++ b/packages/client-angular/src/index.ts
@@ -1,10 +1,16 @@
-import type { HttpErrorResponse, HttpResponse } from '@angular/common/http';
-import { HttpClient, HttpEventType, HttpRequest } from '@angular/common/http';
-import { assertInInjectionContext, inject } from '@angular/core';
-import { firstValueFrom } from 'rxjs';
-import { filter, map } from 'rxjs/operators';
-
-import type { Client, Config, RequestOptions } from './types';
+// import {
+// HttpClient,
+// type HttpErrorResponse,
+// HttpEventType,
+// HttpRequest,
+// type HttpResponse,
+// } from '@angular/common/http';
+
+// import { HttpClient } from '@angular/common/http';
+// import { provideHttpClient } from '@angular/common/http';
+
+import { _defaultHttpClient } from './client';
+import type { Client, Config } from './types';
import {
buildUrl,
createConfig,
@@ -30,10 +36,14 @@ export const createClient = (config: Config = {}): Client => {
};
const interceptors = createInterceptors<
- HttpRequest,
- HttpResponse,
- HttpErrorResponse,
- RequestOptions
+ any,
+ any,
+ any,
+ any
+ // HttpRequest,
+ // HttpResponse,
+ // HttpErrorResponse,
+ // RequestOptions
>();
const request: Client['request'] = async (options) => {
@@ -65,91 +75,87 @@ export const createClient = (config: Config = {}): Client => {
...opts,
};
- let _httpClient = opts.httpClient;
-
- if (!_httpClient) {
- assertInInjectionContext(request);
- _httpClient = inject(HttpClient);
- }
-
- let _request = new HttpRequest(method, url, requestInit);
-
- for (const fn of interceptors.request._fns) {
- _request = await fn(_request, opts);
- }
- try {
- let response = await firstValueFrom(
- _httpClient.request(_request).pipe(
- filter((event) => event.type === HttpEventType.Response),
- map((event) => event as HttpResponse),
- ),
- );
-
- for (const fn of interceptors.response._fns) {
- response = await fn(response, _request, opts);
- }
-
- const result = {
- request: _request,
- response,
- };
-
- if (response.ok) {
- if (
- response.status === 204 ||
- response.headers.get('Content-Length') === '0'
- ) {
- return {
- data: {},
- ...result,
- };
- }
-
- // const parseAs =
- // (opts.parseAs === 'auto'
- // ? getParseAs(response.headers.get('Content-Type'))
- // : opts.parseAs) ?? 'json';
-
- let data = response.body;
- // if (parseAs === 'stream') {
- // return {
- // data: response.body,
- // ...result,
- // };
- // }
-
- // let data = await response[parseAs]();
- // if (parseAs === 'json') {
- if (opts.responseValidator) {
- await opts.responseValidator(data);
- }
-
- if (opts.responseTransformer) {
- data = await opts.responseTransformer(data);
- }
- // }
-
- return {
- data,
- ...result,
- };
- }
- } catch (err) {
- let finalError = err;
-
- for (const fn of interceptors.error._fns) {
- finalError = await fn(err, err, _request, opts);
- }
-
- if (opts.throwOnError) {
- throw finalError;
- }
-
- return {
- error: finalError,
- ...err,
- };
- }
+ const _httpClient = opts.httpClient ?? _defaultHttpClient;
+
+ return [_httpClient, url, method, requestInit] as any;
+ // let _request = new HttpRequest(method, url, requestInit);
+
+ // for (const fn of interceptors.request._fns) {
+ // _request = await fn(_request, opts);
+ // }
+ // try {
+ // let response = await firstValueFrom(
+ // _httpClient.request(_request).pipe(
+ // filter((event) => event.type === HttpEventType.Response),
+ // map((event) => event as HttpResponse),
+ // ),
+ // );
+
+ // for (const fn of interceptors.response._fns) {
+ // response = await fn(response, _request, opts);
+ // }
+
+ // const result = {
+ // request: _request,
+ // response,
+ // };
+
+ // if (response.ok) {
+ // if (
+ // response.status === 204 ||
+ // response.headers.get('Content-Length') === '0'
+ // ) {
+ // return {
+ // data: {},
+ // ...result,
+ // };
+ // }
+
+ // // const parseAs =
+ // // (opts.parseAs === 'auto'
+ // // ? getParseAs(response.headers.get('Content-Type'))
+ // // : opts.parseAs) ?? 'json';
+
+ // let data = response.body;
+ // // if (parseAs === 'stream') {
+ // // return {
+ // // data: response.body,
+ // // ...result,
+ // // };
+ // // }
+
+ // // let data = await response[parseAs]();
+ // // if (parseAs === 'json') {
+ // if (opts.responseValidator) {
+ // await opts.responseValidator(data);
+ // }
+
+ // if (opts.responseTransformer) {
+ // data = await opts.responseTransformer(data);
+ // }
+ // // }
+
+ // return {
+ // data,
+ // ...result,
+ // };
+ // }
+ // } catch (err) {
+ // let finalError = err;
+
+ // for (const fn of interceptors.error._fns) {
+ // finalError = await fn(err, err, _request, opts);
+ // }
+
+ // if (opts.throwOnError) {
+ // throw finalError;
+ // }
+
+ // return {
+ // error: finalError,
+ // ...err,
+ // };
+ // }
};
return {
@@ -170,14 +176,17 @@ export const createClient = (config: Config = {}): Client => {
};
};
+export { provideHeyApiClient } from './client';
export type {
Client,
+ ClientOptions,
Config,
CreateClientConfig,
Options,
OptionsLegacyParser,
RequestOptions,
RequestResult,
+ TDataShape,
} from './types';
export { createConfig } from './utils';
export type { Auth, QuerySerializerOptions } from '@hey-api/client-core';
diff --git a/packages/client-angular/src/types.ts b/packages/client-angular/src/types.ts
index ab721c6ac..c231182f5 100644
--- a/packages/client-angular/src/types.ts
+++ b/packages/client-angular/src/types.ts
@@ -12,15 +12,14 @@ import type {
import type { Middleware } from './utils';
-export interface Config
+export interface Config
extends Omit,
CoreConfig {
/**
* Base URL for all requests made by this client.
- *
- * @default ''
*/
- baseUrl?: string;
+ baseUrl?: T['baseUrl'];
+
/**
* The HTTP client to use for making requests.
*/
@@ -39,30 +38,21 @@ export interface Config
*
* @default false
*/
- throwOnError?: ThrowOnError;
+ throwOnError?: T['throwOnError'];
}
export interface RequestOptions<
ThrowOnError extends boolean = boolean,
Url extends string = string,
-> extends Config {
+> extends Config<{
+ throwOnError: ThrowOnError;
+ }> {
/**
* Any body that you want to add to your request.
*
* {@link https://developer.mozilla.org/docs/Web/API/fetch#body}
*/
- body?:
- | RequestInit['body']
- | Record
- | Array>
- | Array
- | number;
- /**
- * You can provide a client instance returned by `createClient()` instead of
- * individual options. This might be also useful if you want to implement a
- * custom client.
- */
- client?: Client;
+ body?: unknown;
path?: Record;
query?: Record;
/**
@@ -92,6 +82,11 @@ export type RequestResult<
}
>;
+export interface ClientOptions {
+ baseUrl?: string;
+ throwOnError?: boolean;
+}
+
type MethodFn = <
TData = unknown,
TError = unknown,
@@ -137,9 +132,11 @@ export type Client = CoreClient & {
* `setConfig()`. This is useful for example if you're using Next.js
* to ensure your client always has the correct values.
*/
-export type CreateClientConfig = (override?: Config) => Config;
+export type CreateClientConfig = (
+ override?: Config,
+) => Config & T>;
-interface DataShape {
+export interface TDataShape {
body?: unknown;
headers?: unknown;
path?: unknown;
@@ -150,7 +147,7 @@ interface DataShape {
type OmitKeys = Pick>;
export type Options<
- TData extends DataShape = DataShape,
+ TData extends TDataShape = TDataShape,
ThrowOnError extends boolean = boolean,
> = OmitKeys, 'body' | 'path' | 'query' | 'url'> &
Omit;
diff --git a/packages/client-angular/src/utils.ts b/packages/client-angular/src/utils.ts
index 7687ff956..1a7eb86a1 100644
--- a/packages/client-angular/src/utils.ts
+++ b/packages/client-angular/src/utils.ts
@@ -10,12 +10,7 @@ import {
serializePrimitiveParam,
} from '@hey-api/client-core';
-import type {
- Client,
- Config,
- CreateClientConfig,
- RequestOptions,
-} from './types';
+import type { Client, ClientOptions, Config, RequestOptions } from './types';
interface PathSerializer {
path: Record;
@@ -234,7 +229,7 @@ export const setAuthParams = async ({
export const buildUrl: Client['buildUrl'] = (options) => {
const url = getUrl({
- baseUrl: options.baseUrl ?? '',
+ baseUrl: options.baseUrl as string,
path: options.path,
query: options.query,
querySerializer:
@@ -253,14 +248,14 @@ export const getUrl = ({
querySerializer,
url: _url,
}: {
- baseUrl: string;
+ baseUrl?: string;
path?: Record;
query?: Record;
querySerializer: QuerySerializer;
url: string;
}) => {
const pathUrl = _url.startsWith('/') ? _url : `/${_url}`;
- let url = baseUrl + pathUrl;
+ let url = (baseUrl ?? '') + pathUrl;
if (path) {
url = defaultPathSerializer({ path, url });
}
@@ -397,9 +392,10 @@ const defaultHeaders = {
'Content-Type': 'application/json',
};
-export const createConfig: CreateClientConfig = (override = {}) => ({
+export const createConfig = (
+ override: Config & T> = {},
+): Config & T> => ({
...jsonBodySerializer,
- baseUrl: '',
headers: defaultHeaders,
parseAs: 'auto',
querySerializer: defaultQuerySerializer,
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index ff4f0ee72..cc1b63635 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -505,13 +505,13 @@ importers:
packages/client-angular:
specifiers:
- '@angular/common': 19.1.3
- '@angular/core': 19.1.3
+ '@angular/common': ^19.2.0
+ '@angular/core': ^19.2.0
'@hey-api/client-core': workspace:*
rxjs: 7.8.1
devDependencies:
- '@angular/common': 19.1.3_xmrrytzw7ovi657ytoq6a6d5jq
- '@angular/core': 19.1.3_rxjs@7.8.1+zone.js@0.15.0
+ '@angular/common': 19.2.1_43o7mmxrb5krrr2js5kqo6a25y
+ '@angular/core': 19.2.1_rxjs@7.8.1+zone.js@0.15.0
'@hey-api/client-core': link:../client-core
rxjs: 7.8.1
@@ -546,12 +546,12 @@ importers:
vite: 6.0.9
vue: '>= 3.5.13 < 4'
dependencies:
- nuxt: 3.16.0_vite@6.0.9
+ nuxt: 3.16.0_rfsowatrio6jr7glkuhyrhvtsa
devDependencies:
'@hey-api/client-core': link:../client-core
'@nuxt/test-utils': 3.14.0_t42vghp6y4xkqcrv26ib563gve
vite: 6.0.9_jiti@2.4.2
- vue: 3.5.13
+ vue: 3.5.13_typescript@5.8.2
packages/openapi-ts:
specifiers:
@@ -632,7 +632,7 @@ importers:
fastify: 5.2.0
glob: 10.4.3
node-fetch: 3.3.2
- nuxt: 3.14.1592_hfjqjp6w3rvckby5qzzmeb3n4u
+ nuxt: 3.14.1592_crdijjrbkat5leu3vz4llrpmey
prettier: 3.4.2
puppeteer: 22.12.1_typescript@5.5.3
rxjs: 7.8.1
@@ -1443,26 +1443,26 @@ packages:
- supports-color
dev: true
- /@angular/common/19.1.3_xmrrytzw7ovi657ytoq6a6d5jq:
- resolution: {integrity: sha512-r1P0W6FKrON83szIJboF8z6UNCVL4HIxyD+nhmHMMT/iJpu4kDHVugaN/+w2jYLb4oelAJK5xzkzA+1IaHpzLg==}
+ /@angular/common/19.2.0_o7lncytynmlvlvkm4hpjy4oxsi:
+ resolution: {integrity: sha512-dm8PR94QY3DucXxltdV5p2Yxyr5bfPlmjOElwLhiTvxWbwCZJTVhPc8dw0TCKzCEu+tKafT48u4BLIB34a0A/g==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
- '@angular/core': 19.1.3
+ '@angular/core': 19.2.0
rxjs: ^6.5.3 || ^7.4.0
dependencies:
- '@angular/core': 19.1.3_rxjs@7.8.1+zone.js@0.15.0
+ '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
rxjs: 7.8.1
tslib: 2.8.1
dev: true
- /@angular/common/19.2.0_o7lncytynmlvlvkm4hpjy4oxsi:
- resolution: {integrity: sha512-dm8PR94QY3DucXxltdV5p2Yxyr5bfPlmjOElwLhiTvxWbwCZJTVhPc8dw0TCKzCEu+tKafT48u4BLIB34a0A/g==}
+ /@angular/common/19.2.1_43o7mmxrb5krrr2js5kqo6a25y:
+ resolution: {integrity: sha512-k+ikxn6SlWXxXEtwRmsYZeknf3a6n3Oicde6zTLBrD/Rie/u0+okuoQcuYjntQWGgH//QBQxH4UQpvRw51AR8w==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
- '@angular/core': 19.2.0
+ '@angular/core': 19.2.1
rxjs: ^6.5.3 || ^7.4.0
dependencies:
- '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
+ '@angular/core': 19.2.1_rxjs@7.8.1+zone.js@0.15.0
rxjs: 7.8.1
tslib: 2.8.1
dev: true
@@ -1548,8 +1548,8 @@ packages:
'@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
tslib: 2.8.1
- /@angular/core/19.1.3_rxjs@7.8.1+zone.js@0.15.0:
- resolution: {integrity: sha512-Hh1eHvi+y+gsTRODiEEEWnRj5zqv9WNoou1KmQ1mv1NTOf0Pv61Hg9P2rBWDr0mPIXFSzqUKjyzW30BgdQ+AEA==}
+ /@angular/core/19.2.0_rxjs@7.8.1+zone.js@0.15.0:
+ resolution: {integrity: sha512-WKTRltOt3MMWWuhRX7Y9RonKxIYjZeBDE6XRwceHMgaEDS2d8I2D3AIuqizRsgHpJqDPnQnH+vxcek4FivcSGA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
@@ -1560,8 +1560,8 @@ packages:
zone.js: 0.15.0
dev: true
- /@angular/core/19.2.0_rxjs@7.8.1+zone.js@0.15.0:
- resolution: {integrity: sha512-WKTRltOt3MMWWuhRX7Y9RonKxIYjZeBDE6XRwceHMgaEDS2d8I2D3AIuqizRsgHpJqDPnQnH+vxcek4FivcSGA==}
+ /@angular/core/19.2.1_rxjs@7.8.1+zone.js@0.15.0:
+ resolution: {integrity: sha512-gwdytbZSM9m5v9PhRsvh6Q13vI1Ydcx52QGs93bpWx5ACOGYGp/Y7zc2mcZb1aUM63zGBTpS9Qw9bEsPHeLZPA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
@@ -5307,17 +5307,17 @@ packages:
semver: 7.7.1
dev: false
- /@nuxt/devtools/1.7.0_gx3eanpxyarstd2l5jyn7akntm:
+ /@nuxt/devtools/1.7.0_vite@6.0.9+vue@3.5.13:
resolution: {integrity: sha512-uvnjt5Zowkz7tZmnks2cGreg1XZIiSyVzQ2MYiRXACodlXcwJ0dpUS3WTxu8BR562K+772oRdvKie9AQlyZUgg==}
hasBin: true
peerDependencies:
vite: '*'
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.7.0_magicast@0.3.5+vite@6.2.1
+ '@nuxt/devtools-kit': 1.7.0_magicast@0.3.5+vite@6.0.9
'@nuxt/devtools-wizard': 1.7.0
'@nuxt/kit': 3.16.0_magicast@0.3.5
- '@vue/devtools-core': 7.6.8_vite@6.2.1+vue@3.5.13
+ '@vue/devtools-core': 7.6.8_vite@6.0.9+vue@3.5.13
'@vue/devtools-kit': 7.6.8
birpc: 0.2.19
consola: 3.4.0
@@ -5344,11 +5344,11 @@ packages:
semver: 7.7.1
simple-git: 3.27.0
sirv: 3.0.1
- tinyglobby: 0.2.12
- unimport: 3.14.6_rollup@4.35.0
- vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
- vite-plugin-inspect: 0.8.9_b3axkq6gua4lp3ft5va6c2wj3y
- vite-plugin-vue-inspector: 5.3.1_vite@6.2.1
+ tinyglobby: 0.2.10
+ unimport: 3.14.6
+ vite: 6.0.9
+ vite-plugin-inspect: 0.8.9_bvsh322jwpdo7ddnjh6oe5rlyq
+ vite-plugin-vue-inspector: 5.3.1_vite@6.0.9
which: 3.0.1
ws: 8.18.1
transitivePeerDependencies:
@@ -5357,19 +5357,19 @@ packages:
- supports-color
- utf-8-validate
- vue
- dev: true
+ dev: false
- /@nuxt/devtools/1.7.0_vite@6.0.9+vue@3.5.13:
+ /@nuxt/devtools/1.7.0_vite@6.2.1+vue@3.5.13:
resolution: {integrity: sha512-uvnjt5Zowkz7tZmnks2cGreg1XZIiSyVzQ2MYiRXACodlXcwJ0dpUS3WTxu8BR562K+772oRdvKie9AQlyZUgg==}
hasBin: true
peerDependencies:
vite: '*'
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.7.0_magicast@0.3.5+vite@6.0.9
+ '@nuxt/devtools-kit': 1.7.0_magicast@0.3.5+vite@6.2.1
'@nuxt/devtools-wizard': 1.7.0
'@nuxt/kit': 3.16.0_magicast@0.3.5
- '@vue/devtools-core': 7.6.8_vite@6.0.9+vue@3.5.13
+ '@vue/devtools-core': 7.6.8_vite@6.2.1+vue@3.5.13
'@vue/devtools-kit': 7.6.8
birpc: 0.2.19
consola: 3.4.0
@@ -5396,11 +5396,11 @@ packages:
semver: 7.7.1
simple-git: 3.27.0
sirv: 3.0.1
- tinyglobby: 0.2.12
+ tinyglobby: 0.2.10
unimport: 3.14.6
- vite: 6.0.9
- vite-plugin-inspect: 0.8.9_bvsh322jwpdo7ddnjh6oe5rlyq
- vite-plugin-vue-inspector: 5.3.1_vite@6.0.9
+ vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
+ vite-plugin-inspect: 0.8.9_rfi3pg7mxb6hcnrgbo2flrc7ia
+ vite-plugin-vue-inspector: 5.3.1_vite@6.2.1
which: 3.0.1
ws: 8.18.1
transitivePeerDependencies:
@@ -5409,7 +5409,7 @@ packages:
- supports-color
- utf-8-validate
- vue
- dev: false
+ dev: true
/@nuxt/devtools/2.2.1_vite@6.0.9+vue@3.5.13:
resolution: {integrity: sha512-JkFRYLWFoklBuf+Zv6GwS9HPOFMuN3nomApWCnsNg8H7XqlFNIvB+wetmm6+u+43bNApjqE0ne7Y//o0V6FSaA==}
@@ -5462,7 +5462,7 @@ packages:
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
'@nuxt/schema': 3.14.1592
- c12: 2.0.4
+ c12: 2.0.1
consola: 3.4.0
defu: 6.1.4
destr: 2.0.3
@@ -5485,37 +5485,6 @@ packages:
- magicast
- rollup
- supports-color
- dev: false
-
- /@nuxt/kit/3.14.1592_rollup@4.35.0:
- resolution: {integrity: sha512-r9r8bISBBisvfcNgNL3dSIQHSBe0v5YkX5zwNblIC2T0CIEgxEVoM5rq9O5wqgb5OEydsHTtT2hL57vdv6VT2w==}
- engines: {node: ^14.18.0 || >=16.10.0}
- dependencies:
- '@nuxt/schema': 3.14.1592_rollup@4.35.0
- c12: 2.0.4
- consola: 3.4.0
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.1.0
- hash-sum: 2.0.0
- ignore: 6.0.2
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- mlly: 1.7.4
- pathe: 1.1.2
- pkg-types: 1.3.1
- scule: 1.3.0
- semver: 7.7.1
- ufo: 1.5.4
- unctx: 2.4.1
- unimport: 3.14.6_rollup@4.35.0
- untyped: 1.5.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- dev: true
/@nuxt/kit/3.16.0:
resolution: {integrity: sha512-yPfhk58BG6wJhELkGOTCOlkMDbZkizk3IaINcyTKm+hBKiK3SheLt7S9HStNL+qZSfH2Cf7A8sYp6M72lOIEtA==}
@@ -5579,7 +5548,7 @@ packages:
resolution: {integrity: sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
- c12: 2.0.4
+ c12: 2.0.1
compatx: 0.1.8
consola: 3.4.0
defu: 6.1.4
@@ -5596,30 +5565,6 @@ packages:
- magicast
- rollup
- supports-color
- dev: false
-
- /@nuxt/schema/3.14.1592_rollup@4.35.0:
- resolution: {integrity: sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ==}
- engines: {node: ^14.18.0 || >=16.10.0}
- dependencies:
- c12: 2.0.4
- compatx: 0.1.8
- consola: 3.4.0
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.3.1
- scule: 1.3.0
- std-env: 3.8.1
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.14.6_rollup@4.35.0
- untyped: 1.5.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- dev: true
/@nuxt/schema/3.16.0:
resolution: {integrity: sha512-uCpcqWO6C4P5c4vi1/sq5GyajO0EOp+ZWFtPrnKaJ1pXAhA+W1aMVxAjfi2f18QMJHuRXBz1TouFg1RmWA6FuA==}
@@ -5705,7 +5650,7 @@ packages:
h3: 1.15.1
local-pkg: 0.5.1
magic-string: 0.30.17
- nitropack: 2.11.6
+ nitropack: 2.11.6_typescript@5.8.2
node-fetch-native: 1.6.6
ofetch: 1.4.1
pathe: 1.1.2
@@ -5717,98 +5662,14 @@ packages:
unenv: 1.10.0
unplugin: 1.16.1
vite: 6.0.9_jiti@2.4.2
- vitest-environment-nuxt: 1.0.1
- vue: 3.5.13
+ vitest-environment-nuxt: 1.0.1_t42vghp6y4xkqcrv26ib563gve
+ vue: 3.5.13_typescript@5.8.2
vue-router: 4.5.0_vue@3.5.13
transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- magicast
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - terser
- - typescript
dev: true
- /@nuxt/test-utils/3.15.1:
- resolution: {integrity: sha512-+0MsHsE/F4FZcmirRWSqGSSlEGMeNBHXkdHmYU0cM7UItiFIxyVDdIHLkyW4bBvPfI0IRozQlZc8vht9V/5D7Q==}
- engines: {node: ^18.20.4 || ^20.9.0 || ^22.0.0 || >=23.0.0}
- peerDependencies:
- '@cucumber/cucumber': ^10.3.1 || ^11.0.0
- '@jest/globals': ^29.5.0
- '@playwright/test': ^1.43.1
- '@testing-library/vue': ^7.0.0 || ^8.0.1
- '@vitest/ui': '*'
- '@vue/test-utils': ^2.4.2
- happy-dom: ^9.10.9 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0
- jsdom: ^22.0.0 || ^23.0.0 || ^24.0.0 || ^25.0.0
- playwright-core: ^1.43.1
- vitest: ^0.34.6 || ^1.0.0 || ^2.0.0
- peerDependenciesMeta:
- '@cucumber/cucumber':
- optional: true
- '@jest/globals':
- optional: true
- '@playwright/test':
- optional: true
- '@testing-library/vue':
- optional: true
- '@vitest/ui':
- optional: true
- '@vue/test-utils':
- optional: true
- happy-dom:
- optional: true
- jsdom:
- optional: true
- playwright-core:
- optional: true
- vitest:
- optional: true
- dependencies:
- '@nuxt/kit': 3.16.0
- '@nuxt/schema': 3.16.0
- c12: 2.0.4
- consola: 3.4.0
- defu: 6.1.4
- destr: 2.0.3
- estree-walker: 3.0.3
- fake-indexeddb: 6.0.0
- get-port-please: 3.1.2
- h3: 1.15.1
- local-pkg: 0.5.1
- magic-string: 0.30.17
- node-fetch-native: 1.6.6
- ofetch: 1.4.1
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- radix3: 1.1.2
- scule: 1.3.0
- std-env: 3.8.1
- tinyexec: 0.3.2
- ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 2.2.0
- vite: 5.4.14
- vitest-environment-nuxt: 1.0.1
- vue: 3.5.13
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - magicast
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - terser
- - typescript
- dev: true
-
- /@nuxt/vite-builder/3.14.1592_vue@3.5.13:
+ /@nuxt/vite-builder/3.14.1592_athuzuloh4kfrhr5uozaoiw4xa:
resolution: {integrity: sha512-GVS7vkBJAGv13ghmjgGrS2QVyzoqxQ5+cAUrMeMjKbY7GnRY7/uOkoLmznYx8E/U9HBUyHQa+wSN2ZfcSiEytQ==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
@@ -5818,7 +5679,7 @@ packages:
'@rollup/plugin-replace': 6.0.2
'@vitejs/plugin-vue': 5.2.1_vite@5.4.14+vue@3.5.13
'@vitejs/plugin-vue-jsx': 4.1.1_vite@5.4.14+vue@3.5.13
- autoprefixer: 10.4.20_postcss@8.5.3
+ autoprefixer: 10.4.21_postcss@8.5.3
clear: 0.1.0
consola: 3.4.0
cssnano: 7.0.6_postcss@8.5.3
@@ -5844,10 +5705,10 @@ packages:
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.16.1
- vite: 5.4.14
- vite-node: 2.1.9
- vite-plugin-checker: 0.8.0_vite@5.4.14
- vue: 3.5.13
+ vite: 5.4.14_4c45tymmfdin4b4i5tudvmn5ny
+ vite-node: 2.1.9_4c45tymmfdin4b4i5tudvmn5ny
+ vite-plugin-checker: 0.8.0_g2qas7ygesedvhf2ugjm5sssam
+ vue: 3.5.13_typescript@5.5.3
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
@@ -5871,19 +5732,19 @@ packages:
- vls
- vti
- vue-tsc
- dev: false
+ dev: true
- /@nuxt/vite-builder/3.14.1592_yiryvljpiqju3elctnqosjliim:
+ /@nuxt/vite-builder/3.14.1592_vue@3.5.13:
resolution: {integrity: sha512-GVS7vkBJAGv13ghmjgGrS2QVyzoqxQ5+cAUrMeMjKbY7GnRY7/uOkoLmznYx8E/U9HBUyHQa+wSN2ZfcSiEytQ==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.3.4
dependencies:
- '@nuxt/kit': 3.14.1592_rollup@4.35.0
- '@rollup/plugin-replace': 6.0.2_rollup@4.35.0
+ '@nuxt/kit': 3.14.1592
+ '@rollup/plugin-replace': 6.0.2
'@vitejs/plugin-vue': 5.2.1_vite@5.4.14+vue@3.5.13
'@vitejs/plugin-vue-jsx': 4.1.1_vite@5.4.14+vue@3.5.13
- autoprefixer: 10.4.20_postcss@8.5.3
+ autoprefixer: 10.4.21_postcss@8.5.3
clear: 0.1.0
consola: 3.4.0
cssnano: 7.0.6_postcss@8.5.3
@@ -5903,16 +5764,16 @@ packages:
perfect-debounce: 1.0.0
pkg-types: 1.3.1
postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0_rollup@4.35.0
+ rollup-plugin-visualizer: 5.14.0
std-env: 3.8.1
strip-literal: 2.1.1
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.16.1
- vite: 5.4.14_4c45tymmfdin4b4i5tudvmn5ny
- vite-node: 2.1.9_4c45tymmfdin4b4i5tudvmn5ny
- vite-plugin-checker: 0.8.0_g2qas7ygesedvhf2ugjm5sssam
- vue: 3.5.13_typescript@5.5.3
+ vite: 5.4.14
+ vite-node: 2.1.9
+ vite-plugin-checker: 0.8.0_vite@5.4.14
+ vue: 3.5.13
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
@@ -5936,19 +5797,19 @@ packages:
- vls
- vti
- vue-tsc
- dev: true
+ dev: false
- /@nuxt/vite-builder/3.16.0_vue@3.5.13:
+ /@nuxt/vite-builder/3.16.0_potaacg5vf44wwtz5b4udteggy:
resolution: {integrity: sha512-H/mRrDmpWWLIiF1J9jguCKITF0ydFxmgcBcbveQac6vVhaOZunBAv9SsKHZgnH8CDM1v5BnuRNyIQ9y4Y9wW8g==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0.0}
peerDependencies:
vue: ^3.3.4
dependencies:
'@nuxt/kit': 3.16.0
- '@rollup/plugin-replace': 6.0.2
+ '@rollup/plugin-replace': 6.0.2_rollup@4.35.0
'@vitejs/plugin-vue': 5.2.1_vite@6.2.1+vue@3.5.13
'@vitejs/plugin-vue-jsx': 4.1.1_vite@6.2.1+vue@3.5.13
- autoprefixer: 10.4.20_postcss@8.5.3
+ autoprefixer: 10.4.21_postcss@8.5.3
consola: 3.4.0
cssnano: 7.0.6_postcss@8.5.3
defu: 6.1.4
@@ -5967,15 +5828,15 @@ packages:
perfect-debounce: 1.0.0
pkg-types: 2.1.0
postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0
+ rollup-plugin-visualizer: 5.14.0_rollup@4.35.0
std-env: 3.8.1
ufo: 1.5.4
unenv: 2.0.0-rc.14
unplugin: 2.2.0
vite: 6.2.1_jiti@2.4.2
vite-node: 3.0.8_jiti@2.4.2
- vite-plugin-checker: 0.9.0_vite@6.2.1
- vue: 3.5.13
+ vite-plugin-checker: 0.9.0_ptvrnkm6bz64vzfpjx5savnhve
+ vue: 3.5.13_typescript@5.8.2
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
@@ -6194,6 +6055,7 @@ packages:
dependencies:
is-glob: 4.0.3
micromatch: 4.0.8
+ napi-wasm: 1.1.3
bundledDependencies:
- napi-wasm
@@ -7573,7 +7435,6 @@ packages:
dependencies:
'@rollup/pluginutils': 5.1.4
magic-string: 0.30.17
- dev: false
/@rollup/plugin-replace/6.0.2_rollup@4.35.0:
resolution: {integrity: sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==}
@@ -9356,7 +9217,7 @@ packages:
dependencies:
hookable: 5.5.3
unhead: 2.0.0-rc.9
- vue: 3.5.13
+ vue: 3.5.13_typescript@5.8.2
dev: false
/@vercel/nft/0.29.2_rollup@4.35.0:
@@ -9466,7 +9327,7 @@ packages:
'@babel/plugin-transform-typescript': 7.26.8_@babel+core@7.26.9
'@vue/babel-plugin-jsx': 1.3.0_@babel+core@7.26.9
vite: 6.2.1_jiti@2.4.2
- vue: 3.5.13
+ vue: 3.5.13_typescript@5.8.2
transitivePeerDependencies:
- supports-color
dev: false
@@ -9500,7 +9361,7 @@ packages:
vue: ^3.2.25
dependencies:
vite: 6.2.1_jiti@2.4.2
- vue: 3.5.13
+ vue: 3.5.13_typescript@5.8.2
dev: false
/@vitest/coverage-v8/1.6.0_vitest@1.6.0:
@@ -9598,7 +9459,7 @@ packages:
magic-string-ast: 0.7.1
pathe: 2.0.3
picomatch: 4.0.2
- vue: 3.5.13
+ vue: 3.5.13_typescript@5.8.2
/@vue/babel-helper-vue-transform-on/1.3.0:
resolution: {integrity: sha512-vrNyYNQcz1gfc87uuN+Z+On9fFOBQTYRlTUEDovpeCmjuwH83lAm6YM0VBvTx6eRTHg3SU5jP2CD+kSXY30PGg==}
@@ -9693,7 +9554,7 @@ packages:
peerDependencies:
vue: ^3.0.0
dependencies:
- '@vue/devtools-kit': 7.7.2
+ '@vue/devtools-kit': 7.6.8
'@vue/devtools-shared': 7.7.2
mitt: 3.0.1
nanoid: 5.1.3
@@ -9709,7 +9570,7 @@ packages:
peerDependencies:
vue: ^3.0.0
dependencies:
- '@vue/devtools-kit': 7.7.2
+ '@vue/devtools-kit': 7.6.8
'@vue/devtools-shared': 7.7.2
mitt: 3.0.1
nanoid: 5.1.3
@@ -10536,8 +10397,8 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /autoprefixer/10.4.20_postcss@8.5.3:
- resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
+ /autoprefixer/10.4.21_postcss@8.5.3:
+ resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
@@ -10572,7 +10433,7 @@ packages:
/axios/1.7.9:
resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==}
dependencies:
- follow-redirects: 1.15.9_debug@4.4.0
+ follow-redirects: 1.15.9
form-data: 4.0.2
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -10910,28 +10771,6 @@ packages:
perfect-debounce: 1.0.0
pkg-types: 1.3.1
rc9: 2.1.2
- dev: false
-
- /c12/2.0.4:
- resolution: {integrity: sha512-3DbbhnFt0fKJHxU4tEUPmD1ahWE4PWPMomqfYsTJdrhpmEnRKJi3qSC4rO5U6E6zN1+pjBY7+z8fUmNRMaVKLw==}
- peerDependencies:
- magicast: ^0.3.5
- peerDependenciesMeta:
- magicast:
- optional: true
- dependencies:
- chokidar: 4.0.3
- confbox: 0.1.8
- defu: 6.1.4
- dotenv: 16.4.7
- giget: 1.2.5
- jiti: 2.4.2
- mlly: 1.7.4
- ohash: 2.0.11
- pathe: 2.0.3
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- rc9: 2.1.2
/c12/3.0.2:
resolution: {integrity: sha512-6Tzk1/TNeI3WBPpK0j/Ss4+gPj3PUJYbWl/MWDJBThFvwNGNkXtd7Cz8BJtD4aRwoGHtzQD0SnxamgUiBH0/Nw==}
@@ -13495,7 +13334,6 @@ packages:
peerDependenciesMeta:
debug:
optional: true
- dev: true
/follow-redirects/1.15.9_debug@4.4.0:
resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
@@ -13507,6 +13345,7 @@ packages:
optional: true
dependencies:
debug: 4.4.0
+ dev: true
/for-each/0.3.5:
resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
@@ -14258,7 +14097,6 @@ packages:
unplugin: 2.2.0
transitivePeerDependencies:
- rollup
- dev: false
/impound/0.2.1_rollup@4.35.0:
resolution: {integrity: sha512-V+8yPoV8sT3VYNY8A8F/lfox+QShWdb4enaG3ou/k7d5gY20lVwaE6M2O4zI6Z3XGEWSEEh3e+W3G7qfJeYfKA==}
@@ -14270,7 +14108,7 @@ packages:
unplugin: 2.2.0
transitivePeerDependencies:
- rollup
- dev: true
+ dev: false
/imurmurhash/0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
@@ -15931,6 +15769,9 @@ packages:
resolution: {integrity: sha512-9ca1h0Xjvo9bEkE4UOxgAzLV0jHKe6LMaxo37ND2DAhhAtd0j8pR1Wxz+/goMrZO8AEZTWCmyaOsFI/W5AdpCQ==}
dev: false
+ /napi-wasm/1.1.3:
+ resolution: {integrity: sha512-h/4nMGsHjZDCYmQVNODIrYACVJ+I9KItbG+0si6W/jSjdA9JbWDoU4LLeMXVcEQGHjttI2tuXqDrbGF7qkUHHg==}
+
/natural-compare-lite/1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
dev: true
@@ -16128,6 +15969,7 @@ packages:
- supports-color
- typescript
- uploadthing
+ dev: false
/nitropack/2.11.6_typescript@5.5.3:
resolution: {integrity: sha512-iaLzOKYxsNL8G6h9cMFTC/hAN4RfhZsrFzFFzemr6Vfn57MooYEz6KLeUoRyTposlAeEWTVejz8naYOORIrnDg==}
@@ -16242,6 +16084,118 @@ packages:
- uploadthing
dev: true
+ /nitropack/2.11.6_typescript@5.8.2:
+ resolution: {integrity: sha512-iaLzOKYxsNL8G6h9cMFTC/hAN4RfhZsrFzFFzemr6Vfn57MooYEz6KLeUoRyTposlAeEWTVejz8naYOORIrnDg==}
+ engines: {node: ^16.11.0 || >=17.0.0}
+ hasBin: true
+ peerDependencies:
+ xml2js: ^0.6.2
+ peerDependenciesMeta:
+ xml2js:
+ optional: true
+ dependencies:
+ '@cloudflare/kv-asset-handler': 0.3.4
+ '@netlify/functions': 3.0.0
+ '@rollup/plugin-alias': 5.1.1_rollup@4.35.0
+ '@rollup/plugin-commonjs': 28.0.3_rollup@4.35.0
+ '@rollup/plugin-inject': 5.0.5_rollup@4.35.0
+ '@rollup/plugin-json': 6.1.0_rollup@4.35.0
+ '@rollup/plugin-node-resolve': 16.0.0_rollup@4.35.0
+ '@rollup/plugin-replace': 6.0.2_rollup@4.35.0
+ '@rollup/plugin-terser': 0.4.4_rollup@4.35.0
+ '@types/http-proxy': 1.17.16
+ '@vercel/nft': 0.29.2_rollup@4.35.0
+ archiver: 7.0.1
+ c12: 3.0.2_magicast@0.3.5
+ chokidar: 4.0.3
+ citty: 0.1.6
+ compatx: 0.1.8
+ confbox: 0.2.1
+ consola: 3.4.0
+ cookie-es: 2.0.0
+ croner: 9.0.0
+ crossws: 0.3.4
+ db0: 0.3.1
+ defu: 6.1.4
+ destr: 2.0.3
+ dot-prop: 9.0.0
+ esbuild: 0.25.0
+ escape-string-regexp: 5.0.0
+ etag: 1.8.1
+ exsolve: 1.0.4
+ fs-extra: 11.3.0
+ globby: 14.1.0
+ gzip-size: 7.0.0
+ h3: 1.15.1
+ hookable: 5.5.3
+ httpxy: 0.1.7
+ ioredis: 5.6.0
+ jiti: 2.4.2
+ klona: 2.0.6
+ knitwork: 1.2.0
+ listhen: 1.9.0
+ magic-string: 0.30.17
+ magicast: 0.3.5
+ mime: 4.0.6
+ mlly: 1.7.4
+ node-fetch-native: 1.6.6
+ node-mock-http: 1.0.0
+ ofetch: 1.4.1
+ ohash: 2.0.11
+ openapi-typescript: 7.6.1_typescript@5.8.2
+ pathe: 2.0.3
+ perfect-debounce: 1.0.0
+ pkg-types: 2.1.0
+ pretty-bytes: 6.1.1
+ radix3: 1.1.2
+ rollup: 4.35.0
+ rollup-plugin-visualizer: 5.14.0_rollup@4.35.0
+ scule: 1.3.0
+ semver: 7.7.1
+ serve-placeholder: 2.0.2
+ serve-static: 1.16.2
+ source-map: 0.7.4
+ std-env: 3.8.1
+ ufo: 1.5.4
+ ultrahtml: 1.5.3
+ uncrypto: 0.1.3
+ unctx: 2.4.1
+ unenv: 2.0.0-rc.14
+ unimport: 4.1.2
+ unplugin-utils: 0.2.4
+ unstorage: 1.15.0_db0@0.3.1+ioredis@5.6.0
+ untyped: 2.0.0
+ unwasm: 0.3.9
+ youch: 4.1.0-beta.6
+ youch-core: 0.3.2
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@electric-sql/pglite'
+ - '@libsql/client'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - better-sqlite3
+ - drizzle-orm
+ - encoding
+ - idb-keyval
+ - mysql2
+ - rolldown
+ - sqlite3
+ - supports-color
+ - typescript
+ - uploadthing
+
/node-addon-api/6.1.0:
resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
dev: true
@@ -16462,7 +16416,7 @@ packages:
engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
- /nuxt/3.14.1592_hfjqjp6w3rvckby5qzzmeb3n4u:
+ /nuxt/3.14.1592_crdijjrbkat5leu3vz4llrpmey:
resolution: {integrity: sha512-roWAQH4Mb6WY72cNos+YVw0DgTCNAhNygiAMCedM7hbX6ESTR2n3VH7tU0yIWDPe/hfFdii4M4wWTTNHOtS44g==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
@@ -16476,11 +16430,11 @@ packages:
optional: true
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.7.0_gx3eanpxyarstd2l5jyn7akntm
- '@nuxt/kit': 3.14.1592_rollup@4.35.0
- '@nuxt/schema': 3.14.1592_rollup@4.35.0
+ '@nuxt/devtools': 1.7.0_vite@6.2.1+vue@3.5.13
+ '@nuxt/kit': 3.14.1592
+ '@nuxt/schema': 3.14.1592
'@nuxt/telemetry': 2.6.5
- '@nuxt/vite-builder': 3.14.1592_yiryvljpiqju3elctnqosjliim
+ '@nuxt/vite-builder': 3.14.1592_athuzuloh4kfrhr5uozaoiw4xa
'@types/node': 22.13.10
'@unhead/dom': 1.11.20
'@unhead/shared': 1.11.20
@@ -16488,7 +16442,7 @@ packages:
'@unhead/vue': 1.11.20_vue@3.5.13
'@vue/shared': 3.5.13
acorn: 8.14.0
- c12: 2.0.4
+ c12: 2.0.1
chokidar: 4.0.3
compatx: 0.1.8
consola: 3.4.0
@@ -16504,7 +16458,7 @@ packages:
h3: 1.15.1
hookable: 5.5.3
ignore: 6.0.2
- impound: 0.2.1_rollup@4.35.0
+ impound: 0.2.1
jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
@@ -16531,9 +16485,9 @@ packages:
unctx: 2.4.1
unenv: 1.10.0
unhead: 1.11.20
- unimport: 3.14.6_rollup@4.35.0
+ unimport: 3.14.6
unplugin: 1.16.1
- unplugin-vue-router: 0.10.9_jnksuln545bydhffx5f33xmx6y
+ unplugin-vue-router: 0.10.9_4zkhmgh5wx2nmrd47udboenwxe
unstorage: 1.15.0
untyped: 1.5.2
vue: 3.5.13_typescript@5.5.3
@@ -16617,7 +16571,7 @@ packages:
'@unhead/vue': 1.11.20_vue@3.5.13
'@vue/shared': 3.5.13
acorn: 8.14.0
- c12: 2.0.4
+ c12: 2.0.1
chokidar: 4.0.3
compatx: 0.1.8
consola: 3.4.0
@@ -16721,7 +16675,7 @@ packages:
- xml2js
dev: false
- /nuxt/3.16.0_vite@6.0.9:
+ /nuxt/3.16.0_rfsowatrio6jr7glkuhyrhvtsa:
resolution: {integrity: sha512-4j2tuHo+kcComQ1WrCD+i1w3UFOHrcnNH30cwiEY/WZZlBZOlC6DtUm6aBjhfpBFaMYsF4PbyKsNW+7FHwckHA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0.0}
hasBin: true
@@ -16740,7 +16694,7 @@ packages:
'@nuxt/kit': 3.16.0
'@nuxt/schema': 3.16.0
'@nuxt/telemetry': 2.6.5
- '@nuxt/vite-builder': 3.16.0_vue@3.5.13
+ '@nuxt/vite-builder': 3.16.0_potaacg5vf44wwtz5b4udteggy
'@oxc-parser/wasm': 0.56.5
'@unhead/vue': 2.0.0-rc.9_vue@3.5.13
'@vue/shared': 3.5.13
@@ -16761,14 +16715,14 @@ packages:
h3: 1.15.1
hookable: 5.5.3
ignore: 7.0.3
- impound: 0.2.1
+ impound: 0.2.1_rollup@4.35.0
jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
magic-string: 0.30.17
mlly: 1.7.4
nanotar: 0.2.0
- nitropack: 2.11.6
+ nitropack: 2.11.6_typescript@5.8.2
nypm: 0.6.0
ofetch: 1.4.1
ohash: 2.0.11
@@ -16793,7 +16747,7 @@ packages:
unplugin-vue-router: 0.12.0_4zkhmgh5wx2nmrd47udboenwxe
unstorage: 1.15.0
untyped: 2.0.0
- vue: 3.5.13
+ vue: 3.5.13_typescript@5.8.2
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
vue-router: 4.5.0_vue@3.5.13
@@ -17079,6 +17033,7 @@ packages:
parse-json: 8.1.0
supports-color: 9.4.0
yargs-parser: 21.1.1
+ dev: false
/openapi-typescript/7.6.1_typescript@5.5.3:
resolution: {integrity: sha512-F7RXEeo/heF3O9lOXo2bNjCOtfp7u+D6W3a3VNEH2xE6v+fxLtn5nq0uvUcA1F5aT+CMhNeC5Uqtg5tlXFX/ag==}
@@ -17095,6 +17050,20 @@ packages:
yargs-parser: 21.1.1
dev: true
+ /openapi-typescript/7.6.1_typescript@5.8.2:
+ resolution: {integrity: sha512-F7RXEeo/heF3O9lOXo2bNjCOtfp7u+D6W3a3VNEH2xE6v+fxLtn5nq0uvUcA1F5aT+CMhNeC5Uqtg5tlXFX/ag==}
+ hasBin: true
+ peerDependencies:
+ typescript: ^5.x
+ dependencies:
+ '@redocly/openapi-core': 1.33.0_supports-color@9.4.0
+ ansi-colors: 4.1.3
+ change-case: 5.4.4
+ parse-json: 8.1.0
+ supports-color: 9.4.0
+ typescript: 5.8.2
+ yargs-parser: 21.1.1
+
/optionator/0.9.4:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
@@ -18706,7 +18675,6 @@ packages:
picomatch: 4.0.2
source-map: 0.7.4
yargs: 17.7.2
- dev: false
/rollup-plugin-visualizer/5.14.0_rollup@4.35.0:
resolution: {integrity: sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==}
@@ -20528,6 +20496,11 @@ packages:
hasBin: true
dev: true
+ /typescript/5.8.2:
+ resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
/ua-parser-js/0.7.40:
resolution: {integrity: sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ==}
hasBin: true
@@ -20661,28 +20634,6 @@ packages:
unplugin: 1.16.1
transitivePeerDependencies:
- rollup
- dev: false
-
- /unimport/3.14.6_rollup@4.35.0:
- resolution: {integrity: sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g==}
- dependencies:
- '@rollup/pluginutils': 5.1.4_rollup@4.35.0
- acorn: 8.14.1
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.3
- local-pkg: 1.1.1
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 2.0.3
- picomatch: 4.0.2
- pkg-types: 1.3.1
- scule: 1.3.0
- strip-literal: 2.1.1
- unplugin: 1.16.1
- transitivePeerDependencies:
- - rollup
- dev: true
/unimport/4.1.2:
resolution: {integrity: sha512-oVUL7PSlyVV3QRhsdcyYEMaDX8HJyS/CnUonEJTYA3//bWO+o/4gG8F7auGWWWkrrxBQBYOO8DKe+C53ktpRXw==}
@@ -20802,35 +20753,6 @@ packages:
transitivePeerDependencies:
- rollup
- vue
- dev: false
-
- /unplugin-vue-router/0.10.9_jnksuln545bydhffx5f33xmx6y:
- resolution: {integrity: sha512-DXmC0GMcROOnCmN56GRvi1bkkG1BnVs4xJqNvucBUeZkmB245URvtxOfbo3H6q4SOUQQbLPYWd6InzvjRh363A==}
- peerDependencies:
- vue-router: ^4.4.0
- peerDependenciesMeta:
- vue-router:
- optional: true
- dependencies:
- '@babel/types': 7.26.9
- '@rollup/pluginutils': 5.1.4_rollup@4.35.0
- '@vue-macros/common': 1.16.1_vue@3.5.13
- ast-walker-scope: 0.6.2
- chokidar: 3.6.0
- fast-glob: 3.3.3
- json5: 2.2.3
- local-pkg: 0.5.1
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 1.1.2
- scule: 1.3.0
- unplugin: 2.0.0-beta.1
- vue-router: 4.5.0_vue@3.5.13
- yaml: 2.7.0
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
/unplugin-vue-router/0.12.0_4zkhmgh5wx2nmrd47udboenwxe:
resolution: {integrity: sha512-xjgheKU0MegvXQcy62GVea0LjyOdMxN0/QH+ijN29W62ZlMhG7o7K+0AYqfpprvPwpWtuRjiyC5jnV2SxWye2w==}
@@ -20878,7 +20800,7 @@ packages:
resolution: {integrity: sha512-m1ekpSwuOT5hxkJeZGRxO7gXbXT3gF26NjQ7GdVHoLoF8/nopLcd/QfPigpCy7i51oFHiRJg/CyHhj4vs2+KGw==}
engines: {node: '>=18.12.0'}
dependencies:
- acorn: 8.14.0
+ acorn: 8.14.1
webpack-virtual-modules: 0.6.2
/unstorage/1.15.0:
@@ -21432,7 +21354,7 @@ packages:
vscode-uri: 3.1.0
dev: false
- /vite-plugin-checker/0.9.0_vite@6.2.1:
+ /vite-plugin-checker/0.9.0_ptvrnkm6bz64vzfpjx5savnhve:
resolution: {integrity: sha512-gf/zc0KWX8ATEOgnpgAM1I+IbvWkkO80RB+FxlLtC5cabXSesbJmAUw6E+mMDDMGIT+VHAktmxJZpMTt3lSubQ==}
engines: {node: '>=14.16'}
peerDependencies:
@@ -21474,11 +21396,12 @@ packages:
strip-ansi: 7.1.0
tiny-invariant: 1.3.3
tinyglobby: 0.2.12
+ typescript: 5.8.2
vite: 6.2.1_jiti@2.4.2
vscode-uri: 3.1.0
dev: false
- /vite-plugin-inspect/0.8.9_b3axkq6gua4lp3ft5va6c2wj3y:
+ /vite-plugin-inspect/0.8.9_bvsh322jwpdo7ddnjh6oe5rlyq:
resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
engines: {node: '>=14'}
peerDependencies:
@@ -21490,7 +21413,7 @@ packages:
dependencies:
'@antfu/utils': 0.7.10
'@nuxt/kit': 3.16.0_magicast@0.3.5
- '@rollup/pluginutils': 5.1.4_rollup@4.35.0
+ '@rollup/pluginutils': 5.1.4
debug: 4.4.0
error-stack-parser-es: 0.1.5
fs-extra: 11.3.0
@@ -21498,13 +21421,13 @@ packages:
perfect-debounce: 1.0.0
picocolors: 1.1.1
sirv: 3.0.1
- vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
+ vite: 6.0.9
transitivePeerDependencies:
- rollup
- supports-color
- dev: true
+ dev: false
- /vite-plugin-inspect/0.8.9_bvsh322jwpdo7ddnjh6oe5rlyq:
+ /vite-plugin-inspect/0.8.9_rfi3pg7mxb6hcnrgbo2flrc7ia:
resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
engines: {node: '>=14'}
peerDependencies:
@@ -21524,11 +21447,11 @@ packages:
perfect-debounce: 1.0.0
picocolors: 1.1.1
sirv: 3.0.1
- vite: 6.0.9
+ vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
transitivePeerDependencies:
- rollup
- supports-color
- dev: false
+ dev: true
/vite-plugin-inspect/0.8.9_vite@6.0.9:
resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
@@ -21649,7 +21572,7 @@ packages:
pathe: 2.0.3
source-map-js: 1.2.1
vite: 6.0.9_jiti@2.4.2
- vue: 3.5.13
+ vue: 3.5.13_typescript@5.8.2
dev: false
/vite/5.4.14:
@@ -22177,31 +22100,27 @@ packages:
- universal-cookie
dev: true
- /vitest-environment-nuxt/1.0.1:
+ /vitest-environment-nuxt/1.0.1_t42vghp6y4xkqcrv26ib563gve:
resolution: {integrity: sha512-eBCwtIQriXW5/M49FjqNKfnlJYlG2LWMSNFsRVKomc8CaMqmhQPBS5LZ9DlgYL9T8xIVsiA6RZn2lk7vxov3Ow==}
dependencies:
- '@nuxt/test-utils': 3.15.1
+ '@nuxt/test-utils': 3.14.0_t42vghp6y4xkqcrv26ib563gve
transitivePeerDependencies:
- '@cucumber/cucumber'
- '@jest/globals'
- '@playwright/test'
- '@testing-library/vue'
- - '@types/node'
- '@vitest/ui'
- '@vue/test-utils'
+ - h3
- happy-dom
- jsdom
- - less
- - lightningcss
- magicast
+ - nitropack
- playwright-core
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - terser
- - typescript
+ - vite
- vitest
+ - vue
+ - vue-router
dev: true
/vitest/1.6.0:
@@ -22463,7 +22382,7 @@ packages:
vue: ^3.2.0
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.13
+ vue: 3.5.13_typescript@5.8.2
/vue-tsc/2.2.0_typescript@5.5.3:
resolution: {integrity: sha512-gtmM1sUuJ8aSb0KoAFmK9yMxb8TxjewmxqTJ1aKphD5Cbu0rULFY6+UQT51zW7SpUcenfPUuflKyVwyx9Qdnxg==}
@@ -22505,6 +22424,21 @@ packages:
'@vue/shared': 3.5.13
typescript: 5.5.3
+ /vue/3.5.13_typescript@5.8.2:
+ resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@vue/compiler-dom': 3.5.13
+ '@vue/compiler-sfc': 3.5.13
+ '@vue/runtime-dom': 3.5.13
+ '@vue/server-renderer': 3.5.13_vue@3.5.13
+ '@vue/shared': 3.5.13
+ typescript: 5.8.2
+
/w3c-xmlserializer/5.0.0:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
engines: {node: '>=18'}
From 979e3404d04e76a60cb09d1a3e6baaeec69f30fd Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Thu, 27 Mar 2025 16:14:04 +0100
Subject: [PATCH 07/18] zwischenstand
---
packages/client-angular/src/client.ts | 132 +++++--------------
packages/client-angular/src/index.ts | 181 +-------------------------
packages/client-angular/src/types.ts | 24 +---
3 files changed, 42 insertions(+), 295 deletions(-)
diff --git a/packages/client-angular/src/client.ts b/packages/client-angular/src/client.ts
index a0b5c5986..e892bdc8e 100644
--- a/packages/client-angular/src/client.ts
+++ b/packages/client-angular/src/client.ts
@@ -1,36 +1,36 @@
-import type { HttpClient } from '@angular/common/http';
+import type { HttpErrorResponse } from '@angular/common/http';
import {
- type HttpErrorResponse,
- HttpEventType,
- HttpRequest,
+ HttpClient,
+ HttpHeaders,
type HttpResponse,
} from '@angular/common/http';
-import { provideAppInitializer } from '@angular/core';
-import { filter, firstValueFrom, map } from 'rxjs';
+import { inject, provideAppInitializer } from '@angular/core';
+import { firstValueFrom } from 'rxjs';
-import type { Client, Config, RequestOptions } from './types';
+import type { Client, Config } from './types';
import {
buildUrl,
createConfig,
- createInterceptors,
mergeConfigs,
mergeHeaders,
setAuthParams,
} from './utils';
-type ReqInit = Omit & {
- body?: any;
- headers: ReturnType;
-};
-
export let _defaultHttpClient: HttpClient;
-export function provideHeyApiClient(httpClientGetter: () => HttpClient) {
+export function provideHeyApiClient() {
+ console.log('@hey-api will init');
return provideAppInitializer(() => {
- _defaultHttpClient = httpClientGetter();
+ console.log('@hey-api client initialized');
+ _defaultHttpClient = inject(HttpClient);
});
}
+export function updateHeyApiHttpClient(httpClient: HttpClient) {
+ console.log('@hey-api httpClient updated');
+ _defaultHttpClient = httpClient;
+}
+
export const createClient = (config: Config = {}): Client => {
let _config = mergeConfigs(createConfig(), config);
@@ -41,13 +41,6 @@ export const createClient = (config: Config = {}): Client => {
return getConfig();
};
- const interceptors = createInterceptors<
- HttpRequest,
- HttpResponse,
- HttpErrorResponse,
- RequestOptions
- >();
-
const request: Client['request'] = async (options) => {
const opts = {
..._config,
@@ -66,96 +59,40 @@ export const createClient = (config: Config = {}): Client => {
opts.body = opts.bodySerializer(opts.body);
}
- // remove Content-Type header if body is empty to avoid sending invalid requests
+ // Remove Content-Type header if body is empty to avoid sending invalid requests
if (!opts.body) {
opts.headers.delete('Content-Type');
}
const url = buildUrl(opts);
- const { method, ...requestInit }: ReqInit = {
- redirect: 'follow',
- ...opts,
- };
-
const _httpClient = opts.httpClient ?? _defaultHttpClient;
- let _request = new HttpRequest(method, url, requestInit);
-
- for (const fn of interceptors.request._fns) {
- _request = await fn(_request, opts);
- }
try {
- let response = await firstValueFrom(
- _httpClient.request(_request).pipe(
- filter((event) => event.type === HttpEventType.Response),
- map((event) => event as HttpResponse),
- ),
- );
-
- for (const fn of interceptors.response._fns) {
- response = await fn(response, _request, opts);
- }
+ // Return the raw HTTP response directly
+ const response = (await firstValueFrom(
+ _httpClient.request(opts.method ?? 'GET', url, {
+ body: opts.body,
+ headers: new HttpHeaders(opts.headers),
+ observe: 'response' as const, // Ensures we get the full HttpResponse
+ // responseType: opts.responseType ?? 'json' as 'json' | 'text' | 'blob',
+ responseType: 'json',
+ // withCredentials: opts.withCredentials ?? false,
+ }),
+ )) as HttpResponse;
- const result = {
- request: _request,
+ return {
+ data: response.body,
response,
- };
-
- if (response.ok) {
- if (
- response.status === 204 ||
- response.headers.get('Content-Length') === '0'
- ) {
- return {
- data: {},
- ...result,
- };
- }
-
- // const parseAs =
- // (opts.parseAs === 'auto'
- // ? getParseAs(response.headers.get('Content-Type'))
- // : opts.parseAs) ?? 'json';
-
- let data = response.body;
- // if (parseAs === 'stream') {
- // return {
- // data: response.body,
- // ...result,
- // };
- // }
-
- // let data = await response[parseAs]();
- // if (parseAs === 'json') {
- if (opts.responseValidator) {
- await opts.responseValidator(data);
- }
-
- if (opts.responseTransformer) {
- data = await opts.responseTransformer(data);
- }
- // }
-
- return {
- data,
- ...result,
- };
- }
+ } as any;
} catch (err) {
- let finalError = err;
-
- for (const fn of interceptors.error._fns) {
- finalError = await fn(err, err, _request, opts);
- }
-
if (opts.throwOnError) {
- throw finalError;
+ throw err;
}
return {
- error: finalError,
- ...err,
- };
+ error: err as HttpErrorResponse,
+ response: err as HttpErrorResponse,
+ } as any;
}
};
@@ -166,7 +103,6 @@ export const createClient = (config: Config = {}): Client => {
get: (options) => request({ ...options, method: 'GET' }),
getConfig,
head: (options) => request({ ...options, method: 'HEAD' }),
- interceptors,
options: (options) => request({ ...options, method: 'OPTIONS' }),
patch: (options) => request({ ...options, method: 'PATCH' }),
post: (options) => request({ ...options, method: 'POST' }),
diff --git a/packages/client-angular/src/index.ts b/packages/client-angular/src/index.ts
index 9b20434da..96f944dd1 100644
--- a/packages/client-angular/src/index.ts
+++ b/packages/client-angular/src/index.ts
@@ -1,182 +1,5 @@
-// import {
-// HttpClient,
-// type HttpErrorResponse,
-// HttpEventType,
-// HttpRequest,
-// type HttpResponse,
-// } from '@angular/common/http';
-
-// import { HttpClient } from '@angular/common/http';
-// import { provideHttpClient } from '@angular/common/http';
-
-import { _defaultHttpClient } from './client';
-import type { Client, Config } from './types';
-import {
- buildUrl,
- createConfig,
- createInterceptors,
- mergeConfigs,
- mergeHeaders,
- setAuthParams,
-} from './utils';
-
-type ReqInit = Omit & {
- body?: any;
- headers: ReturnType;
-};
-
-export const createClient = (config: Config = {}): Client => {
- let _config = mergeConfigs(createConfig(), config);
-
- const getConfig = (): Config => ({ ..._config });
-
- const setConfig = (config: Config): Config => {
- _config = mergeConfigs(_config, config);
- return getConfig();
- };
-
- const interceptors = createInterceptors<
- any,
- any,
- any,
- any
- // HttpRequest,
- // HttpResponse,
- // HttpErrorResponse,
- // RequestOptions
- >();
-
- const request: Client['request'] = async (options) => {
- const opts = {
- ..._config,
- ...options,
- headers: mergeHeaders(_config.headers, options.headers),
- };
-
- if (opts.security) {
- await setAuthParams({
- ...opts,
- security: opts.security,
- });
- }
-
- if (opts.body && opts.bodySerializer) {
- opts.body = opts.bodySerializer(opts.body);
- }
-
- // remove Content-Type header if body is empty to avoid sending invalid requests
- if (!opts.body) {
- opts.headers.delete('Content-Type');
- }
-
- const url = buildUrl(opts);
- const { method, ...requestInit }: ReqInit = {
- redirect: 'follow',
- ...opts,
- };
-
- const _httpClient = opts.httpClient ?? _defaultHttpClient;
-
- return [_httpClient, url, method, requestInit] as any;
- // let _request = new HttpRequest(method, url, requestInit);
-
- // for (const fn of interceptors.request._fns) {
- // _request = await fn(_request, opts);
- // }
- // try {
- // let response = await firstValueFrom(
- // _httpClient.request(_request).pipe(
- // filter((event) => event.type === HttpEventType.Response),
- // map((event) => event as HttpResponse),
- // ),
- // );
-
- // for (const fn of interceptors.response._fns) {
- // response = await fn(response, _request, opts);
- // }
-
- // const result = {
- // request: _request,
- // response,
- // };
-
- // if (response.ok) {
- // if (
- // response.status === 204 ||
- // response.headers.get('Content-Length') === '0'
- // ) {
- // return {
- // data: {},
- // ...result,
- // };
- // }
-
- // // const parseAs =
- // // (opts.parseAs === 'auto'
- // // ? getParseAs(response.headers.get('Content-Type'))
- // // : opts.parseAs) ?? 'json';
-
- // let data = response.body;
- // // if (parseAs === 'stream') {
- // // return {
- // // data: response.body,
- // // ...result,
- // // };
- // // }
-
- // // let data = await response[parseAs]();
- // // if (parseAs === 'json') {
- // if (opts.responseValidator) {
- // await opts.responseValidator(data);
- // }
-
- // if (opts.responseTransformer) {
- // data = await opts.responseTransformer(data);
- // }
- // // }
-
- // return {
- // data,
- // ...result,
- // };
- // }
- // } catch (err) {
- // let finalError = err;
-
- // for (const fn of interceptors.error._fns) {
- // finalError = await fn(err, err, _request, opts);
- // }
-
- // if (opts.throwOnError) {
- // throw finalError;
- // }
-
- // return {
- // error: finalError,
- // ...err,
- // };
- // }
- };
-
- return {
- buildUrl,
- connect: (options) => request({ ...options, method: 'CONNECT' }),
- delete: (options) => request({ ...options, method: 'DELETE' }),
- get: (options) => request({ ...options, method: 'GET' }),
- getConfig,
- head: (options) => request({ ...options, method: 'HEAD' }),
- interceptors,
- options: (options) => request({ ...options, method: 'OPTIONS' }),
- patch: (options) => request({ ...options, method: 'PATCH' }),
- post: (options) => request({ ...options, method: 'POST' }),
- put: (options) => request({ ...options, method: 'PUT' }),
- request,
- setConfig,
- trace: (options) => request({ ...options, method: 'TRACE' }),
- };
-};
-
-export { provideHeyApiClient } from './client';
+export { createClient } from './client';
+export { provideHeyApiClient, updateHeyApiHttpClient } from './client';
export type {
Client,
ClientOptions,
diff --git a/packages/client-angular/src/types.ts b/packages/client-angular/src/types.ts
index c231182f5..cc048881a 100644
--- a/packages/client-angular/src/types.ts
+++ b/packages/client-angular/src/types.ts
@@ -1,7 +1,6 @@
import type {
HttpClient,
HttpErrorResponse,
- HttpRequest,
HttpResponse,
} from '@angular/common/http';
import type {
@@ -10,8 +9,6 @@ import type {
Config as CoreConfig,
} from '@hey-api/client-core';
-import type { Middleware } from './utils';
-
export interface Config
extends Omit,
CoreConfig {
@@ -64,21 +61,19 @@ export interface RequestOptions<
export type RequestResult<
TData = unknown,
- TError = unknown,
+ TError extends HttpErrorResponse = HttpErrorResponse,
ThrowOnError extends boolean = boolean,
> = ThrowOnError extends true
? Promise<{
data: TData;
- request: Request;
- response: Response;
+ response: HttpResponse;
}>
: Promise<
(
| { data: TData; error: undefined }
| { data: undefined; error: TError }
) & {
- request: Request;
- response: Response;
+ response: HttpResponse;
}
>;
@@ -89,7 +84,7 @@ export interface ClientOptions {
type MethodFn = <
TData = unknown,
- TError = unknown,
+ TError extends HttpErrorResponse = HttpErrorResponse,
ThrowOnError extends boolean = false,
>(
options: Omit, 'method'>,
@@ -97,7 +92,7 @@ type MethodFn = <
type RequestFn = <
TData = unknown,
- TError = unknown,
+ TError extends HttpErrorResponse = HttpErrorResponse,
ThrowOnError extends boolean = false,
>(
options: Omit, 'method'> &
@@ -115,14 +110,7 @@ type BuildUrlFn = <
options: Pick & Options,
) => string;
-export type Client = CoreClient & {
- interceptors: Middleware<
- HttpRequest,
- HttpResponse,
- HttpErrorResponse,
- RequestOptions
- >;
-};
+export type Client = CoreClient;
/**
* The `createClientConfig()` function will be called on client initialization
From 8b8b612df7d10bb0554cafa82e07a4677628847b Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Thu, 27 Mar 2025 16:59:06 +0100
Subject: [PATCH 08/18] stuff that may work
---
packages/client-angular/package.json | 4 ++--
packages/client-angular/src/client.ts | 4 +++-
packages/client-angular/src/types.ts | 12 ++++--------
3 files changed, 9 insertions(+), 11 deletions(-)
diff --git a/packages/client-angular/package.json b/packages/client-angular/package.json
index 2dcdbc595..c27747d53 100644
--- a/packages/client-angular/package.json
+++ b/packages/client-angular/package.json
@@ -68,11 +68,11 @@
"@angular/common": "^19.2.0",
"@angular/core": "^19.2.0",
"@hey-api/client-core": "workspace:*",
- "rxjs": "7.8.1"
+ "rxjs": "~7.8.1"
},
"peerDependencies": {
"@angular/common": "^19.2.0",
"@angular/core": "^19.2.0",
- "rxjs": "7.8.1"
+ "rxjs": "~7.8.1"
}
}
diff --git a/packages/client-angular/src/client.ts b/packages/client-angular/src/client.ts
index e892bdc8e..f7d342397 100644
--- a/packages/client-angular/src/client.ts
+++ b/packages/client-angular/src/client.ts
@@ -89,8 +89,10 @@ export const createClient = (config: Config = {}): Client => {
throw err;
}
+ const error = err as HttpErrorResponse;
+
return {
- error: err as HttpErrorResponse,
+ error: error.error,
response: err as HttpErrorResponse,
} as any;
}
diff --git a/packages/client-angular/src/types.ts b/packages/client-angular/src/types.ts
index cc048881a..5455714e9 100644
--- a/packages/client-angular/src/types.ts
+++ b/packages/client-angular/src/types.ts
@@ -1,8 +1,4 @@
-import type {
- HttpClient,
- HttpErrorResponse,
- HttpResponse,
-} from '@angular/common/http';
+import type { HttpClient, HttpResponse } from '@angular/common/http';
import type {
Auth,
Client as CoreClient,
@@ -61,7 +57,7 @@ export interface RequestOptions<
export type RequestResult<
TData = unknown,
- TError extends HttpErrorResponse = HttpErrorResponse,
+ TError = unknown,
ThrowOnError extends boolean = boolean,
> = ThrowOnError extends true
? Promise<{
@@ -84,7 +80,7 @@ export interface ClientOptions {
type MethodFn = <
TData = unknown,
- TError extends HttpErrorResponse = HttpErrorResponse,
+ TError = unknown,
ThrowOnError extends boolean = false,
>(
options: Omit, 'method'>,
@@ -92,7 +88,7 @@ type MethodFn = <
type RequestFn = <
TData = unknown,
- TError extends HttpErrorResponse = HttpErrorResponse,
+ TError = unknown,
ThrowOnError extends boolean = false,
>(
options: Omit, 'method'> &
From e7179a65236277c983c9171fd8521b16fc7cd11d Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Thu, 27 Mar 2025 17:31:04 +0100
Subject: [PATCH 09/18] somwhat cleanup
---
packages/client-angular/src/client.ts | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/packages/client-angular/src/client.ts b/packages/client-angular/src/client.ts
index f7d342397..4c41389e2 100644
--- a/packages/client-angular/src/client.ts
+++ b/packages/client-angular/src/client.ts
@@ -4,7 +4,7 @@ import {
HttpHeaders,
type HttpResponse,
} from '@angular/common/http';
-import { inject, provideAppInitializer } from '@angular/core';
+import { inject, isDevMode, provideAppInitializer } from '@angular/core';
import { firstValueFrom } from 'rxjs';
import type { Client, Config } from './types';
@@ -19,10 +19,12 @@ import {
export let _defaultHttpClient: HttpClient;
export function provideHeyApiClient() {
- console.log('@hey-api will init');
return provideAppInitializer(() => {
- console.log('@hey-api client initialized');
_defaultHttpClient = inject(HttpClient);
+
+ if (isDevMode()) {
+ console.info('@hey-api client initialized');
+ }
});
}
From f460b15c659f4af1cc79ef3221f0285a5f5a8dc5 Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Thu, 27 Mar 2025 17:39:14 +0100
Subject: [PATCH 10/18] vers
---
packages/client-angular/package.json | 2 +-
packages/openapi-ts/package.json | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/client-angular/package.json b/packages/client-angular/package.json
index c27747d53..4115775a9 100644
--- a/packages/client-angular/package.json
+++ b/packages/client-angular/package.json
@@ -1,6 +1,6 @@
{
"name": "@hey-api/client-angular",
- "version": "0.7.2",
+ "version": "0.7.2-angular-client-poc",
"description": "🚀 Fetch API client for `@hey-api/openapi-ts` codegen.",
"homepage": "https://heyapi.dev/",
"repository": {
diff --git a/packages/openapi-ts/package.json b/packages/openapi-ts/package.json
index dde7dc993..35c15d7d3 100644
--- a/packages/openapi-ts/package.json
+++ b/packages/openapi-ts/package.json
@@ -1,6 +1,6 @@
{
"name": "@hey-api/openapi-ts",
- "version": "0.64.10",
+ "version": "0.64.10-angular-client-poc",
"description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.",
"homepage": "https://heyapi.dev/",
"repository": {
From 4df1c9eeb912ba14047cc2732c4f84ef7f2d83ae Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Thu, 27 Mar 2025 17:43:23 +0100
Subject: [PATCH 11/18] temp org
---
packages/client-angular/package.json | 2 +-
packages/openapi-ts/package.json | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/client-angular/package.json b/packages/client-angular/package.json
index 4115775a9..229f64105 100644
--- a/packages/client-angular/package.json
+++ b/packages/client-angular/package.json
@@ -1,5 +1,5 @@
{
- "name": "@hey-api/client-angular",
+ "name": "@mscopp/client-angular",
"version": "0.7.2-angular-client-poc",
"description": "🚀 Fetch API client for `@hey-api/openapi-ts` codegen.",
"homepage": "https://heyapi.dev/",
diff --git a/packages/openapi-ts/package.json b/packages/openapi-ts/package.json
index 35c15d7d3..9dd69ee8e 100644
--- a/packages/openapi-ts/package.json
+++ b/packages/openapi-ts/package.json
@@ -1,5 +1,5 @@
{
- "name": "@hey-api/openapi-ts",
+ "name": "@mscopp/openapi-ts",
"version": "0.64.10-angular-client-poc",
"description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.",
"homepage": "https://heyapi.dev/",
From eb220f74e1b62444a84ed73071e7c7086e585959 Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 13 Apr 2025 15:20:52 +0200
Subject: [PATCH 12/18] remove logs
---
packages/client-angular/src/client.ts | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/packages/client-angular/src/client.ts b/packages/client-angular/src/client.ts
index 4c41389e2..f0d89fa84 100644
--- a/packages/client-angular/src/client.ts
+++ b/packages/client-angular/src/client.ts
@@ -4,7 +4,7 @@ import {
HttpHeaders,
type HttpResponse,
} from '@angular/common/http';
-import { inject, isDevMode, provideAppInitializer } from '@angular/core';
+import { inject, provideAppInitializer } from '@angular/core';
import { firstValueFrom } from 'rxjs';
import type { Client, Config } from './types';
@@ -21,18 +21,9 @@ export let _defaultHttpClient: HttpClient;
export function provideHeyApiClient() {
return provideAppInitializer(() => {
_defaultHttpClient = inject(HttpClient);
-
- if (isDevMode()) {
- console.info('@hey-api client initialized');
- }
});
}
-export function updateHeyApiHttpClient(httpClient: HttpClient) {
- console.log('@hey-api httpClient updated');
- _defaultHttpClient = httpClient;
-}
-
export const createClient = (config: Config = {}): Client => {
let _config = mergeConfigs(createConfig(), config);
From 1cdd805ab15865ae14ea99c72b0aba3bab1af18f Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 13 Apr 2025 15:24:54 +0200
Subject: [PATCH 13/18] rename
---
packages/client-angular/package.json | 2 +-
.../client/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo | 1 +
.../v2/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo | 1 +
.../v3/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo | 1 +
4 files changed, 4 insertions(+), 1 deletion(-)
create mode 100644 packages/openapi-ts/test/e2e/generated/client/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
create mode 100644 packages/openapi-ts/test/e2e/generated/v2/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
create mode 100644 packages/openapi-ts/test/e2e/generated/v3/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
diff --git a/packages/client-angular/package.json b/packages/client-angular/package.json
index 229f64105..4115775a9 100644
--- a/packages/client-angular/package.json
+++ b/packages/client-angular/package.json
@@ -1,5 +1,5 @@
{
- "name": "@mscopp/client-angular",
+ "name": "@hey-api/client-angular",
"version": "0.7.2-angular-client-poc",
"description": "🚀 Fetch API client for `@hey-api/openapi-ts` codegen.",
"homepage": "https://heyapi.dev/",
diff --git a/packages/openapi-ts/test/e2e/generated/client/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo b/packages/openapi-ts/test/e2e/generated/client/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
new file mode 100644
index 000000000..2918088ec
--- /dev/null
+++ b/packages/openapi-ts/test/e2e/generated/client/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
@@ -0,0 +1 @@
+{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/tslib/tslib.d.ts","../../../../src/main.ngtypecheck.ts","../../../../node_modules/rxjs/dist/types/internal/subscription.d.ts","../../../../node_modules/rxjs/dist/types/internal/subscriber.d.ts","../../../../node_modules/rxjs/dist/types/internal/operator.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/types.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audittime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffercount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/catcherror.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debouncetime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/defaultifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delaywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilchanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilkeychanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/elementat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/endwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/findindex.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../../../../node_modules/rxjs/dist/types/internal/subject.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/groupby.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/ignoreelements.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/isempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/notification.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/flatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergescan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectableobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/observeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/onerrorresumenextwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishbehavior.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishlast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishreplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/racewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeatwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retrywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/refcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sampletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sequenceequal.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sharereplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skiplast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipwhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/startwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/subscribeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchscan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takelast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takewhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throwifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeinterval.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeoutwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/toarray.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/withlatestfrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipwith.d.ts","../../../../node_modules/rxjs/dist/types/operators/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/action.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testmessage.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionlog.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionloggable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/coldobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/hotobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/timerhandle.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncaction.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/virtualtimescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testscheduler.d.ts","../../../../node_modules/rxjs/dist/types/testing/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/dom/animationframes.d.ts","../../../../node_modules/rxjs/dist/types/internal/behaviorsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/replaysubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/asyncsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asapscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queuescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/isobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/lastvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/firstvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/argumentoutofrangeerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/emptyerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/notfounderror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/objectunsubscribederror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/sequenceerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/unsubscriptionerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindcallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindnodecallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/anycatcher.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/forkjoin.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromevent.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromeventpattern.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/onerrorresumenext.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/throwerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../../../../node_modules/rxjs/dist/types/internal/config.d.ts","../../../../node_modules/rxjs/dist/types/index.d.ts","../../../../node_modules/@angular/core/primitives/signals/index.d.ts","../../../../node_modules/@angular/core/index.d.ts","../../../../node_modules/@angular/common/index.d.ts","../../../../node_modules/@angular/common/http/index.d.ts","../../../../node_modules/@angular/platform-browser/index.d.ts","../../../../node_modules/@angular/platform-browser-dynamic/index.d.ts","../../../../src/client/apimodule.ngtypecheck.ts","../../../../src/client/core/angularhttprequest.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ts","../../../../src/client/core/basehttprequest.ngtypecheck.ts","../../../../src/client/core/openapi.ngtypecheck.ts","../../../../src/client/core/openapi.ts","../../../../src/client/core/basehttprequest.ts","../../../../src/client/core/request.ngtypecheck.ts","../../../../src/client/core/apierror.ngtypecheck.ts","../../../../src/client/core/apiresult.ngtypecheck.ts","../../../../src/client/core/apiresult.ts","../../../../src/client/core/apierror.ts","../../../../src/client/core/request.ts","../../../../src/client/core/angularhttprequest.ts","../../../../src/client/services.gen.ngtypecheck.ts","../../../../src/client/types.gen.ngtypecheck.ts","../../../../src/client/types.gen.ts","../../../../src/client/services.gen.ts","../../../../src/client/apimodule.ts","../../../../src/main.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ecf5cb089ea438f2545e04b6c52828c68d0b0f4bfaa661986faf36da273e9892","95444fb6292d5e2f7050d7021383b719c0252bf5f88854973977db9e3e3d8006","241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","06540a9f3f2f88375ada0b89712de1c4310f7398d821c4c10ab5c6477dafb4bc",{"version":"de2d3120ed0989dbc776de71e6c0e8a6b4bf1935760cf468ff9d0e9986ef4c09","affectsGlobalScope":true},"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","97bdf234f5db52085d99c6842db560bca133f8a0413ff76bf830f5f38f088ce3","a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","b493ff8a5175cbbb4e6e8bcfa9506c08f5a7318b2278365cfca3b397c9710ebc","e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","303ee143a869e8f605e7b1d12be6c7269d4cab90d230caba792495be595d4f56","89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","a5eb4835ab561c140ffc4634bb039387d5d0cceebb86918f1696c7ac156d26fd","c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","4252b852dd791305da39f6e1242694c2e560d5e46f9bb26e2aca77252057c026","0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","ba13c7d46a560f3d4df8ffb1110e2bbec5801449af3b1240a718514b5576156e","6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","05c4e2a992bb83066a3a648bad1c310cecd4d0628d7e19545bb107ac9596103a","b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","dd6c3362aaaec60be028b4ba292806da8e7020eef7255c7414ce4a5c3a7138ef","8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","3114b315cd0687aad8b57cff36f9c8c51f5b1bc6254f1b1e8446ae583d8e2474","0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","af733cb878419f3012f0d4df36f918a69ba38d73f3232ba1ab46ef9ede6cb29c","cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","0a01b0b5a9e87d04737084731212106add30f63ec640169f1462ba2e44b6b3a8","06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","e07d62a8a9a3bb65433a62e9bbf400c6bfd2df4de60652af4d738303ee3670a1","bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","851e8d57d6dd17c71e9fa0319abd20ab2feb3fb674d0801611a09b7a25fd281c","c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","748e79252a7f476f8f28923612d7696b214e270cc909bc685afefaac8f052af0","9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","c3f32a185cd27ac232d3428a8d9b362c3f7b4892a58adaaa022828a7dcd13eed","3139c3e5e09251feec7a87f457084bee383717f3626a7f1459d053db2f34eb76","4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","3be870c8e17ec14f1c18fc248f5d2c4669e576404744ff5c63e6dafcf05b97ea","56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","6ab380571d87bd1d6f644fb6ab7837239d54b59f07dc84347b1341f866194214","547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","7c9ed7ffdc6f843ab69e5b2a3e7f667b050dd8d24d0052db81e35480f6d4e15d","7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","3656f0584d5a7ee0d0f2cc2b9cffbb43af92e80186b2ce160ebd4421d1506655","a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","90f690a1c5fcb4c2d19c80fea05c8ab590d8f6534c4c296d70af6293ede67366","be95e987818530082c43909be722a838315a0fc5deb6043de0a76f5221cbad24","9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","1f6058d60eaa8825f59d4b76bbf6cc0e6ad9770948be58de68587b0931da00cc","5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","50100b1a91f61d81ca3329a98e64b7f05cddc5e3cb26b3411adc137c9c631aca","11aceaee5663b4ed597544567d6e6a5a94b66857d7ebd62a9875ea061018cd2c","6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","4bb6035e906946163ecfaec982389d0247ceeac6bdee7f1d07c03d9c224db3aa","8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","c82857a876075e665bbcc78213abfe9e9b0206d502379576d7abd481ade3a569","4f71d883ed6f398ba8fe11fcd003b44bb5f220f840b3eac3c395ad91304e4620","5229c3934f58413f34f1b26c01323c93a5a65a2d9f2a565f216590dfbed1fe32","9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","4c754b03f36ff35fc539f9ebb5f024adbb73ec2d3e4bfb35b385a05abb36a50e","59507446213e73654d6979f3b82dadc4efb0ed177425ae052d96a3f5a5be0d35","a914be97ca7a5be670d1545fc0691ac3fbabd023d7d084b338f6934349798a1f","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","87437ca9dabab3a41d483441696ff9220a19e713f58e0b6a99f1731af10776d7","26c5dfa9aa4e6428f4bb7d14cbf72917ace69f738fa92480b9749eebce933370","8e94328e7ca1a7a517d1aa3c569eac0f6a44f67473f6e22c2c4aff5f9f4a9b38","d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","299f0af797897d77685d606502be72846b3d1f0dc6a2d8c964e9ea3ccbacf5bc","12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","3c97b5ea66276cf463525a6aa9d5bb086bf5e05beac70a0597cda2575503b57b","b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","a31383256374723b47d8b5497a9558bbbcf95bcecfb586a36caf7bfd3693eb0e","06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","64aa66c7458cbfd0f48f88070b08c2f66ae94aba099dac981f17c2322d147c06","11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","9814545517193cf51127d7fbdc3b7335688206ec04ee3a46bba2ee036bd0dcac","0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","c78c1141e492f2eb89e267c814ea68f81859016e9722896b130051e352b48030","1075253b449aed467a773de968b1b383e1406996f0da182b919c5658d2f0990f","5e6caf65cc44e3bb61608442aa6984c1be57da62a5856a5755de1679fb47fdae","4e286af3e300987cc416ff887bb25a3d8446ff986cb58ef56b1a46784f60d8ed","5d226f2f7a70862b54b5b4344311cc8858340a70656e93d9fefa30722e239a4e","2984d3b94ed9eefef3f7f0e33914c3ed62fb88fd480473711480e88d28b5bc59","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","4d7c26d851484ea00db972fd0ba91d614b46e93244b905ad11140eadb4b5cf10","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","df39110dec55128c3a582b6198651e7ada0263e1d2ea626a9c5ef071668436ea","eaed4245568e78e66f60139a452973756e9c225e66e900764125238fad75f31d","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","8b8a47fd8c3b647c999ac6f83c85e7f0b851a8954c148a787d9e8e90f3b7da4e","95f506c7f6b38262bd5932f87820faab73121e08bd9306ce440b732a9443fe95","ba83d9c42379d171a178b89cfdf899f07d607234cfbfa93c7e07ce4b4ea1ac34","e6a91d49eaf5e6dd35a8ac1e0bfc2eb9ddecb5dce2080916e542196896a8873c","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","11280b5a73504747fd14ebd85343c0f0e4c36d5a3ef3c042eff79d086a370efd","72cf184e35a8c9e4bebfa93965578544298f039e7f4cc8e6e27c96b1b9f832d5","a64115cd352ad13abfc455d4541d42bb87020cce31f29ef47f3ff0995b901867","1ab3c44b63da4b0abdcc4ed46a11e39ce11cfc8e98d025cf4a8b0fc04c595309"],"root":[60,276],"options":{"declaration":false,"declarationMap":false,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSourceMap":false,"inlineSources":false,"module":7,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"outDir":"../../../..","skipLibCheck":true,"sourceMap":false,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","useDefineForClassFields":false},"fileIdsList":[[249,251,252],[249,251],[249,250],[251],[251,252,253],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,184,193,195,196,197,198,199,200,202,203,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[106],[62,65],[64],[64,65],[61,62,63,65],[62,64,65,222],[65],[61,64,106],[64,65,222],[64,230],[62,64,65],[74],[97],[118],[64,65,106],[65,113],[64,65,106,124],[64,65,124],[65,165],[65,106],[61,65,183],[61,65,184],[206],[190,192],[201],[190],[61,65,183,190,191],[183,184,192],[204],[61,65,190,191,192],[63,64,65],[61,65],[62,64,184,185,186,187],[106,184,185,186,187],[184,186],[64,185,186,188,189,193],[61,64],[65,208],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[194],[59],[59,251,253,262,263,270,274],[59,249,251,253,259,262,263,269],[59,259,267],[59,249,253,259,262],[59,253,259],[59,182,249,253,259,262,267,268],[59,249,251,263,273],[59,251,253,254,255,262,274,275]],"referencedMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[256,47],[275,48],[257,47],[270,49],[265,47],[268,50],[258,47],[259,47],[266,47],[267,47],[260,47],[263,51],[261,47],[262,52],[264,47],[269,53],[271,47],[274,54],[272,47],[273,47],[60,47],[276,55]],"exportedModulesMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[256,47],[275,48],[257,47],[270,49],[265,47],[268,50],[258,47],[259,47],[266,47],[267,47],[260,47],[263,51],[261,47],[262,52],[264,47],[269,53],[271,47],[274,54],[272,47],[273,47],[60,47],[276,55]],"semanticDiagnosticsPerFile":[253,252,251,250,255,254,249,222,200,198,248,213,212,113,64,220,221,223,224,225,124,226,197,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,63,66,67,68,69,70,71,72,73,75,76,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,98,97,99,100,101,102,103,104,105,119,107,108,109,110,111,112,114,115,116,117,118,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,142,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,199,247,184,183,207,206,202,201,203,192,190,205,204,191,193,106,62,61,196,188,189,186,187,185,194,65,214,215,208,211,210,216,217,209,218,219,182,195,59,2,3,4,5,6,7,8,9,275,270,268,259,267,263,262,269,274,273,276]},"version":"5.4.5"}
\ No newline at end of file
diff --git a/packages/openapi-ts/test/e2e/generated/v2/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo b/packages/openapi-ts/test/e2e/generated/v2/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
new file mode 100644
index 000000000..6aca6fab3
--- /dev/null
+++ b/packages/openapi-ts/test/e2e/generated/v2/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
@@ -0,0 +1 @@
+{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/tslib/tslib.d.ts","../../../../src/main.ngtypecheck.ts","../../../../node_modules/rxjs/dist/types/internal/subscription.d.ts","../../../../node_modules/rxjs/dist/types/internal/subscriber.d.ts","../../../../node_modules/rxjs/dist/types/internal/operator.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/types.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audittime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffercount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/catcherror.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debouncetime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/defaultifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delaywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilchanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilkeychanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/elementat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/endwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/findindex.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../../../../node_modules/rxjs/dist/types/internal/subject.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/groupby.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/ignoreelements.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/isempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/notification.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/flatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergescan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectableobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/observeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/onerrorresumenextwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishbehavior.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishlast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishreplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/racewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeatwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retrywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/refcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sampletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sequenceequal.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sharereplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skiplast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipwhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/startwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/subscribeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchscan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takelast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takewhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throwifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeinterval.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeoutwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/toarray.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/withlatestfrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipwith.d.ts","../../../../node_modules/rxjs/dist/types/operators/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/action.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testmessage.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionlog.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionloggable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/coldobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/hotobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/timerhandle.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncaction.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/virtualtimescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testscheduler.d.ts","../../../../node_modules/rxjs/dist/types/testing/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/dom/animationframes.d.ts","../../../../node_modules/rxjs/dist/types/internal/behaviorsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/replaysubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/asyncsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asapscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queuescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/isobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/lastvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/firstvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/argumentoutofrangeerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/emptyerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/notfounderror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/objectunsubscribederror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/sequenceerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/unsubscriptionerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindcallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindnodecallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/anycatcher.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/forkjoin.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromevent.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromeventpattern.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/onerrorresumenext.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/throwerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../../../../node_modules/rxjs/dist/types/internal/config.d.ts","../../../../node_modules/rxjs/dist/types/index.d.ts","../../../../node_modules/@angular/core/primitives/signals/index.d.ts","../../../../node_modules/@angular/core/index.d.ts","../../../../node_modules/@angular/common/index.d.ts","../../../../node_modules/@angular/common/http/index.d.ts","../../../../node_modules/@angular/platform-browser/index.d.ts","../../../../node_modules/@angular/platform-browser-dynamic/index.d.ts","../../../../src/client/core/openapi.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ts","../../../../src/client/core/openapi.ts","../../../../src/client/services.gen.ngtypecheck.ts","../../../../src/client/core/request.ngtypecheck.ts","../../../../src/client/core/apierror.ngtypecheck.ts","../../../../src/client/core/apiresult.ngtypecheck.ts","../../../../src/client/core/apiresult.ts","../../../../src/client/core/apierror.ts","../../../../src/client/core/request.ts","../../../../src/client/types.gen.ngtypecheck.ts","../../../../src/client/types.gen.ts","../../../../src/client/services.gen.ts","../../../../src/main.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ecf5cb089ea438f2545e04b6c52828c68d0b0f4bfaa661986faf36da273e9892","95444fb6292d5e2f7050d7021383b719c0252bf5f88854973977db9e3e3d8006","241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","06540a9f3f2f88375ada0b89712de1c4310f7398d821c4c10ab5c6477dafb4bc",{"version":"de2d3120ed0989dbc776de71e6c0e8a6b4bf1935760cf468ff9d0e9986ef4c09","affectsGlobalScope":true},"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","97bdf234f5db52085d99c6842db560bca133f8a0413ff76bf830f5f38f088ce3","a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","b493ff8a5175cbbb4e6e8bcfa9506c08f5a7318b2278365cfca3b397c9710ebc","e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","303ee143a869e8f605e7b1d12be6c7269d4cab90d230caba792495be595d4f56","89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","a5eb4835ab561c140ffc4634bb039387d5d0cceebb86918f1696c7ac156d26fd","c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","4252b852dd791305da39f6e1242694c2e560d5e46f9bb26e2aca77252057c026","0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","ba13c7d46a560f3d4df8ffb1110e2bbec5801449af3b1240a718514b5576156e","6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","05c4e2a992bb83066a3a648bad1c310cecd4d0628d7e19545bb107ac9596103a","b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","dd6c3362aaaec60be028b4ba292806da8e7020eef7255c7414ce4a5c3a7138ef","8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","3114b315cd0687aad8b57cff36f9c8c51f5b1bc6254f1b1e8446ae583d8e2474","0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","af733cb878419f3012f0d4df36f918a69ba38d73f3232ba1ab46ef9ede6cb29c","cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","0a01b0b5a9e87d04737084731212106add30f63ec640169f1462ba2e44b6b3a8","06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","e07d62a8a9a3bb65433a62e9bbf400c6bfd2df4de60652af4d738303ee3670a1","bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","851e8d57d6dd17c71e9fa0319abd20ab2feb3fb674d0801611a09b7a25fd281c","c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","748e79252a7f476f8f28923612d7696b214e270cc909bc685afefaac8f052af0","9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","c3f32a185cd27ac232d3428a8d9b362c3f7b4892a58adaaa022828a7dcd13eed","3139c3e5e09251feec7a87f457084bee383717f3626a7f1459d053db2f34eb76","4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","3be870c8e17ec14f1c18fc248f5d2c4669e576404744ff5c63e6dafcf05b97ea","56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","6ab380571d87bd1d6f644fb6ab7837239d54b59f07dc84347b1341f866194214","547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","7c9ed7ffdc6f843ab69e5b2a3e7f667b050dd8d24d0052db81e35480f6d4e15d","7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","3656f0584d5a7ee0d0f2cc2b9cffbb43af92e80186b2ce160ebd4421d1506655","a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","90f690a1c5fcb4c2d19c80fea05c8ab590d8f6534c4c296d70af6293ede67366","be95e987818530082c43909be722a838315a0fc5deb6043de0a76f5221cbad24","9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","1f6058d60eaa8825f59d4b76bbf6cc0e6ad9770948be58de68587b0931da00cc","5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","50100b1a91f61d81ca3329a98e64b7f05cddc5e3cb26b3411adc137c9c631aca","11aceaee5663b4ed597544567d6e6a5a94b66857d7ebd62a9875ea061018cd2c","6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","4bb6035e906946163ecfaec982389d0247ceeac6bdee7f1d07c03d9c224db3aa","8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","c82857a876075e665bbcc78213abfe9e9b0206d502379576d7abd481ade3a569","4f71d883ed6f398ba8fe11fcd003b44bb5f220f840b3eac3c395ad91304e4620","5229c3934f58413f34f1b26c01323c93a5a65a2d9f2a565f216590dfbed1fe32","9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","4c754b03f36ff35fc539f9ebb5f024adbb73ec2d3e4bfb35b385a05abb36a50e","59507446213e73654d6979f3b82dadc4efb0ed177425ae052d96a3f5a5be0d35","a914be97ca7a5be670d1545fc0691ac3fbabd023d7d084b338f6934349798a1f","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","87437ca9dabab3a41d483441696ff9220a19e713f58e0b6a99f1731af10776d7","26c5dfa9aa4e6428f4bb7d14cbf72917ace69f738fa92480b9749eebce933370","8e94328e7ca1a7a517d1aa3c569eac0f6a44f67473f6e22c2c4aff5f9f4a9b38","d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","299f0af797897d77685d606502be72846b3d1f0dc6a2d8c964e9ea3ccbacf5bc","12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","3c97b5ea66276cf463525a6aa9d5bb086bf5e05beac70a0597cda2575503b57b","b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","a31383256374723b47d8b5497a9558bbbcf95bcecfb586a36caf7bfd3693eb0e","06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","64aa66c7458cbfd0f48f88070b08c2f66ae94aba099dac981f17c2322d147c06","11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","9814545517193cf51127d7fbdc3b7335688206ec04ee3a46bba2ee036bd0dcac","0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","c78c1141e492f2eb89e267c814ea68f81859016e9722896b130051e352b48030","1075253b449aed467a773de968b1b383e1406996f0da182b919c5658d2f0990f","5e6caf65cc44e3bb61608442aa6984c1be57da62a5856a5755de1679fb47fdae","4e286af3e300987cc416ff887bb25a3d8446ff986cb58ef56b1a46784f60d8ed","5d226f2f7a70862b54b5b4344311cc8858340a70656e93d9fefa30722e239a4e","2984d3b94ed9eefef3f7f0e33914c3ed62fb88fd480473711480e88d28b5bc59","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","4d7c26d851484ea00db972fd0ba91d614b46e93244b905ad11140eadb4b5cf10","df39110dec55128c3a582b6198651e7ada0263e1d2ea626a9c5ef071668436ea","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","8b8a47fd8c3b647c999ac6f83c85e7f0b851a8954c148a787d9e8e90f3b7da4e","95f506c7f6b38262bd5932f87820faab73121e08bd9306ce440b732a9443fe95","ba83d9c42379d171a178b89cfdf899f07d607234cfbfa93c7e07ce4b4ea1ac34","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","cb3fbf93f1f012f4f169ad1af33d2101f384cf048a432ebc16eb1ab2e32cce2e","dcfc789adb4af24dfdf9f2fff6fd1806de9aa08e9eb1160c0cec4e43eb789d44","6252e15419c573e76e89c89d8a0124882f0a46ebf34566e54ec854b465382ff2"],"root":[60,270],"options":{"declaration":false,"declarationMap":false,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSourceMap":false,"inlineSources":false,"module":7,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"outDir":"../../../..","skipLibCheck":true,"sourceMap":false,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","useDefineForClassFields":false},"fileIdsList":[[249,251,252],[249,251],[249,250],[251],[251,252,253],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,184,193,195,196,197,198,199,200,202,203,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[106],[62,65],[64],[64,65],[61,62,63,65],[62,64,65,222],[65],[61,64,106],[64,65,222],[64,230],[62,64,65],[74],[97],[118],[64,65,106],[65,113],[64,65,106,124],[64,65,124],[65,165],[65,106],[61,65,183],[61,65,184],[206],[190,192],[201],[190],[61,65,183,190,191],[183,184,192],[204],[61,65,190,191,192],[63,64,65],[61,65],[62,64,184,185,186,187],[106,184,185,186,187],[184,186],[64,185,186,188,189,193],[61,64],[65,208],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[194],[59],[59,258,264],[59,253,258],[59,182,249,253,258,259,264,265],[59,249,251,253,259,266,268],[59,251,253,254,255,259,269]],"referencedMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[262,47],[265,48],[257,47],[258,47],[263,47],[264,47],[256,47],[259,49],[261,47],[266,50],[260,47],[269,51],[267,47],[268,47],[60,47],[270,52]],"exportedModulesMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[262,47],[265,48],[257,47],[258,47],[263,47],[264,47],[256,47],[259,49],[261,47],[266,50],[260,47],[269,51],[267,47],[268,47],[60,47],[270,52]],"semanticDiagnosticsPerFile":[253,252,251,250,255,254,249,222,200,198,248,213,212,113,64,220,221,223,224,225,124,226,197,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,63,66,67,68,69,70,71,72,73,75,76,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,98,97,99,100,101,102,103,104,105,119,107,108,109,110,111,112,114,115,116,117,118,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,142,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,199,247,184,183,207,206,202,201,203,192,190,205,204,191,193,106,62,61,196,188,189,186,187,185,194,65,214,215,208,211,210,216,217,209,218,219,182,195,59,2,3,4,5,6,7,8,9,265,258,264,259,266,269,268,270]},"version":"5.4.5"}
\ No newline at end of file
diff --git a/packages/openapi-ts/test/e2e/generated/v3/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo b/packages/openapi-ts/test/e2e/generated/v3/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
new file mode 100644
index 000000000..857f0c61c
--- /dev/null
+++ b/packages/openapi-ts/test/e2e/generated/v3/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
@@ -0,0 +1 @@
+{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/tslib/tslib.d.ts","../../../../src/main.ngtypecheck.ts","../../../../node_modules/rxjs/dist/types/internal/subscription.d.ts","../../../../node_modules/rxjs/dist/types/internal/subscriber.d.ts","../../../../node_modules/rxjs/dist/types/internal/operator.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/types.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audittime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffercount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/catcherror.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debouncetime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/defaultifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delaywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilchanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilkeychanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/elementat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/endwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/findindex.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../../../../node_modules/rxjs/dist/types/internal/subject.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/groupby.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/ignoreelements.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/isempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/notification.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/flatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergescan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectableobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/observeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/onerrorresumenextwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishbehavior.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishlast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishreplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/racewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeatwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retrywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/refcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sampletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sequenceequal.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sharereplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skiplast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipwhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/startwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/subscribeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchscan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takelast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takewhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throwifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeinterval.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeoutwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/toarray.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/withlatestfrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipwith.d.ts","../../../../node_modules/rxjs/dist/types/operators/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/action.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testmessage.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionlog.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionloggable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/coldobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/hotobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/timerhandle.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncaction.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/virtualtimescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testscheduler.d.ts","../../../../node_modules/rxjs/dist/types/testing/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/dom/animationframes.d.ts","../../../../node_modules/rxjs/dist/types/internal/behaviorsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/replaysubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/asyncsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asapscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queuescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/isobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/lastvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/firstvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/argumentoutofrangeerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/emptyerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/notfounderror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/objectunsubscribederror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/sequenceerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/unsubscriptionerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindcallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindnodecallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/anycatcher.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/forkjoin.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromevent.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromeventpattern.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/onerrorresumenext.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/throwerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../../../../node_modules/rxjs/dist/types/internal/config.d.ts","../../../../node_modules/rxjs/dist/types/index.d.ts","../../../../node_modules/@angular/core/primitives/signals/index.d.ts","../../../../node_modules/@angular/core/index.d.ts","../../../../node_modules/@angular/common/index.d.ts","../../../../node_modules/@angular/common/http/index.d.ts","../../../../node_modules/@angular/platform-browser/index.d.ts","../../../../node_modules/@angular/platform-browser-dynamic/index.d.ts","../../../../src/client/core/openapi.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ts","../../../../src/client/core/openapi.ts","../../../../src/client/services.gen.ngtypecheck.ts","../../../../src/client/core/request.ngtypecheck.ts","../../../../src/client/core/apierror.ngtypecheck.ts","../../../../src/client/core/apiresult.ngtypecheck.ts","../../../../src/client/core/apiresult.ts","../../../../src/client/core/apierror.ts","../../../../src/client/core/request.ts","../../../../src/client/types.gen.ngtypecheck.ts","../../../../src/client/types.gen.ts","../../../../src/client/services.gen.ts","../../../../src/main.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ecf5cb089ea438f2545e04b6c52828c68d0b0f4bfaa661986faf36da273e9892","95444fb6292d5e2f7050d7021383b719c0252bf5f88854973977db9e3e3d8006","241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","06540a9f3f2f88375ada0b89712de1c4310f7398d821c4c10ab5c6477dafb4bc",{"version":"de2d3120ed0989dbc776de71e6c0e8a6b4bf1935760cf468ff9d0e9986ef4c09","affectsGlobalScope":true},"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","97bdf234f5db52085d99c6842db560bca133f8a0413ff76bf830f5f38f088ce3","a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","b493ff8a5175cbbb4e6e8bcfa9506c08f5a7318b2278365cfca3b397c9710ebc","e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","303ee143a869e8f605e7b1d12be6c7269d4cab90d230caba792495be595d4f56","89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","a5eb4835ab561c140ffc4634bb039387d5d0cceebb86918f1696c7ac156d26fd","c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","4252b852dd791305da39f6e1242694c2e560d5e46f9bb26e2aca77252057c026","0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","ba13c7d46a560f3d4df8ffb1110e2bbec5801449af3b1240a718514b5576156e","6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","05c4e2a992bb83066a3a648bad1c310cecd4d0628d7e19545bb107ac9596103a","b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","dd6c3362aaaec60be028b4ba292806da8e7020eef7255c7414ce4a5c3a7138ef","8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","3114b315cd0687aad8b57cff36f9c8c51f5b1bc6254f1b1e8446ae583d8e2474","0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","af733cb878419f3012f0d4df36f918a69ba38d73f3232ba1ab46ef9ede6cb29c","cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","0a01b0b5a9e87d04737084731212106add30f63ec640169f1462ba2e44b6b3a8","06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","e07d62a8a9a3bb65433a62e9bbf400c6bfd2df4de60652af4d738303ee3670a1","bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","851e8d57d6dd17c71e9fa0319abd20ab2feb3fb674d0801611a09b7a25fd281c","c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","748e79252a7f476f8f28923612d7696b214e270cc909bc685afefaac8f052af0","9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","c3f32a185cd27ac232d3428a8d9b362c3f7b4892a58adaaa022828a7dcd13eed","3139c3e5e09251feec7a87f457084bee383717f3626a7f1459d053db2f34eb76","4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","3be870c8e17ec14f1c18fc248f5d2c4669e576404744ff5c63e6dafcf05b97ea","56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","6ab380571d87bd1d6f644fb6ab7837239d54b59f07dc84347b1341f866194214","547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","7c9ed7ffdc6f843ab69e5b2a3e7f667b050dd8d24d0052db81e35480f6d4e15d","7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","3656f0584d5a7ee0d0f2cc2b9cffbb43af92e80186b2ce160ebd4421d1506655","a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","90f690a1c5fcb4c2d19c80fea05c8ab590d8f6534c4c296d70af6293ede67366","be95e987818530082c43909be722a838315a0fc5deb6043de0a76f5221cbad24","9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","1f6058d60eaa8825f59d4b76bbf6cc0e6ad9770948be58de68587b0931da00cc","5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","50100b1a91f61d81ca3329a98e64b7f05cddc5e3cb26b3411adc137c9c631aca","11aceaee5663b4ed597544567d6e6a5a94b66857d7ebd62a9875ea061018cd2c","6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","4bb6035e906946163ecfaec982389d0247ceeac6bdee7f1d07c03d9c224db3aa","8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","c82857a876075e665bbcc78213abfe9e9b0206d502379576d7abd481ade3a569","4f71d883ed6f398ba8fe11fcd003b44bb5f220f840b3eac3c395ad91304e4620","5229c3934f58413f34f1b26c01323c93a5a65a2d9f2a565f216590dfbed1fe32","9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","4c754b03f36ff35fc539f9ebb5f024adbb73ec2d3e4bfb35b385a05abb36a50e","59507446213e73654d6979f3b82dadc4efb0ed177425ae052d96a3f5a5be0d35","a914be97ca7a5be670d1545fc0691ac3fbabd023d7d084b338f6934349798a1f","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","87437ca9dabab3a41d483441696ff9220a19e713f58e0b6a99f1731af10776d7","26c5dfa9aa4e6428f4bb7d14cbf72917ace69f738fa92480b9749eebce933370","8e94328e7ca1a7a517d1aa3c569eac0f6a44f67473f6e22c2c4aff5f9f4a9b38","d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","299f0af797897d77685d606502be72846b3d1f0dc6a2d8c964e9ea3ccbacf5bc","12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","3c97b5ea66276cf463525a6aa9d5bb086bf5e05beac70a0597cda2575503b57b","b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","a31383256374723b47d8b5497a9558bbbcf95bcecfb586a36caf7bfd3693eb0e","06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","64aa66c7458cbfd0f48f88070b08c2f66ae94aba099dac981f17c2322d147c06","11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","9814545517193cf51127d7fbdc3b7335688206ec04ee3a46bba2ee036bd0dcac","0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","c78c1141e492f2eb89e267c814ea68f81859016e9722896b130051e352b48030","1075253b449aed467a773de968b1b383e1406996f0da182b919c5658d2f0990f","5e6caf65cc44e3bb61608442aa6984c1be57da62a5856a5755de1679fb47fdae","4e286af3e300987cc416ff887bb25a3d8446ff986cb58ef56b1a46784f60d8ed","5d226f2f7a70862b54b5b4344311cc8858340a70656e93d9fefa30722e239a4e","2984d3b94ed9eefef3f7f0e33914c3ed62fb88fd480473711480e88d28b5bc59","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","4d7c26d851484ea00db972fd0ba91d614b46e93244b905ad11140eadb4b5cf10","df39110dec55128c3a582b6198651e7ada0263e1d2ea626a9c5ef071668436ea","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","8b8a47fd8c3b647c999ac6f83c85e7f0b851a8954c148a787d9e8e90f3b7da4e","95f506c7f6b38262bd5932f87820faab73121e08bd9306ce440b732a9443fe95","ba83d9c42379d171a178b89cfdf899f07d607234cfbfa93c7e07ce4b4ea1ac34","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","11280b5a73504747fd14ebd85343c0f0e4c36d5a3ef3c042eff79d086a370efd","c1068efe2ce19e3a479884b1b1a61def411360972220c0ebad760b437db3fbb5","6252e15419c573e76e89c89d8a0124882f0a46ebf34566e54ec854b465382ff2"],"root":[60,270],"options":{"declaration":false,"declarationMap":false,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSourceMap":false,"inlineSources":false,"module":7,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"outDir":"../../../..","skipLibCheck":true,"sourceMap":false,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","useDefineForClassFields":false},"fileIdsList":[[249,251,252],[249,251],[249,250],[251],[251,252,253],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,184,193,195,196,197,198,199,200,202,203,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[106],[62,65],[64],[64,65],[61,62,63,65],[62,64,65,222],[65],[61,64,106],[64,65,222],[64,230],[62,64,65],[74],[97],[118],[64,65,106],[65,113],[64,65,106,124],[64,65,124],[65,165],[65,106],[61,65,183],[61,65,184],[206],[190,192],[201],[190],[61,65,183,190,191],[183,184,192],[204],[61,65,190,191,192],[63,64,65],[61,65],[62,64,184,185,186,187],[106,184,185,186,187],[184,186],[64,185,186,188,189,193],[61,64],[65,208],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[194],[59],[59,258,264],[59,253,258],[59,182,249,253,258,259,264,265],[59,249,251,253,259,266,268],[59,251,253,254,255,259,269]],"referencedMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[262,47],[265,48],[257,47],[258,47],[263,47],[264,47],[256,47],[259,49],[261,47],[266,50],[260,47],[269,51],[267,47],[268,47],[60,47],[270,52]],"exportedModulesMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[262,47],[265,48],[257,47],[258,47],[263,47],[264,47],[256,47],[259,49],[261,47],[266,50],[260,47],[269,51],[267,47],[268,47],[60,47],[270,52]],"semanticDiagnosticsPerFile":[253,252,251,250,255,254,249,222,200,198,248,213,212,113,64,220,221,223,224,225,124,226,197,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,63,66,67,68,69,70,71,72,73,75,76,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,98,97,99,100,101,102,103,104,105,119,107,108,109,110,111,112,114,115,116,117,118,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,142,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,199,247,184,183,207,206,202,201,203,192,190,205,204,191,193,106,62,61,196,188,189,186,187,185,194,65,214,215,208,211,210,216,217,209,218,219,182,195,59,2,3,4,5,6,7,8,9,265,258,264,259,266,269,268,270]},"version":"5.4.5"}
\ No newline at end of file
From 2dbd98aeb6ffa7a3a85a55bcce92da2a2e3cb399 Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 13 Apr 2025 15:32:34 +0200
Subject: [PATCH 14/18] init cleanup
---
packages/client-angular/src/client.ts | 20 ++++++++++++++------
1 file changed, 14 insertions(+), 6 deletions(-)
diff --git a/packages/client-angular/src/client.ts b/packages/client-angular/src/client.ts
index f0d89fa84..5a828f6b7 100644
--- a/packages/client-angular/src/client.ts
+++ b/packages/client-angular/src/client.ts
@@ -4,7 +4,11 @@ import {
HttpHeaders,
type HttpResponse,
} from '@angular/common/http';
-import { inject, provideAppInitializer } from '@angular/core';
+import {
+ assertInInjectionContext,
+ inject,
+ provideAppInitializer,
+} from '@angular/core';
import { firstValueFrom } from 'rxjs';
import type { Client, Config } from './types';
@@ -16,11 +20,10 @@ import {
setAuthParams,
} from './utils';
-export let _defaultHttpClient: HttpClient;
-
-export function provideHeyApiClient() {
+export function provideHeyApiClient(client: Client) {
return provideAppInitializer(() => {
- _defaultHttpClient = inject(HttpClient);
+ const httpClient = inject(HttpClient);
+ client.setConfig({ httpClient });
});
}
@@ -58,7 +61,12 @@ export const createClient = (config: Config = {}): Client => {
}
const url = buildUrl(opts);
- const _httpClient = opts.httpClient ?? _defaultHttpClient;
+ let _httpClient = opts.httpClient;
+
+ if (!_httpClient) {
+ assertInInjectionContext(request);
+ _httpClient = inject(HttpClient);
+ }
try {
// Return the raw HTTP response directly
From d56cc8129f7589cf249bdd34d1ed193a589f7a1e Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 13 Apr 2025 15:33:47 +0200
Subject: [PATCH 15/18] cleanup
---
.../client/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo | 1 -
.../v2/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo | 1 -
.../v3/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo | 1 -
3 files changed, 3 deletions(-)
delete mode 100644 packages/openapi-ts/test/e2e/generated/client/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
delete mode 100644 packages/openapi-ts/test/e2e/generated/v2/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
delete mode 100644 packages/openapi-ts/test/e2e/generated/v3/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
diff --git a/packages/openapi-ts/test/e2e/generated/client/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo b/packages/openapi-ts/test/e2e/generated/client/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
deleted file mode 100644
index 2918088ec..000000000
--- a/packages/openapi-ts/test/e2e/generated/client/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
+++ /dev/null
@@ -1 +0,0 @@
-{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/tslib/tslib.d.ts","../../../../src/main.ngtypecheck.ts","../../../../node_modules/rxjs/dist/types/internal/subscription.d.ts","../../../../node_modules/rxjs/dist/types/internal/subscriber.d.ts","../../../../node_modules/rxjs/dist/types/internal/operator.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/types.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audittime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffercount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/catcherror.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debouncetime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/defaultifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delaywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilchanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilkeychanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/elementat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/endwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/findindex.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../../../../node_modules/rxjs/dist/types/internal/subject.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/groupby.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/ignoreelements.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/isempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/notification.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/flatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergescan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectableobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/observeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/onerrorresumenextwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishbehavior.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishlast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishreplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/racewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeatwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retrywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/refcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sampletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sequenceequal.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sharereplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skiplast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipwhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/startwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/subscribeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchscan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takelast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takewhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throwifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeinterval.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeoutwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/toarray.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/withlatestfrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipwith.d.ts","../../../../node_modules/rxjs/dist/types/operators/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/action.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testmessage.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionlog.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionloggable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/coldobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/hotobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/timerhandle.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncaction.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/virtualtimescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testscheduler.d.ts","../../../../node_modules/rxjs/dist/types/testing/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/dom/animationframes.d.ts","../../../../node_modules/rxjs/dist/types/internal/behaviorsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/replaysubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/asyncsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asapscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queuescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/isobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/lastvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/firstvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/argumentoutofrangeerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/emptyerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/notfounderror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/objectunsubscribederror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/sequenceerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/unsubscriptionerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindcallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindnodecallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/anycatcher.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/forkjoin.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromevent.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromeventpattern.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/onerrorresumenext.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/throwerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../../../../node_modules/rxjs/dist/types/internal/config.d.ts","../../../../node_modules/rxjs/dist/types/index.d.ts","../../../../node_modules/@angular/core/primitives/signals/index.d.ts","../../../../node_modules/@angular/core/index.d.ts","../../../../node_modules/@angular/common/index.d.ts","../../../../node_modules/@angular/common/http/index.d.ts","../../../../node_modules/@angular/platform-browser/index.d.ts","../../../../node_modules/@angular/platform-browser-dynamic/index.d.ts","../../../../src/client/apimodule.ngtypecheck.ts","../../../../src/client/core/angularhttprequest.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ts","../../../../src/client/core/basehttprequest.ngtypecheck.ts","../../../../src/client/core/openapi.ngtypecheck.ts","../../../../src/client/core/openapi.ts","../../../../src/client/core/basehttprequest.ts","../../../../src/client/core/request.ngtypecheck.ts","../../../../src/client/core/apierror.ngtypecheck.ts","../../../../src/client/core/apiresult.ngtypecheck.ts","../../../../src/client/core/apiresult.ts","../../../../src/client/core/apierror.ts","../../../../src/client/core/request.ts","../../../../src/client/core/angularhttprequest.ts","../../../../src/client/services.gen.ngtypecheck.ts","../../../../src/client/types.gen.ngtypecheck.ts","../../../../src/client/types.gen.ts","../../../../src/client/services.gen.ts","../../../../src/client/apimodule.ts","../../../../src/main.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ecf5cb089ea438f2545e04b6c52828c68d0b0f4bfaa661986faf36da273e9892","95444fb6292d5e2f7050d7021383b719c0252bf5f88854973977db9e3e3d8006","241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","06540a9f3f2f88375ada0b89712de1c4310f7398d821c4c10ab5c6477dafb4bc",{"version":"de2d3120ed0989dbc776de71e6c0e8a6b4bf1935760cf468ff9d0e9986ef4c09","affectsGlobalScope":true},"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","97bdf234f5db52085d99c6842db560bca133f8a0413ff76bf830f5f38f088ce3","a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","b493ff8a5175cbbb4e6e8bcfa9506c08f5a7318b2278365cfca3b397c9710ebc","e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","303ee143a869e8f605e7b1d12be6c7269d4cab90d230caba792495be595d4f56","89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","a5eb4835ab561c140ffc4634bb039387d5d0cceebb86918f1696c7ac156d26fd","c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","4252b852dd791305da39f6e1242694c2e560d5e46f9bb26e2aca77252057c026","0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","ba13c7d46a560f3d4df8ffb1110e2bbec5801449af3b1240a718514b5576156e","6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","05c4e2a992bb83066a3a648bad1c310cecd4d0628d7e19545bb107ac9596103a","b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","dd6c3362aaaec60be028b4ba292806da8e7020eef7255c7414ce4a5c3a7138ef","8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","3114b315cd0687aad8b57cff36f9c8c51f5b1bc6254f1b1e8446ae583d8e2474","0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","af733cb878419f3012f0d4df36f918a69ba38d73f3232ba1ab46ef9ede6cb29c","cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","0a01b0b5a9e87d04737084731212106add30f63ec640169f1462ba2e44b6b3a8","06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","e07d62a8a9a3bb65433a62e9bbf400c6bfd2df4de60652af4d738303ee3670a1","bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","851e8d57d6dd17c71e9fa0319abd20ab2feb3fb674d0801611a09b7a25fd281c","c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","748e79252a7f476f8f28923612d7696b214e270cc909bc685afefaac8f052af0","9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","c3f32a185cd27ac232d3428a8d9b362c3f7b4892a58adaaa022828a7dcd13eed","3139c3e5e09251feec7a87f457084bee383717f3626a7f1459d053db2f34eb76","4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","3be870c8e17ec14f1c18fc248f5d2c4669e576404744ff5c63e6dafcf05b97ea","56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","6ab380571d87bd1d6f644fb6ab7837239d54b59f07dc84347b1341f866194214","547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","7c9ed7ffdc6f843ab69e5b2a3e7f667b050dd8d24d0052db81e35480f6d4e15d","7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","3656f0584d5a7ee0d0f2cc2b9cffbb43af92e80186b2ce160ebd4421d1506655","a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","90f690a1c5fcb4c2d19c80fea05c8ab590d8f6534c4c296d70af6293ede67366","be95e987818530082c43909be722a838315a0fc5deb6043de0a76f5221cbad24","9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","1f6058d60eaa8825f59d4b76bbf6cc0e6ad9770948be58de68587b0931da00cc","5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","50100b1a91f61d81ca3329a98e64b7f05cddc5e3cb26b3411adc137c9c631aca","11aceaee5663b4ed597544567d6e6a5a94b66857d7ebd62a9875ea061018cd2c","6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","4bb6035e906946163ecfaec982389d0247ceeac6bdee7f1d07c03d9c224db3aa","8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","c82857a876075e665bbcc78213abfe9e9b0206d502379576d7abd481ade3a569","4f71d883ed6f398ba8fe11fcd003b44bb5f220f840b3eac3c395ad91304e4620","5229c3934f58413f34f1b26c01323c93a5a65a2d9f2a565f216590dfbed1fe32","9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","4c754b03f36ff35fc539f9ebb5f024adbb73ec2d3e4bfb35b385a05abb36a50e","59507446213e73654d6979f3b82dadc4efb0ed177425ae052d96a3f5a5be0d35","a914be97ca7a5be670d1545fc0691ac3fbabd023d7d084b338f6934349798a1f","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","87437ca9dabab3a41d483441696ff9220a19e713f58e0b6a99f1731af10776d7","26c5dfa9aa4e6428f4bb7d14cbf72917ace69f738fa92480b9749eebce933370","8e94328e7ca1a7a517d1aa3c569eac0f6a44f67473f6e22c2c4aff5f9f4a9b38","d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","299f0af797897d77685d606502be72846b3d1f0dc6a2d8c964e9ea3ccbacf5bc","12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","3c97b5ea66276cf463525a6aa9d5bb086bf5e05beac70a0597cda2575503b57b","b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","a31383256374723b47d8b5497a9558bbbcf95bcecfb586a36caf7bfd3693eb0e","06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","64aa66c7458cbfd0f48f88070b08c2f66ae94aba099dac981f17c2322d147c06","11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","9814545517193cf51127d7fbdc3b7335688206ec04ee3a46bba2ee036bd0dcac","0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","c78c1141e492f2eb89e267c814ea68f81859016e9722896b130051e352b48030","1075253b449aed467a773de968b1b383e1406996f0da182b919c5658d2f0990f","5e6caf65cc44e3bb61608442aa6984c1be57da62a5856a5755de1679fb47fdae","4e286af3e300987cc416ff887bb25a3d8446ff986cb58ef56b1a46784f60d8ed","5d226f2f7a70862b54b5b4344311cc8858340a70656e93d9fefa30722e239a4e","2984d3b94ed9eefef3f7f0e33914c3ed62fb88fd480473711480e88d28b5bc59","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","4d7c26d851484ea00db972fd0ba91d614b46e93244b905ad11140eadb4b5cf10","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","df39110dec55128c3a582b6198651e7ada0263e1d2ea626a9c5ef071668436ea","eaed4245568e78e66f60139a452973756e9c225e66e900764125238fad75f31d","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","8b8a47fd8c3b647c999ac6f83c85e7f0b851a8954c148a787d9e8e90f3b7da4e","95f506c7f6b38262bd5932f87820faab73121e08bd9306ce440b732a9443fe95","ba83d9c42379d171a178b89cfdf899f07d607234cfbfa93c7e07ce4b4ea1ac34","e6a91d49eaf5e6dd35a8ac1e0bfc2eb9ddecb5dce2080916e542196896a8873c","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","11280b5a73504747fd14ebd85343c0f0e4c36d5a3ef3c042eff79d086a370efd","72cf184e35a8c9e4bebfa93965578544298f039e7f4cc8e6e27c96b1b9f832d5","a64115cd352ad13abfc455d4541d42bb87020cce31f29ef47f3ff0995b901867","1ab3c44b63da4b0abdcc4ed46a11e39ce11cfc8e98d025cf4a8b0fc04c595309"],"root":[60,276],"options":{"declaration":false,"declarationMap":false,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSourceMap":false,"inlineSources":false,"module":7,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"outDir":"../../../..","skipLibCheck":true,"sourceMap":false,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","useDefineForClassFields":false},"fileIdsList":[[249,251,252],[249,251],[249,250],[251],[251,252,253],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,184,193,195,196,197,198,199,200,202,203,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[106],[62,65],[64],[64,65],[61,62,63,65],[62,64,65,222],[65],[61,64,106],[64,65,222],[64,230],[62,64,65],[74],[97],[118],[64,65,106],[65,113],[64,65,106,124],[64,65,124],[65,165],[65,106],[61,65,183],[61,65,184],[206],[190,192],[201],[190],[61,65,183,190,191],[183,184,192],[204],[61,65,190,191,192],[63,64,65],[61,65],[62,64,184,185,186,187],[106,184,185,186,187],[184,186],[64,185,186,188,189,193],[61,64],[65,208],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[194],[59],[59,251,253,262,263,270,274],[59,249,251,253,259,262,263,269],[59,259,267],[59,249,253,259,262],[59,253,259],[59,182,249,253,259,262,267,268],[59,249,251,263,273],[59,251,253,254,255,262,274,275]],"referencedMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[256,47],[275,48],[257,47],[270,49],[265,47],[268,50],[258,47],[259,47],[266,47],[267,47],[260,47],[263,51],[261,47],[262,52],[264,47],[269,53],[271,47],[274,54],[272,47],[273,47],[60,47],[276,55]],"exportedModulesMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[256,47],[275,48],[257,47],[270,49],[265,47],[268,50],[258,47],[259,47],[266,47],[267,47],[260,47],[263,51],[261,47],[262,52],[264,47],[269,53],[271,47],[274,54],[272,47],[273,47],[60,47],[276,55]],"semanticDiagnosticsPerFile":[253,252,251,250,255,254,249,222,200,198,248,213,212,113,64,220,221,223,224,225,124,226,197,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,63,66,67,68,69,70,71,72,73,75,76,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,98,97,99,100,101,102,103,104,105,119,107,108,109,110,111,112,114,115,116,117,118,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,142,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,199,247,184,183,207,206,202,201,203,192,190,205,204,191,193,106,62,61,196,188,189,186,187,185,194,65,214,215,208,211,210,216,217,209,218,219,182,195,59,2,3,4,5,6,7,8,9,275,270,268,259,267,263,262,269,274,273,276]},"version":"5.4.5"}
\ No newline at end of file
diff --git a/packages/openapi-ts/test/e2e/generated/v2/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo b/packages/openapi-ts/test/e2e/generated/v2/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
deleted file mode 100644
index 6aca6fab3..000000000
--- a/packages/openapi-ts/test/e2e/generated/v2/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
+++ /dev/null
@@ -1 +0,0 @@
-{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/tslib/tslib.d.ts","../../../../src/main.ngtypecheck.ts","../../../../node_modules/rxjs/dist/types/internal/subscription.d.ts","../../../../node_modules/rxjs/dist/types/internal/subscriber.d.ts","../../../../node_modules/rxjs/dist/types/internal/operator.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/types.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audittime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffercount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/catcherror.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debouncetime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/defaultifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delaywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilchanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilkeychanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/elementat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/endwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/findindex.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../../../../node_modules/rxjs/dist/types/internal/subject.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/groupby.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/ignoreelements.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/isempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/notification.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/flatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergescan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectableobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/observeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/onerrorresumenextwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishbehavior.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishlast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishreplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/racewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeatwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retrywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/refcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sampletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sequenceequal.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sharereplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skiplast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipwhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/startwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/subscribeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchscan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takelast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takewhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throwifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeinterval.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeoutwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/toarray.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/withlatestfrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipwith.d.ts","../../../../node_modules/rxjs/dist/types/operators/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/action.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testmessage.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionlog.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionloggable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/coldobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/hotobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/timerhandle.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncaction.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/virtualtimescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testscheduler.d.ts","../../../../node_modules/rxjs/dist/types/testing/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/dom/animationframes.d.ts","../../../../node_modules/rxjs/dist/types/internal/behaviorsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/replaysubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/asyncsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asapscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queuescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/isobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/lastvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/firstvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/argumentoutofrangeerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/emptyerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/notfounderror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/objectunsubscribederror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/sequenceerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/unsubscriptionerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindcallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindnodecallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/anycatcher.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/forkjoin.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromevent.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromeventpattern.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/onerrorresumenext.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/throwerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../../../../node_modules/rxjs/dist/types/internal/config.d.ts","../../../../node_modules/rxjs/dist/types/index.d.ts","../../../../node_modules/@angular/core/primitives/signals/index.d.ts","../../../../node_modules/@angular/core/index.d.ts","../../../../node_modules/@angular/common/index.d.ts","../../../../node_modules/@angular/common/http/index.d.ts","../../../../node_modules/@angular/platform-browser/index.d.ts","../../../../node_modules/@angular/platform-browser-dynamic/index.d.ts","../../../../src/client/core/openapi.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ts","../../../../src/client/core/openapi.ts","../../../../src/client/services.gen.ngtypecheck.ts","../../../../src/client/core/request.ngtypecheck.ts","../../../../src/client/core/apierror.ngtypecheck.ts","../../../../src/client/core/apiresult.ngtypecheck.ts","../../../../src/client/core/apiresult.ts","../../../../src/client/core/apierror.ts","../../../../src/client/core/request.ts","../../../../src/client/types.gen.ngtypecheck.ts","../../../../src/client/types.gen.ts","../../../../src/client/services.gen.ts","../../../../src/main.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ecf5cb089ea438f2545e04b6c52828c68d0b0f4bfaa661986faf36da273e9892","95444fb6292d5e2f7050d7021383b719c0252bf5f88854973977db9e3e3d8006","241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","06540a9f3f2f88375ada0b89712de1c4310f7398d821c4c10ab5c6477dafb4bc",{"version":"de2d3120ed0989dbc776de71e6c0e8a6b4bf1935760cf468ff9d0e9986ef4c09","affectsGlobalScope":true},"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","97bdf234f5db52085d99c6842db560bca133f8a0413ff76bf830f5f38f088ce3","a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","b493ff8a5175cbbb4e6e8bcfa9506c08f5a7318b2278365cfca3b397c9710ebc","e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","303ee143a869e8f605e7b1d12be6c7269d4cab90d230caba792495be595d4f56","89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","a5eb4835ab561c140ffc4634bb039387d5d0cceebb86918f1696c7ac156d26fd","c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","4252b852dd791305da39f6e1242694c2e560d5e46f9bb26e2aca77252057c026","0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","ba13c7d46a560f3d4df8ffb1110e2bbec5801449af3b1240a718514b5576156e","6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","05c4e2a992bb83066a3a648bad1c310cecd4d0628d7e19545bb107ac9596103a","b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","dd6c3362aaaec60be028b4ba292806da8e7020eef7255c7414ce4a5c3a7138ef","8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","3114b315cd0687aad8b57cff36f9c8c51f5b1bc6254f1b1e8446ae583d8e2474","0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","af733cb878419f3012f0d4df36f918a69ba38d73f3232ba1ab46ef9ede6cb29c","cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","0a01b0b5a9e87d04737084731212106add30f63ec640169f1462ba2e44b6b3a8","06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","e07d62a8a9a3bb65433a62e9bbf400c6bfd2df4de60652af4d738303ee3670a1","bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","851e8d57d6dd17c71e9fa0319abd20ab2feb3fb674d0801611a09b7a25fd281c","c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","748e79252a7f476f8f28923612d7696b214e270cc909bc685afefaac8f052af0","9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","c3f32a185cd27ac232d3428a8d9b362c3f7b4892a58adaaa022828a7dcd13eed","3139c3e5e09251feec7a87f457084bee383717f3626a7f1459d053db2f34eb76","4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","3be870c8e17ec14f1c18fc248f5d2c4669e576404744ff5c63e6dafcf05b97ea","56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","6ab380571d87bd1d6f644fb6ab7837239d54b59f07dc84347b1341f866194214","547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","7c9ed7ffdc6f843ab69e5b2a3e7f667b050dd8d24d0052db81e35480f6d4e15d","7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","3656f0584d5a7ee0d0f2cc2b9cffbb43af92e80186b2ce160ebd4421d1506655","a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","90f690a1c5fcb4c2d19c80fea05c8ab590d8f6534c4c296d70af6293ede67366","be95e987818530082c43909be722a838315a0fc5deb6043de0a76f5221cbad24","9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","1f6058d60eaa8825f59d4b76bbf6cc0e6ad9770948be58de68587b0931da00cc","5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","50100b1a91f61d81ca3329a98e64b7f05cddc5e3cb26b3411adc137c9c631aca","11aceaee5663b4ed597544567d6e6a5a94b66857d7ebd62a9875ea061018cd2c","6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","4bb6035e906946163ecfaec982389d0247ceeac6bdee7f1d07c03d9c224db3aa","8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","c82857a876075e665bbcc78213abfe9e9b0206d502379576d7abd481ade3a569","4f71d883ed6f398ba8fe11fcd003b44bb5f220f840b3eac3c395ad91304e4620","5229c3934f58413f34f1b26c01323c93a5a65a2d9f2a565f216590dfbed1fe32","9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","4c754b03f36ff35fc539f9ebb5f024adbb73ec2d3e4bfb35b385a05abb36a50e","59507446213e73654d6979f3b82dadc4efb0ed177425ae052d96a3f5a5be0d35","a914be97ca7a5be670d1545fc0691ac3fbabd023d7d084b338f6934349798a1f","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","87437ca9dabab3a41d483441696ff9220a19e713f58e0b6a99f1731af10776d7","26c5dfa9aa4e6428f4bb7d14cbf72917ace69f738fa92480b9749eebce933370","8e94328e7ca1a7a517d1aa3c569eac0f6a44f67473f6e22c2c4aff5f9f4a9b38","d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","299f0af797897d77685d606502be72846b3d1f0dc6a2d8c964e9ea3ccbacf5bc","12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","3c97b5ea66276cf463525a6aa9d5bb086bf5e05beac70a0597cda2575503b57b","b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","a31383256374723b47d8b5497a9558bbbcf95bcecfb586a36caf7bfd3693eb0e","06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","64aa66c7458cbfd0f48f88070b08c2f66ae94aba099dac981f17c2322d147c06","11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","9814545517193cf51127d7fbdc3b7335688206ec04ee3a46bba2ee036bd0dcac","0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","c78c1141e492f2eb89e267c814ea68f81859016e9722896b130051e352b48030","1075253b449aed467a773de968b1b383e1406996f0da182b919c5658d2f0990f","5e6caf65cc44e3bb61608442aa6984c1be57da62a5856a5755de1679fb47fdae","4e286af3e300987cc416ff887bb25a3d8446ff986cb58ef56b1a46784f60d8ed","5d226f2f7a70862b54b5b4344311cc8858340a70656e93d9fefa30722e239a4e","2984d3b94ed9eefef3f7f0e33914c3ed62fb88fd480473711480e88d28b5bc59","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","4d7c26d851484ea00db972fd0ba91d614b46e93244b905ad11140eadb4b5cf10","df39110dec55128c3a582b6198651e7ada0263e1d2ea626a9c5ef071668436ea","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","8b8a47fd8c3b647c999ac6f83c85e7f0b851a8954c148a787d9e8e90f3b7da4e","95f506c7f6b38262bd5932f87820faab73121e08bd9306ce440b732a9443fe95","ba83d9c42379d171a178b89cfdf899f07d607234cfbfa93c7e07ce4b4ea1ac34","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","cb3fbf93f1f012f4f169ad1af33d2101f384cf048a432ebc16eb1ab2e32cce2e","dcfc789adb4af24dfdf9f2fff6fd1806de9aa08e9eb1160c0cec4e43eb789d44","6252e15419c573e76e89c89d8a0124882f0a46ebf34566e54ec854b465382ff2"],"root":[60,270],"options":{"declaration":false,"declarationMap":false,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSourceMap":false,"inlineSources":false,"module":7,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"outDir":"../../../..","skipLibCheck":true,"sourceMap":false,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","useDefineForClassFields":false},"fileIdsList":[[249,251,252],[249,251],[249,250],[251],[251,252,253],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,184,193,195,196,197,198,199,200,202,203,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[106],[62,65],[64],[64,65],[61,62,63,65],[62,64,65,222],[65],[61,64,106],[64,65,222],[64,230],[62,64,65],[74],[97],[118],[64,65,106],[65,113],[64,65,106,124],[64,65,124],[65,165],[65,106],[61,65,183],[61,65,184],[206],[190,192],[201],[190],[61,65,183,190,191],[183,184,192],[204],[61,65,190,191,192],[63,64,65],[61,65],[62,64,184,185,186,187],[106,184,185,186,187],[184,186],[64,185,186,188,189,193],[61,64],[65,208],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[194],[59],[59,258,264],[59,253,258],[59,182,249,253,258,259,264,265],[59,249,251,253,259,266,268],[59,251,253,254,255,259,269]],"referencedMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[262,47],[265,48],[257,47],[258,47],[263,47],[264,47],[256,47],[259,49],[261,47],[266,50],[260,47],[269,51],[267,47],[268,47],[60,47],[270,52]],"exportedModulesMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[262,47],[265,48],[257,47],[258,47],[263,47],[264,47],[256,47],[259,49],[261,47],[266,50],[260,47],[269,51],[267,47],[268,47],[60,47],[270,52]],"semanticDiagnosticsPerFile":[253,252,251,250,255,254,249,222,200,198,248,213,212,113,64,220,221,223,224,225,124,226,197,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,63,66,67,68,69,70,71,72,73,75,76,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,98,97,99,100,101,102,103,104,105,119,107,108,109,110,111,112,114,115,116,117,118,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,142,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,199,247,184,183,207,206,202,201,203,192,190,205,204,191,193,106,62,61,196,188,189,186,187,185,194,65,214,215,208,211,210,216,217,209,218,219,182,195,59,2,3,4,5,6,7,8,9,265,258,264,259,266,269,268,270]},"version":"5.4.5"}
\ No newline at end of file
diff --git a/packages/openapi-ts/test/e2e/generated/v3/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo b/packages/openapi-ts/test/e2e/generated/v3/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
deleted file mode 100644
index 857f0c61c..000000000
--- a/packages/openapi-ts/test/e2e/generated/v3/angular/app/.angular/cache/17.3.11/app/.tsbuildinfo
+++ /dev/null
@@ -1 +0,0 @@
-{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/tslib/tslib.d.ts","../../../../src/main.ngtypecheck.ts","../../../../node_modules/rxjs/dist/types/internal/subscription.d.ts","../../../../node_modules/rxjs/dist/types/internal/subscriber.d.ts","../../../../node_modules/rxjs/dist/types/internal/operator.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/types.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audittime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffercount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/catcherror.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debouncetime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/defaultifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delaywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilchanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilkeychanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/elementat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/endwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/findindex.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../../../../node_modules/rxjs/dist/types/internal/subject.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/groupby.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/ignoreelements.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/isempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/notification.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/flatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergescan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectableobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/observeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/onerrorresumenextwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishbehavior.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishlast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishreplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/racewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeatwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retrywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/refcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sampletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sequenceequal.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sharereplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skiplast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipwhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/startwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/subscribeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchscan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takelast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takewhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throwifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeinterval.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeoutwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/toarray.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/withlatestfrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipwith.d.ts","../../../../node_modules/rxjs/dist/types/operators/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/action.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testmessage.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionlog.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionloggable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/coldobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/hotobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/timerhandle.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncaction.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/virtualtimescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testscheduler.d.ts","../../../../node_modules/rxjs/dist/types/testing/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/dom/animationframes.d.ts","../../../../node_modules/rxjs/dist/types/internal/behaviorsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/replaysubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/asyncsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asapscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queuescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/isobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/lastvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/firstvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/argumentoutofrangeerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/emptyerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/notfounderror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/objectunsubscribederror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/sequenceerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/unsubscriptionerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindcallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindnodecallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/anycatcher.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/forkjoin.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromevent.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromeventpattern.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/onerrorresumenext.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/throwerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../../../../node_modules/rxjs/dist/types/internal/config.d.ts","../../../../node_modules/rxjs/dist/types/index.d.ts","../../../../node_modules/@angular/core/primitives/signals/index.d.ts","../../../../node_modules/@angular/core/index.d.ts","../../../../node_modules/@angular/common/index.d.ts","../../../../node_modules/@angular/common/http/index.d.ts","../../../../node_modules/@angular/platform-browser/index.d.ts","../../../../node_modules/@angular/platform-browser-dynamic/index.d.ts","../../../../src/client/core/openapi.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ngtypecheck.ts","../../../../src/client/core/apirequestoptions.ts","../../../../src/client/core/openapi.ts","../../../../src/client/services.gen.ngtypecheck.ts","../../../../src/client/core/request.ngtypecheck.ts","../../../../src/client/core/apierror.ngtypecheck.ts","../../../../src/client/core/apiresult.ngtypecheck.ts","../../../../src/client/core/apiresult.ts","../../../../src/client/core/apierror.ts","../../../../src/client/core/request.ts","../../../../src/client/types.gen.ngtypecheck.ts","../../../../src/client/types.gen.ts","../../../../src/client/services.gen.ts","../../../../src/main.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ecf5cb089ea438f2545e04b6c52828c68d0b0f4bfaa661986faf36da273e9892","95444fb6292d5e2f7050d7021383b719c0252bf5f88854973977db9e3e3d8006","241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","06540a9f3f2f88375ada0b89712de1c4310f7398d821c4c10ab5c6477dafb4bc",{"version":"de2d3120ed0989dbc776de71e6c0e8a6b4bf1935760cf468ff9d0e9986ef4c09","affectsGlobalScope":true},"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","97bdf234f5db52085d99c6842db560bca133f8a0413ff76bf830f5f38f088ce3","a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","b493ff8a5175cbbb4e6e8bcfa9506c08f5a7318b2278365cfca3b397c9710ebc","e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","303ee143a869e8f605e7b1d12be6c7269d4cab90d230caba792495be595d4f56","89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","a5eb4835ab561c140ffc4634bb039387d5d0cceebb86918f1696c7ac156d26fd","c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","4252b852dd791305da39f6e1242694c2e560d5e46f9bb26e2aca77252057c026","0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","ba13c7d46a560f3d4df8ffb1110e2bbec5801449af3b1240a718514b5576156e","6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","05c4e2a992bb83066a3a648bad1c310cecd4d0628d7e19545bb107ac9596103a","b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","dd6c3362aaaec60be028b4ba292806da8e7020eef7255c7414ce4a5c3a7138ef","8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","3114b315cd0687aad8b57cff36f9c8c51f5b1bc6254f1b1e8446ae583d8e2474","0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","af733cb878419f3012f0d4df36f918a69ba38d73f3232ba1ab46ef9ede6cb29c","cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","0a01b0b5a9e87d04737084731212106add30f63ec640169f1462ba2e44b6b3a8","06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","e07d62a8a9a3bb65433a62e9bbf400c6bfd2df4de60652af4d738303ee3670a1","bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","851e8d57d6dd17c71e9fa0319abd20ab2feb3fb674d0801611a09b7a25fd281c","c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","748e79252a7f476f8f28923612d7696b214e270cc909bc685afefaac8f052af0","9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","c3f32a185cd27ac232d3428a8d9b362c3f7b4892a58adaaa022828a7dcd13eed","3139c3e5e09251feec7a87f457084bee383717f3626a7f1459d053db2f34eb76","4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","3be870c8e17ec14f1c18fc248f5d2c4669e576404744ff5c63e6dafcf05b97ea","56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","6ab380571d87bd1d6f644fb6ab7837239d54b59f07dc84347b1341f866194214","547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","7c9ed7ffdc6f843ab69e5b2a3e7f667b050dd8d24d0052db81e35480f6d4e15d","7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","3656f0584d5a7ee0d0f2cc2b9cffbb43af92e80186b2ce160ebd4421d1506655","a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","90f690a1c5fcb4c2d19c80fea05c8ab590d8f6534c4c296d70af6293ede67366","be95e987818530082c43909be722a838315a0fc5deb6043de0a76f5221cbad24","9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","1f6058d60eaa8825f59d4b76bbf6cc0e6ad9770948be58de68587b0931da00cc","5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","50100b1a91f61d81ca3329a98e64b7f05cddc5e3cb26b3411adc137c9c631aca","11aceaee5663b4ed597544567d6e6a5a94b66857d7ebd62a9875ea061018cd2c","6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","4bb6035e906946163ecfaec982389d0247ceeac6bdee7f1d07c03d9c224db3aa","8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","c82857a876075e665bbcc78213abfe9e9b0206d502379576d7abd481ade3a569","4f71d883ed6f398ba8fe11fcd003b44bb5f220f840b3eac3c395ad91304e4620","5229c3934f58413f34f1b26c01323c93a5a65a2d9f2a565f216590dfbed1fe32","9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","4c754b03f36ff35fc539f9ebb5f024adbb73ec2d3e4bfb35b385a05abb36a50e","59507446213e73654d6979f3b82dadc4efb0ed177425ae052d96a3f5a5be0d35","a914be97ca7a5be670d1545fc0691ac3fbabd023d7d084b338f6934349798a1f","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","87437ca9dabab3a41d483441696ff9220a19e713f58e0b6a99f1731af10776d7","26c5dfa9aa4e6428f4bb7d14cbf72917ace69f738fa92480b9749eebce933370","8e94328e7ca1a7a517d1aa3c569eac0f6a44f67473f6e22c2c4aff5f9f4a9b38","d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","299f0af797897d77685d606502be72846b3d1f0dc6a2d8c964e9ea3ccbacf5bc","12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","3c97b5ea66276cf463525a6aa9d5bb086bf5e05beac70a0597cda2575503b57b","b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","a31383256374723b47d8b5497a9558bbbcf95bcecfb586a36caf7bfd3693eb0e","06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","64aa66c7458cbfd0f48f88070b08c2f66ae94aba099dac981f17c2322d147c06","11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","9814545517193cf51127d7fbdc3b7335688206ec04ee3a46bba2ee036bd0dcac","0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","c78c1141e492f2eb89e267c814ea68f81859016e9722896b130051e352b48030","1075253b449aed467a773de968b1b383e1406996f0da182b919c5658d2f0990f","5e6caf65cc44e3bb61608442aa6984c1be57da62a5856a5755de1679fb47fdae","4e286af3e300987cc416ff887bb25a3d8446ff986cb58ef56b1a46784f60d8ed","5d226f2f7a70862b54b5b4344311cc8858340a70656e93d9fefa30722e239a4e","2984d3b94ed9eefef3f7f0e33914c3ed62fb88fd480473711480e88d28b5bc59","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","4d7c26d851484ea00db972fd0ba91d614b46e93244b905ad11140eadb4b5cf10","df39110dec55128c3a582b6198651e7ada0263e1d2ea626a9c5ef071668436ea","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","8b8a47fd8c3b647c999ac6f83c85e7f0b851a8954c148a787d9e8e90f3b7da4e","95f506c7f6b38262bd5932f87820faab73121e08bd9306ce440b732a9443fe95","ba83d9c42379d171a178b89cfdf899f07d607234cfbfa93c7e07ce4b4ea1ac34","ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","11280b5a73504747fd14ebd85343c0f0e4c36d5a3ef3c042eff79d086a370efd","c1068efe2ce19e3a479884b1b1a61def411360972220c0ebad760b437db3fbb5","6252e15419c573e76e89c89d8a0124882f0a46ebf34566e54ec854b465382ff2"],"root":[60,270],"options":{"declaration":false,"declarationMap":false,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSourceMap":false,"inlineSources":false,"module":7,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"outDir":"../../../..","skipLibCheck":true,"sourceMap":false,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","useDefineForClassFields":false},"fileIdsList":[[249,251,252],[249,251],[249,250],[251],[251,252,253],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,184,193,195,196,197,198,199,200,202,203,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[106],[62,65],[64],[64,65],[61,62,63,65],[62,64,65,222],[65],[61,64,106],[64,65,222],[64,230],[62,64,65],[74],[97],[118],[64,65,106],[65,113],[64,65,106,124],[64,65,124],[65,165],[65,106],[61,65,183],[61,65,184],[206],[190,192],[201],[190],[61,65,183,190,191],[183,184,192],[204],[61,65,190,191,192],[63,64,65],[61,65],[62,64,184,185,186,187],[106,184,185,186,187],[184,186],[64,185,186,188,189,193],[61,64],[65,208],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[194],[59],[59,258,264],[59,253,258],[59,182,249,253,258,259,264,265],[59,249,251,253,259,266,268],[59,251,253,254,255,259,269]],"referencedMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[262,47],[265,48],[257,47],[258,47],[263,47],[264,47],[256,47],[259,49],[261,47],[266,50],[260,47],[269,51],[267,47],[268,47],[60,47],[270,52]],"exportedModulesMap":[[253,1],[252,2],[251,3],[255,4],[254,5],[249,6],[200,7],[198,7],[248,8],[213,9],[212,9],[113,10],[64,11],[220,10],[221,10],[223,12],[224,10],[225,13],[124,14],[226,10],[197,10],[227,10],[228,15],[229,10],[230,9],[231,16],[232,10],[233,10],[234,10],[235,10],[236,9],[237,10],[238,10],[239,10],[240,10],[241,17],[242,10],[243,10],[244,10],[245,10],[246,10],[63,8],[66,13],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,18],[76,13],[74,13],[77,13],[78,13],[79,13],[80,13],[81,13],[82,13],[83,10],[84,13],[85,13],[86,13],[87,13],[88,13],[89,10],[90,13],[91,13],[92,13],[93,13],[94,13],[95,13],[96,10],[98,19],[97,13],[99,13],[100,13],[101,13],[102,13],[103,17],[104,10],[105,10],[119,20],[107,21],[108,13],[109,13],[110,10],[111,13],[112,13],[114,22],[115,13],[116,13],[117,13],[118,13],[120,13],[121,13],[122,13],[123,13],[125,23],[126,13],[127,13],[128,13],[129,10],[130,13],[131,24],[132,24],[133,24],[134,10],[135,13],[136,13],[137,13],[142,13],[138,13],[139,10],[140,13],[141,10],[143,13],[144,13],[145,13],[146,13],[147,13],[148,13],[149,10],[150,13],[151,13],[152,13],[153,13],[154,13],[155,13],[156,13],[157,13],[158,13],[159,13],[160,13],[161,13],[162,13],[163,13],[164,13],[165,13],[166,25],[167,13],[168,13],[169,13],[170,13],[171,13],[172,13],[173,10],[174,10],[175,10],[176,10],[177,10],[178,13],[179,13],[180,13],[181,13],[199,26],[247,10],[184,27],[183,28],[207,29],[206,30],[202,31],[201,30],[203,32],[192,33],[190,34],[205,35],[204,32],[193,36],[106,37],[62,38],[61,13],[188,39],[189,40],[187,41],[185,13],[194,42],[65,43],[211,9],[209,44],[182,45],[195,46],[262,47],[265,48],[257,47],[258,47],[263,47],[264,47],[256,47],[259,49],[261,47],[266,50],[260,47],[269,51],[267,47],[268,47],[60,47],[270,52]],"semanticDiagnosticsPerFile":[253,252,251,250,255,254,249,222,200,198,248,213,212,113,64,220,221,223,224,225,124,226,197,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,63,66,67,68,69,70,71,72,73,75,76,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,98,97,99,100,101,102,103,104,105,119,107,108,109,110,111,112,114,115,116,117,118,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,142,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,199,247,184,183,207,206,202,201,203,192,190,205,204,191,193,106,62,61,196,188,189,186,187,185,194,65,214,215,208,211,210,216,217,209,218,219,182,195,59,2,3,4,5,6,7,8,9,265,258,264,259,266,269,268,270]},"version":"5.4.5"}
\ No newline at end of file
From 6b03684b5a51aeb86fb48a417622f062ced12ac1 Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 13 Apr 2025 15:34:23 +0200
Subject: [PATCH 16/18] revert
---
.vscode/settings.json | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 4aab4d29c..6df8dbfe3 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,4 +1,7 @@
{
+ "editor.codeActionsOnSave": {
+ "source.fixAll.eslint": "explicit"
+ },
"editor.quickSuggestions": {
"strings": true
},
From 4a396eb90f960c2013416e676e2ceb53da347a32 Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 13 Apr 2025 15:37:03 +0200
Subject: [PATCH 17/18] cleanup
---
packages/client-angular/package.json | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/client-angular/package.json b/packages/client-angular/package.json
index 4115775a9..0f793064d 100644
--- a/packages/client-angular/package.json
+++ b/packages/client-angular/package.json
@@ -1,7 +1,7 @@
{
"name": "@hey-api/client-angular",
- "version": "0.7.2-angular-client-poc",
- "description": "🚀 Fetch API client for `@hey-api/openapi-ts` codegen.",
+ "version": "0.0.0",
+ "description": "🚀 Angular API client for `@hey-api/openapi-ts` codegen.",
"homepage": "https://heyapi.dev/",
"repository": {
"type": "git",
From 3366b34a7cd343985587bc975514fd4caaa7bfe7 Mon Sep 17 00:00:00 2001
From: Max Scopp
Date: Sun, 13 Apr 2025 15:41:23 +0200
Subject: [PATCH 18/18] bruh
---
packages/client-angular/src/index.ts | 2 +-
pnpm-lock.yaml | 17922 +++++--------------------
2 files changed, 3299 insertions(+), 14625 deletions(-)
diff --git a/packages/client-angular/src/index.ts b/packages/client-angular/src/index.ts
index 96f944dd1..30518a1e6 100644
--- a/packages/client-angular/src/index.ts
+++ b/packages/client-angular/src/index.ts
@@ -1,5 +1,5 @@
export { createClient } from './client';
-export { provideHeyApiClient, updateHeyApiHttpClient } from './client';
+export { provideHeyApiClient } from './client';
export type {
Client,
ClientOptions,
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index a6293a3a3..f01dc6f54 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,33 +1,12 @@
-lockfileVersion: 5.4
+lockfileVersion: '9.0'
+
+settings:
+ autoInstallPeers: true
+ excludeLinksFromLockfile: false
importers:
.:
- specifiers:
- '@arethetypeswrong/cli': 0.17.2
- '@changesets/changelog-github': 0.5.0
- '@changesets/cli': 2.27.8
- '@types/node': 22.10.5
- '@typescript-eslint/eslint-plugin': 7.18.0
- '@vitest/coverage-v8': 1.6.0
- eslint: 9.17.0
- eslint-config-prettier: 9.1.0
- eslint-plugin-simple-import-sort: 12.1.1
- eslint-plugin-sort-destructure-keys: 2.0.0
- eslint-plugin-sort-keys-fix: 1.1.2
- eslint-plugin-typescript-sort-keys: 3.3.0
- eslint-plugin-vue: 9.32.0
- globals: 15.14.0
- husky: 9.1.7
- lint-staged: 15.3.0
- prettier: 3.4.2
- rollup: 4.31.0
- rollup-plugin-dts: 6.1.1
- tsup: 8.3.5
- turbo: 2.4.0
- typescript: 5.5.3
- typescript-eslint: 8.19.1
- vitest: 1.6.0
devDependencies:
'@arethetypeswrong/cli':
specifier: 0.17.2
@@ -118,48 +97,22 @@ importers:
version: 1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
docs:
- specifiers:
- '@stackblitz/sdk': 1.11.0
- sharp: 0.33.5
- vitepress: 1.3.0
- vue: 3.5.13
dependencies:
- '@stackblitz/sdk': 1.11.0
+ '@stackblitz/sdk':
+ specifier: 1.11.0
+ version: 1.11.0
devDependencies:
sharp:
specifier: 0.33.5
version: 0.33.5
vitepress:
specifier: 1.3.0
- version: 1.3.0(@algolia/client-search@5.21.0)(@types/node@22.10.5)(@types/react@19.0.1)(axios@1.8.2)(less@4.2.2)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0)(search-insights@2.17.3)(terser@5.39.0)(typescript@5.5.3)
+ version: 1.3.0(@algolia/client-search@5.23.0)(@types/node@22.10.5)(@types/react@19.0.1)(axios@1.8.2)(less@4.2.2)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0)(search-insights@2.17.3)(terser@5.39.0)(typescript@5.5.3)
vue:
specifier: 3.5.13
version: 3.5.13(typescript@5.5.3)
examples/openapi-ts-axios:
- specifiers:
- '@hey-api/client-axios': workspace:*
- '@hey-api/openapi-ts': workspace:*
- '@radix-ui/react-form': 0.1.1
- '@radix-ui/react-icons': 1.3.2
- '@radix-ui/themes': 3.1.6
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- '@typescript-eslint/eslint-plugin': 7.18.0
- '@typescript-eslint/parser': 7.15.0
- '@vitejs/plugin-react': 4.3.1
- autoprefixer: 10.4.19
- axios: 1.7.9
- eslint: 9.17.0
- eslint-plugin-react-hooks: 4.6.2
- eslint-plugin-react-refresh: 0.4.7
- postcss: 8.4.41
- prettier: 3.4.2
- react: 19.0.0
- react-dom: 19.0.0
- tailwindcss: 3.4.9
- typescript: 5.5.3
- vite: 6.0.9
dependencies:
'@hey-api/client-axios':
specifier: workspace:*
@@ -230,19 +183,16 @@ importers:
version: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
examples/openapi-ts-fastify:
- specifiers:
- '@hey-api/client-fetch': workspace:*
- '@hey-api/openapi-ts': workspace:*
- eslint: 9.17.0
- fastify: 5.2.0
- fastify-openapi-glue: 4.8.0
- prettier: 3.4.2
- typescript: 5.5.3
- vitest: 1.6.0
dependencies:
- '@hey-api/client-fetch': link:../../packages/client-fetch
- fastify: 5.2.0
- fastify-openapi-glue: 4.8.0
+ '@hey-api/client-fetch':
+ specifier: workspace:*
+ version: link:../../packages/client-fetch
+ fastify:
+ specifier: 5.2.0
+ version: 5.2.0
+ fastify-openapi-glue:
+ specifier: 4.8.0
+ version: 4.8.0
devDependencies:
'@hey-api/openapi-ts':
specifier: workspace:*
@@ -261,35 +211,25 @@ importers:
version: 1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
examples/openapi-ts-fetch:
- specifiers:
- '@hey-api/client-fetch': workspace:*
- '@hey-api/openapi-ts': workspace:*
- '@radix-ui/react-form': 0.1.1
- '@radix-ui/react-icons': 1.3.2
- '@radix-ui/themes': 3.1.6
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- '@typescript-eslint/eslint-plugin': 7.18.0
- '@typescript-eslint/parser': 7.15.0
- '@vitejs/plugin-react': 4.3.1
- autoprefixer: 10.4.19
- eslint: 9.17.0
- eslint-plugin-react-hooks: 4.6.2
- eslint-plugin-react-refresh: 0.4.7
- postcss: 8.4.41
- prettier: 3.4.2
- react: 19.0.0
- react-dom: 19.0.0
- tailwindcss: 3.4.9
- typescript: 5.5.3
- vite: 6.0.9
dependencies:
- '@hey-api/client-fetch': link:../../packages/client-fetch
- '@radix-ui/react-form': 0.1.1_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-icons': 1.3.2_react@19.0.0
- '@radix-ui/themes': 3.1.6_rwablqpolwkqma5a7gseo64e5i
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
+ '@hey-api/client-fetch':
+ specifier: workspace:*
+ version: link:../../packages/client-fetch
+ '@radix-ui/react-form':
+ specifier: 0.1.1
+ version: 0.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-icons':
+ specifier: 1.3.2
+ version: 1.3.2(react@19.0.0)
+ '@radix-ui/themes':
+ specifier: 3.1.6
+ version: 3.1.6(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react:
+ specifier: 19.0.0
+ version: 19.0.0
+ react-dom:
+ specifier: 19.0.0
+ version: 19.0.0(react@19.0.0)
devDependencies:
'@hey-api/openapi-ts':
specifier: workspace:*
@@ -338,20 +278,6 @@ importers:
version: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
examples/openapi-ts-next:
- specifiers:
- '@hey-api/client-next': workspace:*
- '@hey-api/openapi-ts': workspace:*
- '@types/node': 22.10.5
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- eslint: 9.17.0
- eslint-config-next: 15.1.6
- next: 15.1.6
- postcss: 8.4.41
- react: 19.0.0
- react-dom: 19.0.0
- tailwindcss: 3.4.9
- typescript: 5.5.3
dependencies:
'@hey-api/client-next':
specifier: workspace:*
@@ -366,38 +292,48 @@ importers:
specifier: 19.0.0
version: 19.0.0(react@19.0.0)
devDependencies:
- '@hey-api/openapi-ts': link:../../packages/openapi-ts
- '@types/node': 22.10.5
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- eslint: 9.17.0
- eslint-config-next: 15.1.6_5ss5apc2uy6gwlbeak2m4uqwhi
- postcss: 8.4.41
- tailwindcss: 3.4.9
- typescript: 5.5.3
+ '@hey-api/openapi-ts':
+ specifier: workspace:*
+ version: link:../../packages/openapi-ts
+ '@types/node':
+ specifier: 22.10.5
+ version: 22.10.5
+ '@types/react':
+ specifier: 19.0.1
+ version: 19.0.1
+ '@types/react-dom':
+ specifier: 19.0.1
+ version: 19.0.1
+ eslint:
+ specifier: 9.17.0
+ version: 9.17.0(jiti@2.4.2)
+ eslint-config-next:
+ specifier: 15.1.6
+ version: 15.1.6(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
+ postcss:
+ specifier: 8.4.41
+ version: 8.4.41
+ tailwindcss:
+ specifier: 3.4.9
+ version: 3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3))
+ typescript:
+ specifier: 5.5.3
+ version: 5.5.3
examples/openapi-ts-nuxt:
- specifiers:
- '@hey-api/client-nuxt': workspace:*
- '@hey-api/openapi-ts': workspace:*
- nuxt: 3.14.1592
- vite: 6.0.9
- vue: 3.5.13
- vue-router: 4.5.0
- zod: 3.23.8
dependencies:
'@hey-api/nuxt':
specifier: workspace:*
version: link:../../packages/nuxt
nuxt:
specifier: 3.14.1592
- version: 3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.39.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
+ version: 3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.37.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
vue:
specifier: 3.5.13
- version: 3.5.13(typescript@5.6.1-rc)
+ version: 3.5.13(typescript@5.5.3)
vue-router:
specifier: 4.5.0
- version: 4.5.0(vue@3.5.13(typescript@5.6.1-rc))
+ version: 4.5.0(vue@3.5.13(typescript@5.5.3))
zod:
specifier: 3.23.8
version: 3.23.8
@@ -407,35 +343,25 @@ importers:
version: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
examples/openapi-ts-sample:
- specifiers:
- '@hey-api/client-fetch': workspace:*
- '@hey-api/openapi-ts': workspace:*
- '@radix-ui/react-form': 0.1.1
- '@radix-ui/react-icons': 1.3.2
- '@radix-ui/themes': 3.1.6
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- '@typescript-eslint/eslint-plugin': 7.18.0
- '@typescript-eslint/parser': 7.15.0
- '@vitejs/plugin-react': 4.3.1
- autoprefixer: 10.4.19
- eslint: 9.17.0
- eslint-plugin-react-hooks: 4.6.2
- eslint-plugin-react-refresh: 0.4.7
- postcss: 8.4.41
- prettier: 3.4.2
- react: 19.0.0
- react-dom: 19.0.0
- tailwindcss: 3.4.9
- typescript: 5.5.3
- vite: 6.0.9
dependencies:
- '@hey-api/client-fetch': link:../../packages/client-fetch
- '@radix-ui/react-form': 0.1.1_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-icons': 1.3.2_react@19.0.0
- '@radix-ui/themes': 3.1.6_rwablqpolwkqma5a7gseo64e5i
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
+ '@hey-api/client-fetch':
+ specifier: workspace:*
+ version: link:../../packages/client-fetch
+ '@radix-ui/react-form':
+ specifier: 0.1.1
+ version: 0.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-icons':
+ specifier: 1.3.2
+ version: 1.3.2(react@19.0.0)
+ '@radix-ui/themes':
+ specifier: 3.1.6
+ version: 3.1.6(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react:
+ specifier: 19.0.0
+ version: 19.0.0
+ react-dom:
+ specifier: 19.0.0
+ version: 19.0.0(react@19.0.0)
devDependencies:
'@hey-api/openapi-ts':
specifier: workspace:*
@@ -484,41 +410,13 @@ importers:
version: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
examples/openapi-ts-tanstack-angular-query-experimental:
- specifiers:
- '@angular-devkit/build-angular': ^19.2.0
- '@angular/animations': ^19.2.0
- '@angular/cdk': ^19.2.1
- '@angular/cli': ^19.2.0
- '@angular/common': ^19.2.0
- '@angular/compiler': ^19.2.0
- '@angular/compiler-cli': ^19.2.0
- '@angular/core': ^19.2.0
- '@angular/forms': ^19.2.0
- '@angular/material': ^19.2.1
- '@angular/platform-browser': ^19.2.0
- '@angular/platform-browser-dynamic': ^19.2.0
- '@angular/router': ^19.2.0
- '@hey-api/client-fetch': workspace:*
- '@hey-api/openapi-ts': workspace:*
- '@tanstack/angular-query-experimental': 5.62.13
- '@types/jasmine': ~5.1.0
- jasmine-core: ~5.2.0
- karma: ~6.4.0
- karma-chrome-launcher: ~3.2.0
- karma-coverage: ~2.2.0
- karma-jasmine: ~5.1.0
- karma-jasmine-html-reporter: ~2.1.0
- rxjs: ~7.8.0
- tslib: ^2.8.1
- typescript: 5.5.3
- zone.js: ~0.15.0
dependencies:
'@angular/animations':
specifier: ^19.2.0
version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
'@angular/cdk':
specifier: ^19.2.1
- version: 19.2.2(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ version: 19.2.7(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
'@angular/common':
specifier: ^19.2.0
version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
@@ -533,7 +431,7 @@ importers:
version: 19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
'@angular/material':
specifier: ^19.2.1
- version: 19.2.2(@angular/cdk@19.2.2(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/forms@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
+ version: 19.2.7(@angular/cdk@19.2.7(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/forms@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
'@angular/platform-browser':
specifier: ^19.2.0
version: 19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))
@@ -597,39 +495,31 @@ importers:
version: 5.5.3
examples/openapi-ts-tanstack-react-query:
- specifiers:
- '@hey-api/client-fetch': workspace:*
- '@hey-api/openapi-ts': workspace:*
- '@radix-ui/react-form': 0.1.1
- '@radix-ui/react-icons': 1.3.2
- '@radix-ui/themes': 3.1.6
- '@tanstack/react-query': 5.62.15
- '@tanstack/react-query-devtools': 5.62.15
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- '@typescript-eslint/eslint-plugin': 7.18.0
- '@typescript-eslint/parser': 7.15.0
- '@vitejs/plugin-react': 4.3.1
- autoprefixer: 10.4.19
- eslint: 9.17.0
- eslint-plugin-react-hooks: 4.6.2
- eslint-plugin-react-refresh: 0.4.7
- postcss: 8.4.41
- prettier: 3.4.2
- react: 19.0.0
- react-dom: 19.0.0
- tailwindcss: 3.4.9
- typescript: 5.5.3
- vite: 6.0.9
- dependencies:
- '@hey-api/client-fetch': link:../../packages/client-fetch
- '@radix-ui/react-form': 0.1.1_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-icons': 1.3.2_react@19.0.0
- '@radix-ui/themes': 3.1.6_rwablqpolwkqma5a7gseo64e5i
- '@tanstack/react-query': 5.62.15_react@19.0.0
- '@tanstack/react-query-devtools': 5.62.15_yiraw4ghf3vgr6ue3dbqy7ghf4
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
+ dependencies:
+ '@hey-api/client-fetch':
+ specifier: workspace:*
+ version: link:../../packages/client-fetch
+ '@radix-ui/react-form':
+ specifier: 0.1.1
+ version: 0.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-icons':
+ specifier: 1.3.2
+ version: 1.3.2(react@19.0.0)
+ '@radix-ui/themes':
+ specifier: 3.1.6
+ version: 3.1.6(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@tanstack/react-query':
+ specifier: 5.62.15
+ version: 5.62.15(react@19.0.0)
+ '@tanstack/react-query-devtools':
+ specifier: 5.62.15
+ version: 5.62.15(@tanstack/react-query@5.62.15(react@19.0.0))(react@19.0.0)
+ react:
+ specifier: 19.0.0
+ version: 19.0.0
+ react-dom:
+ specifier: 19.0.0
+ version: 19.0.0(react@19.0.0)
devDependencies:
'@hey-api/openapi-ts':
specifier: workspace:*
@@ -678,31 +568,13 @@ importers:
version: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
examples/openapi-ts-tanstack-svelte-query:
- specifiers:
- '@fontsource/fira-mono': 5.0.0
- '@hey-api/client-fetch': workspace:*
- '@hey-api/openapi-ts': workspace:*
- '@neoconfetti/svelte': 2.0.0
- '@sveltejs/adapter-auto': 4.0.0
- '@sveltejs/kit': 2.17.1
- '@sveltejs/vite-plugin-svelte': 5.0.3
- '@tanstack/svelte-query': 5.62.12
- '@types/eslint': 9.6.0
- eslint: 9.17.0
- eslint-config-prettier: 9.1.0
- eslint-plugin-svelte: 2.36.0
- globals: 15.14.0
- prettier: 3.4.2
- prettier-plugin-svelte: 3.1.2
- svelte: 5.19.9
- svelte-check: 4.1.4
- typescript: 5.5.3
- typescript-eslint: 8.19.1
- vite: 6.0.9
- vitest: 1.6.0
dependencies:
- '@hey-api/client-fetch': link:../../packages/client-fetch
- '@tanstack/svelte-query': 5.62.12_svelte@5.19.9
+ '@hey-api/client-fetch':
+ specifier: workspace:*
+ version: link:../../packages/client-fetch
+ '@tanstack/svelte-query':
+ specifier: 5.62.12
+ version: 5.62.12(svelte@5.19.9)
devDependencies:
'@fontsource/fira-mono':
specifier: 5.0.0
@@ -763,44 +635,25 @@ importers:
version: 1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
examples/openapi-ts-tanstack-vue-query:
- specifiers:
- '@hey-api/client-fetch': workspace:*
- '@hey-api/openapi-ts': workspace:*
- '@rushstack/eslint-patch': 1.10.5
- '@tanstack/vue-query': 5.62.12
- '@tanstack/vue-query-devtools': 5.62.12
- '@tsconfig/node20': 20.1.4
- '@types/jsdom': 21.1.7
- '@types/node': 22.10.5
- '@vitejs/plugin-vue': 5.2.1
- '@vitejs/plugin-vue-jsx': 4.1.1
- '@vue/eslint-config-prettier': 10.1.0
- '@vue/eslint-config-typescript': 14.2.0
- '@vue/test-utils': 2.4.6
- '@vue/tsconfig': 0.7.0
- autoprefixer: 10.4.20
- eslint: 9.17.0
- eslint-plugin-vue: 9.32.0
- jsdom: 23.0.0
- npm-run-all2: 6.2.0
- pinia: 2.3.0
- postcss: 8.4.41
- prettier: 3.4.2
- tailwindcss: 3.4.9
- typescript: 5.5.3
- vite: 6.0.9
- vite-plugin-vue-devtools: 7.7.0
- vitest: 1.6.0
- vue: 3.5.13
- vue-router: 4.5.0
- vue-tsc: 2.2.0
- dependencies:
- '@hey-api/client-fetch': link:../../packages/client-fetch
- '@tanstack/vue-query': 5.62.12_vue@3.5.13
- '@tanstack/vue-query-devtools': 5.62.12_xazzx54hlffwcp6dce6seqv4du
- pinia: 2.3.0_3jdk7euojidjqlkepbdrol3p3i
- vue: 3.5.13_typescript@5.5.3
- vue-router: 4.5.0_vue@3.5.13
+ dependencies:
+ '@hey-api/client-fetch':
+ specifier: workspace:*
+ version: link:../../packages/client-fetch
+ '@tanstack/vue-query':
+ specifier: 5.62.12
+ version: 5.62.12(vue@3.5.13(typescript@5.5.3))
+ '@tanstack/vue-query-devtools':
+ specifier: 5.62.12
+ version: 5.62.12(@tanstack/vue-query@5.62.12(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3))
+ pinia:
+ specifier: 2.3.0
+ version: 2.3.0(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3))
+ vue:
+ specifier: 3.5.13
+ version: 3.5.13(typescript@5.5.3)
+ vue-router:
+ specifier: 4.5.0
+ version: 4.5.0(vue@3.5.13(typescript@5.5.3))
devDependencies:
'@hey-api/openapi-ts':
specifier: workspace:*
@@ -867,7 +720,7 @@ importers:
version: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
vite-plugin-vue-devtools:
specifier: 7.7.0
- version: 7.7.0(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
+ version: 7.7.0(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
vitest:
specifier: 1.6.0
version: 1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
@@ -875,10 +728,22 @@ importers:
specifier: 2.2.0
version: 2.2.0(typescript@5.5.3)
+ packages/client-angular:
+ devDependencies:
+ '@angular/common':
+ specifier: ^19.2.0
+ version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ '@angular/core':
+ specifier: ^19.2.0
+ version: 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
+ '@hey-api/client-core':
+ specifier: workspace:*
+ version: link:../client-core
+ rxjs:
+ specifier: ~7.8.1
+ version: 7.8.1
+
packages/client-axios:
- specifiers:
- '@hey-api/client-core': workspace:*
- axios: 1.7.9
devDependencies:
'@hey-api/client-core':
specifier: workspace:*
@@ -890,8 +755,7 @@ importers:
specifier: 1.8.2
version: 1.8.2
- packages/client-core:
- specifiers: {}
+ packages/client-core: {}
packages/client-custom:
devDependencies:
@@ -903,8 +767,6 @@ importers:
version: link:../openapi-ts
packages/client-fetch:
- specifiers:
- '@hey-api/client-core': workspace:*
devDependencies:
'@hey-api/client-core':
specifier: workspace:*
@@ -914,8 +776,6 @@ importers:
version: link:../openapi-ts
packages/client-next:
- specifiers:
- '@hey-api/client-core': workspace:*
devDependencies:
'@hey-api/client-core':
specifier: workspace:*
@@ -925,19 +785,13 @@ importers:
version: link:../openapi-ts
packages/client-nuxt:
- specifiers:
- '@hey-api/client-core': workspace:*
- '@nuxt/test-utils': 3.14.0
- nuxt: '>= 3.0.0 < 4'
- vite: 6.0.9
- vue: '>= 3.5.13 < 4'
dependencies:
nuxt:
specifier: '>= 3.0.0 < 4'
- version: 3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.39.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
+ version: 3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.37.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
vue:
specifier: '>= 3.5.13 < 4'
- version: 3.5.13(typescript@5.6.1-rc)
+ version: 3.5.13(typescript@5.5.3)
devDependencies:
'@hey-api/client-core':
specifier: workspace:*
@@ -947,7 +801,7 @@ importers:
version: link:../openapi-ts
'@nuxt/test-utils':
specifier: 3.14.0
- version: 3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.6(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
+ version: 3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.8(encoding@0.1.13))(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3))
vite:
specifier: 6.0.13
version: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
@@ -978,61 +832,18 @@ importers:
version: link:../openapi-ts
'@nuxt/module-builder':
specifier: 0.8.4
- version: 0.8.4(@nuxt/kit@3.15.4(magicast@0.3.5))(nuxi@3.22.5)(sass@1.85.0)(typescript@5.6.1-rc)
+ version: 0.8.4(@nuxt/kit@3.15.4(magicast@0.3.5))(nuxi@3.23.1)(sass@1.85.0)(typescript@5.6.1-rc)
'@nuxt/schema':
specifier: 3.14.1592
version: 3.14.1592(magicast@0.3.5)(rollup@3.29.5)
'@nuxt/test-utils':
specifier: 3.14.0
- version: 3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.6(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
+ version: 3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.8(encoding@0.1.13))(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
vite:
specifier: 6.0.13
version: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
packages/openapi-ts:
- specifiers:
- '@angular-devkit/build-angular': 19.2.0
- '@angular/animations': 19.2.0
- '@angular/cli': 19.2.0
- '@angular/common': 19.2.0
- '@angular/compiler': 19.2.0
- '@angular/compiler-cli': 19.2.0
- '@angular/core': 19.2.0
- '@angular/forms': 19.2.0
- '@angular/platform-browser': 19.2.0
- '@angular/platform-browser-dynamic': 19.2.0
- '@angular/router': 19.2.0
- '@hey-api/client-axios': workspace:*
- '@hey-api/client-fetch': workspace:*
- '@hey-api/client-next': workspace:*
- '@hey-api/client-nuxt': workspace:*
- '@hey-api/json-schema-ref-parser': 1.0.2
- '@tanstack/angular-query-experimental': 5.62.13
- '@tanstack/react-query': 5.62.15
- '@tanstack/solid-query': 5.51.21
- '@tanstack/svelte-query': 5.62.12
- '@tanstack/vue-query': 5.62.12
- '@types/cross-spawn': 6.0.6
- '@types/express': 4.17.21
- axios: 1.7.9
- c12: 2.0.1
- commander: 13.0.0
- cross-spawn: 7.0.5
- eslint: 9.17.0
- express: 4.21.0
- fastify: 5.2.0
- glob: 10.4.3
- handlebars: 4.7.8
- node-fetch: 3.3.2
- nuxt: 3.14.1592
- prettier: 3.4.2
- puppeteer: 22.12.1
- rxjs: 7.8.1
- ts-node: 10.9.2
- tslib: 2.8.1
- typescript: 5.5.3
- vue: 3.5.13
- zod: 3.23.8
dependencies:
'@hey-api/json-schema-ref-parser':
specifier: 1.0.4
@@ -1184,7 +995,7 @@ importers:
version: 3.3.2
nuxt:
specifier: 3.14.1592
- version: 3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.39.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
+ version: 3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.37.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
prettier:
specifier: 3.4.2
version: 3.4.2
@@ -1224,203 +1035,94 @@ importers:
packages:
- /@algolia/autocomplete-core/1.17.9_xxmpinlwddpyh675ykryvz2mce:
+ '@algolia/autocomplete-core@1.17.9':
resolution: {integrity: sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==}
- dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.9_xxmpinlwddpyh675ykryvz2mce
- '@algolia/autocomplete-shared': 1.17.9_vhprxalrhraqfiwdqogz562eue
- transitivePeerDependencies:
- - '@algolia/client-search'
- - algoliasearch
- - search-insights
- dev: true
- /@algolia/autocomplete-plugin-algolia-insights/1.17.9_xxmpinlwddpyh675ykryvz2mce:
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.9':
resolution: {integrity: sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ==}
peerDependencies:
search-insights: '>= 1 < 3'
- dependencies:
- '@algolia/autocomplete-shared': 1.17.9_vhprxalrhraqfiwdqogz562eue
- search-insights: 2.17.3
- transitivePeerDependencies:
- - '@algolia/client-search'
- - algoliasearch
- dev: true
- /@algolia/autocomplete-preset-algolia/1.17.9_vhprxalrhraqfiwdqogz562eue:
+ '@algolia/autocomplete-preset-algolia@1.17.9':
resolution: {integrity: sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- dependencies:
- '@algolia/autocomplete-shared': 1.17.9_vhprxalrhraqfiwdqogz562eue
- '@algolia/client-search': 5.20.4
- algoliasearch: 5.20.4
- dev: true
- /@algolia/autocomplete-shared/1.17.9_vhprxalrhraqfiwdqogz562eue:
+ '@algolia/autocomplete-shared@1.17.9':
resolution: {integrity: sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- dependencies:
- '@algolia/client-search': 5.20.4
- algoliasearch: 5.20.4
- dev: true
- '@algolia/client-abtesting@5.21.0':
- resolution: {integrity: sha512-I239aSmXa3pXDhp3AWGaIfesqJBNFA7drUM8SIfNxMIzvQXUnHRf4rW1o77QXLI/nIClNsb8KOLaB62gO9LnlQ==}
+ '@algolia/client-abtesting@5.23.0':
+ resolution: {integrity: sha512-AyZ+9CUgWXwaaJ2lSwOJSy+/w0MFBPFqLrjWYs/HEpYMzBuFfGNZ7gEM9a7h4j7jY8hSBARBl8qdvInmj5vOEQ==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
- dev: true
- '@algolia/client-analytics@5.21.0':
- resolution: {integrity: sha512-OxoUfeG9G4VE4gS7B4q65KkHzdGsQsDwxQfR5J9uKB8poSGuNlHJWsF3ABqCkc5VliAR0m8KMjsQ9o/kOpEGnQ==}
+ '@algolia/client-analytics@5.23.0':
+ resolution: {integrity: sha512-oeKCPwLBnTEPF/RWr0aaJnrfRDfFRLT5O7KV0OF1NmpEXvmzLmN7RwnwDKsNtPUHNfpJ6esP9xzkPEtJabrZ2w==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
- dev: true
- '@algolia/client-common@5.21.0':
- resolution: {integrity: sha512-iHLgDQFyZNe9M16vipbx6FGOA8NoMswHrfom/QlCGoyh7ntjGvfMb+J2Ss8rRsAlOWluv8h923Ku3QVaB0oWDQ==}
+ '@algolia/client-common@5.23.0':
+ resolution: {integrity: sha512-9jacdC44vXLSaYKNLkFpbU1J4BbBPi/N7uoPhcGO//8ubRuVzigH6+RfK5FbudmQlqFt0J5DGUCVeTlHtgyUeg==}
engines: {node: '>= 14.0.0'}
- dev: true
- '@algolia/client-insights@5.21.0':
- resolution: {integrity: sha512-y7XBO9Iwb75FLDl95AYcWSLIViJTpR5SUUCyKsYhpP9DgyUqWbISqDLXc96TS9shj+H+7VsTKA9cJK8NUfVN6g==}
+ '@algolia/client-insights@5.23.0':
+ resolution: {integrity: sha512-/Gw5UitweRsnyb24Td4XhjXmsx8PxFzCI0oW6FZZvyr4kjzB9ECP2IjO+PdDq1A2fzDl/LXQ+u8ROudoVnXnQg==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
- dev: true
- '@algolia/client-personalization@5.21.0':
- resolution: {integrity: sha512-6KU658lD9Tss4oCX6c/O15tNZxw7vR+WAUG95YtZzYG/KGJHTpy2uckqbMmC2cEK4a86FAq4pH5azSJ7cGMjuw==}
+ '@algolia/client-personalization@5.23.0':
+ resolution: {integrity: sha512-ivrEZBoXfDatpqpifgHauydxHEe4udNqJ0gy7adR2KODeQ+39MQeaT10I24mu+eylIuiQKJRqORgEdLZycq2qQ==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
- dev: true
- '@algolia/client-query-suggestions@5.21.0':
- resolution: {integrity: sha512-pG6MyVh1v0X+uwrKHn3U+suHdgJ2C+gug+UGkNHfMELHMsEoWIAQhxMBOFg7hCnWBFjQnuq6qhM3X9X5QO3d9Q==}
+ '@algolia/client-query-suggestions@5.23.0':
+ resolution: {integrity: sha512-DjSgJWqTcsnlXEKqDsU7Y2vB/W/VYLlr6UfkzJkMuKB554Ia7IJr4keP2AlHVjjbBG62IDpdh5OkEs/+fbWsOA==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
- dev: true
- '@algolia/client-search@5.21.0':
- resolution: {integrity: sha512-nZfgJH4njBK98tFCmCW1VX/ExH4bNOl9DSboxeXGgvhoL0fG1+4DDr/mrLe21OggVCQqHwXBMh6fFInvBeyhiQ==}
+ '@algolia/client-search@5.23.0':
+ resolution: {integrity: sha512-XAYWUYUhEG4OIdo/N7H/OFFRD9fokfv3bBTky+4Y4/q07bxhnrGSUvcrU6JQ2jJTQyg6kv0ke1EIfiTO/Xxb+g==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
- dev: true
- '@algolia/ingestion@1.21.0':
- resolution: {integrity: sha512-k6MZxLbZphGN5uRri9J/krQQBjUrqNcScPh985XXEFXbSCRvOPKVtjjLdVjGVHXXPOQgKrIZHxIdRNbHS+wVuA==}
+ '@algolia/ingestion@1.23.0':
+ resolution: {integrity: sha512-ULbykzzhhLVofCDU1m/CqSzTyKmjaxA/z1d6o6hgUuR6X7/dll9/G0lu0e4vmWIOItklWWrhU2V8sXD0YGBIHg==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
- dev: true
- '@algolia/monitoring@1.21.0':
- resolution: {integrity: sha512-FiW5nnmyHvaGdorqLClw3PM6keXexAMiwbwJ9xzQr4LcNefLG3ln82NafRPgJO/z0dETAOKjds5aSmEFMiITHQ==}
+ '@algolia/monitoring@1.23.0':
+ resolution: {integrity: sha512-oB3wG7CgQJQr+uoijV7bWBphiSHkvGX43At8RGgkDyc7Aeabcp9ik5HgLC1YDgbHVOlQI+tce5HIbDCifzQCIg==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
- dev: true
- '@algolia/recommend@5.21.0':
- resolution: {integrity: sha512-+JXavbbliaLmah5QNgc/TDW/+r0ALa+rGhg5Y7+pF6GpNnzO0L+nlUaDNE8QbiJfz54F9BkwFUnJJeRJAuzTFw==}
+ '@algolia/recommend@5.23.0':
+ resolution: {integrity: sha512-4PWvCV6VGhnCMAbv2zfQUAlc3ofMs6ovqKlC/xcp7tWaucYd//piHg9CcCM4S0p9OZznEGQMRYPt2uqbk6V9vg==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
- dev: true
- '@algolia/requester-browser-xhr@5.21.0':
- resolution: {integrity: sha512-Iw+Yj5hOmo/iixHS94vEAQ3zi5GPpJywhfxn1el/zWo4AvPIte/+1h9Ywgw/+3M7YBj4jgAkScxjxQCxzLBsjA==}
+ '@algolia/requester-browser-xhr@5.23.0':
+ resolution: {integrity: sha512-bacOsX41pnsupNB0k0Ny+1JDchQxIsZIcp69GKDBT0NgTHG8OayEO141eFalNmGil+GXPY0NUPRpx+5s4RdhGA==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- dev: true
- '@algolia/requester-fetch@5.21.0':
- resolution: {integrity: sha512-Z00SRLlIFj3SjYVfsd9Yd3kB3dUwQFAkQG18NunWP7cix2ezXpJqA+xAoEf9vc4QZHdxU3Gm8gHAtRiM2iVaTQ==}
+ '@algolia/requester-fetch@5.23.0':
+ resolution: {integrity: sha512-tVNFREexJWDrvc23evmRgAcb2KLZuVilOIB/rVnQCl0GDbqIWJuQ1lG22HKqvCEQFthHkgVFGLYE74wQ96768g==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- dev: true
- '@algolia/requester-node-http@5.21.0':
- resolution: {integrity: sha512-WqU0VumUILrIeVYCTGZlyyZoC/tbvhiyPxfGRRO1cSjxN558bnJLlR2BvS0SJ5b75dRNK7HDvtXo2QoP9eLfiA==}
+ '@algolia/requester-node-http@5.23.0':
+ resolution: {integrity: sha512-XXHbq2heOZc9EFCc4z+uyHS9YRBygZbYQVsWjWZWx8hdAz+tkBX/jLHM9Xg+3zO0/v8JN6pcZzqYEVsdrLeNLg==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-common': 5.20.4
- dev: true
- /@alloc/quick-lru/5.2.0:
+ '@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
- dev: true
- /@ampproject/remapping/2.3.0:
+ '@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.25
- /@andrewbranch/untar.js/1.0.3:
+ '@andrewbranch/untar.js@1.0.3':
resolution: {integrity: sha512-Jh15/qVmrLGhkKJBdXlK1+9tY4lZruYjsgkDFj08ZmDiWVBLJcqkok7Z0/R0In+i1rScBpJlSvrTS2Lm41Pbnw==}
- dev: true
- /@angular-devkit/architect/0.1902.0:
+ '@angular-devkit/architect@0.1902.0':
resolution: {integrity: sha512-F/3O38QOYCwNqECNQauKb56GYdST9SrRSiqTNc5xpnUL//A09kaucmKSZ2VJAVY7K/rktSQn5viiQ3rTJLiZgA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- dependencies:
- '@angular-devkit/core': 19.2.0
- rxjs: 7.8.1
- transitivePeerDependencies:
- - chokidar
- dev: true
-
- /@angular-devkit/architect/0.1902.1:
- resolution: {integrity: sha512-iCm6F4HYO5aIgjzhjOUPKnyFHcn6yVE8gCpjWFQL8JVqrVzFG27vMZ0wK8b8rMDIDt6/hr2FOSSwChVg/cv9GQ==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- dependencies:
- '@angular-devkit/core': 19.2.1
- rxjs: 7.8.1
- transitivePeerDependencies:
- - chokidar
- dev: true
- /@angular-devkit/build-angular/19.2.0_l74kqewy3mgw4kss3d6y3cl35q:
+ '@angular-devkit/build-angular@19.2.0':
resolution: {integrity: sha512-chPiwTKQPYQn34MZ+5spTCSVSY5vha9C5UKPHsEFNiNT0Iw1mQRJkFvDyq9WZnoc4B0w5KRIiR08EjOTNHj/1w==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
@@ -1463,249 +1165,15 @@ packages:
optional: true
tailwindcss:
optional: true
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1902.0
- '@angular-devkit/build-webpack': 0.1902.0_5zbyscedqcbhwxffq77lgi6ycy
- '@angular-devkit/core': 19.2.0
- '@angular/build': 19.2.0_c6gapkogadnq2yppy5hilczjhy
- '@angular/compiler-cli': 19.2.0_w2w2t63mjpx5wmltkoetyqksa4
- '@babel/core': 7.26.9
- '@babel/generator': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-transform-async-generator-functions': 7.26.8_@babel+core@7.26.9
- '@babel/plugin-transform-async-to-generator': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-runtime': 7.26.9_@babel+core@7.26.9
- '@babel/preset-env': 7.26.9_@babel+core@7.26.9
- '@babel/runtime': 7.26.9
- '@discoveryjs/json-ext': 0.6.3
- '@ngtools/webpack': 19.2.0_i65f5ivnszhmjgy6wkusvxxd4i
- '@vitejs/plugin-basic-ssl': 1.2.0_vite@6.2.1
- ansi-colors: 4.1.3
- autoprefixer: 10.4.20_postcss@8.5.2
- babel-loader: 9.2.1_36thhkzb4fzrlvycd72b4vi7u4
- browserslist: 4.24.4
- copy-webpack-plugin: 12.0.2_webpack@5.98.0
- css-loader: 7.1.2_webpack@5.98.0
- esbuild-wasm: 0.25.0
- fast-glob: 3.3.3
- http-proxy-middleware: 3.0.3
- istanbul-lib-instrument: 6.0.3
- jsonc-parser: 3.3.1
- karma-source-map-support: 1.4.0
- less: 4.2.2
- less-loader: 12.2.0_less@4.2.2+webpack@5.98.0
- license-webpack-plugin: 4.0.2_webpack@5.98.0
- loader-utils: 3.3.1
- mini-css-extract-plugin: 2.9.2_webpack@5.98.0
- open: 10.1.0
- ora: 5.4.1
- picomatch: 4.0.2
- piscina: 4.8.0
- postcss: 8.5.2
- postcss-loader: 8.1.1_xs7e2gsbl5bxvzarier6f656oi
- resolve-url-loader: 5.0.0
- rxjs: 7.8.1
- sass: 1.85.0
- sass-loader: 16.0.5_sass@1.85.0+webpack@5.98.0
- semver: 7.7.1
- source-map-loader: 5.0.0_webpack@5.98.0
- source-map-support: 0.5.21
- terser: 5.39.0
- tree-kill: 1.2.2
- tslib: 2.8.1
- typescript: 5.5.3
- webpack: 5.98.0_esbuild@0.25.0
- webpack-dev-middleware: 7.4.2_webpack@5.98.0
- webpack-dev-server: 5.2.0_webpack@5.98.0
- webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0_webpack@5.98.0
- optionalDependencies:
- esbuild: 0.25.0
- transitivePeerDependencies:
- - '@angular/compiler'
- - '@rspack/core'
- - '@swc/core'
- - '@types/node'
- - bufferutil
- - chokidar
- - debug
- - html-webpack-plugin
- - jiti
- - lightningcss
- - node-sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - tsx
- - uglify-js
- - utf-8-validate
- - vite
- - webpack-cli
- - yaml
- dev: true
-
- /@angular-devkit/build-angular/19.2.1_xuvgtdsp76f6ukkfrnara3b5mi:
- resolution: {integrity: sha512-YJdHON1005lBzXFFfTJBrcFvbgWMEhvkziQw1IuQpbl+aa2XbkPnBFbT/d5FWjQpIWVpPYRMMMCSVSqeICYUcg==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- peerDependencies:
- '@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0
- '@angular/localize': ^19.0.0 || ^19.2.0-next.0
- '@angular/platform-server': ^19.0.0 || ^19.2.0-next.0
- '@angular/service-worker': ^19.0.0 || ^19.2.0-next.0
- '@angular/ssr': ^19.2.1
- '@web/test-runner': ^0.20.0
- browser-sync: ^3.0.2
- jest: ^29.5.0
- jest-environment-jsdom: ^29.5.0
- karma: ^6.3.0
- ng-packagr: ^19.0.0 || ^19.2.0-next.0
- protractor: ^7.0.0
- tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
- typescript: '>=5.5 <5.9'
- peerDependenciesMeta:
- '@angular/localize':
- optional: true
- '@angular/platform-server':
- optional: true
- '@angular/service-worker':
- optional: true
- '@angular/ssr':
- optional: true
- '@web/test-runner':
- optional: true
- browser-sync:
- optional: true
- jest:
- optional: true
- jest-environment-jsdom:
- optional: true
- karma:
- optional: true
- ng-packagr:
- optional: true
- protractor:
- optional: true
- tailwindcss:
- optional: true
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1902.1
- '@angular-devkit/build-webpack': 0.1902.1_5zbyscedqcbhwxffq77lgi6ycy
- '@angular-devkit/core': 19.2.1
- '@angular/build': 19.2.1_h7b3gajto663iezu3za2fw32hi
- '@angular/compiler-cli': 19.2.1_gvbyqgimgk2h6nc52mo4mq53z4
- '@babel/core': 7.26.9
- '@babel/generator': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-transform-async-generator-functions': 7.26.8_@babel+core@7.26.9
- '@babel/plugin-transform-async-to-generator': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-runtime': 7.26.9_@babel+core@7.26.9
- '@babel/preset-env': 7.26.9_@babel+core@7.26.9
- '@babel/runtime': 7.26.9
- '@discoveryjs/json-ext': 0.6.3
- '@ngtools/webpack': 19.2.1_3aqooojspjxulucedfvoyd7exm
- '@vitejs/plugin-basic-ssl': 1.2.0_vite@6.2.1
- ansi-colors: 4.1.3
- autoprefixer: 10.4.20_postcss@8.5.2
- babel-loader: 9.2.1_36thhkzb4fzrlvycd72b4vi7u4
- browserslist: 4.24.4
- copy-webpack-plugin: 12.0.2_webpack@5.98.0
- css-loader: 7.1.2_webpack@5.98.0
- esbuild-wasm: 0.25.0
- fast-glob: 3.3.3
- http-proxy-middleware: 3.0.3
- istanbul-lib-instrument: 6.0.3
- jsonc-parser: 3.3.1
- karma: 6.4.4
- karma-source-map-support: 1.4.0
- less: 4.2.2
- less-loader: 12.2.0_less@4.2.2+webpack@5.98.0
- license-webpack-plugin: 4.0.2_webpack@5.98.0
- loader-utils: 3.3.1
- mini-css-extract-plugin: 2.9.2_webpack@5.98.0
- open: 10.1.0
- ora: 5.4.1
- picomatch: 4.0.2
- piscina: 4.8.0
- postcss: 8.5.2
- postcss-loader: 8.1.1_xs7e2gsbl5bxvzarier6f656oi
- resolve-url-loader: 5.0.0
- rxjs: 7.8.1
- sass: 1.85.0
- sass-loader: 16.0.5_sass@1.85.0+webpack@5.98.0
- semver: 7.7.1
- source-map-loader: 5.0.0_webpack@5.98.0
- source-map-support: 0.5.21
- terser: 5.39.0
- tree-kill: 1.2.2
- tslib: 2.8.1
- typescript: 5.5.3
- webpack: 5.98.0_esbuild@0.25.0
- webpack-dev-middleware: 7.4.2_webpack@5.98.0
- webpack-dev-server: 5.2.0_webpack@5.98.0
- webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0_webpack@5.98.0
- optionalDependencies:
- esbuild: 0.25.0
- transitivePeerDependencies:
- - '@angular/compiler'
- - '@rspack/core'
- - '@swc/core'
- - '@types/node'
- - bufferutil
- - chokidar
- - debug
- - html-webpack-plugin
- - jiti
- - lightningcss
- - node-sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - tsx
- - uglify-js
- - utf-8-validate
- - vite
- - webpack-cli
- - yaml
- dev: true
- /@angular-devkit/build-webpack/0.1902.0_5zbyscedqcbhwxffq77lgi6ycy:
+ '@angular-devkit/build-webpack@0.1902.0':
resolution: {integrity: sha512-SZsesHqrFRRUHXo4NZ1yZ+RsH/hGMVFoWb65pk+POSJYR4W6nm4pO0B2Uww2FWzv1MFfqYBOig/rBqhMB+yJ7Q==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^5.0.2
- dependencies:
- '@angular-devkit/architect': 0.1902.0
- rxjs: 7.8.1
- webpack: 5.98.0_esbuild@0.25.0
- webpack-dev-server: 5.2.0_webpack@5.98.0
- transitivePeerDependencies:
- - chokidar
- dev: true
-
- /@angular-devkit/build-webpack/0.1902.1_5zbyscedqcbhwxffq77lgi6ycy:
- resolution: {integrity: sha512-KXvYkxvdun90GxAzaHIXkIKaYeJY9kQ89xaFXOaaJi6a9a+EkovnkHSPwPQ6uNqJo/zbwU5jKkT/rI/g+5D5Bg==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- peerDependencies:
- webpack: ^5.30.0
- webpack-dev-server: ^5.0.2
- dependencies:
- '@angular-devkit/architect': 0.1902.1
- rxjs: 7.8.1
- webpack: 5.98.0_esbuild@0.25.0
- webpack-dev-server: 5.2.0_webpack@5.98.0
- transitivePeerDependencies:
- - chokidar
- dev: true
- /@angular-devkit/core/19.2.0:
+ '@angular-devkit/core@19.2.0':
resolution: {integrity: sha512-qd2nYoHZOYWRsu4MjXG8KiDtfM9ZDRR2rDGa+rDZ3CYAsngCrPmqOebun10dncUjwAidX49P4S2U2elOmX3VYQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
@@ -1713,79 +1181,18 @@ packages:
peerDependenciesMeta:
chokidar:
optional: true
- dependencies:
- ajv: 8.17.1
- ajv-formats: 3.0.1
- jsonc-parser: 3.3.1
- picomatch: 4.0.2
- rxjs: 7.8.1
- source-map: 0.7.4
- dev: true
-
- /@angular-devkit/core/19.2.1:
- resolution: {integrity: sha512-DYsoU8emxmBkfIKI693BNUqocwHTVHLjgybyD5nU1qMOH+D/jqEzL5bQbjhUeqeARyrzDg7tyPM5Xno+GsS7KQ==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- peerDependencies:
- chokidar: ^4.0.0
- peerDependenciesMeta:
- chokidar:
- optional: true
- dependencies:
- ajv: 8.17.1
- ajv-formats: 3.0.1
- jsonc-parser: 3.3.1
- picomatch: 4.0.2
- rxjs: 7.8.1
- source-map: 0.7.4
- dev: true
- /@angular-devkit/schematics/19.2.0:
+ '@angular-devkit/schematics@19.2.0':
resolution: {integrity: sha512-cGGqUGqBXIGJkeL65l70y0BflDAu/0Zi/ohbYat3hvadFfumRJnVElVfJ59JtWO7FfKQjxcwCVTyuQ/tevX/9A==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- dependencies:
- '@angular-devkit/core': 19.2.0
- jsonc-parser: 3.3.1
- magic-string: 0.30.17
- ora: 5.4.1
- rxjs: 7.8.1
- transitivePeerDependencies:
- - chokidar
- dev: true
-
- /@angular-devkit/schematics/19.2.1:
- resolution: {integrity: sha512-IVWXGROEACyV+YH/s9xvpbLVblK55GvqldZRCMvpevtXMJy1aubOPOB+8TkHOVBlmAteW/5I7ouDbQWVZjNfww==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- dependencies:
- '@angular-devkit/core': 19.2.1
- jsonc-parser: 3.3.1
- magic-string: 0.30.17
- ora: 5.4.1
- rxjs: 7.8.1
- transitivePeerDependencies:
- - chokidar
- dev: true
- /@angular/animations/19.2.0_@angular+core@19.2.0:
+ '@angular/animations@19.2.0':
resolution: {integrity: sha512-GJDwtZ+7XmAAbzCbPSJrR1iMs2l16VoA7myeVl6n5k/KsZywqb4KhPmjzLKpQlAFP0NRjg1LbHc2Fsus7/Ydag==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
'@angular/core': 19.2.0
- dependencies:
- '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
- tslib: 2.8.1
- dev: true
-
- /@angular/animations/19.2.1_@angular+core@19.2.1:
- resolution: {integrity: sha512-I67XYXBic9bM+yfce6Dqa950TsrEWB6uwSB2l6eIg3Byp48yJxQYbyjvjDbMXPieU2Bzo8FYVSD+lc8cF4+L6A==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
- peerDependencies:
- '@angular/core': 19.2.1
- dependencies:
- '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
- tslib: 2.8.1
- dev: false
- /@angular/build/19.2.0_c6gapkogadnq2yppy5hilczjhy:
+ '@angular/build@19.2.0':
resolution: {integrity: sha512-IdTA9SvYReNcANm0tMgEtsx8qdIqKZYoF2xPZw2YDh6TeBWZK8VwoWtpXzkOBWedf9vgcrT7y0Y8gB11pgEP6g==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
@@ -1820,206 +1227,35 @@ packages:
optional: true
tailwindcss:
optional: true
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1902.0
- '@angular/compiler': 19.2.0_@angular+core@19.2.0
- '@angular/compiler-cli': 19.2.0_w2w2t63mjpx5wmltkoetyqksa4
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-syntax-import-attributes': 7.26.0_@babel+core@7.26.9
- '@inquirer/confirm': 5.1.6_@types+node@22.13.10
- '@vitejs/plugin-basic-ssl': 1.2.0_vite@6.1.0
- beasties: 0.2.0
- browserslist: 4.24.4
- esbuild: 0.25.0
- fast-glob: 3.3.3
- https-proxy-agent: 7.0.6
- istanbul-lib-instrument: 6.0.3
- less: 4.2.2
- listr2: 8.2.5
- magic-string: 0.30.17
- mrmime: 2.0.1
- parse5-html-rewriting-stream: 7.0.0
- picomatch: 4.0.2
- piscina: 4.8.0
- postcss: 8.5.2
- rollup: 4.34.8
- sass: 1.85.0
- semver: 7.7.1
- source-map-support: 0.5.21
- typescript: 5.5.3
- vite: 6.1.0_4c45tymmfdin4b4i5tudvmn5ny
- watchpack: 2.4.2
- optionalDependencies:
- lmdb: 3.2.6
- transitivePeerDependencies:
- - '@types/node'
- - chokidar
- - jiti
- - lightningcss
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
- dev: true
- '@angular/cdk@19.2.2':
- resolution: {integrity: sha512-YLiydMiTSf7s/LKaLgNeWawspulqdo/47zcjs1sEkHOcmyN1yR2Q0zQdgSbtsvuNikaR4NMNgTybNTDnULl64A==}
+ '@angular/cdk@19.2.7':
+ resolution: {integrity: sha512-+Dx1WGEWMO3OYDKr2w/Z5xOCsdjkRuG7Z18ve8eeBOHayRaC0KbYoXkvPxUiJo233CJWEzKQ/qF13C54GGWnng==}
peerDependencies:
'@angular/common': ^19.0.0 || ^20.0.0
'@angular/core': ^19.0.0 || ^20.0.0
rxjs: ^6.5.3 || ^7.4.0
- dependencies:
- '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
- '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
- rxjs: 7.8.2
- tslib: 2.8.1
- optionalDependencies:
- parse5: 7.2.1
- dev: false
- /@angular/cli/19.2.0_@types+node@22.13.10:
+ '@angular/cli@19.2.0':
resolution: {integrity: sha512-LUxuku6obwigdDJozAvmXyhMcm3rSXFoZK4+Al7r/JE80pjQEE+bGpu7jCb6JsH813DTNauN+BB66qk8bXSgRw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
hasBin: true
- dependencies:
- '@angular-devkit/architect': 0.1902.0
- '@angular-devkit/core': 19.2.0
- '@angular-devkit/schematics': 19.2.0
- '@inquirer/prompts': 7.3.2_@types+node@22.13.10
- '@listr2/prompt-adapter-inquirer': 2.0.18_@inquirer+prompts@7.3.2
- '@schematics/angular': 19.2.0
- '@yarnpkg/lockfile': 1.1.0
- ini: 5.0.0
- jsonc-parser: 3.3.1
- listr2: 8.2.5
- npm-package-arg: 12.0.2
- npm-pick-manifest: 10.0.0
- pacote: 20.0.0
- resolve: 1.22.10
- semver: 7.7.1
- symbol-observable: 4.0.0
- yargs: 17.7.2
- transitivePeerDependencies:
- - '@types/node'
- - chokidar
- - supports-color
- dev: true
-
- /@angular/cli/19.2.1:
- resolution: {integrity: sha512-0ioZmuaapsbndXhpoUAew1uA4RFhNEa16kKgYPw5XlouaS2SLLrzC4nLW9DPJv6XrkOsOebf+OpyyHazzdFoSw==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- hasBin: true
- dependencies:
- '@angular-devkit/architect': 0.1902.1
- '@angular-devkit/core': 19.2.1
- '@angular-devkit/schematics': 19.2.1
- '@inquirer/prompts': 7.3.2
- '@listr2/prompt-adapter-inquirer': 2.0.18_@inquirer+prompts@7.3.2
- '@schematics/angular': 19.2.1
- '@yarnpkg/lockfile': 1.1.0
- ini: 5.0.0
- jsonc-parser: 3.3.1
- listr2: 8.2.5
- npm-package-arg: 12.0.2
- npm-pick-manifest: 10.0.0
- pacote: 20.0.0
- resolve: 1.22.10
- semver: 7.7.1
- symbol-observable: 4.0.0
- yargs: 17.7.2
- transitivePeerDependencies:
- - '@types/node'
- - chokidar
- - supports-color
- dev: true
- /@angular/common/19.2.0_o7lncytynmlvlvkm4hpjy4oxsi:
+ '@angular/common@19.2.0':
resolution: {integrity: sha512-dm8PR94QY3DucXxltdV5p2Yxyr5bfPlmjOElwLhiTvxWbwCZJTVhPc8dw0TCKzCEu+tKafT48u4BLIB34a0A/g==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
'@angular/core': 19.2.0
rxjs: ^6.5.3 || ^7.4.0
- dependencies:
- '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
- rxjs: 7.8.1
- tslib: 2.8.1
- dev: true
-
- /@angular/common/19.2.1_43o7mmxrb5krrr2js5kqo6a25y:
- resolution: {integrity: sha512-k+ikxn6SlWXxXEtwRmsYZeknf3a6n3Oicde6zTLBrD/Rie/u0+okuoQcuYjntQWGgH//QBQxH4UQpvRw51AR8w==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
- peerDependencies:
- '@angular/core': 19.2.1
- rxjs: ^6.5.3 || ^7.4.0
- dependencies:
- '@angular/core': 19.2.1_rxjs@7.8.1+zone.js@0.15.0
- rxjs: 7.8.1
- tslib: 2.8.1
- dev: true
-
- /@angular/common/19.2.1_dfwtwytus3tabvekhtq6wbpkuu:
- resolution: {integrity: sha512-k+ikxn6SlWXxXEtwRmsYZeknf3a6n3Oicde6zTLBrD/Rie/u0+okuoQcuYjntQWGgH//QBQxH4UQpvRw51AR8w==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
- peerDependencies:
- '@angular/core': 19.2.1
- rxjs: ^6.5.3 || ^7.4.0
- dependencies:
- '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
- rxjs: 7.8.2
- tslib: 2.8.1
- dev: false
- /@angular/compiler-cli/19.2.0_w2w2t63mjpx5wmltkoetyqksa4:
+ '@angular/compiler-cli@19.2.0':
resolution: {integrity: sha512-IFl3LNfFanspS4gHjn207TPuoJGGieuC9r+j3nDitUcFH49fbShYLGCB6xczvK+j68ZWCqv4voxAOmLyfA/Opw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
hasBin: true
peerDependencies:
'@angular/compiler': 19.2.0
typescript: '>=5.5 <5.9'
- dependencies:
- '@angular/compiler': 19.2.0_@angular+core@19.2.0
- '@babel/core': 7.26.9
- '@jridgewell/sourcemap-codec': 1.5.0
- chokidar: 4.0.3
- convert-source-map: 1.9.0
- reflect-metadata: 0.2.2
- semver: 7.7.1
- tslib: 2.8.1
- typescript: 5.5.3
- yargs: 17.7.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@angular/compiler-cli/19.2.1_gvbyqgimgk2h6nc52mo4mq53z4:
- resolution: {integrity: sha512-5uuUx0ibX7cQP7eSBaJzfZlU0Hbe0kLwc85uCnH47hfzCsd3u2VU623IZIN7ctaInoOFBjl9fUUqKnFuYibC/w==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
- hasBin: true
- peerDependencies:
- '@angular/compiler': 19.2.1
- typescript: '>=5.5 <5.9'
- dependencies:
- '@angular/compiler': 19.2.1_@angular+core@19.2.1
- '@babel/core': 7.26.9
- '@jridgewell/sourcemap-codec': 1.5.0
- chokidar: 4.0.3
- convert-source-map: 1.9.0
- reflect-metadata: 0.2.2
- semver: 7.7.1
- tslib: 2.8.1
- typescript: 5.5.3
- yargs: 17.7.2
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@angular/compiler/19.2.0_@angular+core@19.2.0:
+ '@angular/compiler@19.2.0':
resolution: {integrity: sha512-xGBD0C9ikH4jVDuQU3XzGqbh9Wovl8UR0wNzNd9rm4fltfC9ipz9NbfetsLPKWpPbfnUqmqMe4/pYjGEgWMonw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
@@ -2027,59 +1263,15 @@ packages:
peerDependenciesMeta:
'@angular/core':
optional: true
- dependencies:
- '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
- tslib: 2.8.1
- dev: true
-
- /@angular/compiler/19.2.1_@angular+core@19.2.1:
- resolution: {integrity: sha512-yCN/lgXMvMsPtEmTChd621zV17RLn+flhcJ6mNZjyGA7zx16m5zity4/00G6phbGfG8WXOtH5vQ/k7nnO7wS4A==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
- peerDependencies:
- '@angular/core': 19.2.1
- peerDependenciesMeta:
- '@angular/core':
- optional: true
- dependencies:
- '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
- tslib: 2.8.1
- /@angular/core/19.2.0_rxjs@7.8.1+zone.js@0.15.0:
+ '@angular/core@19.2.0':
resolution: {integrity: sha512-WKTRltOt3MMWWuhRX7Y9RonKxIYjZeBDE6XRwceHMgaEDS2d8I2D3AIuqizRsgHpJqDPnQnH+vxcek4FivcSGA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
- dependencies:
- rxjs: 7.8.1
- tslib: 2.8.1
- zone.js: 0.15.0
- dev: true
-
- /@angular/core/19.2.1_rxjs@7.8.1+zone.js@0.15.0:
- resolution: {integrity: sha512-gwdytbZSM9m5v9PhRsvh6Q13vI1Ydcx52QGs93bpWx5ACOGYGp/Y7zc2mcZb1aUM63zGBTpS9Qw9bEsPHeLZPA==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
- peerDependencies:
- rxjs: ^6.5.3 || ^7.4.0
- zone.js: ~0.15.0
- dependencies:
- rxjs: 7.8.1
- tslib: 2.8.1
- zone.js: 0.15.0
- dev: true
-
- /@angular/core/19.2.1_rxjs@7.8.2+zone.js@0.15.0:
- resolution: {integrity: sha512-gwdytbZSM9m5v9PhRsvh6Q13vI1Ydcx52QGs93bpWx5ACOGYGp/Y7zc2mcZb1aUM63zGBTpS9Qw9bEsPHeLZPA==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
- peerDependencies:
- rxjs: ^6.5.3 || ^7.4.0
- zone.js: ~0.15.0
- dependencies:
- rxjs: 7.8.2
- tslib: 2.8.1
- zone.js: 0.15.0
- /@angular/forms/19.2.0_pqzonxg4tmfn73mzgmildkwlou:
+ '@angular/forms@19.2.0':
resolution: {integrity: sha512-/GHQgiDPUr1vMXCB1O8c+O70DcoZykDBzOICCaz3kTu46rp48g6E6iaZVJoozI0iBwB8+rnuTPQnLWJ46w+wVg==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
@@ -2087,34 +1279,18 @@ packages:
'@angular/core': 19.2.0
'@angular/platform-browser': 19.2.0
rxjs: ^6.5.3 || ^7.4.0
- dependencies:
- '@angular/common': 19.2.0_o7lncytynmlvlvkm4hpjy4oxsi
- '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
- '@angular/platform-browser': 19.2.0_23bjyqnebdjarufkmd6erfixbi
- rxjs: 7.8.1
- tslib: 2.8.1
- dev: true
- '@angular/material@19.2.2':
- resolution: {integrity: sha512-ChaxmiQkdtYJZCuTzh/LuOofg3/TLKDM/NtmlPrOA8GCEGX5oHQiu9NgJmdwi8LmGJL0lvFS1ftfVSjBTgHlxA==}
+ '@angular/material@19.2.7':
+ resolution: {integrity: sha512-6aFj4Rk3oa0XykCMjQ28KGVCMo7umd8M37bT9/FALMue6JEi2fPIDrbUDWb2GYL5rdHkgsr+dbEqlwAyHW/5cw==}
peerDependencies:
- '@angular/cdk': 19.2.2
+ '@angular/cdk': 19.2.7
'@angular/common': ^19.0.0 || ^20.0.0
'@angular/core': ^19.0.0 || ^20.0.0
'@angular/forms': ^19.0.0 || ^20.0.0
'@angular/platform-browser': ^19.0.0 || ^20.0.0
rxjs: ^6.5.3 || ^7.4.0
- dependencies:
- '@angular/cdk': 19.2.2_otimakhjaab5xv3qzlo7dv472e
- '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
- '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
- '@angular/forms': 19.2.1_z4ykjt5nb5xnncujnwph6lwtaq
- '@angular/platform-browser': 19.2.1_hphkzp5feflrtxibdjypxrpzjq
- rxjs: 7.8.2
- tslib: 2.8.1
- dev: false
- /@angular/platform-browser-dynamic/19.2.0_ojklusrnueraqo35vndeqgdzii:
+ '@angular/platform-browser-dynamic@19.2.0':
resolution: {integrity: sha512-664OAYxzRYx9WjZu+o0VT+vMM0OqPOb0OnbwnyvIVNBuufWK7/IxWZ/U+Kh9A/XJYpDPtB5N1WEfeiO8AAzWnQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
@@ -2122,31 +1298,8 @@ packages:
'@angular/compiler': 19.2.0
'@angular/core': 19.2.0
'@angular/platform-browser': 19.2.0
- dependencies:
- '@angular/common': 19.2.0_o7lncytynmlvlvkm4hpjy4oxsi
- '@angular/compiler': 19.2.0_@angular+core@19.2.0
- '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
- '@angular/platform-browser': 19.2.0_23bjyqnebdjarufkmd6erfixbi
- tslib: 2.8.1
- dev: true
- /@angular/platform-browser-dynamic/19.2.1_oycwoi4ltst7cl6n6fkvn4rfy4:
- resolution: {integrity: sha512-jYEXI2CymdK8R27YKy/q0O36dZwSdbIyJAjX9vPTgAsORGwX8hdhm5NJwkKlOWT+ccf2ySUatJD7RCElhsEBNA==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
- peerDependencies:
- '@angular/common': 19.2.1
- '@angular/compiler': 19.2.1
- '@angular/core': 19.2.1
- '@angular/platform-browser': 19.2.1
- dependencies:
- '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
- '@angular/compiler': 19.2.1_@angular+core@19.2.1
- '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
- '@angular/platform-browser': 19.2.1_hphkzp5feflrtxibdjypxrpzjq
- tslib: 2.8.1
- dev: false
-
- /@angular/platform-browser/19.2.0_23bjyqnebdjarufkmd6erfixbi:
+ '@angular/platform-browser@19.2.0':
resolution: {integrity: sha512-rt3byGZWU0jF6QCLxjP+LH94uL0VM5LgtJ+tYclJqCNB1C3fZrpa86GVd9onVbZmDk0ETUOwm7dQHYdef8oiqw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
@@ -2156,31 +1309,8 @@ packages:
peerDependenciesMeta:
'@angular/animations':
optional: true
- dependencies:
- '@angular/animations': 19.2.0_@angular+core@19.2.0
- '@angular/common': 19.2.0_o7lncytynmlvlvkm4hpjy4oxsi
- '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
- tslib: 2.8.1
- dev: true
-
- /@angular/platform-browser/19.2.1_hphkzp5feflrtxibdjypxrpzjq:
- resolution: {integrity: sha512-omBNCMk0Gim+HntrofVQR8dOY2zLCFOW02+FX4y57QvuDBh/FpFfnQ14xxx1Y4qEgGculEcBe914uJlxr4ccIg==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
- peerDependencies:
- '@angular/animations': 19.2.1
- '@angular/common': 19.2.1
- '@angular/core': 19.2.1
- peerDependenciesMeta:
- '@angular/animations':
- optional: true
- dependencies:
- '@angular/animations': 19.2.1_@angular+core@19.2.1
- '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
- '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
- tslib: 2.8.1
- dev: false
- /@angular/router/19.2.0_pqzonxg4tmfn73mzgmildkwlou:
+ '@angular/router@19.2.0':
resolution: {integrity: sha512-Md/zleBpWMi5H6KPMREM0M2EUAkoqe01zkXla0Z0hHoTn7Ty0fv0Te9bGDioVOG7JgHh6wYCrPJ/uJsjKObyvw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
@@ -2188,67 +1318,22 @@ packages:
'@angular/core': 19.2.0
'@angular/platform-browser': 19.2.0
rxjs: ^6.5.3 || ^7.4.0
- dependencies:
- '@angular/common': 19.2.0_o7lncytynmlvlvkm4hpjy4oxsi
- '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
- '@angular/platform-browser': 19.2.0_23bjyqnebdjarufkmd6erfixbi
- rxjs: 7.8.1
- tslib: 2.8.1
- dev: true
-
- /@angular/router/19.2.1_z4ykjt5nb5xnncujnwph6lwtaq:
- resolution: {integrity: sha512-HZTewSLnHpNbnOnTp9X7r17/eb8h3ex/b8da6z2OPpC3diV7EZsrrjrLpdkzm3wpuapaVATzRgC4I4gN8XwTxA==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
- peerDependencies:
- '@angular/common': 19.2.1
- '@angular/core': 19.2.1
- '@angular/platform-browser': 19.2.1
- rxjs: ^6.5.3 || ^7.4.0
- dependencies:
- '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
- '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
- '@angular/platform-browser': 19.2.1_hphkzp5feflrtxibdjypxrpzjq
- rxjs: 7.8.2
- tslib: 2.8.1
- dev: false
- /@antfu/utils/0.7.10:
+ '@antfu/utils@0.7.10':
resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
- /@arethetypeswrong/cli/0.17.2:
+ '@arethetypeswrong/cli@0.17.2':
resolution: {integrity: sha512-/u2VcQJ8PKc4hcao/vXnHrYLEI/sQqKarbHi+NEIfvdymaW5o62XOCXy2yvalQa/vR+AAD/QNEgAUzHo5f7hrw==}
engines: {node: '>=18'}
hasBin: true
- dependencies:
- '@arethetypeswrong/core': 0.17.2
- chalk: 4.1.2
- cli-table3: 0.6.5
- commander: 10.0.1
- marked: 9.1.6
- marked-terminal: 7.3.0_marked@9.1.6
- semver: 7.7.1
- dev: true
- /@arethetypeswrong/core/0.17.2:
+ '@arethetypeswrong/core@0.17.2':
resolution: {integrity: sha512-JYeLgS4rQ2l3gHCabaka3atsEyskfpx+WqUbo+6l8LApILJgr0/XDb7KNC9Ovevp4iPVF2Q73oshpgOKJ3uDRQ==}
engines: {node: '>=18'}
- dependencies:
- '@andrewbranch/untar.js': 1.0.3
- cjs-module-lexer: 1.4.3
- fflate: 0.8.2
- lru-cache: 10.4.3
- semver: 7.7.1
- typescript: 5.6.1-rc
- validate-npm-package-name: 5.0.1
- dev: true
- /@babel/code-frame/7.26.2:
+ '@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.25.9
- js-tokens: 4.0.0
- picocolors: 1.1.1
'@babel/compat-data@7.26.8':
resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
@@ -2261,1113 +1346,551 @@ packages:
'@babel/core@7.26.9':
resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0_@babel+core@7.26.9
- '@babel/helpers': 7.26.9
- '@babel/parser': 7.26.9
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- convert-source-map: 2.0.0
- debug: 4.4.0
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/generator@7.26.10':
- resolution: {integrity: sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==}
- engines: {node: '>=6.9.0'}
'@babel/generator@7.26.9':
resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
- '@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 3.1.0
- /@babel/helper-annotate-as-pure/7.25.9:
+ '@babel/generator@7.27.0':
+ resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-annotate-as-pure@7.25.9':
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.26.9
- /@babel/helper-compilation-targets/7.26.5:
- resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
+ '@babel/helper-compilation-targets@7.27.0':
+ resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/helper-validator-option': 7.25.9
- browserslist: 4.24.4
- lru-cache: 5.1.1
- semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.26.9':
- resolution: {integrity: sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==}
+ '@babel/helper-create-class-features-plugin@7.27.0':
+ resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/helper-replace-supers': 7.26.5_@babel+core@7.26.9
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.9
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- /@babel/helper-create-regexp-features-plugin/7.26.3_@babel+core@7.26.9:
- resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==}
+ '@babel/helper-create-regexp-features-plugin@7.27.0':
+ resolution: {integrity: sha512-fO8l08T76v48BhpNRW/nQ0MxfnSdoSKUJBMjubOAYffsVuGG5qOfMq7N6Es7UJvi7Y8goXXo07EfcHZXDPuELQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- regexpu-core: 6.2.0
- semver: 6.3.1
- dev: true
- /@babel/helper-define-polyfill-provider/0.6.3_@babel+core@7.26.9:
- resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==}
+ '@babel/helper-define-polyfill-provider@0.6.4':
+ resolution: {integrity: sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- debug: 4.4.0
- lodash.debounce: 4.0.8
- resolve: 1.22.10
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/helper-member-expression-to-functions/7.25.9:
+ '@babel/helper-member-expression-to-functions@7.25.9':
resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- transitivePeerDependencies:
- - supports-color
- /@babel/helper-module-imports/7.25.9:
+ '@babel/helper-module-imports@7.25.9':
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- transitivePeerDependencies:
- - supports-color
- /@babel/helper-module-transforms/7.26.0_@babel+core@7.26.9:
+ '@babel/helper-module-transforms@7.26.0':
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
- /@babel/helper-optimise-call-expression/7.25.9:
+ '@babel/helper-optimise-call-expression@7.25.9':
resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.26.9
- /@babel/helper-plugin-utils/7.26.5:
+ '@babel/helper-plugin-utils@7.26.5':
resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator/7.25.9_@babel+core@7.26.9:
+ '@babel/helper-remap-async-to-generator@7.25.9':
resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/helper-replace-supers/7.26.5_@babel+core@7.26.9:
+ '@babel/helper-replace-supers@7.26.5':
resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
- /@babel/helper-skip-transparent-expression-wrappers/7.25.9:
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- transitivePeerDependencies:
- - supports-color
- /@babel/helper-split-export-declaration/7.24.7:
+ '@babel/helper-split-export-declaration@7.24.7':
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.26.9
- dev: true
- /@babel/helper-string-parser/7.25.9:
+ '@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier/7.25.9:
+ '@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option/7.25.9:
+ '@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- /@babel/helper-wrap-function/7.25.9:
+ '@babel/helper-wrap-function@7.25.9':
resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- '@babel/helpers@7.26.10':
- resolution: {integrity: sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==}
+ '@babel/helpers@7.27.0':
+ resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.10':
- resolution: {integrity: sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==}
+ '@babel/parser@7.27.0':
+ resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
engines: {node: '>=6.0.0'}
hasBin: true
- dependencies:
- '@babel/types': 7.26.9
- /@babel/plugin-bugfix-firefox-class-in-computed-class-key/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-bugfix-safari-class-field-initializer-scope/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-transform-optional-chaining': 7.25.9_@babel+core@7.26.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-proposal-decorators/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-proposal-decorators@7.25.9':
resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-decorators': 7.25.9_@babel+core@7.26.9
- transitivePeerDependencies:
- - supports-color
- /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.26.9:
+ '@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
- dependencies:
- '@babel/core': 7.26.9
- dev: true
- /@babel/plugin-syntax-decorators/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-syntax-decorators@7.25.9':
resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- /@babel/plugin-syntax-import-assertions/7.26.0_@babel+core@7.26.9:
+ '@babel/plugin-syntax-import-assertions@7.26.0':
resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-syntax-import-attributes/7.26.0_@babel+core@7.26.9:
+ '@babel/plugin-syntax-import-attributes@7.26.0':
resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.26.9:
+ '@babel/plugin-syntax-import-meta@7.10.4':
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- /@babel/plugin-syntax-jsx/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-syntax-jsx@7.25.9':
resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- /@babel/plugin-syntax-typescript/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-syntax-typescript@7.25.9':
resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.26.9:
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6':
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-arrow-functions/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-arrow-functions@7.25.9':
resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-async-generator-functions/7.26.8_@babel+core@7.26.9:
+ '@babel/plugin-transform-async-generator-functions@7.26.8':
resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9_@babel+core@7.26.9
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-async-to-generator/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-async-to-generator@7.25.9':
resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9_@babel+core@7.26.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-block-scoped-functions/7.26.5_@babel+core@7.26.9:
+ '@babel/plugin-transform-block-scoped-functions@7.26.5':
resolution: {integrity: sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-block-scoping/7.25.9_@babel+core@7.26.9:
- resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==}
+ '@babel/plugin-transform-block-scoping@7.27.0':
+ resolution: {integrity: sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-class-properties/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-class-properties@7.25.9':
resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-class-static-block/7.26.0_@babel+core@7.26.9:
+ '@babel/plugin-transform-class-static-block@7.26.0':
resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-classes/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-classes@7.25.9':
resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5_@babel+core@7.26.9
- '@babel/traverse': 7.26.9
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-computed-properties/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-computed-properties@7.25.9':
resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/template': 7.26.9
- dev: true
- /@babel/plugin-transform-destructuring/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-destructuring@7.25.9':
resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-dotall-regex/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-dotall-regex@7.25.9':
resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-duplicate-keys/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-duplicate-keys@7.25.9':
resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-duplicate-named-capturing-groups-regex/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-dynamic-import/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-dynamic-import@7.25.9':
resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-exponentiation-operator/7.26.3_@babel+core@7.26.9:
+ '@babel/plugin-transform-exponentiation-operator@7.26.3':
resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-export-namespace-from/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-export-namespace-from@7.25.9':
resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-for-of/7.26.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-for-of@7.26.9':
resolution: {integrity: sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-function-name/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-function-name@7.25.9':
resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-json-strings/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-json-strings@7.25.9':
resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-literals/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-literals@7.25.9':
resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-logical-assignment-operators/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9':
resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-member-expression-literals/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-member-expression-literals@7.25.9':
resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-modules-amd/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-modules-amd@7.25.9':
resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-modules-commonjs/7.26.3_@babel+core@7.26.9:
+ '@babel/plugin-transform-modules-commonjs@7.26.3':
resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-modules-systemjs/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-modules-systemjs@7.25.9':
resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-modules-umd/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-modules-umd@7.25.9':
resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-new-target/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-new-target@7.25.9':
resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-nullish-coalescing-operator/7.26.6_@babel+core@7.26.9:
+ '@babel/plugin-transform-nullish-coalescing-operator@7.26.6':
resolution: {integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-numeric-separator/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-numeric-separator@7.25.9':
resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-object-rest-spread/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-object-rest-spread@7.25.9':
resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-parameters': 7.25.9_@babel+core@7.26.9
- dev: true
- /@babel/plugin-transform-object-super/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-object-super@7.25.9':
resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5_@babel+core@7.26.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-optional-catch-binding/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-optional-catch-binding@7.25.9':
resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-optional-chaining/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-optional-chaining@7.25.9':
resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-parameters/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-parameters@7.25.9':
resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-private-methods/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-private-methods@7.25.9':
resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-private-property-in-object/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-private-property-in-object@7.25.9':
resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-property-literals/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-property-literals@7.25.9':
resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-react-jsx-self/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-react-jsx-self@7.25.9':
resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-react-jsx-source/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-react-jsx-source@7.25.9':
resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-regenerator/7.25.9_@babel+core@7.26.9:
- resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==}
+ '@babel/plugin-transform-regenerator@7.27.0':
+ resolution: {integrity: sha512-LX/vCajUJQDqE7Aum/ELUMZAY19+cDpghxrnyt5I1tV6X5PyC86AOoWXWFYFeIvauyeSA6/ktn4tQVn/3ZifsA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- regenerator-transform: 0.15.2
- dev: true
- /@babel/plugin-transform-regexp-modifiers/7.26.0_@babel+core@7.26.9:
+ '@babel/plugin-transform-regexp-modifiers@7.26.0':
resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-reserved-words/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-reserved-words@7.25.9':
resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-runtime/7.26.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-runtime@7.26.9':
resolution: {integrity: sha512-Jf+8y9wXQbbxvVYTM8gO5oEF2POdNji0NMltEkG7FtmzD9PVz7/lxpqSdTvwsjTMU5HIHuDVNf2SOxLkWi+wPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- babel-plugin-polyfill-corejs2: 0.4.12_@babel+core@7.26.9
- babel-plugin-polyfill-corejs3: 0.10.6_@babel+core@7.26.9
- babel-plugin-polyfill-regenerator: 0.6.3_@babel+core@7.26.9
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-shorthand-properties/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-shorthand-properties@7.25.9':
resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-spread/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-spread@7.25.9':
resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/plugin-transform-sticky-regex/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-sticky-regex@7.25.9':
resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-template-literals/7.26.8_@babel+core@7.26.9:
+ '@babel/plugin-transform-template-literals@7.26.8':
resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-typeof-symbol/7.26.7_@babel+core@7.26.9:
- resolution: {integrity: sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==}
+ '@babel/plugin-transform-typeof-symbol@7.27.0':
+ resolution: {integrity: sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- '@babel/plugin-transform-typescript@7.26.8':
- resolution: {integrity: sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==}
+ '@babel/plugin-transform-typescript@7.27.0':
+ resolution: {integrity: sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.26.9_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-syntax-typescript': 7.25.9_@babel+core@7.26.9
- transitivePeerDependencies:
- - supports-color
- /@babel/plugin-transform-unicode-escapes/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-unicode-escapes@7.25.9':
resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-unicode-property-regex/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-unicode-property-regex@7.25.9':
resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-unicode-regex/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-unicode-regex@7.25.9':
resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/plugin-transform-unicode-sets-regex/7.25.9_@babel+core@7.26.9:
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9':
resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3_@babel+core@7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- dev: true
- /@babel/preset-env/7.26.9_@babel+core@7.26.9:
+ '@babel/preset-env@7.26.9':
resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-validator-option': 7.25.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.26.9
- '@babel/plugin-syntax-import-assertions': 7.26.0_@babel+core@7.26.9
- '@babel/plugin-syntax-import-attributes': 7.26.0_@babel+core@7.26.9
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.26.9
- '@babel/plugin-transform-arrow-functions': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-async-generator-functions': 7.26.8_@babel+core@7.26.9
- '@babel/plugin-transform-async-to-generator': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-block-scoped-functions': 7.26.5_@babel+core@7.26.9
- '@babel/plugin-transform-block-scoping': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-class-properties': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-class-static-block': 7.26.0_@babel+core@7.26.9
- '@babel/plugin-transform-classes': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-computed-properties': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-destructuring': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-dotall-regex': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-duplicate-keys': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-dynamic-import': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-exponentiation-operator': 7.26.3_@babel+core@7.26.9
- '@babel/plugin-transform-export-namespace-from': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-for-of': 7.26.9_@babel+core@7.26.9
- '@babel/plugin-transform-function-name': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-json-strings': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-literals': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-logical-assignment-operators': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-member-expression-literals': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-modules-amd': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-modules-commonjs': 7.26.3_@babel+core@7.26.9
- '@babel/plugin-transform-modules-systemjs': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-modules-umd': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-new-target': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6_@babel+core@7.26.9
- '@babel/plugin-transform-numeric-separator': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-object-rest-spread': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-object-super': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-optional-catch-binding': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-optional-chaining': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-parameters': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-private-methods': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-private-property-in-object': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-property-literals': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-regenerator': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-regexp-modifiers': 7.26.0_@babel+core@7.26.9
- '@babel/plugin-transform-reserved-words': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-shorthand-properties': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-spread': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-sticky-regex': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-template-literals': 7.26.8_@babel+core@7.26.9
- '@babel/plugin-transform-typeof-symbol': 7.26.7_@babel+core@7.26.9
- '@babel/plugin-transform-unicode-escapes': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-unicode-property-regex': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-unicode-regex': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-unicode-sets-regex': 7.25.9_@babel+core@7.26.9
- '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.26.9
- babel-plugin-polyfill-corejs2: 0.4.12_@babel+core@7.26.9
- babel-plugin-polyfill-corejs3: 0.11.1_@babel+core@7.26.9
- babel-plugin-polyfill-regenerator: 0.6.3_@babel+core@7.26.9
- core-js-compat: 3.41.0
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.26.9:
+ '@babel/preset-modules@0.1.6-no-external-plugins':
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/types': 7.26.9
- esutils: 2.0.3
- dev: true
-
- '@babel/runtime@7.26.10':
- resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==}
- engines: {node: '>=6.9.0'}
'@babel/runtime@7.26.9':
resolution: {integrity: sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==}
engines: {node: '>=6.9.0'}
- dependencies:
- regenerator-runtime: 0.14.1
- dev: true
- '@babel/standalone@7.26.10':
- resolution: {integrity: sha512-AYXK0hLWfEaK9WAePJqs30qro09a8w7X3YZzjukqtLXreE7xBZYdi5EMrP87T4UrVqmQ9tIX6L6SeTu5LDh3zw==}
+ '@babel/runtime@7.27.0':
+ resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.26.9':
- resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==}
+ '@babel/standalone@7.27.0':
+ resolution: {integrity: sha512-UxFDpi+BuSz6Q1X73P3ZSM1CB7Nbbqys+7COi/tdouRuaqRsJ6GAzUyxTswbqItHSItVY3frQdd+paBHHGEk9g==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
- '@babel/traverse@7.26.10':
- resolution: {integrity: sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==}
+ '@babel/template@7.27.0':
+ resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.10':
- resolution: {integrity: sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==}
+ '@babel/traverse@7.27.0':
+ resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.27.0':
+ resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- /@bcoe/v8-coverage/0.2.3:
+ '@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- dev: true
'@changesets/apply-release-plan@7.0.10':
resolution: {integrity: sha512-wNyeIJ3yDsVspYvHnEz1xQDq18D9ifed3lI+wxRQRK4pArUcuHgCTrHv0QRnnwjhVCQACxZ+CBih3wgOct6UXw==}
@@ -3378,95 +1901,36 @@ packages:
'@changesets/changelog-git@0.2.1':
resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
- /@changesets/changelog-github/0.5.0:
+ '@changesets/changelog-github@0.5.0':
resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==}
- dependencies:
- '@changesets/get-github-info': 0.6.0
- '@changesets/types': 6.1.0
- dotenv: 8.6.0
- transitivePeerDependencies:
- - encoding
- dev: true
- /@changesets/cli/2.27.8:
+ '@changesets/cli@2.27.8':
resolution: {integrity: sha512-gZNyh+LdSsI82wBSHLQ3QN5J30P4uHKJ4fXgoGwQxfXwYFTJzDdvIJasZn8rYQtmKhyQuiBj4SSnLuKlxKWq4w==}
hasBin: true
- dependencies:
- '@changesets/apply-release-plan': 7.0.10
- '@changesets/assemble-release-plan': 6.0.6
- '@changesets/changelog-git': 0.2.1
- '@changesets/config': 3.1.1
- '@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.3
- '@changesets/get-release-plan': 4.0.8
- '@changesets/git': 3.0.2
- '@changesets/logger': 0.1.1
- '@changesets/pre': 2.0.2
- '@changesets/read': 0.6.3
- '@changesets/should-skip-package': 0.1.2
- '@changesets/types': 6.1.0
- '@changesets/write': 0.3.2
- '@manypkg/get-packages': 1.1.3
- '@types/semver': 7.5.8
- ansi-colors: 4.1.3
- ci-info: 3.9.0
- enquirer: 2.4.1
- external-editor: 3.1.0
- fs-extra: 7.0.1
- mri: 1.2.0
- outdent: 0.5.0
- p-limit: 2.3.0
- package-manager-detector: 0.2.11
- picocolors: 1.1.1
- resolve-from: 5.0.0
- semver: 7.7.1
- spawndamnit: 2.0.0
- term-size: 2.2.1
- dev: true
'@changesets/config@3.1.1':
resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==}
- /@changesets/errors/0.2.0:
+ '@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
- dependencies:
- extendable-error: 0.1.7
- dev: true
'@changesets/get-dependents-graph@2.1.3':
resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==}
- /@changesets/get-github-info/0.6.0:
+ '@changesets/get-github-info@0.6.0':
resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==}
- dependencies:
- dataloader: 1.4.0
- node-fetch: 2.7.0
- transitivePeerDependencies:
- - encoding
- dev: true
'@changesets/get-release-plan@4.0.8':
resolution: {integrity: sha512-MM4mq2+DQU1ZT7nqxnpveDMTkMBLnwNX44cX7NSxlXmr7f8hO6/S2MXNiXG54uf/0nYnefv0cfy4Czf/ZL/EKQ==}
- /@changesets/get-version-range-type/0.4.0:
+ '@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
- dev: true
- /@changesets/git/3.0.2:
+ '@changesets/git@3.0.2':
resolution: {integrity: sha512-r1/Kju9Y8OxRRdvna+nxpQIsMsRQn9dhhAZt94FLDeu0Hij2hnOozW8iqnHBgvu+KdnJppCveQwK4odwfw/aWQ==}
- dependencies:
- '@changesets/errors': 0.2.0
- '@manypkg/get-packages': 1.1.3
- is-subdir: 1.2.0
- micromatch: 4.0.8
- spawndamnit: 3.0.1
- dev: true
- /@changesets/logger/0.1.1:
+ '@changesets/logger@0.1.1':
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
- dependencies:
- picocolors: 1.1.1
- dev: true
'@changesets/parse@0.4.1':
resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==}
@@ -3480,44 +1944,30 @@ packages:
'@changesets/should-skip-package@0.1.2':
resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==}
- /@changesets/types/4.1.0:
+ '@changesets/types@4.1.0':
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
- dev: true
'@changesets/types@6.1.0':
resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==}
- /@changesets/write/0.3.2:
+ '@changesets/write@0.3.2':
resolution: {integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==}
- dependencies:
- '@changesets/types': 6.1.0
- fs-extra: 7.0.1
- human-id: 1.0.2
- prettier: 2.8.8
- dev: true
- /@cloudflare/kv-asset-handler/0.3.4:
- resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
- engines: {node: '>=16.13'}
- dependencies:
- mime: 3.0.0
+ '@cloudflare/kv-asset-handler@0.4.0':
+ resolution: {integrity: sha512-+tv3z+SPp+gqTIcImN9o0hqE9xyfQjI1XD9pL6NuKjua9B1y7mNYv0S9cP+QEbA4ppVgGZEmKOvHX5G5Ei1CVA==}
+ engines: {node: '>=18.0.0'}
- /@colors/colors/1.5.0:
+ '@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
- dev: true
- /@cspotcode/source-map-support/0.8.1:
+ '@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
- dependencies:
- '@jridgewell/trace-mapping': 0.3.9
- dev: true
- /@discoveryjs/json-ext/0.6.3:
+ '@discoveryjs/json-ext@0.6.3':
resolution: {integrity: sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==}
engines: {node: '>=14.17.0'}
- dev: true
'@docsearch/css@3.9.0':
resolution: {integrity: sha512-cQbnVbq0rrBwNAKegIac/t6a8nWoUAn8frnkLFW6YARaRmAQr5/Eoe6Ln2fqkUCZ40KpdrKbpSAmgrkviOxuWA==}
@@ -3541,31 +1991,15 @@ packages:
optional: true
search-insights:
optional: true
- dependencies:
- '@algolia/autocomplete-core': 1.17.9_xxmpinlwddpyh675ykryvz2mce
- '@algolia/autocomplete-preset-algolia': 1.17.9_vhprxalrhraqfiwdqogz562eue
- '@docsearch/css': 3.9.0
- algoliasearch: 5.20.4
- search-insights: 2.17.3
- transitivePeerDependencies:
- - '@algolia/client-search'
- dev: true
- /@emnapi/core/1.3.1:
+ '@emnapi/core@1.3.1':
resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==}
- requiresBuild: true
- dependencies:
- '@emnapi/wasi-threads': 1.0.1
- tslib: 2.8.1
- dev: false
- optional: true
- /@emnapi/runtime/1.3.1:
+ '@emnapi/runtime@1.3.1':
resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
- requiresBuild: true
- dependencies:
- tslib: 2.8.1
- optional: true
+
+ '@emnapi/wasi-threads@1.0.1':
+ resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
'@esbuild/aix-ppc64@0.19.12':
resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
@@ -3578,27 +2012,21 @@ packages:
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
- requiresBuild: true
- optional: true
- /@esbuild/aix-ppc64/0.24.2:
+ '@esbuild/aix-ppc64@0.24.2':
resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- requiresBuild: true
- optional: true
- /@esbuild/aix-ppc64/0.25.0:
+ '@esbuild/aix-ppc64@0.25.0':
resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- requiresBuild: true
- optional: true
- '@esbuild/aix-ppc64@0.25.2':
- resolution: {integrity: sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==}
+ '@esbuild/aix-ppc64@0.25.1':
+ resolution: {integrity: sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -3627,8 +2055,8 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.25.2':
- resolution: {integrity: sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==}
+ '@esbuild/android-arm64@0.25.1':
+ resolution: {integrity: sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -3644,27 +2072,21 @@ packages:
engines: {node: '>=12'}
cpu: [arm]
os: [android]
- requiresBuild: true
- optional: true
- /@esbuild/android-arm/0.24.2:
+ '@esbuild/android-arm@0.24.2':
resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- requiresBuild: true
- optional: true
- /@esbuild/android-arm/0.25.0:
+ '@esbuild/android-arm@0.25.0':
resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- requiresBuild: true
- optional: true
- '@esbuild/android-arm@0.25.2':
- resolution: {integrity: sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==}
+ '@esbuild/android-arm@0.25.1':
+ resolution: {integrity: sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -3680,27 +2102,21 @@ packages:
engines: {node: '>=12'}
cpu: [x64]
os: [android]
- requiresBuild: true
- optional: true
- /@esbuild/android-x64/0.24.2:
+ '@esbuild/android-x64@0.24.2':
resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- requiresBuild: true
- optional: true
- /@esbuild/android-x64/0.25.0:
+ '@esbuild/android-x64@0.25.0':
resolution: {integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- requiresBuild: true
- optional: true
- '@esbuild/android-x64@0.25.2':
- resolution: {integrity: sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==}
+ '@esbuild/android-x64@0.25.1':
+ resolution: {integrity: sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -3716,27 +2132,21 @@ packages:
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- optional: true
- /@esbuild/darwin-arm64/0.24.2:
+ '@esbuild/darwin-arm64@0.24.2':
resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- optional: true
- /@esbuild/darwin-arm64/0.25.0:
+ '@esbuild/darwin-arm64@0.25.0':
resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- optional: true
- '@esbuild/darwin-arm64@0.25.2':
- resolution: {integrity: sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==}
+ '@esbuild/darwin-arm64@0.25.1':
+ resolution: {integrity: sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -3752,27 +2162,21 @@ packages:
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- optional: true
- /@esbuild/darwin-x64/0.24.2:
+ '@esbuild/darwin-x64@0.24.2':
resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- optional: true
- /@esbuild/darwin-x64/0.25.0:
+ '@esbuild/darwin-x64@0.25.0':
resolution: {integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- optional: true
- '@esbuild/darwin-x64@0.25.2':
- resolution: {integrity: sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==}
+ '@esbuild/darwin-x64@0.25.1':
+ resolution: {integrity: sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -3788,27 +2192,21 @@ packages:
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
- requiresBuild: true
- optional: true
- /@esbuild/freebsd-arm64/0.24.2:
+ '@esbuild/freebsd-arm64@0.24.2':
resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- requiresBuild: true
- optional: true
- /@esbuild/freebsd-arm64/0.25.0:
+ '@esbuild/freebsd-arm64@0.25.0':
resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- requiresBuild: true
- optional: true
- '@esbuild/freebsd-arm64@0.25.2':
- resolution: {integrity: sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==}
+ '@esbuild/freebsd-arm64@0.25.1':
+ resolution: {integrity: sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -3824,27 +2222,21 @@ packages:
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
- requiresBuild: true
- optional: true
- /@esbuild/freebsd-x64/0.24.2:
+ '@esbuild/freebsd-x64@0.24.2':
resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- requiresBuild: true
- optional: true
- /@esbuild/freebsd-x64/0.25.0:
+ '@esbuild/freebsd-x64@0.25.0':
resolution: {integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- requiresBuild: true
- optional: true
- '@esbuild/freebsd-x64@0.25.2':
- resolution: {integrity: sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==}
+ '@esbuild/freebsd-x64@0.25.1':
+ resolution: {integrity: sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -3873,8 +2265,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.25.2':
- resolution: {integrity: sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==}
+ '@esbuild/linux-arm64@0.25.1':
+ resolution: {integrity: sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -3890,27 +2282,21 @@ packages:
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-arm/0.24.2:
+ '@esbuild/linux-arm@0.24.2':
resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-arm/0.25.0:
+ '@esbuild/linux-arm@0.25.0':
resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- requiresBuild: true
- optional: true
- '@esbuild/linux-arm@0.25.2':
- resolution: {integrity: sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==}
+ '@esbuild/linux-arm@0.25.1':
+ resolution: {integrity: sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -3926,27 +2312,21 @@ packages:
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-ia32/0.24.2:
+ '@esbuild/linux-ia32@0.24.2':
resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-ia32/0.25.0:
+ '@esbuild/linux-ia32@0.25.0':
resolution: {integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- requiresBuild: true
- optional: true
- '@esbuild/linux-ia32@0.25.2':
- resolution: {integrity: sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==}
+ '@esbuild/linux-ia32@0.25.1':
+ resolution: {integrity: sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -3962,27 +2342,21 @@ packages:
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-loong64/0.24.2:
+ '@esbuild/linux-loong64@0.24.2':
resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-loong64/0.25.0:
+ '@esbuild/linux-loong64@0.25.0':
resolution: {integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- requiresBuild: true
- optional: true
- '@esbuild/linux-loong64@0.25.2':
- resolution: {integrity: sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==}
+ '@esbuild/linux-loong64@0.25.1':
+ resolution: {integrity: sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -3998,27 +2372,21 @@ packages:
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-mips64el/0.24.2:
+ '@esbuild/linux-mips64el@0.24.2':
resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-mips64el/0.25.0:
+ '@esbuild/linux-mips64el@0.25.0':
resolution: {integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- requiresBuild: true
- optional: true
- '@esbuild/linux-mips64el@0.25.2':
- resolution: {integrity: sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==}
+ '@esbuild/linux-mips64el@0.25.1':
+ resolution: {integrity: sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -4034,27 +2402,21 @@ packages:
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-ppc64/0.24.2:
+ '@esbuild/linux-ppc64@0.24.2':
resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-ppc64/0.25.0:
+ '@esbuild/linux-ppc64@0.25.0':
resolution: {integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- requiresBuild: true
- optional: true
- '@esbuild/linux-ppc64@0.25.2':
- resolution: {integrity: sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==}
+ '@esbuild/linux-ppc64@0.25.1':
+ resolution: {integrity: sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -4070,27 +2432,21 @@ packages:
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-riscv64/0.24.2:
+ '@esbuild/linux-riscv64@0.24.2':
resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-riscv64/0.25.0:
+ '@esbuild/linux-riscv64@0.25.0':
resolution: {integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- requiresBuild: true
- optional: true
- '@esbuild/linux-riscv64@0.25.2':
- resolution: {integrity: sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==}
+ '@esbuild/linux-riscv64@0.25.1':
+ resolution: {integrity: sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -4106,27 +2462,21 @@ packages:
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-s390x/0.24.2:
+ '@esbuild/linux-s390x@0.24.2':
resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-s390x/0.25.0:
+ '@esbuild/linux-s390x@0.25.0':
resolution: {integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- optional: true
- '@esbuild/linux-s390x@0.25.2':
- resolution: {integrity: sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==}
+ '@esbuild/linux-s390x@0.25.1':
+ resolution: {integrity: sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -4142,27 +2492,21 @@ packages:
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-x64/0.24.2:
+ '@esbuild/linux-x64@0.24.2':
resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optional: true
- /@esbuild/linux-x64/0.25.0:
+ '@esbuild/linux-x64@0.25.0':
resolution: {integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optional: true
- '@esbuild/linux-x64@0.25.2':
- resolution: {integrity: sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==}
+ '@esbuild/linux-x64@0.25.1':
+ resolution: {integrity: sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
@@ -4172,19 +2516,15 @@ packages:
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- requiresBuild: true
- optional: true
- /@esbuild/netbsd-arm64/0.25.0:
+ '@esbuild/netbsd-arm64@0.25.0':
resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- requiresBuild: true
- optional: true
- '@esbuild/netbsd-arm64@0.25.2':
- resolution: {integrity: sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==}
+ '@esbuild/netbsd-arm64@0.25.1':
+ resolution: {integrity: sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
@@ -4200,27 +2540,21 @@ packages:
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- requiresBuild: true
- optional: true
- /@esbuild/netbsd-x64/0.24.2:
+ '@esbuild/netbsd-x64@0.24.2':
resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- requiresBuild: true
- optional: true
- /@esbuild/netbsd-x64/0.25.0:
+ '@esbuild/netbsd-x64@0.25.0':
resolution: {integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- requiresBuild: true
- optional: true
- '@esbuild/netbsd-x64@0.25.2':
- resolution: {integrity: sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==}
+ '@esbuild/netbsd-x64@0.25.1':
+ resolution: {integrity: sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
@@ -4230,19 +2564,15 @@ packages:
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- requiresBuild: true
- optional: true
- /@esbuild/openbsd-arm64/0.25.0:
+ '@esbuild/openbsd-arm64@0.25.0':
resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- requiresBuild: true
- optional: true
- '@esbuild/openbsd-arm64@0.25.2':
- resolution: {integrity: sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==}
+ '@esbuild/openbsd-arm64@0.25.1':
+ resolution: {integrity: sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
@@ -4258,27 +2588,21 @@ packages:
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- requiresBuild: true
- optional: true
- /@esbuild/openbsd-x64/0.24.2:
+ '@esbuild/openbsd-x64@0.24.2':
resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- requiresBuild: true
- optional: true
- /@esbuild/openbsd-x64/0.25.0:
+ '@esbuild/openbsd-x64@0.25.0':
resolution: {integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- requiresBuild: true
- optional: true
- '@esbuild/openbsd-x64@0.25.2':
- resolution: {integrity: sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==}
+ '@esbuild/openbsd-x64@0.25.1':
+ resolution: {integrity: sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
@@ -4294,27 +2618,21 @@ packages:
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
- requiresBuild: true
- optional: true
- /@esbuild/sunos-x64/0.24.2:
+ '@esbuild/sunos-x64@0.24.2':
resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- requiresBuild: true
- optional: true
- /@esbuild/sunos-x64/0.25.0:
+ '@esbuild/sunos-x64@0.25.0':
resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- requiresBuild: true
- optional: true
- '@esbuild/sunos-x64@0.25.2':
- resolution: {integrity: sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==}
+ '@esbuild/sunos-x64@0.25.1':
+ resolution: {integrity: sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -4330,27 +2648,21 @@ packages:
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- optional: true
- /@esbuild/win32-arm64/0.24.2:
+ '@esbuild/win32-arm64@0.24.2':
resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- optional: true
- /@esbuild/win32-arm64/0.25.0:
+ '@esbuild/win32-arm64@0.25.0':
resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- optional: true
- '@esbuild/win32-arm64@0.25.2':
- resolution: {integrity: sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==}
+ '@esbuild/win32-arm64@0.25.1':
+ resolution: {integrity: sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -4366,27 +2678,21 @@ packages:
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- optional: true
- /@esbuild/win32-ia32/0.24.2:
+ '@esbuild/win32-ia32@0.24.2':
resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- optional: true
- /@esbuild/win32-ia32/0.25.0:
+ '@esbuild/win32-ia32@0.25.0':
resolution: {integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- optional: true
- '@esbuild/win32-ia32@0.25.2':
- resolution: {integrity: sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==}
+ '@esbuild/win32-ia32@0.25.1':
+ resolution: {integrity: sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -4402,390 +2708,232 @@ packages:
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- optional: true
- /@esbuild/win32-x64/0.24.2:
+ '@esbuild/win32-x64@0.24.2':
resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- optional: true
- /@esbuild/win32-x64/0.25.0:
+ '@esbuild/win32-x64@0.25.0':
resolution: {integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- optional: true
- '@esbuild/win32-x64@0.25.2':
- resolution: {integrity: sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==}
+ '@esbuild/win32-x64@0.25.1':
+ resolution: {integrity: sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.5.0':
- resolution: {integrity: sha512-RoV8Xs9eNwiDvhv7M+xcL4PWyRyIXRY/FLp3buU4h1EYfdF7unWUy3dOjPqb3C7rMUewIcqwW850PgS8h1o1yg==}
+ '@eslint-community/eslint-utils@4.5.1':
+ resolution: {integrity: sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- dependencies:
- eslint: 9.17.0
- eslint-visitor-keys: 3.4.3
- dev: true
- /@eslint-community/regexpp/4.12.1:
+ '@eslint-community/regexpp@4.12.1':
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- dev: true
'@eslint/config-array@0.19.2':
resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dependencies:
- '@eslint/object-schema': 2.1.6
- debug: 4.4.0
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
- dev: true
'@eslint/core@0.12.0':
resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dependencies:
- '@types/json-schema': 7.0.15
- dev: true
- /@eslint/core/0.9.1:
+ '@eslint/core@0.9.1':
resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dependencies:
- '@types/json-schema': 7.0.15
- dev: true
- '@eslint/eslintrc@3.3.0':
- resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==}
+ '@eslint/eslintrc@3.3.1':
+ resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dependencies:
- ajv: 6.12.6
- debug: 4.4.0
- espree: 10.3.0
- globals: 14.0.0
- ignore: 5.3.2
- import-fresh: 3.3.1
- js-yaml: 4.1.0
- minimatch: 3.1.2
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@eslint/js/9.17.0:
+ '@eslint/js@9.17.0':
resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dev: true
'@eslint/object-schema@2.1.6':
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dev: true
'@eslint/plugin-kit@0.2.7':
resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dependencies:
- '@eslint/core': 0.12.0
- levn: 0.4.1
- dev: true
- /@fastify/ajv-compiler/4.0.2:
+ '@fastify/ajv-compiler@4.0.2':
resolution: {integrity: sha512-Rkiu/8wIjpsf46Rr+Fitd3HRP+VsxUFDDeag0hs9L0ksfnwx2g7SPQQTFL0E8Qv+rfXzQOxBJnjUB9ITUDjfWQ==}
- dependencies:
- ajv: 8.17.1
- ajv-formats: 3.0.1
- fast-uri: 3.0.6
- /@fastify/error/4.0.0:
- resolution: {integrity: sha512-OO/SA8As24JtT1usTUTKgGH7uLvhfwZPwlptRi2Dp5P4KKmJI3gvsZ8MIHnNwDs4sLf/aai5LzTyl66xr7qMxA==}
+ '@fastify/error@4.1.0':
+ resolution: {integrity: sha512-KeFcciOr1eo/YvIXHP65S94jfEEqn1RxTRBT1aJaHxY5FK0/GDXYozsQMMWlZoHgi8i0s+YtrLsgj/JkUUjSkQ==}
- /@fastify/fast-json-stringify-compiler/5.0.2:
+ '@fastify/fast-json-stringify-compiler@5.0.2':
resolution: {integrity: sha512-YdR7gqlLg1xZAQa+SX4sMNzQHY5pC54fu9oC5aYSUqBhyn6fkLkrdtKlpVdCNPlwuUuXA1PjFTEmvMF6ZVXVGw==}
- dependencies:
- fast-json-stringify: 6.0.1
- /@fastify/merge-json-schemas/0.2.1:
+ '@fastify/merge-json-schemas@0.2.1':
resolution: {integrity: sha512-OA3KGBCy6KtIvLf8DINC5880o5iBlDX4SxzLQS8HorJAbqluzLRn80UXU0bxZn7UOFhFgpRJDasfwn9nG4FG4A==}
- dependencies:
- dequal: 2.0.3
- /@floating-ui/core/1.6.9:
+ '@floating-ui/core@1.6.9':
resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
- dependencies:
- '@floating-ui/utils': 0.2.9
- dev: false
- /@floating-ui/dom/1.6.13:
+ '@floating-ui/dom@1.6.13':
resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
- dependencies:
- '@floating-ui/core': 1.6.9
- '@floating-ui/utils': 0.2.9
- dev: false
- /@floating-ui/react-dom/2.1.2_upmzqgzhjrquwzo2dphtigtdgi:
+ '@floating-ui/react-dom@2.1.2':
resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- dependencies:
- '@floating-ui/dom': 1.6.13
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
- /@floating-ui/utils/0.2.9:
+ '@floating-ui/utils@0.2.9':
resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
- dev: false
- /@fontsource/fira-mono/5.0.0:
+ '@fontsource/fira-mono@5.0.0':
resolution: {integrity: sha512-IsinH/oLYJyv/sQv7SbKmjoAXZsSjm6Q1Tz5GBBXCXi3Jg9MzXmKvWm9bSLC8lFI6CDsi8GkH/DAgZ98t8bhTQ==}
- dev: true
'@hey-api/json-schema-ref-parser@1.0.4':
resolution: {integrity: sha512-IaJ4yFgU5r63KZyeySHRKSM1bavFIda8KdwCFi5BxQCIklltzEByBksNOPms+yHXpWWfR+OopIusVZV8roycYg==}
engines: {node: '>= 16'}
- dependencies:
- '@jsdevtools/ono': 7.1.3
- '@types/json-schema': 7.0.15
- js-yaml: 4.1.0
- dev: false
- /@humanfs/core/0.19.1:
+ '@humanfs/core@0.19.1':
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
- dev: true
- /@humanfs/node/0.16.6:
+ '@humanfs/node@0.16.6':
resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
engines: {node: '>=18.18.0'}
- dependencies:
- '@humanfs/core': 0.19.1
- '@humanwhocodes/retry': 0.3.1
- dev: true
- /@humanwhocodes/module-importer/1.0.1:
+ '@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- dev: true
- /@humanwhocodes/retry/0.3.1:
+ '@humanwhocodes/retry@0.3.1':
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
engines: {node: '>=18.18'}
- dev: true
'@humanwhocodes/retry@0.4.2':
resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
engines: {node: '>=18.18'}
- dev: true
- /@img/sharp-darwin-arm64/0.33.5:
+ '@img/sharp-darwin-arm64@0.33.5':
resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- optionalDependencies:
- '@img/sharp-libvips-darwin-arm64': 1.0.4
- optional: true
- /@img/sharp-darwin-x64/0.33.5:
+ '@img/sharp-darwin-x64@0.33.5':
resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- optionalDependencies:
- '@img/sharp-libvips-darwin-x64': 1.0.4
- optional: true
- /@img/sharp-libvips-darwin-arm64/1.0.4:
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- optional: true
- /@img/sharp-libvips-darwin-x64/1.0.4:
+ '@img/sharp-libvips-darwin-x64@1.0.4':
resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- optional: true
-
- /@img/sharp-libvips-linux-arm/1.0.5:
- resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- optional: true
- /@img/sharp-libvips-linux-arm64/1.0.4:
+ '@img/sharp-libvips-linux-arm64@1.0.4':
resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- optional: true
- /@img/sharp-libvips-linux-s390x/1.0.4:
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-s390x@1.0.4':
resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- optional: true
- /@img/sharp-libvips-linux-x64/1.0.4:
+ '@img/sharp-libvips-linux-x64@1.0.4':
resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optional: true
- /@img/sharp-libvips-linuxmusl-arm64/1.0.4:
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- optional: true
- /@img/sharp-libvips-linuxmusl-x64/1.0.4:
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optional: true
- /@img/sharp-linux-arm/0.33.5:
- resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
+ '@img/sharp-linux-arm64@0.33.5':
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [arm]
+ cpu: [arm64]
os: [linux]
- requiresBuild: true
- optionalDependencies:
- '@img/sharp-libvips-linux-arm': 1.0.5
- optional: true
- /@img/sharp-linux-arm64/0.33.5:
- resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
+ '@img/sharp-linux-arm@0.33.5':
+ resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [arm64]
+ cpu: [arm]
os: [linux]
- requiresBuild: true
- optionalDependencies:
- '@img/sharp-libvips-linux-arm64': 1.0.4
- optional: true
- /@img/sharp-linux-s390x/0.33.5:
+ '@img/sharp-linux-s390x@0.33.5':
resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- optionalDependencies:
- '@img/sharp-libvips-linux-s390x': 1.0.4
- optional: true
- /@img/sharp-linux-x64/0.33.5:
+ '@img/sharp-linux-x64@0.33.5':
resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optionalDependencies:
- '@img/sharp-libvips-linux-x64': 1.0.4
- optional: true
- /@img/sharp-linuxmusl-arm64/0.33.5:
+ '@img/sharp-linuxmusl-arm64@0.33.5':
resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- optionalDependencies:
- '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
- optional: true
- /@img/sharp-linuxmusl-x64/0.33.5:
+ '@img/sharp-linuxmusl-x64@0.33.5':
resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optionalDependencies:
- '@img/sharp-libvips-linuxmusl-x64': 1.0.4
- optional: true
- /@img/sharp-wasm32/0.33.5:
+ '@img/sharp-wasm32@0.33.5':
resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [wasm32]
- requiresBuild: true
- dependencies:
- '@emnapi/runtime': 1.3.1
- optional: true
- /@img/sharp-win32-ia32/0.33.5:
+ '@img/sharp-win32-ia32@0.33.5':
resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- optional: true
- /@img/sharp-win32-x64/0.33.5:
+ '@img/sharp-win32-x64@0.33.5':
resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [win32]
- requiresBuild: true
- optional: true
-
- '@inquirer/checkbox@4.1.3':
- resolution: {integrity: sha512-KU1MGwf24iABJjGESxhyj+/rlQYSRoCfcuHDEHXfZ1DENmbuSRfyrUb+LLjHoee5TNOFKwaFxDXc5/zRwJUPMQ==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/core': 10.1.8
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.5
- ansi-escapes: 4.3.2
- yoctocolors-cjs: 2.1.2
- dev: true
- /@inquirer/checkbox/4.1.3_@types+node@22.13.10:
- resolution: {integrity: sha512-KU1MGwf24iABJjGESxhyj+/rlQYSRoCfcuHDEHXfZ1DENmbuSRfyrUb+LLjHoee5TNOFKwaFxDXc5/zRwJUPMQ==}
+ '@inquirer/checkbox@4.1.4':
+ resolution: {integrity: sha512-d30576EZdApjAMceijXA5jDzRQHT/MygbC+J8I7EqA6f/FRpYxlRtRJbHF8gHeWYeSdOuTEJqonn7QLB1ELezA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/core': 10.1.8_@types+node@22.13.10
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- ansi-escapes: 4.3.2
- yoctocolors-cjs: 2.1.2
- dev: true
- /@inquirer/confirm/5.1.6:
+ '@inquirer/confirm@5.1.6':
resolution: {integrity: sha512-6ZXYK3M1XmaVBZX6FCfChgtponnL0R6I7k8Nu+kaoNkT828FVZTcca1MqmWQipaW2oNREQl5AaPCUOOCVNdRMw==}
engines: {node: '>=18'}
peerDependencies:
@@ -4793,251 +2941,75 @@ packages:
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/core': 10.1.8
- '@inquirer/type': 3.0.5
- dev: true
- '@inquirer/confirm@5.1.7':
- resolution: {integrity: sha512-Xrfbrw9eSiHb+GsesO8TQIeHSMTP0xyvTCeeYevgZ4sKW+iz9w/47bgfG9b0niQm+xaLY2EWPBINUPldLwvYiw==}
+ '@inquirer/confirm@5.1.8':
+ resolution: {integrity: sha512-dNLWCYZvXDjO3rnQfk2iuJNL4Ivwz/T2+C3+WnNfJKsNGSuOs3wAo2F6e0p946gtSAk31nZMfW+MRmYaplPKsg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/core': 10.1.8_@types+node@22.13.10
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- dev: true
- '@inquirer/core@10.1.8':
- resolution: {integrity: sha512-HpAqR8y715zPpM9e/9Q+N88bnGwqqL8ePgZ0SMv/s3673JLMv3bIkoivGmjPqXlEgisUksSXibweQccUwEx4qQ==}
+ '@inquirer/core@10.1.9':
+ resolution: {integrity: sha512-sXhVB8n20NYkUBfDYgizGHlpRVaCRjtuzNZA6xpALIUbkgfd2Hjz+DfEN6+h1BRnuxw0/P4jCIMjMsEOAMwAJw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/core': 10.1.8
- '@inquirer/type': 3.0.5
- dev: true
- '@inquirer/editor@4.2.8':
- resolution: {integrity: sha512-UkGKbMFlQw5k4ZLjDwEi5z8NIVlP/3DAlLHta0o0pSsdpPThNmPtUL8mvGCHUaQtR+QrxR9yRYNWgKMsHkfIUA==}
+ '@inquirer/editor@4.2.9':
+ resolution: {integrity: sha512-8HjOppAxO7O4wV1ETUlJFg6NDjp/W2NP5FB9ZPAcinAlNT4ZIWOLe2pUVwmmPRSV0NMdI5r/+lflN55AwZOKSw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/core': 10.1.8_@types+node@22.13.10
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- dev: true
- '@inquirer/expand@4.0.10':
- resolution: {integrity: sha512-leyBouGJ77ggv51Jb/OJmLGGnU2HYc13MZ2iiPNLwe2VgFgZPVqsrRWSa1RAHKyazjOyvSNKLD1B2K7A/iWi1g==}
+ '@inquirer/expand@4.0.11':
+ resolution: {integrity: sha512-OZSUW4hFMW2TYvX/Sv+NnOZgO8CHT2TU1roUCUIF2T+wfw60XFRRp9MRUPCT06cRnKL+aemt2YmTWwt7rOrNEA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.5
- ansi-escapes: 4.3.2
- cli-width: 4.1.0
- mute-stream: 2.0.0
- signal-exit: 4.1.0
- wrap-ansi: 6.2.0
- yoctocolors-cjs: 2.1.2
- dev: true
'@inquirer/figures@1.0.11':
resolution: {integrity: sha512-eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw==}
engines: {node: '>=18'}
- '@inquirer/input@4.1.7':
- resolution: {integrity: sha512-rCQAipJNA14UTH84df/z4jDJ9LZ54H6zzuCAi7WZ0qVqx3CSqLjfXAMd5cpISIxbiHVJCPRB81gZksq6CZsqDg==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- ansi-escapes: 4.3.2
- cli-width: 4.1.0
- mute-stream: 2.0.0
- signal-exit: 4.1.0
- wrap-ansi: 6.2.0
- yoctocolors-cjs: 2.1.2
- dev: true
-
- '@inquirer/number@3.0.10':
- resolution: {integrity: sha512-GLsdnxzNefjCJUmWyjaAuNklHgDpCTL4RMllAVhVvAzBwRW9g38eZ5tWgzo1lirtSDTpsh593hqXVhxvdrjfwA==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
-
- '@inquirer/password@4.0.10':
- resolution: {integrity: sha512-JC538ujqeYKkFqLoWZ0ILBteIUO2yajBMVEUZSxjl9x6fiEQtM+I5Rca7M2D8edMDbyHLnXifGH1hJZdh8V5rA==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/core': 10.1.8
- '@inquirer/type': 3.0.5
- external-editor: 3.1.0
- dev: true
-
- /@inquirer/editor/4.2.8_@types+node@22.13.10:
- resolution: {integrity: sha512-UkGKbMFlQw5k4ZLjDwEi5z8NIVlP/3DAlLHta0o0pSsdpPThNmPtUL8mvGCHUaQtR+QrxR9yRYNWgKMsHkfIUA==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/core': 10.1.8_@types+node@22.13.10
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- external-editor: 3.1.0
- dev: true
-
- /@inquirer/expand/4.0.10:
- resolution: {integrity: sha512-leyBouGJ77ggv51Jb/OJmLGGnU2HYc13MZ2iiPNLwe2VgFgZPVqsrRWSa1RAHKyazjOyvSNKLD1B2K7A/iWi1g==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/core': 10.1.8
- '@inquirer/type': 3.0.5
- yoctocolors-cjs: 2.1.2
- dev: true
-
- /@inquirer/expand/4.0.10_@types+node@22.13.10:
- resolution: {integrity: sha512-leyBouGJ77ggv51Jb/OJmLGGnU2HYc13MZ2iiPNLwe2VgFgZPVqsrRWSa1RAHKyazjOyvSNKLD1B2K7A/iWi1g==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/core': 10.1.8_@types+node@22.13.10
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- yoctocolors-cjs: 2.1.2
- dev: true
-
- /@inquirer/figures/1.0.11:
- resolution: {integrity: sha512-eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw==}
- engines: {node: '>=18'}
- dev: true
-
- /@inquirer/input/4.1.7:
- resolution: {integrity: sha512-rCQAipJNA14UTH84df/z4jDJ9LZ54H6zzuCAi7WZ0qVqx3CSqLjfXAMd5cpISIxbiHVJCPRB81gZksq6CZsqDg==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/core': 10.1.8
- '@inquirer/type': 3.0.5
- dev: true
-
- /@inquirer/input/4.1.7_@types+node@22.13.10:
- resolution: {integrity: sha512-rCQAipJNA14UTH84df/z4jDJ9LZ54H6zzuCAi7WZ0qVqx3CSqLjfXAMd5cpISIxbiHVJCPRB81gZksq6CZsqDg==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/core': 10.1.8_@types+node@22.13.10
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- dev: true
-
- /@inquirer/number/3.0.10:
- resolution: {integrity: sha512-GLsdnxzNefjCJUmWyjaAuNklHgDpCTL4RMllAVhVvAzBwRW9g38eZ5tWgzo1lirtSDTpsh593hqXVhxvdrjfwA==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/core': 10.1.8
- '@inquirer/type': 3.0.5
- dev: true
-
- /@inquirer/number/3.0.10_@types+node@22.13.10:
- resolution: {integrity: sha512-GLsdnxzNefjCJUmWyjaAuNklHgDpCTL4RMllAVhVvAzBwRW9g38eZ5tWgzo1lirtSDTpsh593hqXVhxvdrjfwA==}
+ '@inquirer/input@4.1.8':
+ resolution: {integrity: sha512-WXJI16oOZ3/LiENCAxe8joniNp8MQxF6Wi5V+EBbVA0ZIOpFcL4I9e7f7cXse0HJeIPCWO8Lcgnk98juItCi7Q==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/core': 10.1.8_@types+node@22.13.10
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- dev: true
- /@inquirer/password/4.0.10:
- resolution: {integrity: sha512-JC538ujqeYKkFqLoWZ0ILBteIUO2yajBMVEUZSxjl9x6fiEQtM+I5Rca7M2D8edMDbyHLnXifGH1hJZdh8V5rA==}
+ '@inquirer/number@3.0.11':
+ resolution: {integrity: sha512-pQK68CsKOgwvU2eA53AG/4npRTH2pvs/pZ2bFvzpBhrznh8Mcwt19c+nMO7LHRr3Vreu1KPhNBF3vQAKrjIulw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/core': 10.1.8
- '@inquirer/type': 3.0.5
- ansi-escapes: 4.3.2
- dev: true
- /@inquirer/password/4.0.10_@types+node@22.13.10:
- resolution: {integrity: sha512-JC538ujqeYKkFqLoWZ0ILBteIUO2yajBMVEUZSxjl9x6fiEQtM+I5Rca7M2D8edMDbyHLnXifGH1hJZdh8V5rA==}
+ '@inquirer/password@4.0.11':
+ resolution: {integrity: sha512-dH6zLdv+HEv1nBs96Case6eppkRggMe8LoOTl30+Gq5Wf27AO/vHFgStTVz4aoevLdNXqwE23++IXGw4eiOXTg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/core': 10.1.8_@types+node@22.13.10
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- ansi-escapes: 4.3.2
- dev: true
- /@inquirer/prompts/7.3.2:
+ '@inquirer/prompts@7.3.2':
resolution: {integrity: sha512-G1ytyOoHh5BphmEBxSwALin3n1KGNYB6yImbICcRQdzXfOGbuJ9Jske/Of5Sebk339NSGGNfUshnzK8YWkTPsQ==}
engines: {node: '>=18'}
peerDependencies:
@@ -5045,140 +3017,37 @@ packages:
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/checkbox': 4.1.3
- '@inquirer/confirm': 5.1.7
- '@inquirer/editor': 4.2.8
- '@inquirer/expand': 4.0.10
- '@inquirer/input': 4.1.7
- '@inquirer/number': 3.0.10
- '@inquirer/password': 4.0.10
- '@inquirer/rawlist': 4.0.10
- '@inquirer/search': 3.0.10
- '@inquirer/select': 4.0.10
- dev: true
-
- '@inquirer/rawlist@4.0.10':
- resolution: {integrity: sha512-vOQbQkmhaCsF2bUmjoyRSZJBz77UnIF/F3ZS2LMgwbgyaG2WgwKHh0WKNj0APDB72WDbZijhW5nObQbk+TnbcA==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/checkbox': 4.1.3_@types+node@22.13.10
- '@inquirer/confirm': 5.1.7_@types+node@22.13.10
- '@inquirer/editor': 4.2.8_@types+node@22.13.10
- '@inquirer/expand': 4.0.10_@types+node@22.13.10
- '@inquirer/input': 4.1.7_@types+node@22.13.10
- '@inquirer/number': 3.0.10_@types+node@22.13.10
- '@inquirer/password': 4.0.10_@types+node@22.13.10
- '@inquirer/rawlist': 4.0.10_@types+node@22.13.10
- '@inquirer/search': 3.0.10_@types+node@22.13.10
- '@inquirer/select': 4.0.10_@types+node@22.13.10
- '@types/node': 22.13.10
- dev: true
-
- '@inquirer/search@3.0.10':
- resolution: {integrity: sha512-EAVKAz6P1LajZOdoL+R+XC3HJYSU261fbJzO4fCkJJ7UPFcm+nP+gzC+DDZWsb2WK9PQvKsnaKiNKsY8B6dBWQ==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/core': 10.1.8
- '@inquirer/type': 3.0.5
- yoctocolors-cjs: 2.1.2
- dev: true
-
- '@inquirer/select@4.0.10':
- resolution: {integrity: sha512-Tg8S9nESnCfISu5tCZSuXpXq0wHuDVimj7xyHstABgR34zcJnLdq/VbjB2mdZvNAMAehYBnNzSjxB06UE8LLAA==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/core': 10.1.8_@types+node@22.13.10
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- yoctocolors-cjs: 2.1.2
- dev: true
-
- /@inquirer/search/3.0.10:
- resolution: {integrity: sha512-EAVKAz6P1LajZOdoL+R+XC3HJYSU261fbJzO4fCkJJ7UPFcm+nP+gzC+DDZWsb2WK9PQvKsnaKiNKsY8B6dBWQ==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@inquirer/core': 10.1.8
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.5
- yoctocolors-cjs: 2.1.2
- dev: true
- /@inquirer/search/3.0.10_@types+node@22.13.10:
- resolution: {integrity: sha512-EAVKAz6P1LajZOdoL+R+XC3HJYSU261fbJzO4fCkJJ7UPFcm+nP+gzC+DDZWsb2WK9PQvKsnaKiNKsY8B6dBWQ==}
+ '@inquirer/rawlist@4.0.11':
+ resolution: {integrity: sha512-uAYtTx0IF/PqUAvsRrF3xvnxJV516wmR6YVONOmCWJbbt87HcDHLfL9wmBQFbNJRv5kCjdYKrZcavDkH3sVJPg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/core': 10.1.8_@types+node@22.13.10
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- yoctocolors-cjs: 2.1.2
- dev: true
- /@inquirer/select/4.0.10:
- resolution: {integrity: sha512-Tg8S9nESnCfISu5tCZSuXpXq0wHuDVimj7xyHstABgR34zcJnLdq/VbjB2mdZvNAMAehYBnNzSjxB06UE8LLAA==}
+ '@inquirer/search@3.0.11':
+ resolution: {integrity: sha512-9CWQT0ikYcg6Ls3TOa7jljsD7PgjcsYEM0bYE+Gkz+uoW9u8eaJCRHJKkucpRE5+xKtaaDbrND+nPDoxzjYyew==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/core': 10.1.8
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.5
- ansi-escapes: 4.3.2
- yoctocolors-cjs: 2.1.2
- dev: true
- /@inquirer/select/4.0.10_@types+node@22.13.10:
- resolution: {integrity: sha512-Tg8S9nESnCfISu5tCZSuXpXq0wHuDVimj7xyHstABgR34zcJnLdq/VbjB2mdZvNAMAehYBnNzSjxB06UE8LLAA==}
+ '@inquirer/select@4.1.0':
+ resolution: {integrity: sha512-z0a2fmgTSRN+YBuiK1ROfJ2Nvrpij5lVN3gPDkQGhavdvIVGHGW29LwYZfM/j42Ai2hUghTI/uoBuTbrJk42bA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- dependencies:
- '@inquirer/core': 10.1.8_@types+node@22.13.10
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.5_@types+node@22.13.10
- '@types/node': 22.13.10
- ansi-escapes: 4.3.2
- yoctocolors-cjs: 2.1.2
- dev: true
- /@inquirer/type/1.5.5:
+ '@inquirer/type@1.5.5':
resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==}
engines: {node: '>=18'}
- dependencies:
- mute-stream: 1.0.0
- dev: true
'@inquirer/type@3.0.5':
resolution: {integrity: sha512-ZJpeIYYueOz/i/ONzrfof8g89kNdO2hjGuvULROo3O8rlB2CRtSseE5KeirnyE4t/thAn/EwvS/vuQeJCn+NZg==}
@@ -5188,1005 +3057,411 @@ packages:
peerDependenciesMeta:
'@types/node':
optional: true
- dev: true
-
- /@inquirer/type/3.0.5_@types+node@22.13.10:
- resolution: {integrity: sha512-ZJpeIYYueOz/i/ONzrfof8g89kNdO2hjGuvULROo3O8rlB2CRtSseE5KeirnyE4t/thAn/EwvS/vuQeJCn+NZg==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@types/node': 22.13.10
- dev: true
- /@ioredis/commands/1.2.0:
+ '@ioredis/commands@1.2.0':
resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
- /@isaacs/cliui/8.0.2:
+ '@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
- dependencies:
- string-width: 5.1.2
- string-width-cjs: /string-width/4.2.3
- strip-ansi: 7.1.0
- strip-ansi-cjs: /strip-ansi/6.0.1
- wrap-ansi: 8.1.0
- wrap-ansi-cjs: /wrap-ansi/7.0.0
- /@isaacs/fs-minipass/4.0.1:
+ '@isaacs/fs-minipass@4.0.1':
resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
engines: {node: '>=18.0.0'}
- dependencies:
- minipass: 7.1.2
- /@istanbuljs/schema/0.1.3:
+ '@istanbuljs/schema@0.1.3':
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
- dev: true
- /@jest/schemas/29.6.3:
+ '@jest/schemas@29.6.3':
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@sinclair/typebox': 0.27.8
- dev: true
- /@jridgewell/gen-mapping/0.3.8:
+ '@jridgewell/gen-mapping@0.3.8':
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.25
- /@jridgewell/resolve-uri/3.1.2:
+ '@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/set-array/1.2.1:
+ '@jridgewell/set-array@1.2.1':
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
- /@jridgewell/source-map/0.3.6:
+ '@jridgewell/source-map@0.3.6':
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
- dependencies:
- '@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.25
- /@jridgewell/sourcemap-codec/1.5.0:
+ '@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
- /@jridgewell/trace-mapping/0.3.25:
+ '@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
- /@jridgewell/trace-mapping/0.3.9:
+ '@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
- dev: true
- /@jsdevtools/ono/7.1.3:
+ '@jsdevtools/ono@7.1.3':
resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==}
- dev: false
- /@jsonjoy.com/base64/1.1.2_tslib@2.8.1:
+ '@jsonjoy.com/base64@1.1.2':
resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
- dependencies:
- tslib: 2.8.1
- dev: true
'@jsonjoy.com/json-pack@1.2.0':
resolution: {integrity: sha512-io1zEbbYcElht3tdlqEOFxZ0dMTYrHz9iMf0gqn1pPjZFTCgM5R4R5IMA20Chb2UPYYsxjzs8CgZ7Nb5n2K2rA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
- dependencies:
- '@jsonjoy.com/base64': 1.1.2_tslib@2.8.1
- '@jsonjoy.com/util': 1.5.0_tslib@2.8.1
- hyperdyperid: 1.2.0
- thingies: 1.21.0_tslib@2.8.1
- tslib: 2.8.1
- dev: true
- /@jsonjoy.com/util/1.5.0_tslib@2.8.1:
+ '@jsonjoy.com/util@1.5.0':
resolution: {integrity: sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
- dependencies:
- tslib: 2.8.1
- dev: true
- /@kwsites/file-exists/1.1.1:
+ '@kwsites/file-exists@1.1.1':
resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==}
- dependencies:
- debug: 4.4.0
- transitivePeerDependencies:
- - supports-color
- /@kwsites/promise-deferred/1.1.1:
+ '@kwsites/promise-deferred@1.1.1':
resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==}
- /@leichtgewicht/ip-codec/2.0.5:
+ '@leichtgewicht/ip-codec@2.0.5':
resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
- dev: true
- /@listr2/prompt-adapter-inquirer/2.0.18_@inquirer+prompts@7.3.2:
+ '@listr2/prompt-adapter-inquirer@2.0.18':
resolution: {integrity: sha512-0hz44rAcrphyXcA8IS7EJ2SCoaBZD2u5goE8S/e+q/DL+dOGpqpcLidVOFeLG3VgML62SXmfRLAhWt0zL1oW4Q==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@inquirer/prompts': '>= 3 < 8'
- dependencies:
- '@inquirer/prompts': 7.3.2_@types+node@22.13.10
- '@inquirer/type': 1.5.5
- dev: true
- /@lmdb/lmdb-darwin-arm64/3.2.6:
+ '@lmdb/lmdb-darwin-arm64@3.2.6':
resolution: {integrity: sha512-yF/ih9EJJZc72psFQbwnn8mExIWfTnzWJg+N02hnpXtDPETYLmQswIMBn7+V88lfCaFrMozJsUvcEQIkEPU0Gg==}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@lmdb/lmdb-darwin-x64/3.2.6:
+ '@lmdb/lmdb-darwin-x64@3.2.6':
resolution: {integrity: sha512-5BbCumsFLbCi586Bb1lTWQFkekdQUw8/t8cy++Uq251cl3hbDIGEwD9HAwh8H6IS2F6QA9KdKmO136LmipRNkg==}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /@lmdb/lmdb-linux-arm/3.2.6:
- resolution: {integrity: sha512-+6XgLpMb7HBoWxXj+bLbiiB4s0mRRcDPElnRS3LpWRzdYSe+gFk5MT/4RrVNqd2MESUDmb53NUXw1+BP69bjiQ==}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@lmdb/lmdb-linux-arm64/3.2.6:
+ '@lmdb/lmdb-linux-arm64@3.2.6':
resolution: {integrity: sha512-l5VmJamJ3nyMmeD1ANBQCQqy7do1ESaJQfKPSm2IG9/ADZryptTyCj8N6QaYgIWewqNUrcbdMkJajRQAt5Qjfg==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@lmdb/lmdb-linux-x64/3.2.6:
+ '@lmdb/lmdb-linux-arm@3.2.6':
+ resolution: {integrity: sha512-+6XgLpMb7HBoWxXj+bLbiiB4s0mRRcDPElnRS3LpWRzdYSe+gFk5MT/4RrVNqd2MESUDmb53NUXw1+BP69bjiQ==}
+ cpu: [arm]
+ os: [linux]
+
+ '@lmdb/lmdb-linux-x64@3.2.6':
resolution: {integrity: sha512-nDYT8qN9si5+onHYYaI4DiauDMx24OAiuZAUsEqrDy+ja/3EbpXPX/VAkMV8AEaQhy3xc4dRC+KcYIvOFefJ4Q==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@lmdb/lmdb-win32-x64/3.2.6:
+ '@lmdb/lmdb-win32-x64@3.2.6':
resolution: {integrity: sha512-XlqVtILonQnG+9fH2N3Aytria7P/1fwDgDhl29rde96uH2sLB8CHORIf2PfuLVzFQJ7Uqp8py9AYwr3ZUCFfWg==}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@manypkg/find-root/1.1.0:
+ '@manypkg/find-root@1.1.0':
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
- dependencies:
- '@babel/runtime': 7.26.9
- '@types/node': 12.20.55
- find-up: 4.1.0
- fs-extra: 8.1.0
- dev: true
- /@manypkg/get-packages/1.1.3:
+ '@manypkg/get-packages@1.1.3':
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
- dependencies:
- '@babel/runtime': 7.26.9
- '@changesets/types': 4.1.0
- '@manypkg/find-root': 1.1.0
- fs-extra: 8.1.0
- globby: 11.1.0
- read-yaml-file: 1.1.0
- dev: true
- /@mapbox/node-pre-gyp/2.0.0:
+ '@mapbox/node-pre-gyp@2.0.0':
resolution: {integrity: sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==}
engines: {node: '>=18'}
hasBin: true
- dependencies:
- consola: 3.4.0
- detect-libc: 2.0.3
- https-proxy-agent: 7.0.6
- node-fetch: 2.7.0
- nopt: 8.1.0
- semver: 7.7.1
- tar: 7.4.3
- transitivePeerDependencies:
- - encoding
- - supports-color
- /@msgpackr-extract/msgpackr-extract-darwin-arm64/3.0.3:
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@msgpackr-extract/msgpackr-extract-darwin-x64/3.0.3:
+ '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
resolution: {integrity: sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /@msgpackr-extract/msgpackr-extract-linux-arm/3.0.3:
- resolution: {integrity: sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@msgpackr-extract/msgpackr-extract-linux-arm64/3.0.3:
+ '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
resolution: {integrity: sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@msgpackr-extract/msgpackr-extract-linux-x64/3.0.3:
+ '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
+ resolution: {integrity: sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==}
+ cpu: [arm]
+ os: [linux]
+
+ '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
resolution: {integrity: sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@msgpackr-extract/msgpackr-extract-win32-x64/3.0.3:
+ '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
resolution: {integrity: sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-android-arm-eabi/1.0.1:
+ '@napi-rs/nice-android-arm-eabi@1.0.1':
resolution: {integrity: sha512-5qpvOu5IGwDo7MEKVqqyAxF90I6aLj4n07OzpARdgDRfz8UbBztTByBp0RC59r3J1Ij8uzYi6jI7r5Lws7nn6w==}
engines: {node: '>= 10'}
cpu: [arm]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-android-arm64/1.0.1:
+ '@napi-rs/nice-android-arm64@1.0.1':
resolution: {integrity: sha512-GqvXL0P8fZ+mQqG1g0o4AO9hJjQaeYG84FRfZaYjyJtZZZcMjXW5TwkL8Y8UApheJgyE13TQ4YNUssQaTgTyvA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-darwin-arm64/1.0.1:
+ '@napi-rs/nice-darwin-arm64@1.0.1':
resolution: {integrity: sha512-91k3HEqUl2fsrz/sKkuEkscj6EAj3/eZNCLqzD2AA0TtVbkQi8nqxZCZDMkfklULmxLkMxuUdKe7RvG/T6s2AA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-darwin-x64/1.0.1:
+ '@napi-rs/nice-darwin-x64@1.0.1':
resolution: {integrity: sha512-jXnMleYSIR/+TAN/p5u+NkCA7yidgswx5ftqzXdD5wgy/hNR92oerTXHc0jrlBisbd7DpzoaGY4cFD7Sm5GlgQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-freebsd-x64/1.0.1:
+ '@napi-rs/nice-freebsd-x64@1.0.1':
resolution: {integrity: sha512-j+iJ/ezONXRQsVIB/FJfwjeQXX7A2tf3gEXs4WUGFrJjpe/z2KB7sOv6zpkm08PofF36C9S7wTNuzHZ/Iiccfw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-linux-arm-gnueabihf/1.0.1:
+ '@napi-rs/nice-linux-arm-gnueabihf@1.0.1':
resolution: {integrity: sha512-G8RgJ8FYXYkkSGQwywAUh84m946UTn6l03/vmEXBYNJxQJcD+I3B3k5jmjFG/OPiU8DfvxutOP8bi+F89MCV7Q==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-linux-arm64-gnu/1.0.1:
+ '@napi-rs/nice-linux-arm64-gnu@1.0.1':
resolution: {integrity: sha512-IMDak59/W5JSab1oZvmNbrms3mHqcreaCeClUjwlwDr0m3BoR09ZiN8cKFBzuSlXgRdZ4PNqCYNeGQv7YMTjuA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-linux-arm64-musl/1.0.1:
+ '@napi-rs/nice-linux-arm64-musl@1.0.1':
resolution: {integrity: sha512-wG8fa2VKuWM4CfjOjjRX9YLIbysSVV1S3Kgm2Fnc67ap/soHBeYZa6AGMeR5BJAylYRjnoVOzV19Cmkco3QEPw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-linux-ppc64-gnu/1.0.1:
+ '@napi-rs/nice-linux-ppc64-gnu@1.0.1':
resolution: {integrity: sha512-lxQ9WrBf0IlNTCA9oS2jg/iAjQyTI6JHzABV664LLrLA/SIdD+I1i3Mjf7TsnoUbgopBcCuDztVLfJ0q9ubf6Q==}
engines: {node: '>= 10'}
cpu: [ppc64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-linux-riscv64-gnu/1.0.1:
+ '@napi-rs/nice-linux-riscv64-gnu@1.0.1':
resolution: {integrity: sha512-3xs69dO8WSWBb13KBVex+yvxmUeEsdWexxibqskzoKaWx9AIqkMbWmE2npkazJoopPKX2ULKd8Fm9veEn0g4Ig==}
engines: {node: '>= 10'}
cpu: [riscv64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-linux-s390x-gnu/1.0.1:
+ '@napi-rs/nice-linux-s390x-gnu@1.0.1':
resolution: {integrity: sha512-lMFI3i9rlW7hgToyAzTaEybQYGbQHDrpRkg+1gJWEpH0PLAQoZ8jiY0IzakLfNWnVda1eTYYlxxFYzW8Rqczkg==}
engines: {node: '>= 10'}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-linux-x64-gnu/1.0.1:
+ '@napi-rs/nice-linux-x64-gnu@1.0.1':
resolution: {integrity: sha512-XQAJs7DRN2GpLN6Fb+ZdGFeYZDdGl2Fn3TmFlqEL5JorgWKrQGRUrpGKbgZ25UeZPILuTKJ+OowG2avN8mThBA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-linux-x64-musl/1.0.1:
+ '@napi-rs/nice-linux-x64-musl@1.0.1':
resolution: {integrity: sha512-/rodHpRSgiI9o1faq9SZOp/o2QkKQg7T+DK0R5AkbnI/YxvAIEHf2cngjYzLMQSQgUhxym+LFr+UGZx4vK4QdQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-win32-arm64-msvc/1.0.1:
+ '@napi-rs/nice-win32-arm64-msvc@1.0.1':
resolution: {integrity: sha512-rEcz9vZymaCB3OqEXoHnp9YViLct8ugF+6uO5McifTedjq4QMQs3DHz35xBEGhH3gJWEsXMUbzazkz5KNM5YUg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-win32-ia32-msvc/1.0.1:
+ '@napi-rs/nice-win32-ia32-msvc@1.0.1':
resolution: {integrity: sha512-t7eBAyPUrWL8su3gDxw9xxxqNwZzAqKo0Szv3IjVQd1GpXXVkb6vBBQUuxfIYaXMzZLwlxRQ7uzM2vdUE9ULGw==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice-win32-x64-msvc/1.0.1:
+ '@napi-rs/nice-win32-x64-msvc@1.0.1':
resolution: {integrity: sha512-JlF+uDcatt3St2ntBG8H02F1mM45i5SF9W+bIKiReVE6wiy3o16oBP/yxt+RZ+N6LbCImJXJ6bXNO2kn9AXicg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@napi-rs/nice/1.0.1:
+ '@napi-rs/nice@1.0.1':
resolution: {integrity: sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ==}
engines: {node: '>= 10'}
- requiresBuild: true
- optionalDependencies:
- '@napi-rs/nice-android-arm-eabi': 1.0.1
- '@napi-rs/nice-android-arm64': 1.0.1
- '@napi-rs/nice-darwin-arm64': 1.0.1
- '@napi-rs/nice-darwin-x64': 1.0.1
- '@napi-rs/nice-freebsd-x64': 1.0.1
- '@napi-rs/nice-linux-arm-gnueabihf': 1.0.1
- '@napi-rs/nice-linux-arm64-gnu': 1.0.1
- '@napi-rs/nice-linux-arm64-musl': 1.0.1
- '@napi-rs/nice-linux-ppc64-gnu': 1.0.1
- '@napi-rs/nice-linux-riscv64-gnu': 1.0.1
- '@napi-rs/nice-linux-s390x-gnu': 1.0.1
- '@napi-rs/nice-linux-x64-gnu': 1.0.1
- '@napi-rs/nice-linux-x64-musl': 1.0.1
- '@napi-rs/nice-win32-arm64-msvc': 1.0.1
- '@napi-rs/nice-win32-ia32-msvc': 1.0.1
- '@napi-rs/nice-win32-x64-msvc': 1.0.1
- dev: true
- optional: true
- /@napi-rs/wasm-runtime/0.2.7:
+ '@napi-rs/wasm-runtime@0.2.7':
resolution: {integrity: sha512-5yximcFK5FNompXfJFoWanu5l8v1hNGqNHh9du1xETp9HWk/B/PzvchX55WYOPaIeNglG8++68AAiauBAtbnzw==}
- requiresBuild: true
- dependencies:
- '@emnapi/core': 1.3.1
- '@emnapi/runtime': 1.3.1
- '@tybys/wasm-util': 0.9.0
- dev: false
- optional: true
- /@neoconfetti/svelte/2.0.0:
+ '@neoconfetti/svelte@2.0.0':
resolution: {integrity: sha512-n/Uu7/XmHc8w0uBci0QWBjgbRzLhfWsH8yPJ5pMaseIvzSwabXvB30nb3JjzEYNBp9uGt4eCeY7LUmxAjnJV8A==}
- dev: true
- '@netlify/functions@3.0.0':
- resolution: {integrity: sha512-XXf9mNw4+fkxUzukDpJtzc32bl1+YlXZwEhc5ZgMcTbJPLpgRLDs5WWSPJ4eY/Mv1ZFvtxmMwmfgoQYVt68Qog==}
+ '@netlify/functions@3.0.4':
+ resolution: {integrity: sha512-Ox8+ABI+nsLK+c4/oC5dpquXuEIjzfTlJrdQKgQijCsDQoje7inXFAtKDLvvaGvuvE+PVpMLwQcIUL6P9Ob1hQ==}
engines: {node: '>=18.0.0'}
- /@netlify/node-cookies/0.1.0:
- resolution: {integrity: sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==}
- engines: {node: ^14.16.0 || >=16.0.0}
-
- '@netlify/serverless-functions-api@1.30.1':
- resolution: {integrity: sha512-JkbaWFeydQdeDHz1mAy4rw+E3bl9YtbCgkntfTxq+IlNX/aIMv2/b1kZnQZcil4/sPoZGL831Dq6E374qRpU1A==}
+ '@netlify/serverless-functions-api@1.36.0':
+ resolution: {integrity: sha512-z6okREyK8in0486a22Oro0k+YsuyEjDXJt46FpgeOgXqKJ9ElM8QPll0iuLBkpbH33ENiNbIPLd1cuClRQnhiw==}
engines: {node: '>=18.0.0'}
- dependencies:
- '@netlify/node-cookies': 0.1.0
- urlpattern-polyfill: 8.0.2
'@next/env@15.2.4':
resolution: {integrity: sha512-+SFtMgoiYP3WoSswuNmxJOCwi06TdWE733D+WPjpXIe4LXGULwEaofiiAy6kbS0+XjM5xF5n3lKuBwN2SnqD9g==}
- /@next/eslint-plugin-next/15.1.6:
+ '@next/eslint-plugin-next@15.1.6':
resolution: {integrity: sha512-+slMxhTgILUntZDGNgsKEYHUvpn72WP1YTlkmEhS51vnVd7S9jEEy0n9YAMcI21vUG4akTw9voWH02lrClt/yw==}
- dependencies:
- fast-glob: 3.3.1
- dev: true
'@next/swc-darwin-arm64@15.2.4':
resolution: {integrity: sha512-1AnMfs655ipJEDC/FHkSr0r3lXBgpqKo4K1kiwfUf3iE68rDFXZ1TtHdMvf7D0hMItgDZ7Vuq3JgNMbt/+3bYw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
'@next/swc-darwin-x64@15.2.4':
resolution: {integrity: sha512-3qK2zb5EwCwxnO2HeO+TRqCubeI/NgCe+kL5dTJlPldV/uwCnUgC7VbEzgmxbfrkbjehL4H9BPztWOEtsoMwew==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
'@next/swc-linux-arm64-gnu@15.2.4':
resolution: {integrity: sha512-HFN6GKUcrTWvem8AZN7tT95zPb0GUGv9v0d0iyuTb303vbXkkbHDp/DxufB04jNVD+IN9yHy7y/6Mqq0h0YVaQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: false
- optional: true
'@next/swc-linux-arm64-musl@15.2.4':
resolution: {integrity: sha512-Oioa0SORWLwi35/kVB8aCk5Uq+5/ZIumMK1kJV+jSdazFm2NzPDztsefzdmzzpx5oGCJ6FkUC7vkaUseNTStNA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: false
- optional: true
'@next/swc-linux-x64-gnu@15.2.4':
resolution: {integrity: sha512-yb5WTRaHdkgOqFOZiu6rHV1fAEK0flVpaIN2HB6kxHVSy/dIajWbThS7qON3W9/SNOH2JWkVCyulgGYekMePuw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: false
- optional: true
'@next/swc-linux-x64-musl@15.2.4':
resolution: {integrity: sha512-Dcdv/ix6srhkM25fgXiyOieFUkz+fOYkHlydWCtB0xMST6X9XYI3yPDKBZt1xuhOytONsIFJFB08xXYsxUwJLw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: false
- optional: true
'@next/swc-win32-arm64-msvc@15.2.4':
resolution: {integrity: sha512-dW0i7eukvDxtIhCYkMrZNQfNicPDExt2jPb9AZPpL7cfyUo7QSNl1DjsHjmmKp6qNAqUESyT8YFl/Aw91cNJJg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- dev: false
- optional: true
'@next/swc-win32-x64-msvc@15.2.4':
resolution: {integrity: sha512-SbnWkJmkS7Xl3kre8SdMF6F/XDh1DTFEhp0jRTj/uB8iPKoU2bb2NDfcu+iifv1+mxQEd1g2vvSxcZbXSKyWiQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: false
- optional: true
- /@ngtools/webpack/19.2.0_i65f5ivnszhmjgy6wkusvxxd4i:
+ '@ngtools/webpack@19.2.0':
resolution: {integrity: sha512-63/8ys3bNK2h7Py/dKHZ4ZClxQz6xuz3skUgLZIMs9O076KPsHTKDKEDG2oicmwe/nOXjVt6n9Z4wprFaRLbvw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
'@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0
typescript: '>=5.5 <5.9'
webpack: ^5.54.0
- dependencies:
- '@angular/compiler-cli': 19.2.0_w2w2t63mjpx5wmltkoetyqksa4
- typescript: 5.5.3
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
-
- /@ngtools/webpack/19.2.1_3aqooojspjxulucedfvoyd7exm:
- resolution: {integrity: sha512-K8b3+eCG+Iz0EXTE/UDuXabr6yOL9NP6sW1CLk9AUdUUnL4AhoQy/vjfaOtxZx1T8qEErAWizJ51dHD25ysXHw==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- peerDependencies:
- '@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0
- typescript: '>=5.5 <5.9'
- webpack: ^5.54.0
- dependencies:
- '@angular/compiler-cli': 19.2.1_gvbyqgimgk2h6nc52mo4mq53z4
- typescript: 5.5.3
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
- /@nodelib/fs.scandir/2.1.5:
+ '@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- run-parallel: 1.2.0
- /@nodelib/fs.stat/2.0.5:
+ '@nodelib/fs.stat@2.0.5':
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- /@nodelib/fs.walk/1.2.8:
+ '@nodelib/fs.walk@1.2.8':
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.scandir': 2.1.5
- fastq: 1.19.1
- /@nolyfill/is-core-module/1.0.39:
+ '@nolyfill/is-core-module@1.0.39':
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
- dev: true
- /@npmcli/agent/3.0.0:
+ '@npmcli/agent@3.0.0':
resolution: {integrity: sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- agent-base: 7.1.3
- http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6
- lru-cache: 10.4.3
- socks-proxy-agent: 8.0.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@npmcli/fs/4.0.0:
+ '@npmcli/fs@4.0.0':
resolution: {integrity: sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- semver: 7.7.1
- dev: true
- /@npmcli/git/6.0.3:
+ '@npmcli/git@6.0.3':
resolution: {integrity: sha512-GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@npmcli/promise-spawn': 8.0.2
- ini: 5.0.0
- lru-cache: 10.4.3
- npm-pick-manifest: 10.0.0
- proc-log: 5.0.0
- promise-retry: 2.0.1
- semver: 7.7.1
- which: 5.0.0
- dev: true
- /@npmcli/installed-package-contents/3.0.0:
+ '@npmcli/installed-package-contents@3.0.0':
resolution: {integrity: sha512-fkxoPuFGvxyrH+OQzyTkX2LUEamrF4jZSmxjAtPPHHGO0dqsQ8tTKjnIS8SAnPHdk2I03BDtSMR5K/4loKg79Q==}
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
- dependencies:
- npm-bundled: 4.0.0
- npm-normalize-package-bin: 4.0.0
- dev: true
- /@npmcli/node-gyp/4.0.0:
+ '@npmcli/node-gyp@4.0.0':
resolution: {integrity: sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA==}
engines: {node: ^18.17.0 || >=20.5.0}
- dev: true
- /@npmcli/package-json/6.1.1:
+ '@npmcli/package-json@6.1.1':
resolution: {integrity: sha512-d5qimadRAUCO4A/Txw71VM7UrRZzV+NPclxz/dc+M6B2oYwjWTjqh8HA/sGQgs9VZuJ6I/P7XIAlJvgrl27ZOw==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@npmcli/git': 6.0.3
- glob: 10.4.5
- hosted-git-info: 8.0.2
- json-parse-even-better-errors: 4.0.0
- proc-log: 5.0.0
- semver: 7.7.1
- validate-npm-package-license: 3.0.4
- dev: true
- /@npmcli/promise-spawn/8.0.2:
+ '@npmcli/promise-spawn@8.0.2':
resolution: {integrity: sha512-/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- which: 5.0.0
- dev: true
- /@npmcli/redact/3.1.1:
+ '@npmcli/redact@3.1.1':
resolution: {integrity: sha512-3Hc2KGIkrvJWJqTbvueXzBeZlmvoOxc2jyX00yzr3+sNFquJg0N8hH4SAPLPVrkWIRQICVpVgjrss971awXVnA==}
engines: {node: ^18.17.0 || >=20.5.0}
- dev: true
'@npmcli/run-script@9.1.0':
resolution: {integrity: sha512-aoNSbxtkePXUlbZB+anS1LqsJdctG5n3UVhfU47+CDdwMi6uNTBMF9gPcQRnqghQd2FGzcwwIFBruFMxjhBewg==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@npmcli/node-gyp': 4.0.0
- '@npmcli/package-json': 6.1.1
- '@npmcli/promise-spawn': 8.0.2
- node-gyp: 11.1.0
- proc-log: 5.0.0
- which: 5.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@nuxt/cli/3.22.5:
- resolution: {integrity: sha512-vNwmNBQb/T062MxUEqrtSOTvxFHOwSWjzUQSnjUxSqfOrGap/ljx9toT/HngTs1zRHSOBvBz8lxrSju+F/806Q==}
- engines: {node: ^16.10.0 || >=18.0.0}
+ '@nuxt/devalue@2.0.2':
+ resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
+
+ '@nuxt/devtools-kit@1.7.0':
+ resolution: {integrity: sha512-+NgZ2uP5BuneqvQbe7EdOEaFEDy8762c99pLABtn7/Ur0ExEsQJMP7pYjjoTfKubhBqecr5Vo9yHkPBj1eHulQ==}
+ peerDependencies:
+ vite: '*'
+
+ '@nuxt/devtools-wizard@1.7.0':
+ resolution: {integrity: sha512-86Gd92uEw0Dh2ErIYT9TMIrMOISE96fCRN4rxeryTvyiowQOsyrbkCeMNYrEehoRL+lohoyK6iDmFajadPNwWQ==}
hasBin: true
- dependencies:
- c12: 3.0.2
- chokidar: 4.0.3
- citty: 0.1.6
- clipboardy: 4.0.0
- consola: 3.4.0
- defu: 6.1.4
- fuse.js: 7.1.0
- giget: 2.0.0
- h3: 1.15.1
- httpxy: 0.1.7
- jiti: 2.4.2
- listhen: 1.9.0
- nypm: 0.6.0
- ofetch: 1.4.1
- ohash: 2.0.11
- pathe: 2.0.3
- perfect-debounce: 1.0.0
- pkg-types: 2.1.0
- scule: 1.3.0
- semver: 7.7.1
- std-env: 3.8.1
- tinyexec: 0.3.2
- ufo: 1.5.4
- transitivePeerDependencies:
- - magicast
- dev: false
-
- /@nuxt/devalue/2.0.2:
- resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
-
- /@nuxt/devtools-kit/1.7.0_magicast@0.3.5+vite@6.0.9:
- resolution: {integrity: sha512-+NgZ2uP5BuneqvQbe7EdOEaFEDy8762c99pLABtn7/Ur0ExEsQJMP7pYjjoTfKubhBqecr5Vo9yHkPBj1eHulQ==}
- peerDependencies:
- vite: '*'
- dependencies:
- '@nuxt/kit': 3.16.0_magicast@0.3.5
- '@nuxt/schema': 3.16.0
- execa: 7.2.0
- vite: 6.0.9
- transitivePeerDependencies:
- - magicast
- dev: false
-
- /@nuxt/devtools-kit/1.7.0_magicast@0.3.5+vite@6.2.1:
- resolution: {integrity: sha512-+NgZ2uP5BuneqvQbe7EdOEaFEDy8762c99pLABtn7/Ur0ExEsQJMP7pYjjoTfKubhBqecr5Vo9yHkPBj1eHulQ==}
- peerDependencies:
- vite: '*'
- dependencies:
- '@nuxt/kit': 3.16.0_magicast@0.3.5
- '@nuxt/schema': 3.16.0
- execa: 7.2.0
- vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
- transitivePeerDependencies:
- - magicast
- dev: true
-
- /@nuxt/devtools-kit/2.2.1_magicast@0.3.5+vite@6.0.9:
- resolution: {integrity: sha512-6txRZPOs+YmiuqjaqZy0rls0CjcmNaJPMITZsLS3hTfKAsKOEMslPjgr0jnf4fpFujmkxFZc10txYlG24JZCAA==}
- peerDependencies:
- vite: '>=6.0'
- dependencies:
- '@nuxt/kit': 3.16.0_magicast@0.3.5
- '@nuxt/schema': 3.16.0
- execa: 9.5.2
- vite: 6.0.9_jiti@2.4.2
- transitivePeerDependencies:
- - magicast
- dev: false
-
- /@nuxt/devtools-wizard/1.7.0:
- resolution: {integrity: sha512-86Gd92uEw0Dh2ErIYT9TMIrMOISE96fCRN4rxeryTvyiowQOsyrbkCeMNYrEehoRL+lohoyK6iDmFajadPNwWQ==}
- hasBin: true
- dependencies:
- consola: 3.4.0
- diff: 7.0.0
- execa: 7.2.0
- global-directory: 4.0.1
- magicast: 0.3.5
- pathe: 1.1.2
- pkg-types: 1.3.1
- prompts: 2.4.2
- rc9: 2.1.2
- semver: 7.7.1
-
- /@nuxt/devtools-wizard/2.2.1:
- resolution: {integrity: sha512-tJGIwFxwIOsDdpefnSPhiVJEjBC5Kr88EORV6PRYVQRPZThiO8if5UM0qhhkwoDYJ5U21nZpyIzKuCQ6svo9vA==}
- hasBin: true
- dependencies:
- consola: 3.4.0
- diff: 7.0.0
- execa: 9.5.2
- magicast: 0.3.5
- pathe: 2.0.3
- pkg-types: 2.1.0
- prompts: 2.4.2
- semver: 7.7.1
- dev: false
-
- /@nuxt/devtools/1.7.0_vite@6.0.9+vue@3.5.13:
- resolution: {integrity: sha512-uvnjt5Zowkz7tZmnks2cGreg1XZIiSyVzQ2MYiRXACodlXcwJ0dpUS3WTxu8BR562K+772oRdvKie9AQlyZUgg==}
- hasBin: true
- peerDependencies:
- vite: '*'
- dependencies:
- '@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.7.0_magicast@0.3.5+vite@6.0.9
- '@nuxt/devtools-wizard': 1.7.0
- '@nuxt/kit': 3.16.0_magicast@0.3.5
- '@vue/devtools-core': 7.6.8_vite@6.0.9+vue@3.5.13
- '@vue/devtools-kit': 7.6.8
- birpc: 0.2.19
- consola: 3.4.0
- cronstrue: 2.56.0
- destr: 2.0.3
- error-stack-parser-es: 0.1.5
- execa: 7.2.0
- fast-npm-meta: 0.2.2
- flatted: 3.3.3
- get-port-please: 3.1.2
- hookable: 5.5.3
- image-meta: 0.2.1
- is-installed-globally: 1.0.0
- launch-editor: 2.10.0
- local-pkg: 0.5.1
- magicast: 0.3.5
- nypm: 0.4.1
- ohash: 1.1.6
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- rc9: 2.1.2
- scule: 1.3.0
- semver: 7.7.1
- simple-git: 3.27.0
- sirv: 3.0.1
- tinyglobby: 0.2.10
- unimport: 3.14.6
- vite: 6.0.9
- vite-plugin-inspect: 0.8.9_bvsh322jwpdo7ddnjh6oe5rlyq
- vite-plugin-vue-inspector: 5.3.1_vite@6.0.9
- which: 3.0.1
- ws: 8.18.1
- transitivePeerDependencies:
- - bufferutil
- - rollup
- - supports-color
- - utf-8-validate
- - vue
- dev: false
- /@nuxt/devtools/1.7.0_vite@6.2.1+vue@3.5.13:
+ '@nuxt/devtools@1.7.0':
resolution: {integrity: sha512-uvnjt5Zowkz7tZmnks2cGreg1XZIiSyVzQ2MYiRXACodlXcwJ0dpUS3WTxu8BR562K+772oRdvKie9AQlyZUgg==}
hasBin: true
peerDependencies:
vite: '*'
- dependencies:
- '@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.7.0_magicast@0.3.5+vite@6.2.1
- '@nuxt/devtools-wizard': 1.7.0
- '@nuxt/kit': 3.16.0_magicast@0.3.5
- '@vue/devtools-core': 7.6.8_vite@6.2.1+vue@3.5.13
- '@vue/devtools-kit': 7.6.8
- birpc: 0.2.19
- consola: 3.4.0
- cronstrue: 2.56.0
- destr: 2.0.3
- error-stack-parser-es: 0.1.5
- execa: 7.2.0
- fast-npm-meta: 0.2.2
- flatted: 3.3.3
- get-port-please: 3.1.2
- hookable: 5.5.3
- image-meta: 0.2.1
- is-installed-globally: 1.0.0
- launch-editor: 2.10.0
- local-pkg: 0.5.1
- magicast: 0.3.5
- nypm: 0.4.1
- ohash: 1.1.6
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- rc9: 2.1.2
- scule: 1.3.0
- semver: 7.7.1
- simple-git: 3.27.0
- sirv: 3.0.1
- tinyglobby: 0.2.10
- unimport: 3.14.6
- vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
- vite-plugin-inspect: 0.8.9_rfi3pg7mxb6hcnrgbo2flrc7ia
- vite-plugin-vue-inspector: 5.3.1_vite@6.2.1
- which: 3.0.1
- ws: 8.18.1
- transitivePeerDependencies:
- - bufferutil
- - rollup
- - supports-color
- - utf-8-validate
- - vue
- dev: true
-
- /@nuxt/devtools/2.2.1_vite@6.0.9+vue@3.5.13:
- resolution: {integrity: sha512-JkFRYLWFoklBuf+Zv6GwS9HPOFMuN3nomApWCnsNg8H7XqlFNIvB+wetmm6+u+43bNApjqE0ne7Y//o0V6FSaA==}
- hasBin: true
- peerDependencies:
- vite: '>=6.0'
- dependencies:
- '@nuxt/devtools-kit': 2.2.1_magicast@0.3.5+vite@6.0.9
- '@nuxt/devtools-wizard': 2.2.1
- '@nuxt/kit': 3.16.0_magicast@0.3.5
- '@vue/devtools-core': 7.7.2_vite@6.0.9+vue@3.5.13
- '@vue/devtools-kit': 7.7.2
- birpc: 2.2.0
- consola: 3.4.0
- destr: 2.0.3
- error-stack-parser-es: 1.0.5
- execa: 9.5.2
- fast-npm-meta: 0.3.1
- get-port-please: 3.1.2
- hookable: 5.5.3
- image-meta: 0.2.1
- is-installed-globally: 1.0.0
- launch-editor: 2.10.0
- local-pkg: 1.1.1
- magicast: 0.3.5
- nypm: 0.6.0
- ohash: 2.0.11
- pathe: 2.0.3
- perfect-debounce: 1.0.0
- pkg-types: 2.1.0
- semver: 7.7.1
- simple-git: 3.27.0
- sirv: 3.0.1
- structured-clone-es: 1.0.0
- tinyglobby: 0.2.12
- vite: 6.0.9_jiti@2.4.2
- vite-plugin-inspect: 11.0.0_bvsh322jwpdo7ddnjh6oe5rlyq
- vite-plugin-vue-tracer: 0.1.1_vite@6.0.9+vue@3.5.13
- which: 5.0.0
- ws: 8.18.1
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- - vue
- dev: false
- /@nuxt/kit/3.14.1592:
+ '@nuxt/kit@3.14.1592':
resolution: {integrity: sha512-r9r8bISBBisvfcNgNL3dSIQHSBe0v5YkX5zwNblIC2T0CIEgxEVoM5rq9O5wqgb5OEydsHTtT2hL57vdv6VT2w==}
engines: {node: ^14.18.0 || >=16.10.0}
- dependencies:
- '@nuxt/schema': 3.14.1592
- c12: 2.0.1
- consola: 3.4.0
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.1.0
- hash-sum: 2.0.0
- ignore: 6.0.2
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- mlly: 1.7.4
- pathe: 1.1.2
- pkg-types: 1.3.1
- scule: 1.3.0
- semver: 7.7.1
- ufo: 1.5.4
- unctx: 2.4.1
- unimport: 3.14.6
- untyped: 1.5.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- /@nuxt/kit/3.16.0:
- resolution: {integrity: sha512-yPfhk58BG6wJhELkGOTCOlkMDbZkizk3IaINcyTKm+hBKiK3SheLt7S9HStNL+qZSfH2Cf7A8sYp6M72lOIEtA==}
+ '@nuxt/kit@3.15.4':
+ resolution: {integrity: sha512-dr7I7eZOoRLl4uxdxeL2dQsH0OrbEiVPIyBHnBpA4co24CBnoJoF+JINuP9l3PAM3IhUzc5JIVq3/YY3lEc3Hw==}
engines: {node: '>=18.12.0'}
- dependencies:
- c12: 3.0.2
- consola: 3.4.0
- defu: 6.1.4
- destr: 2.0.3
- errx: 0.1.0
- exsolve: 1.0.4
- globby: 14.1.0
- ignore: 7.0.3
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- mlly: 1.7.4
- ohash: 2.0.11
- pathe: 2.0.3
- pkg-types: 2.1.0
- scule: 1.3.0
- semver: 7.7.1
- std-env: 3.8.1
- ufo: 1.5.4
- unctx: 2.4.1
- unimport: 4.1.2
- untyped: 2.0.0
- transitivePeerDependencies:
- - magicast
'@nuxt/module-builder@0.8.4':
resolution: {integrity: sha512-RSPRfCpBLuJtbDRaAKmc3Qzt3O98kSeRItXcgx0ZLptvROWT+GywoLhnYznRp8kbkz+6Qb5Hfiwa/RYEMRuJ4Q==}
@@ -6198,56 +3473,17 @@ packages:
'@nuxt/schema@3.14.1592':
resolution: {integrity: sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ==}
engines: {node: ^14.18.0 || >=16.10.0}
- dependencies:
- c12: 2.0.1
- compatx: 0.1.8
- consola: 3.4.0
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.3.1
- scule: 1.3.0
- std-env: 3.8.1
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.14.6
- untyped: 1.5.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- '@nuxt/schema@3.16.0':
- resolution: {integrity: sha512-uCpcqWO6C4P5c4vi1/sq5GyajO0EOp+ZWFtPrnKaJ1pXAhA+W1aMVxAjfi2f18QMJHuRXBz1TouFg1RmWA6FuA==}
+ '@nuxt/schema@3.16.1':
+ resolution: {integrity: sha512-Ri8bmT6MljpVR4DlXf9+acfgGaI4OTEdAzJU5aF2rJS78abtpnBxjXBG65kuhoL1LUlfKppDl8fTkUw5LM2JXQ==}
engines: {node: ^14.18.0 || >=16.10.0}
- dependencies:
- consola: 3.4.0
- defu: 6.1.4
- pathe: 2.0.3
- std-env: 3.8.1
- '@nuxt/telemetry@2.6.5':
- resolution: {integrity: sha512-lwMp9OHML/m0mjh7P5iz9PxINnk5smGkGebh88Wh8PjvnRooY1TBsbyq7mlSrNibpwD1BkwqhV5IAZOXWHLxMQ==}
+ '@nuxt/telemetry@2.6.6':
+ resolution: {integrity: sha512-Zh4HJLjzvm3Cq9w6sfzIFyH9ozK5ePYVfCUzzUQNiZojFsI2k1QkSBrVI9BGc6ArKXj/O6rkI6w7qQ+ouL8Cag==}
engines: {node: '>=18.12.0'}
hasBin: true
- dependencies:
- '@nuxt/kit': 3.16.0
- citty: 0.1.6
- consola: 3.4.0
- destr: 2.0.3
- dotenv: 16.4.7
- git-url-parse: 16.0.1
- is-docker: 3.0.0
- ofetch: 1.4.1
- package-manager-detector: 0.2.11
- parse-git-config: 3.0.0
- pathe: 2.0.3
- rc9: 2.1.2
- std-env: 3.8.1
- transitivePeerDependencies:
- - magicast
- /@nuxt/test-utils/3.14.0_t42vghp6y4xkqcrv26ib563gve:
+ '@nuxt/test-utils@3.14.0':
resolution: {integrity: sha512-8HJOvGChQ70s6RKduKlrNABJXizNCLodBRbgepa4RYA3QFv2KrTxLvlHlhEUwd9r2E55LcQacv9P7Er47Z2GaA==}
engines: {node: '>=18.20.4'}
peerDependencies:
@@ -6287,489 +3523,113 @@ packages:
optional: true
vitest:
optional: true
- dependencies:
- '@nuxt/kit': 3.16.0
- '@nuxt/schema': 3.16.0
- c12: 1.11.2
- consola: 3.4.0
- defu: 6.1.4
- destr: 2.0.3
- estree-walker: 3.0.3
- execa: 8.0.1
- fake-indexeddb: 6.0.0
- get-port-please: 3.1.2
- h3: 1.15.1
- local-pkg: 0.5.1
- magic-string: 0.30.17
- nitropack: 2.11.6_typescript@5.8.2
- node-fetch-native: 1.6.6
- ofetch: 1.4.1
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- radix3: 1.1.2
- scule: 1.3.0
- std-env: 3.8.1
- ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 1.16.1
- vite: 6.0.9_jiti@2.4.2
- vitest-environment-nuxt: 1.0.1_t42vghp6y4xkqcrv26ib563gve
- vue: 3.5.13_typescript@5.8.2
- vue-router: 4.5.0_vue@3.5.13
- transitivePeerDependencies:
- - magicast
- dev: true
-
- /@nuxt/vite-builder/3.14.1592_athuzuloh4kfrhr5uozaoiw4xa:
- resolution: {integrity: sha512-GVS7vkBJAGv13ghmjgGrS2QVyzoqxQ5+cAUrMeMjKbY7GnRY7/uOkoLmznYx8E/U9HBUyHQa+wSN2ZfcSiEytQ==}
- engines: {node: ^14.18.0 || >=16.10.0}
- peerDependencies:
- vue: ^3.3.4
- dependencies:
- '@nuxt/kit': 3.14.1592
- '@rollup/plugin-replace': 6.0.2
- '@vitejs/plugin-vue': 5.2.1_vite@5.4.14+vue@3.5.13
- '@vitejs/plugin-vue-jsx': 4.1.1_vite@5.4.14+vue@3.5.13
- autoprefixer: 10.4.21_postcss@8.5.3
- clear: 0.1.0
- consola: 3.4.0
- cssnano: 7.0.6_postcss@8.5.3
- defu: 6.1.4
- esbuild: 0.24.2
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- externality: 1.0.2
- get-port-please: 3.1.2
- h3: 1.15.1
- jiti: 2.4.2
- knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
- ohash: 1.1.6
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0
- std-env: 3.8.1
- strip-literal: 2.1.1
- ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 1.16.1
- vite: 5.4.14_4c45tymmfdin4b4i5tudvmn5ny
- vite-node: 2.1.9_4c45tymmfdin4b4i5tudvmn5ny
- vite-plugin-checker: 0.8.0_g2qas7ygesedvhf2ugjm5sssam
- vue: 3.5.13_typescript@5.5.3
- vue-bundle-renderer: 2.1.1
- transitivePeerDependencies:
- - '@biomejs/biome'
- - '@types/node'
- - eslint
- - less
- - lightningcss
- - magicast
- - meow
- - optionator
- - rolldown
- - rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - vls
- - vti
- - vue-tsc
- dev: true
- /@nuxt/vite-builder/3.14.1592_vue@3.5.13:
+ '@nuxt/vite-builder@3.14.1592':
resolution: {integrity: sha512-GVS7vkBJAGv13ghmjgGrS2QVyzoqxQ5+cAUrMeMjKbY7GnRY7/uOkoLmznYx8E/U9HBUyHQa+wSN2ZfcSiEytQ==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.3.4
- dependencies:
- '@nuxt/kit': 3.14.1592
- '@rollup/plugin-replace': 6.0.2
- '@vitejs/plugin-vue': 5.2.1_vite@5.4.14+vue@3.5.13
- '@vitejs/plugin-vue-jsx': 4.1.1_vite@5.4.14+vue@3.5.13
- autoprefixer: 10.4.21_postcss@8.5.3
- clear: 0.1.0
- consola: 3.4.0
- cssnano: 7.0.6_postcss@8.5.3
- defu: 6.1.4
- esbuild: 0.24.2
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- externality: 1.0.2
- get-port-please: 3.1.2
- h3: 1.15.1
- jiti: 2.4.2
- knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
- ohash: 1.1.6
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0
- std-env: 3.8.1
- strip-literal: 2.1.1
- ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 1.16.1
- vite: 5.4.14
- vite-node: 2.1.9
- vite-plugin-checker: 0.8.0_vite@5.4.14
- vue: 3.5.13
- vue-bundle-renderer: 2.1.1
- transitivePeerDependencies:
- - '@biomejs/biome'
- - '@types/node'
- - eslint
- - less
- - lightningcss
- - magicast
- - meow
- - optionator
- - rolldown
- - rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - vls
- - vti
- - vue-tsc
- dev: false
-
- /@nuxt/vite-builder/3.16.0_potaacg5vf44wwtz5b4udteggy:
- resolution: {integrity: sha512-H/mRrDmpWWLIiF1J9jguCKITF0ydFxmgcBcbveQac6vVhaOZunBAv9SsKHZgnH8CDM1v5BnuRNyIQ9y4Y9wW8g==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0.0}
- peerDependencies:
- vue: ^3.3.4
- dependencies:
- '@nuxt/kit': 3.16.0
- '@rollup/plugin-replace': 6.0.2_rollup@4.35.0
- '@vitejs/plugin-vue': 5.2.1_vite@6.2.1+vue@3.5.13
- '@vitejs/plugin-vue-jsx': 4.1.1_vite@6.2.1+vue@3.5.13
- autoprefixer: 10.4.21_postcss@8.5.3
- consola: 3.4.0
- cssnano: 7.0.6_postcss@8.5.3
- defu: 6.1.4
- esbuild: 0.25.0
- escape-string-regexp: 5.0.0
- exsolve: 1.0.4
- externality: 1.0.2
- get-port-please: 3.1.2
- h3: 1.15.1
- jiti: 2.4.2
- knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
- ohash: 2.0.11
- pathe: 2.0.3
- perfect-debounce: 1.0.0
- pkg-types: 2.1.0
- postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0_rollup@4.35.0
- std-env: 3.8.1
- ufo: 1.5.4
- unenv: 2.0.0-rc.14
- unplugin: 2.2.0
- vite: 6.2.1_jiti@2.4.2
- vite-node: 3.0.8_jiti@2.4.2
- vite-plugin-checker: 0.9.0_ptvrnkm6bz64vzfpjx5savnhve
- vue: 3.5.13_typescript@5.8.2
- vue-bundle-renderer: 2.1.1
- transitivePeerDependencies:
- - '@biomejs/biome'
- - '@types/node'
- - eslint
- - less
- - lightningcss
- - magicast
- - meow
- - optionator
- - rolldown
- - rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - typescript
- - vls
- - vti
- - vue-tsc
- - yaml
- dev: false
- /@one-ini/wasm/0.1.1:
+ '@one-ini/wasm@0.1.1':
resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
- dev: true
-
- /@oxc-parser/binding-darwin-arm64/0.56.5:
- resolution: {integrity: sha512-rj4WZqQVJQgLnGnDu2ciIOC5SqcBPc4x11RN0NwuedSGzny5mtBdNVLwt0+8iB15lIjrOKg5pjYJ8GQVPca5HA==}
- engines: {node: '>=14.0.0'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
-
- /@oxc-parser/binding-darwin-x64/0.56.5:
- resolution: {integrity: sha512-Rr7aMkqcxGIM6fgkpaj9SJj0u1O1g+AT7mJwmdi5PLSQRPR4CkDKfztEnAj5k+d2blWvh9nPZH8G0OCwxIHk1Q==}
- engines: {node: '>=14.0.0'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
-
- /@oxc-parser/binding-linux-arm-gnueabihf/0.56.5:
- resolution: {integrity: sha512-jcFCThrWUt5k1GM43tdmI1m2dEnWUPPHHTWKBJbZBXzXLrJJzkqv5OU87Spf1004rYj9swwpa13kIldFwMzglA==}
- engines: {node: '>=14.0.0'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /@oxc-parser/binding-linux-arm64-gnu/0.56.5:
- resolution: {integrity: sha512-zo/9RDgWvugKxCpHHcAC5EW0AqoEvODJ4Iv4aT1Xonv6kcydbyPSXJBQhhZUvTXTAFIlQKl6INHl+Xki9Qs3fw==}
- engines: {node: '>=14.0.0'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /@oxc-parser/binding-linux-arm64-musl/0.56.5:
- resolution: {integrity: sha512-SCIqrL5apVbrtMoqOpKX/Ez+c46WmW0Tyhtu+Xby281biH+wYu70m+fux9ZsGmbHc2ojd4FxUcaUdCZtb5uTOQ==}
- engines: {node: '>=14.0.0'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /@oxc-parser/binding-linux-x64-gnu/0.56.5:
- resolution: {integrity: sha512-I2mpX35NWo83hay4wrnzFLk3VuGK1BBwHaqvEdqsCode8iG8slYJRJPICVbCEWlkR3rotlTQ+608JcRU0VqZ5Q==}
- engines: {node: '>=14.0.0'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /@oxc-parser/binding-linux-x64-musl/0.56.5:
- resolution: {integrity: sha512-xfzUHGYOh3PGWZdBuY5r1czvE8EGWPAmhTWHqkw3/uAfUVWN/qrrLjMojiaiWyUgl/9XIFg05m5CJH9dnngh5Q==}
- engines: {node: '>=14.0.0'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /@oxc-parser/binding-wasm32-wasi/0.56.5:
- resolution: {integrity: sha512-+z3Ofmc1v5kcu8fXgG5vn7T1f52P47ceTTmTXsm5HPY7rq5EMYRUaBnxH6cesXwY1OVVCwYlIZbCiy8Pm1w8zQ==}
- engines: {node: '>=14.0.0'}
- cpu: [wasm32]
- requiresBuild: true
- dependencies:
- '@napi-rs/wasm-runtime': 0.2.7
- dev: false
- optional: true
-
- /@oxc-parser/binding-win32-arm64-msvc/0.56.5:
- resolution: {integrity: sha512-pRg8QrbMh8PgnXBreiONoJBR306u+JN19BXQC7oKIaG4Zxt9Mn8XIyuhUv3ytqjLudSiG2ERWQUoCGLs+yfW0A==}
- engines: {node: '>=14.0.0'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: false
- optional: true
-
- /@oxc-parser/binding-win32-x64-msvc/0.56.5:
- resolution: {integrity: sha512-VALZNcuyw/6rwsxOACQ2YS6rey2d/ym4cNfXqJrHB/MZduAPj4xvij72gHGu3Ywm31KVGLVWk/mrMRiM9CINcA==}
- engines: {node: '>=14.0.0'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: false
- optional: true
- /@oxc-parser/wasm/0.56.5:
- resolution: {integrity: sha512-9vtn56ok7PHS0elihFP+Q+alveQuGR0vnF6OeZesxkKWLJr8mCk0kZJx5ZxLjibaPA/sxWTmOyn31UMM9jg9fg==}
- dependencies:
- '@oxc-project/types': 0.56.5
- dev: false
-
- /@oxc-project/types/0.56.5:
- resolution: {integrity: sha512-skY3kOJwp22W4RkaadH1hZ3hqFHjkRrIIE0uQ4VUg+/Chvbl+2pF+B55IrIk2dgsKXS57YEUsJuN6I6s4rgFjA==}
- dev: false
-
- /@parcel/watcher-android-arm64/2.5.1:
+ '@parcel/watcher-android-arm64@2.5.1':
resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
- requiresBuild: true
- optional: true
- /@parcel/watcher-darwin-arm64/2.5.1:
+ '@parcel/watcher-darwin-arm64@2.5.1':
resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- optional: true
- /@parcel/watcher-darwin-x64/2.5.1:
+ '@parcel/watcher-darwin-x64@2.5.1':
resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- optional: true
- /@parcel/watcher-freebsd-x64/2.5.1:
+ '@parcel/watcher-freebsd-x64@2.5.1':
resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
- requiresBuild: true
- optional: true
- /@parcel/watcher-linux-arm-glibc/2.5.1:
+ '@parcel/watcher-linux-arm-glibc@2.5.1':
resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
- requiresBuild: true
- optional: true
- /@parcel/watcher-linux-arm-musl/2.5.1:
+ '@parcel/watcher-linux-arm-musl@2.5.1':
resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
- requiresBuild: true
- optional: true
- /@parcel/watcher-linux-arm64-glibc/2.5.1:
+ '@parcel/watcher-linux-arm64-glibc@2.5.1':
resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- optional: true
- /@parcel/watcher-linux-arm64-musl/2.5.1:
+ '@parcel/watcher-linux-arm64-musl@2.5.1':
resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- optional: true
- /@parcel/watcher-linux-x64-glibc/2.5.1:
+ '@parcel/watcher-linux-x64-glibc@2.5.1':
resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optional: true
- /@parcel/watcher-linux-x64-musl/2.5.1:
+ '@parcel/watcher-linux-x64-musl@2.5.1':
resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optional: true
- /@parcel/watcher-wasm/2.5.1:
+ '@parcel/watcher-wasm@2.5.1':
resolution: {integrity: sha512-RJxlQQLkaMMIuWRozy+z2vEqbaQlCuaCgVZIUCzQLYggY22LZbP5Y1+ia+FD724Ids9e+XIyOLXLrLgQSHIthw==}
engines: {node: '>= 10.0.0'}
- dependencies:
- is-glob: 4.0.3
- micromatch: 4.0.8
- napi-wasm: 1.1.3
bundledDependencies:
- napi-wasm
- /@parcel/watcher-win32-arm64/2.5.1:
+ '@parcel/watcher-win32-arm64@2.5.1':
resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- optional: true
- /@parcel/watcher-win32-ia32/2.5.1:
+ '@parcel/watcher-win32-ia32@2.5.1':
resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- optional: true
- /@parcel/watcher-win32-x64/2.5.1:
+ '@parcel/watcher-win32-x64@2.5.1':
resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- optional: true
- /@parcel/watcher/2.5.1:
+ '@parcel/watcher@2.5.1':
resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
engines: {node: '>= 10.0.0'}
- requiresBuild: true
- dependencies:
- detect-libc: 1.0.3
- is-glob: 4.0.3
- micromatch: 4.0.8
- node-addon-api: 7.1.1
- optionalDependencies:
- '@parcel/watcher-android-arm64': 2.5.1
- '@parcel/watcher-darwin-arm64': 2.5.1
- '@parcel/watcher-darwin-x64': 2.5.1
- '@parcel/watcher-freebsd-x64': 2.5.1
- '@parcel/watcher-linux-arm-glibc': 2.5.1
- '@parcel/watcher-linux-arm-musl': 2.5.1
- '@parcel/watcher-linux-arm64-glibc': 2.5.1
- '@parcel/watcher-linux-arm64-musl': 2.5.1
- '@parcel/watcher-linux-x64-glibc': 2.5.1
- '@parcel/watcher-linux-x64-musl': 2.5.1
- '@parcel/watcher-win32-arm64': 2.5.1
- '@parcel/watcher-win32-ia32': 2.5.1
- '@parcel/watcher-win32-x64': 2.5.1
- /@pkgjs/parseargs/0.11.0:
+ '@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
- requiresBuild: true
- optional: true
- /@pkgr/core/0.1.1:
- resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
+ '@pkgr/core@0.2.0':
+ resolution: {integrity: sha512-vsJDAkYR6qCPu+ioGScGiMYR7LvZYIXh/dlQeviqoTWNCVfKTLYD/LkNWH4Mxsv2a5vpIRc77FN5DnmK1eBggQ==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- dev: true
- /@polka/url/1.0.0-next.28:
+ '@polka/url@1.0.0-next.28':
resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
'@poppinss/colors@4.1.4':
@@ -6787,31 +3647,15 @@ packages:
resolution: {integrity: sha512-bJ0UBsk0ESOs6RFcLXOt99a3yTDcOKlzfjad+rhFwdaG1Lu/Wzq58GHYCDTlZ9z6mldf4g+NTb+TXEfe0PpnsQ==}
engines: {node: '>=18'}
hasBin: true
- dependencies:
- debug: 4.3.4
- extract-zip: 2.0.1
- progress: 2.0.3
- proxy-agent: 6.4.0
- semver: 7.6.0
- tar-fs: 3.0.5
- unbzip2-stream: 1.4.3
- yargs: 17.7.2
- transitivePeerDependencies:
- - bare-buffer
- - supports-color
- dev: true
- /@radix-ui/colors/3.0.0:
+ '@radix-ui/colors@3.0.0':
resolution: {integrity: sha512-FUOsGBkHrYJwCSEtWRCIfQbZG7q1e6DgxCIOe1SUQzDe/7rXXeA47s8yCn6fuTNQAj1Zq4oTFi9Yjp3wzElcxg==}
- dev: false
- /@radix-ui/number/1.1.0:
+ '@radix-ui/number@1.1.0':
resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
- dev: false
- /@radix-ui/primitive/1.1.1:
+ '@radix-ui/primitive@1.1.1':
resolution: {integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==}
- dev: false
'@radix-ui/react-accessible-icon@1.1.2':
resolution: {integrity: sha512-+rnMO0SEfzkcHr93RshkQVpOA26MtGOv4pcS9QUnLg4F8+GDmCJ8c2FEPhPz5e7arf31EzbTqJxFbzg3qen14g==}
@@ -6825,13 +3669,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-visually-hidden': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-alert-dialog@1.1.6':
resolution: {integrity: sha512-p4XnPqgej8sZAAReCAKgz1REYZEBLR8hU9Pg27wFnCWIMc8g1ccCs0FjBcy05V15VTu8pAePw/VDYeOm/uZ6yQ==}
@@ -6845,18 +3682,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-dialog': 1.1.6_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-arrow@1.1.2':
resolution: {integrity: sha512-G+KcpzXHq24iH0uGG/pF8LyzpFJYGD4RfLjCIBfGdSLXvjLHST31RUiRVrupIBMvIppMgSzQ6l66iAxl03tdlg==}
@@ -6870,13 +3695,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-aspect-ratio@1.1.2':
resolution: {integrity: sha512-TaJxYoCpxJ7vfEkv2PTNox/6zzmpKXT6ewvCuf2tTOIVN45/Jahhlld29Yw4pciOXS2Xq91/rSGEdmEnUWZCqA==}
@@ -6890,13 +3708,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-avatar@1.1.3':
resolution: {integrity: sha512-Paen00T4P8L8gd9bNsRMw7Cbaz85oxiv+hzomsRZgFm2byltPFDtfcoqlWJ8GyZlIBWgLssJlzLCnKU0G0302g==}
@@ -6910,16 +3721,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-checkbox@1.1.4':
resolution: {integrity: sha512-wP0CPAHq+P5I4INKe3hJrIa1WoNqqrejzW+zoU0rOvo1b9gDEJJFl2rYfO1PYJUQCc2H1WZxIJmyv9BS8i5fLw==}
@@ -6933,20 +3734,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-size': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-collection@1.1.2':
resolution: {integrity: sha512-9z54IEKRxIa9VityapoEYMuByaG42iSy1ZXlY2KcuLSEtq8x4987/N6m15ppoMffgZX72gER2uHe1D9Y6Unlcw==}
@@ -6960,18 +3747,8 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
- /@radix-ui/react-compose-refs/1.1.1_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-compose-refs@1.1.1':
resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==}
peerDependencies:
'@types/react': '*'
@@ -6979,10 +3756,6 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
'@radix-ui/react-context-menu@2.2.6':
resolution: {integrity: sha512-aUP99QZ3VU84NPsHeaFt4cQUNgJqFsLLOt/RbbWXszZ6MP0DpDyjkFZORr4RpAEx3sUBk+Kc8h13yGtC5Qw8dg==}
@@ -6996,20 +3769,8 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-menu': 2.1.6_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
- /@radix-ui/react-context/1.1.1_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-context@1.1.1':
resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
peerDependencies:
'@types/react': '*'
@@ -7017,10 +3778,6 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
'@radix-ui/react-dialog@1.1.6':
resolution: {integrity: sha512-/IVhJV5AceX620DUJ4uYVMymzsipdKBzo3edo+omeskCKGm9FRHM0ebIdbPnlQVJqyuHbuBltQUOG2mOTq2IYw==}
@@ -7034,28 +3791,8 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-focus-guards': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-focus-scope': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- react-remove-scroll: 2.6.3_2e3fe46pmji5vpxr5buusdg5gq
- dev: false
- /@radix-ui/react-direction/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-direction@1.1.0':
resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
peerDependencies:
'@types/react': '*'
@@ -7063,10 +3800,6 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
'@radix-ui/react-dismissable-layer@1.1.5':
resolution: {integrity: sha512-E4TywXY6UsXNRhFrECa5HAvE5/4BFcGyfTyK36gP+pAW1ed7UTK4vKwdr53gAJYwqbfCWC6ATvJa3J3R/9+Qrg==}
@@ -7080,17 +3813,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-escape-keydown': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-dropdown-menu@2.1.6':
resolution: {integrity: sha512-no3X7V5fD487wab/ZYSHXq3H37u4NVeLDKI/Ks724X/eEFSSEFYZxWgsIlr1UBeEyDaM29HM5x9p1Nv8DuTYPA==}
@@ -7104,21 +3826,8 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-menu': 2.1.6_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
- /@radix-ui/react-focus-guards/1.1.1_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-focus-guards@1.1.1':
resolution: {integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==}
peerDependencies:
'@types/react': '*'
@@ -7126,10 +3835,6 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
'@radix-ui/react-focus-scope@1.1.2':
resolution: {integrity: sha512-zxwE80FCU7lcXUGWkdt6XpTTCKPitG1XKOwViTxHVKIJhZl9MvIl2dVHeZENCWD9+EdWv05wlaEkRXUykU27RA==}
@@ -7143,17 +3848,8 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
- /@radix-ui/react-form/0.1.1_rwablqpolwkqma5a7gseo64e5i:
+ '@radix-ui/react-form@0.1.1':
resolution: {integrity: sha512-Ah2TBvzl2trb4DL9DQtyUJgAUfq/djMN7j5CHzdpbdR3W7OL8N4JcJgE80cXMf3ssCE+8yg0zFQoJ0srxqfsFA==}
peerDependencies:
'@types/react': '*'
@@ -7165,18 +3861,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-label': 2.1.1_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.1_rwablqpolwkqma5a7gseo64e5i
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-hover-card@1.1.6':
resolution: {integrity: sha512-E4ozl35jq0VRlrdc4dhHrNSV0JqBb4Jy73WAhBEK7JoYnQ83ED5r0Rb/XdVKw89ReAJN38N492BAPBZQ57VmqQ==}
@@ -7190,31 +3874,13 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-popper': 1.2.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
- /@radix-ui/react-icons/1.3.2_react@19.0.0:
+ '@radix-ui/react-icons@1.3.2':
resolution: {integrity: sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==}
peerDependencies:
react: ^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc
- dependencies:
- react: 19.0.0
- dev: false
- /@radix-ui/react-id/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-id@1.1.0':
resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
peerDependencies:
'@types/react': '*'
@@ -7222,13 +3888,8 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
- /@radix-ui/react-label/2.1.1_rwablqpolwkqma5a7gseo64e5i:
+ '@radix-ui/react-label@2.1.1':
resolution: {integrity: sha512-UUw5E4e/2+4kFMH7+YxORXGWggtY6sM8WIwh5RZchhLuUg2H1hc98Py+pr8HMz6rdaYrK2t296ZEjYLOCO5uUw==}
peerDependencies:
'@types/react': '*'
@@ -7240,13 +3901,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-primitive': 2.0.1_rwablqpolwkqma5a7gseo64e5i
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-menu@2.1.6':
resolution: {integrity: sha512-tBBb5CXDJW3t2mo9WlO7r6GTmWV0F0uzHZVFmlRmYpiSK1CDU5IKojP1pm7oknpBOrFZx/YgBRW9oorPO2S/Lg==}
@@ -7260,30 +3914,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-focus-guards': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-focus-scope': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-popper': 1.2.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-roving-focus': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- react-remove-scroll: 2.6.3_2e3fe46pmji5vpxr5buusdg5gq
- dev: false
'@radix-ui/react-navigation-menu@1.2.5':
resolution: {integrity: sha512-myMHHQUZ3ZLTi8W381/Vu43Ia0NqakkQZ2vzynMmTUtQQ9kNkjzhOwkZC9TAM5R07OZUVIQyHC06f/9JZJpvvA==}
@@ -7297,26 +3927,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-visually-hidden': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-popover@1.1.6':
resolution: {integrity: sha512-NQouW0x4/GnkFJ/pRqsIS3rM/k97VzKnVb2jB7Gq7VEGPy5g7uNV1ykySFt7eWSp3i2uSGFwaJcvIRJBAHmmFg==}
@@ -7330,27 +3940,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-focus-guards': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-focus-scope': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-popper': 1.2.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- react-remove-scroll: 2.6.3_2e3fe46pmji5vpxr5buusdg5gq
- dev: false
'@radix-ui/react-popper@1.2.2':
resolution: {integrity: sha512-Rvqc3nOpwseCyj/rgjlJDYAgyfw7OC1tTkKn2ivhaMGcYt8FSBlahHOZak2i3QwkRXUXgGgzeEe2RuqeEHuHgA==}
@@ -7364,22 +3953,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@floating-ui/react-dom': 2.1.2_upmzqgzhjrquwzo2dphtigtdgi
- '@radix-ui/react-arrow': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-rect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-size': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/rect': 1.1.0
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-portal@1.1.4':
resolution: {integrity: sha512-sn2O9k1rPFYVyKd5LAJfo96JlSGVFpa1fS6UuBJfrZadudiw5tAmru+n1x7aMRQ84qDM71Zh1+SzK5QwU0tJfA==}
@@ -7393,16 +3966,8 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
- /@radix-ui/react-presence/1.1.2_rwablqpolwkqma5a7gseo64e5i:
+ '@radix-ui/react-presence@1.1.2':
resolution: {integrity: sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==}
peerDependencies:
'@types/react': '*'
@@ -7414,16 +3979,8 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
- /@radix-ui/react-primitive/2.0.1_rwablqpolwkqma5a7gseo64e5i:
+ '@radix-ui/react-primitive@2.0.1':
resolution: {integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==}
peerDependencies:
'@types/react': '*'
@@ -7435,13 +3992,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-slot': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-primitive@2.0.2':
resolution: {integrity: sha512-Ec/0d38EIuvDF+GZjcMU/Ze6MxntVJYO/fRlCPhCaVUyPY9WTalHJw54tp9sXeJo3tlShWpy41vQRgLRGOuz+w==}
@@ -7455,13 +4005,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-progress@1.1.2':
resolution: {integrity: sha512-u1IgJFQ4zNAUTjGdDL5dcl/U8ntOR6jsnhxKb5RKp5Ozwl88xKR9EqRZOe/Mk8tnx0x5tNUe2F+MzsyjqMg0MA==}
@@ -7475,14 +4018,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-radio-group@1.2.3':
resolution: {integrity: sha512-xtCsqt8Rp09FK50ItqEqTJ7Sxanz8EM8dnkVIhJrc/wkMMomSmXHvYbhv3E7Zx4oXh98aaLt9W679SUYXg4IDA==}
@@ -7496,22 +4031,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-roving-focus': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-size': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-roving-focus@1.1.2':
resolution: {integrity: sha512-zgMQWkNO169GtGqRvYrzb0Zf8NhMHS2DuEB/TiEmVnpr5OqPU3i8lfbxaAmC2J/KYuIQxyoQQ6DxepyXp61/xw==}
@@ -7525,21 +4044,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-scroll-area@1.2.3':
resolution: {integrity: sha512-l7+NNBfBYYJa9tNqVcP2AGvxdE3lmE6kFTBXdvHgUaZuy+4wGCL1Cl2AfaR7RKyimj7lZURGLwFO59k4eBnDJQ==}
@@ -7553,21 +4057,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-select@2.1.6':
resolution: {integrity: sha512-T6ajELxRvTuAMWH0YmRJ1qez+x4/7Nq7QIx7zJ0VK3qaEWdnWpNbEDnmWldG1zBDwqrLy5aLMUWcoGirVj5kMg==}
@@ -7594,65 +4083,8 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-focus-guards': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-focus-scope': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-popper': 1.2.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-visually-hidden': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- react-remove-scroll: 2.6.3_2e3fe46pmji5vpxr5buusdg5gq
- dev: false
-
- /@radix-ui/react-slider/1.2.3_rwablqpolwkqma5a7gseo64e5i:
- resolution: {integrity: sha512-nNrLAWLjGESnhqBqcCNW4w2nn7LxudyMzeB6VgdyAnFLC6kfQgnAjSL2v6UkQTnDctJBlxrmxfplWS4iYjdUTw==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-size': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
- /@radix-ui/react-slot/1.1.1_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-slot@1.1.1':
resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==}
peerDependencies:
'@types/react': '*'
@@ -7660,11 +4092,6 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
'@radix-ui/react-slot@1.1.2':
resolution: {integrity: sha512-YAKxaiGsSQJ38VzKH86/BPRC4rh+b1Jpa+JneA5LRE7skmLPNAyeG8kPJj/oo4STLvlrs8vkf/iYyc3A5stYCQ==}
@@ -7687,19 +4114,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-previous': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-size': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-tabs@1.1.3':
resolution: {integrity: sha512-9mFyI30cuRDImbmFF6O2KUJdgEOsGh9Vmx9x/Dh9tOhL7BngmQPQfwW4aejKm5OHpfWIdmeV6ySyuxoOGjtNng==}
@@ -7713,20 +4127,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-roving-focus': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-toggle-group@1.1.2':
resolution: {integrity: sha512-JBm6s6aVG/nwuY5eadhU2zDi/IwYS0sDM5ZWb4nymv/hn3hZdkw+gENn0LP4iY1yCd7+bgJaCwueMYJIU3vk4A==}
@@ -7740,19 +4140,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-roving-focus': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-toggle': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-toggle@1.1.2':
resolution: {integrity: sha512-lntKchNWx3aCHuWKiDY+8WudiegQvBpDRAYL8dKLRvKEH8VOpl0XX6SSU/bUBqIRJbcTy4+MW06Wv8vgp10rzQ==}
@@ -7766,15 +4153,6 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
'@radix-ui/react-tooltip@1.1.8':
resolution: {integrity: sha512-YAA2cu48EkJZdAMHC0dqo9kialOcRStbtiY4nJPaht7Ptrhcvpo+eDChaM6BIs8kL6a8Z5l5poiqLnXcNduOkA==}
@@ -7788,26 +4166,8 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-dismissable-layer': 1.1.5_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-id': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-popper': 1.2.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-presence': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-visually-hidden': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
- /@radix-ui/react-use-callback-ref/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-use-callback-ref@1.1.0':
resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
peerDependencies:
'@types/react': '*'
@@ -7815,12 +4175,8 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
- /@radix-ui/react-use-controllable-state/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-use-controllable-state@1.1.0':
resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
peerDependencies:
'@types/react': '*'
@@ -7828,13 +4184,8 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
- /@radix-ui/react-use-escape-keydown/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-use-escape-keydown@1.1.0':
resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
peerDependencies:
'@types/react': '*'
@@ -7842,13 +4193,8 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
- /@radix-ui/react-use-layout-effect/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-use-layout-effect@1.1.0':
resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
peerDependencies:
'@types/react': '*'
@@ -7856,12 +4202,8 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
- /@radix-ui/react-use-previous/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-use-previous@1.1.0':
resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
peerDependencies:
'@types/react': '*'
@@ -7869,12 +4211,8 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
- /@radix-ui/react-use-rect/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-use-rect@1.1.0':
resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
peerDependencies:
'@types/react': '*'
@@ -7882,13 +4220,8 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@radix-ui/rect': 1.1.0
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
- /@radix-ui/react-use-size/1.1.0_2e3fe46pmji5vpxr5buusdg5gq:
+ '@radix-ui/react-use-size@1.1.0':
resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
peerDependencies:
'@types/react': '*'
@@ -7896,11 +4229,6 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@types/react': 19.0.1
- react: 19.0.0
- dev: false
'@radix-ui/react-visually-hidden@1.1.2':
resolution: {integrity: sha512-1SzA4ns2M1aRlvxErqhLHsBHoS5eI5UUcI2awAMgGUp4LoaoWOKYmvqDY2s/tltuPkh3Yk77YF/r3IRj+Amx4Q==}
@@ -7914,19 +4242,11 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- dev: false
- /@radix-ui/rect/1.1.0:
+ '@radix-ui/rect@1.1.0':
resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
- dev: false
- /@radix-ui/themes/3.1.6_rwablqpolwkqma5a7gseo64e5i:
+ '@radix-ui/themes@3.1.6':
resolution: {integrity: sha512-4uaUK0E+3ZRURohKNqnzG8LciTJcpppuBbYxkp7miLyPiaXBwKTrEttdQpExsp/fP6J+ss+JHy5FJhU5lboQkg==}
peerDependencies:
'@types/react': '*'
@@ -7938,63 +4258,8 @@ packages:
optional: true
'@types/react-dom':
optional: true
- dependencies:
- '@radix-ui/colors': 3.0.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-accessible-icon': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-alert-dialog': 1.1.6_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-aspect-ratio': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-avatar': 1.1.3_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-checkbox': 1.1.4_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-compose-refs': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context': 1.1.1_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-context-menu': 2.2.6_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-dialog': 1.1.6_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-direction': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-dropdown-menu': 2.1.6_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-hover-card': 1.1.6_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-navigation-menu': 1.2.5_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-popover': 1.1.6_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-portal': 1.1.4_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-primitive': 2.0.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-progress': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-radio-group': 1.2.3_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-roving-focus': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-scroll-area': 1.2.3_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-select': 2.1.6_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-slider': 1.2.3_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-slot': 1.1.2_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-switch': 1.1.3_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-tabs': 1.1.3_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-toggle-group': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-tooltip': 1.1.8_rwablqpolwkqma5a7gseo64e5i
- '@radix-ui/react-use-callback-ref': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-use-controllable-state': 1.1.0_2e3fe46pmji5vpxr5buusdg5gq
- '@radix-ui/react-visually-hidden': 1.1.2_rwablqpolwkqma5a7gseo64e5i
- '@types/react': 19.0.1
- '@types/react-dom': 19.0.1
- classnames: 2.5.1
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- react-remove-scroll-bar: 2.3.8_2e3fe46pmji5vpxr5buusdg5gq
- dev: false
-
- /@redocly/ajv/8.11.2:
- resolution: {integrity: sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==}
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js-replace: 1.0.1
-
- '@redocly/config@0.22.1':
- resolution: {integrity: sha512-1CqQfiG456v9ZgYBG9xRQHnpXjt8WoSnDwdkX6gxktuK69v2037hTAR1eh0DGIqpZ1p4k82cGH8yTNwt7/pI9g==}
-
- '@redocly/openapi-core@1.33.1':
- resolution: {integrity: sha512-tL3v8FVwdcCAcruOZV77uxH2ZFtnY3DRPG+rgmlm9hsu5uoatofVSJIJHUroz54KJ8ryeo28wQHhOr8iReGGEQ==}
- engines: {node: '>=18.17.0', npm: '>=9.5.0'}
- /@rollup/plugin-alias/5.1.1_rollup@4.35.0:
+ '@rollup/plugin-alias@5.1.1':
resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -8002,8 +4267,6 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
- dependencies:
- rollup: 4.35.0
'@rollup/plugin-commonjs@25.0.8':
resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==}
@@ -8022,17 +4285,8 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
- dependencies:
- '@rollup/pluginutils': 5.1.4_rollup@4.35.0
- commondir: 1.0.1
- estree-walker: 2.0.2
- fdir: 6.4.3_picomatch@4.0.2
- is-reference: 1.2.1
- magic-string: 0.30.17
- picomatch: 4.0.2
- rollup: 4.35.0
- /@rollup/plugin-inject/5.0.5_rollup@4.35.0:
+ '@rollup/plugin-inject@5.0.5':
resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -8040,13 +4294,8 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
- dependencies:
- '@rollup/pluginutils': 5.1.4_rollup@4.35.0
- estree-walker: 2.0.2
- magic-string: 0.30.17
- rollup: 4.35.0
- /@rollup/plugin-json/6.1.0_rollup@4.35.0:
+ '@rollup/plugin-json@6.1.0':
resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -8054,25 +4303,15 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
- dependencies:
- '@rollup/pluginutils': 5.1.4_rollup@4.35.0
- rollup: 4.35.0
- /@rollup/plugin-node-resolve/16.0.0_rollup@4.35.0:
- resolution: {integrity: sha512-0FPvAeVUT/zdWoO0jnb/V5BlBsUSNfkIOtFHzMO4H9MOklrmQFY6FduVHKucNb/aTFxvnGhj4MNj/T1oNdDfNg==}
+ '@rollup/plugin-node-resolve@15.3.1':
+ resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^2.78.0||^3.0.0||^4.0.0
peerDependenciesMeta:
rollup:
optional: true
- dependencies:
- '@rollup/pluginutils': 5.1.4_rollup@4.35.0
- '@types/resolve': 1.20.2
- deepmerge: 4.3.1
- is-module: 1.0.0
- resolve: 1.22.10
- rollup: 4.35.0
'@rollup/plugin-node-resolve@16.0.1':
resolution: {integrity: sha512-tk5YCxJWIG81umIvNkSod2qK5KyQW19qcBF/B78n1bjtOON6gzKoVeSzAE8yHCZEDmqkHKkxplExA8KzdJLJpA==}
@@ -8100,24 +4339,8 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
- dependencies:
- '@rollup/pluginutils': 5.1.4
- magic-string: 0.30.17
-
- /@rollup/plugin-replace/6.0.2_rollup@4.35.0:
- resolution: {integrity: sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- '@rollup/pluginutils': 5.1.4_rollup@4.35.0
- magic-string: 0.30.17
- rollup: 4.35.0
- /@rollup/plugin-terser/0.4.4_rollup@4.35.0:
+ '@rollup/plugin-terser@0.4.4':
resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -8125,26 +4348,8 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
- dependencies:
- rollup: 4.35.0
- serialize-javascript: 6.0.2
- smob: 1.5.0
- terser: 5.39.0
-
- /@rollup/pluginutils/5.1.4:
- resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- '@types/estree': 1.0.6
- estree-walker: 2.0.2
- picomatch: 4.0.2
- /@rollup/pluginutils/5.1.4_rollup@4.35.0:
+ '@rollup/pluginutils@5.1.4':
resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -8152,497 +4357,313 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
- dependencies:
- '@types/estree': 1.0.6
- estree-walker: 2.0.2
- picomatch: 4.0.2
- rollup: 4.35.0
- /@rollup/rollup-android-arm-eabi/4.31.0:
+ '@rollup/rollup-android-arm-eabi@4.31.0':
resolution: {integrity: sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==}
cpu: [arm]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-android-arm-eabi/4.34.8:
+ '@rollup/rollup-android-arm-eabi@4.34.8':
resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==}
cpu: [arm]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-android-arm-eabi@4.39.0':
- resolution: {integrity: sha512-lGVys55Qb00Wvh8DMAocp5kIcaNzEFTmGhfFd88LfaogYTRKrdxgtlO5H6S49v2Nd8R2C6wLOal0qv6/kCkOwA==}
+ '@rollup/rollup-android-arm-eabi@4.37.0':
+ resolution: {integrity: sha512-l7StVw6WAa8l3vA1ov80jyetOAEo1FtHvZDbzXDO/02Sq/QVvqlHkYoFwDJPIMj0GKiistsBudfx5tGFnwYWDQ==}
cpu: [arm]
os: [android]
- requiresBuild: true
- optional: true
- /@rollup/rollup-android-arm64/4.31.0:
+ '@rollup/rollup-android-arm64@4.31.0':
resolution: {integrity: sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==}
cpu: [arm64]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-android-arm64/4.34.8:
+ '@rollup/rollup-android-arm64@4.34.8':
resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==}
cpu: [arm64]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-android-arm64@4.39.0':
- resolution: {integrity: sha512-It9+M1zE31KWfqh/0cJLrrsCPiF72PoJjIChLX+rEcujVRCb4NLQ5QzFkzIZW8Kn8FTbvGQBY5TkKBau3S8cCQ==}
+ '@rollup/rollup-android-arm64@4.37.0':
+ resolution: {integrity: sha512-6U3SlVyMxezt8Y+/iEBcbp945uZjJwjZimu76xoG7tO1av9VO691z8PkhzQ85ith2I8R2RddEPeSfcbyPfD4hA==}
cpu: [arm64]
os: [android]
- requiresBuild: true
- optional: true
- /@rollup/rollup-darwin-arm64/4.31.0:
+ '@rollup/rollup-darwin-arm64@4.31.0':
resolution: {integrity: sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-darwin-arm64/4.34.8:
+ '@rollup/rollup-darwin-arm64@4.34.8':
resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-darwin-arm64@4.39.0':
- resolution: {integrity: sha512-lXQnhpFDOKDXiGxsU9/l8UEGGM65comrQuZ+lDcGUx+9YQ9dKpF3rSEGepyeR5AHZ0b5RgiligsBhWZfSSQh8Q==}
+ '@rollup/rollup-darwin-arm64@4.37.0':
+ resolution: {integrity: sha512-+iTQ5YHuGmPt10NTzEyMPbayiNTcOZDWsbxZYR1ZnmLnZxG17ivrPSWFO9j6GalY0+gV3Jtwrrs12DBscxnlYA==}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- optional: true
- /@rollup/rollup-darwin-x64/4.31.0:
+ '@rollup/rollup-darwin-x64@4.31.0':
resolution: {integrity: sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-darwin-x64/4.34.8:
+ '@rollup/rollup-darwin-x64@4.34.8':
resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-darwin-x64@4.39.0':
- resolution: {integrity: sha512-mKXpNZLvtEbgu6WCkNij7CGycdw9cJi2k9v0noMb++Vab12GZjFgUXD69ilAbBh034Zwn95c2PNSz9xM7KYEAQ==}
+ '@rollup/rollup-darwin-x64@4.37.0':
+ resolution: {integrity: sha512-m8W2UbxLDcmRKVjgl5J/k4B8d7qX2EcJve3Sut7YGrQoPtCIQGPH5AMzuFvYRWZi0FVS0zEY4c8uttPfX6bwYQ==}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- optional: true
- /@rollup/rollup-freebsd-arm64/4.31.0:
+ '@rollup/rollup-freebsd-arm64@4.31.0':
resolution: {integrity: sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==}
cpu: [arm64]
os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-freebsd-arm64/4.34.8:
+ '@rollup/rollup-freebsd-arm64@4.34.8':
resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==}
cpu: [arm64]
os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-freebsd-arm64@4.39.0':
- resolution: {integrity: sha512-jivRRlh2Lod/KvDZx2zUR+I4iBfHcu2V/BA2vasUtdtTN2Uk3jfcZczLa81ESHZHPHy4ih3T/W5rPFZ/hX7RtQ==}
+ '@rollup/rollup-freebsd-arm64@4.37.0':
+ resolution: {integrity: sha512-FOMXGmH15OmtQWEt174v9P1JqqhlgYge/bUjIbiVD1nI1NeJ30HYT9SJlZMqdo1uQFyt9cz748F1BHghWaDnVA==}
cpu: [arm64]
os: [freebsd]
- requiresBuild: true
- optional: true
- /@rollup/rollup-freebsd-x64/4.31.0:
+ '@rollup/rollup-freebsd-x64@4.31.0':
resolution: {integrity: sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==}
cpu: [x64]
os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-freebsd-x64/4.34.8:
+ '@rollup/rollup-freebsd-x64@4.34.8':
resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==}
cpu: [x64]
os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-freebsd-x64@4.39.0':
- resolution: {integrity: sha512-8RXIWvYIRK9nO+bhVz8DwLBepcptw633gv/QT4015CpJ0Ht8punmoHU/DuEd3iw9Hr8UwUV+t+VNNuZIWYeY7Q==}
+ '@rollup/rollup-freebsd-x64@4.37.0':
+ resolution: {integrity: sha512-SZMxNttjPKvV14Hjck5t70xS3l63sbVwl98g3FlVVx2YIDmfUIy29jQrsw06ewEYQ8lQSuY9mpAPlmgRD2iSsA==}
cpu: [x64]
os: [freebsd]
- requiresBuild: true
- optional: true
- /@rollup/rollup-linux-arm-gnueabihf/4.31.0:
+ '@rollup/rollup-linux-arm-gnueabihf@4.31.0':
resolution: {integrity: sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==}
cpu: [arm]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-arm-gnueabihf/4.34.8:
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==}
cpu: [arm]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.39.0':
- resolution: {integrity: sha512-mz5POx5Zu58f2xAG5RaRRhp3IZDK7zXGk5sdEDj4o96HeaXhlUwmLFzNlc4hCQi5sGdR12VDgEUqVSHer0lI9g==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.37.0':
+ resolution: {integrity: sha512-hhAALKJPidCwZcj+g+iN+38SIOkhK2a9bqtJR+EtyxrKKSt1ynCBeqrQy31z0oWU6thRZzdx53hVgEbRkuI19w==}
cpu: [arm]
os: [linux]
- requiresBuild: true
- optional: true
- /@rollup/rollup-linux-arm-musleabihf/4.31.0:
+ '@rollup/rollup-linux-arm-musleabihf@4.31.0':
resolution: {integrity: sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==}
cpu: [arm]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-arm-musleabihf/4.34.8:
+ '@rollup/rollup-linux-arm-musleabihf@4.34.8':
resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==}
cpu: [arm]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.39.0':
- resolution: {integrity: sha512-+YDwhM6gUAyakl0CD+bMFpdmwIoRDzZYaTWV3SDRBGkMU/VpIBYXXEvkEcTagw/7VVkL2vA29zU4UVy1mP0/Yw==}
+ '@rollup/rollup-linux-arm-musleabihf@4.37.0':
+ resolution: {integrity: sha512-jUb/kmn/Gd8epbHKEqkRAxq5c2EwRt0DqhSGWjPFxLeFvldFdHQs/n8lQ9x85oAeVb6bHcS8irhTJX2FCOd8Ag==}
cpu: [arm]
os: [linux]
- requiresBuild: true
- optional: true
- /@rollup/rollup-linux-arm64-gnu/4.31.0:
+ '@rollup/rollup-linux-arm64-gnu@4.31.0':
resolution: {integrity: sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-arm64-gnu/4.34.8:
+ '@rollup/rollup-linux-arm64-gnu@4.34.8':
resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-linux-arm64-gnu@4.39.0':
- resolution: {integrity: sha512-EKf7iF7aK36eEChvlgxGnk7pdJfzfQbNvGV/+l98iiMwU23MwvmV0Ty3pJ0p5WQfm3JRHOytSIqD9LB7Bq7xdQ==}
+ '@rollup/rollup-linux-arm64-gnu@4.37.0':
+ resolution: {integrity: sha512-oNrJxcQT9IcbcmKlkF+Yz2tmOxZgG9D9GRq+1OE6XCQwCVwxixYAa38Z8qqPzQvzt1FCfmrHX03E0pWoXm1DqA==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- optional: true
- /@rollup/rollup-linux-arm64-musl/4.31.0:
+ '@rollup/rollup-linux-arm64-musl@4.31.0':
resolution: {integrity: sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-arm64-musl/4.34.8:
+ '@rollup/rollup-linux-arm64-musl@4.34.8':
resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-linux-arm64-musl@4.39.0':
- resolution: {integrity: sha512-vYanR6MtqC7Z2SNr8gzVnzUul09Wi1kZqJaek3KcIlI/wq5Xtq4ZPIZ0Mr/st/sv/NnaPwy/D4yXg5x0B3aUUA==}
+ '@rollup/rollup-linux-arm64-musl@4.37.0':
+ resolution: {integrity: sha512-pfxLBMls+28Ey2enpX3JvjEjaJMBX5XlPCZNGxj4kdJyHduPBXtxYeb8alo0a7bqOoWZW2uKynhHxF/MWoHaGQ==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- optional: true
- /@rollup/rollup-linux-loongarch64-gnu/4.31.0:
+ '@rollup/rollup-linux-loongarch64-gnu@4.31.0':
resolution: {integrity: sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==}
cpu: [loong64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-loongarch64-gnu/4.34.8:
+ '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==}
cpu: [loong64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.39.0':
- resolution: {integrity: sha512-NMRUT40+h0FBa5fb+cpxtZoGAggRem16ocVKIv5gDB5uLDgBIwrIsXlGqYbLwW8YyO3WVTk1FkFDjMETYlDqiw==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.37.0':
+ resolution: {integrity: sha512-yCE0NnutTC/7IGUq/PUHmoeZbIwq3KRh02e9SfFh7Vmc1Z7atuJRYWhRME5fKgT8aS20mwi1RyChA23qSyRGpA==}
cpu: [loong64]
os: [linux]
- requiresBuild: true
- optional: true
- /@rollup/rollup-linux-powerpc64le-gnu/4.31.0:
+ '@rollup/rollup-linux-powerpc64le-gnu@4.31.0':
resolution: {integrity: sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==}
cpu: [ppc64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-powerpc64le-gnu/4.34.8:
+ '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==}
cpu: [ppc64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.39.0':
- resolution: {integrity: sha512-0pCNnmxgduJ3YRt+D+kJ6Ai/r+TaePu9ZLENl+ZDV/CdVczXl95CbIiwwswu4L+K7uOIGf6tMo2vm8uadRaICQ==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.37.0':
+ resolution: {integrity: sha512-NxcICptHk06E2Lh3a4Pu+2PEdZ6ahNHuK7o6Np9zcWkrBMuv21j10SQDJW3C9Yf/A/P7cutWoC/DptNLVsZ0VQ==}
cpu: [ppc64]
os: [linux]
- requiresBuild: true
- optional: true
- /@rollup/rollup-linux-riscv64-gnu/4.31.0:
+ '@rollup/rollup-linux-riscv64-gnu@4.31.0':
resolution: {integrity: sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==}
cpu: [riscv64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-riscv64-gnu/4.34.8:
+ '@rollup/rollup-linux-riscv64-gnu@4.34.8':
resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==}
cpu: [riscv64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.39.0':
- resolution: {integrity: sha512-t7j5Zhr7S4bBtksT73bO6c3Qa2AV/HqiGlj9+KB3gNF5upcVkx+HLgxTm8DK4OkzsOYqbdqbLKwvGMhylJCPhQ==}
+ '@rollup/rollup-linux-riscv64-gnu@4.37.0':
+ resolution: {integrity: sha512-PpWwHMPCVpFZLTfLq7EWJWvrmEuLdGn1GMYcm5MV7PaRgwCEYJAwiN94uBuZev0/J/hFIIJCsYw4nLmXA9J7Pw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.39.0':
- resolution: {integrity: sha512-m6cwI86IvQ7M93MQ2RF5SP8tUjD39Y7rjb1qjHgYh28uAPVU8+k/xYWvxRO3/tBN2pZkSMa5RjnPuUIbrwVxeA==}
+ '@rollup/rollup-linux-riscv64-musl@4.37.0':
+ resolution: {integrity: sha512-DTNwl6a3CfhGTAOYZ4KtYbdS8b+275LSLqJVJIrPa5/JuIufWWZ/QFvkxp52gpmguN95eujrM68ZG+zVxa8zHA==}
cpu: [riscv64]
os: [linux]
- requiresBuild: true
- optional: true
- /@rollup/rollup-linux-s390x-gnu/4.31.0:
+ '@rollup/rollup-linux-s390x-gnu@4.31.0':
resolution: {integrity: sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-s390x-gnu/4.34.8:
+ '@rollup/rollup-linux-s390x-gnu@4.34.8':
resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-linux-s390x-gnu@4.39.0':
- resolution: {integrity: sha512-iRDJd2ebMunnk2rsSBYlsptCyuINvxUfGwOUldjv5M4tpa93K8tFMeYGpNk2+Nxl+OBJnBzy2/JCscGeO507kA==}
+ '@rollup/rollup-linux-s390x-gnu@4.37.0':
+ resolution: {integrity: sha512-hZDDU5fgWvDdHFuExN1gBOhCuzo/8TMpidfOR+1cPZJflcEzXdCy1LjnklQdW8/Et9sryOPJAKAQRw8Jq7Tg+A==}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- optional: true
- /@rollup/rollup-linux-x64-gnu/4.31.0:
+ '@rollup/rollup-linux-x64-gnu@4.31.0':
resolution: {integrity: sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-x64-gnu/4.34.8:
+ '@rollup/rollup-linux-x64-gnu@4.34.8':
resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-linux-x64-gnu@4.39.0':
- resolution: {integrity: sha512-t9jqYw27R6Lx0XKfEFe5vUeEJ5pF3SGIM6gTfONSMb7DuG6z6wfj2yjcoZxHg129veTqU7+wOhY6GX8wmf90dA==}
+ '@rollup/rollup-linux-x64-gnu@4.37.0':
+ resolution: {integrity: sha512-pKivGpgJM5g8dwj0ywBwe/HeVAUSuVVJhUTa/URXjxvoyTT/AxsLTAbkHkDHG7qQxLoW2s3apEIl26uUe08LVQ==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optional: true
- /@rollup/rollup-linux-x64-musl/4.31.0:
+ '@rollup/rollup-linux-x64-musl@4.31.0':
resolution: {integrity: sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-x64-musl/4.34.8:
+ '@rollup/rollup-linux-x64-musl@4.34.8':
resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-linux-x64-musl@4.39.0':
- resolution: {integrity: sha512-ThFdkrFDP55AIsIZDKSBWEt/JcWlCzydbZHinZ0F/r1h83qbGeenCt/G/wG2O0reuENDD2tawfAj2s8VK7Bugg==}
+ '@rollup/rollup-linux-x64-musl@4.37.0':
+ resolution: {integrity: sha512-E2lPrLKE8sQbY/2bEkVTGDEk4/49UYRVWgj90MY8yPjpnGBQ+Xi1Qnr7b7UIWw1NOggdFQFOLZ8+5CzCiz143w==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optional: true
- /@rollup/rollup-win32-arm64-msvc/4.31.0:
+ '@rollup/rollup-win32-arm64-msvc@4.31.0':
resolution: {integrity: sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-win32-arm64-msvc/4.34.8:
+ '@rollup/rollup-win32-arm64-msvc@4.34.8':
resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-win32-arm64-msvc@4.39.0':
- resolution: {integrity: sha512-jDrLm6yUtbOg2TYB3sBF3acUnAwsIksEYjLeHL+TJv9jg+TmTwdyjnDex27jqEMakNKf3RwwPahDIt7QXCSqRQ==}
+ '@rollup/rollup-win32-arm64-msvc@4.37.0':
+ resolution: {integrity: sha512-Jm7biMazjNzTU4PrQtr7VS8ibeys9Pn29/1bm4ph7CP2kf21950LgN+BaE2mJ1QujnvOc6p54eWWiVvn05SOBg==}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- optional: true
- /@rollup/rollup-win32-ia32-msvc/4.31.0:
+ '@rollup/rollup-win32-ia32-msvc@4.31.0':
resolution: {integrity: sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-win32-ia32-msvc/4.34.8:
+ '@rollup/rollup-win32-ia32-msvc@4.34.8':
resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-win32-ia32-msvc@4.39.0':
- resolution: {integrity: sha512-6w9uMuza+LbLCVoNKL5FSLE7yvYkq9laSd09bwS0tMjkwXrmib/4KmoJcrKhLWHvw19mwU+33ndC69T7weNNjQ==}
+ '@rollup/rollup-win32-ia32-msvc@4.37.0':
+ resolution: {integrity: sha512-e3/1SFm1OjefWICB2Ucstg2dxYDkDTZGDYgwufcbsxTHyqQps1UQf33dFEChBNmeSsTOyrjw2JJq0zbG5GF6RA==}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- optional: true
- /@rollup/rollup-win32-x64-msvc/4.31.0:
+ '@rollup/rollup-win32-x64-msvc@4.31.0':
resolution: {integrity: sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-win32-x64-msvc/4.34.8:
+ '@rollup/rollup-win32-x64-msvc@4.34.8':
resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- '@rollup/rollup-win32-x64-msvc@4.39.0':
- resolution: {integrity: sha512-yAkUOkIKZlK5dl7u6dg897doBgLXmUHhIINM2c+sND3DZwnrdQkkSiDh7N75Ll4mM4dxSkYfXqU9fW3lLkMFug==}
+ '@rollup/rollup-win32-x64-msvc@4.37.0':
+ resolution: {integrity: sha512-LWbXUBwn/bcLx2sSsqy7pK5o+Nr+VCoRoAohfJ5C/aBio9nfJmGQqHAhU6pwxV/RmyTk5AqdySma7uwWGlmeuA==}
cpu: [x64]
os: [win32]
- requiresBuild: true
- optional: true
- /@rtsao/scc/1.1.0:
+ '@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
- dev: true
- /@rushstack/eslint-patch/1.10.5:
+ '@rushstack/eslint-patch@1.10.5':
resolution: {integrity: sha512-kkKUDVlII2DQiKy7UstOR1ErJP8kUKAQ4oa+SQtM0K+lPdmmjj0YnnxBgtTVYH7mUKtbsxeFC9y0AmK7Yb78/A==}
- dev: true
- /@schematics/angular/19.2.0:
+ '@schematics/angular@19.2.0':
resolution: {integrity: sha512-/gdrYTr1DSUNmrUmpmne6uBnIBpJ/obHtccvz5sZckKni/KMPAr3CgGZ8JrHer3I732ucb1We9nbdtXvz+2glg==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- dependencies:
- '@angular-devkit/core': 19.2.0
- '@angular-devkit/schematics': 19.2.0
- jsonc-parser: 3.3.1
- transitivePeerDependencies:
- - chokidar
- dev: true
-
- /@schematics/angular/19.2.1:
- resolution: {integrity: sha512-QYYGVR2n+YtLzqo0IsQq7OUnBMeP6OjyuVlGdjsAnSDCKQ9kUcqZDwjxxh5NUj25R4vvu+5aVaa6W6iTxfHadQ==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- dependencies:
- '@angular-devkit/core': 19.2.1
- '@angular-devkit/schematics': 19.2.1
- jsonc-parser: 3.3.1
- transitivePeerDependencies:
- - chokidar
- dev: true
- /@sec-ant/readable-stream/0.4.1:
+ '@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
- /@seriousme/openapi-schema-validator/2.3.1:
- resolution: {integrity: sha512-szUXBZJUhq+Yw+vUro2QeltSIoZvMDQi3MLqJhIKcRcRYyFt9B6dyjMD1RVf3nFvNAHkWqa48NJA46ti2P8smA==}
+ '@seriousme/openapi-schema-validator@2.4.0':
+ resolution: {integrity: sha512-2PWq2QbDMu+CANpBLZ2Uch9PgTIiftLpiLH4lcaykjV463f4Vt9eD61EeaVI++D0HII4JKnptX46391pII1XZA==}
hasBin: true
- dependencies:
- ajv: 8.17.1
- ajv-draft-04: 1.0.0_ajv@8.17.1
- ajv-formats: 3.0.1
- js-yaml: 4.1.0
- minimist: 1.2.8
- dev: false
'@shikijs/core@1.29.2':
resolution: {integrity: sha512-vju0lY9r27jJfOY4Z7+Rt/nIOjzJpZ3y+nYpqtUZInVoXQ/TJZcfGnNOGnKjFdVZb8qexiCuSlZRKcGfhhTTZQ==}
@@ -8668,64 +4689,36 @@ packages:
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
- /@sigstore/bundle/3.1.0:
+ '@sigstore/bundle@3.1.0':
resolution: {integrity: sha512-Mm1E3/CmDDCz3nDhFKTuYdB47EdRFRQMOE/EAbiG1MJW77/w1b3P7Qx7JSrVJs8PfwOLOVcKQCHErIwCTyPbag==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@sigstore/protobuf-specs': 0.4.0
- dev: true
- /@sigstore/core/2.0.0:
+ '@sigstore/core@2.0.0':
resolution: {integrity: sha512-nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg==}
engines: {node: ^18.17.0 || >=20.5.0}
- dev: true
- /@sigstore/protobuf-specs/0.4.0:
+ '@sigstore/protobuf-specs@0.4.0':
resolution: {integrity: sha512-o09cLSIq9EKyRXwryWDOJagkml9XgQCoCSRjHOnHLnvsivaW7Qznzz6yjfV7PHJHhIvyp8OH7OX8w0Dc5bQK7A==}
engines: {node: ^18.17.0 || >=20.5.0}
- dev: true
- /@sigstore/sign/3.1.0:
+ '@sigstore/sign@3.1.0':
resolution: {integrity: sha512-knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@sigstore/bundle': 3.1.0
- '@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.4.0
- make-fetch-happen: 14.0.3
- proc-log: 5.0.0
- promise-retry: 2.0.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@sigstore/tuf/3.1.0:
+ '@sigstore/tuf@3.1.0':
resolution: {integrity: sha512-suVMQEA+sKdOz5hwP9qNcEjX6B45R+hFFr4LAWzbRc5O+U2IInwvay/bpG5a4s+qR35P/JK/PiKiRGjfuLy1IA==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@sigstore/protobuf-specs': 0.4.0
- tuf-js: 3.0.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@sigstore/verify/2.1.0:
+ '@sigstore/verify@2.1.0':
resolution: {integrity: sha512-kAAM06ca4CzhvjIZdONAL9+MLppW3K48wOFy1TbuaWFW/OMfl8JuTgW0Bm02JB1WJGT/ET2eqav0KTEKmxqkIA==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@sigstore/bundle': 3.1.0
- '@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.4.0
- dev: true
- /@sinclair/typebox/0.27.8:
+ '@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
- dev: true
- /@sindresorhus/is/4.6.0:
+ '@sindresorhus/is@4.6.0':
resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
engines: {node: '>=10'}
- dev: true
'@sindresorhus/is@7.0.1':
resolution: {integrity: sha512-QWLl2P+rsCJeofkDNIT3WFmb6NrRud1SUYW8dIhXK/46XFV8Q/g7Bsvib0Askb0reRLe+WYPeeE+l5cH7SlkuQ==}
@@ -8735,39 +4728,25 @@ packages:
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
- /@sindresorhus/merge-streams/4.0.0:
+ '@sindresorhus/merge-streams@4.0.0':
resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
engines: {node: '>=18'}
- /@socket.io/component-emitter/3.1.2:
+ '@socket.io/component-emitter@3.1.2':
resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
- dev: true
'@speed-highlight/core@1.2.7':
resolution: {integrity: sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==}
'@stackblitz/sdk@1.11.0':
resolution: {integrity: sha512-DFQGANNkEZRzFk1/rDP6TcFdM82ycHE+zfl9C/M/jXlH68jiqHWHFMQURLELoD8koxvu/eW5uhg94NSAZlYrUQ==}
- dev: false
-
- /@sveltejs/acorn-typescript/1.0.5_acorn@8.14.1:
- resolution: {integrity: sha512-IwQk4yfwLdibDlrXVE04jTZYlLnwsTT2PIOQQGNLWfjavGifnk1JD1LcZjZaBTRcxZu2FfPfNLOE04DSu9lqtQ==}
- peerDependencies:
- acorn: ^8.9.0
- dependencies:
- acorn: 8.14.1
- dev: true
- /@sveltejs/adapter-auto/4.0.0_@sveltejs+kit@2.17.1:
+ '@sveltejs/adapter-auto@4.0.0':
resolution: {integrity: sha512-kmuYSQdD2AwThymQF0haQhM8rE5rhutQXG4LNbnbShwhMO4qQGnKaaTy+88DuNSuoQDi58+thpq8XpHc1+oEKQ==}
peerDependencies:
'@sveltejs/kit': ^2.0.0
- dependencies:
- '@sveltejs/kit': 2.17.1_zecxmjndawzkxr36mrjxufr4u4
- import-meta-resolve: 4.1.0
- dev: true
- /@sveltejs/kit/2.17.1_zecxmjndawzkxr36mrjxufr4u4:
+ '@sveltejs/kit@2.17.1':
resolution: {integrity: sha512-CpoGSLqE2MCmcQwA2CWJvOsZ9vW+p/1H3itrFykdgajUNAEyQPbsaSn7fZb6PLHQwe+07njxje9ss0fjZoCAyw==}
engines: {node: '>=18.13'}
hasBin: true
@@ -8775,169 +4754,78 @@ packages:
'@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0
svelte: ^4.0.0 || ^5.0.0-next.0
vite: ^5.0.3 || ^6.0.0
- dependencies:
- '@sveltejs/vite-plugin-svelte': 5.0.3_svelte@5.19.9+vite@6.0.9
- '@types/cookie': 0.6.0
- cookie: 0.6.0
- devalue: 5.1.1
- esm-env: 1.2.2
- import-meta-resolve: 4.1.0
- kleur: 4.1.5
- magic-string: 0.30.17
- mrmime: 2.0.1
- sade: 1.8.1
- set-cookie-parser: 2.7.1
- sirv: 3.0.1
- svelte: 5.19.9
- vite: 6.0.9
- dev: true
- /@sveltejs/vite-plugin-svelte-inspector/4.0.1_zecxmjndawzkxr36mrjxufr4u4:
+ '@sveltejs/vite-plugin-svelte-inspector@4.0.1':
resolution: {integrity: sha512-J/Nmb2Q2y7mck2hyCX4ckVHcR5tu2J+MtBEQqpDrrgELZ2uvraQcK/ioCV61AqkdXFgriksOKIceDcQmqnGhVw==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22}
peerDependencies:
'@sveltejs/vite-plugin-svelte': ^5.0.0
svelte: ^5.0.0
vite: ^6.0.0
- dependencies:
- '@sveltejs/vite-plugin-svelte': 5.0.3_svelte@5.19.9+vite@6.0.9
- debug: 4.4.0
- svelte: 5.19.9
- vite: 6.0.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@sveltejs/vite-plugin-svelte/5.0.3_svelte@5.19.9+vite@6.0.9:
+ '@sveltejs/vite-plugin-svelte@5.0.3':
resolution: {integrity: sha512-MCFS6CrQDu1yGwspm4qtli0e63vaPCehf6V7pIMP15AsWgMKrqDGCPFF/0kn4SP0ii4aySu4Pa62+fIRGFMjgw==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22}
peerDependencies:
svelte: ^5.0.0
vite: ^6.0.0
- dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 4.0.1_zecxmjndawzkxr36mrjxufr4u4
- debug: 4.4.0
- deepmerge: 4.3.1
- kleur: 4.1.5
- magic-string: 0.30.17
- svelte: 5.19.9
- vite: 6.0.9
- vitefu: 1.0.6_vite@6.0.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@swc/counter/0.1.3:
+ '@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
- dev: false
- /@swc/helpers/0.5.15:
+ '@swc/helpers@0.5.15':
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
- dependencies:
- tslib: 2.8.1
- dev: false
- /@tanstack/angular-query-experimental/5.62.13_hlzpvcmi6ymvzbfqomco5a3w2q:
+ '@tanstack/angular-query-experimental@5.62.13':
resolution: {integrity: sha512-K3BCgFu7RTtKgahfCKhBwrC8hpRDqOIRGEvnASf2D7nwysm2wREjNanQZaFEETzGVSX8HGqxp+80qUb7L/cKlg==}
peerDependencies:
'@angular/common': '>=16.0.0'
'@angular/core': '>=16.0.0'
- dependencies:
- '@angular/common': 19.2.1_dfwtwytus3tabvekhtq6wbpkuu
- '@angular/core': 19.2.1_rxjs@7.8.2+zone.js@0.15.0
- '@tanstack/query-core': 5.62.12
- '@tanstack/query-devtools': 5.62.9
- dev: false
-
- /@tanstack/angular-query-experimental/5.62.13_zbwjpxkizhludcezaxkdwlu2h4:
- resolution: {integrity: sha512-K3BCgFu7RTtKgahfCKhBwrC8hpRDqOIRGEvnASf2D7nwysm2wREjNanQZaFEETzGVSX8HGqxp+80qUb7L/cKlg==}
- peerDependencies:
- '@angular/common': '>=16.0.0'
- '@angular/core': '>=16.0.0'
- dependencies:
- '@angular/common': 19.2.0_o7lncytynmlvlvkm4hpjy4oxsi
- '@angular/core': 19.2.0_rxjs@7.8.1+zone.js@0.15.0
- '@tanstack/query-core': 5.62.12
- '@tanstack/query-devtools': 5.62.9
- dev: true
- /@tanstack/match-sorter-utils/8.19.4:
+ '@tanstack/match-sorter-utils@8.19.4':
resolution: {integrity: sha512-Wo1iKt2b9OT7d+YGhvEPD3DXvPv2etTusIMhMUoG7fbhmxcXCtIjJDEygy91Y2JFlwGyjqiBPRozme7UD8hoqg==}
engines: {node: '>=12'}
- dependencies:
- remove-accents: 0.5.0
- /@tanstack/query-core/5.51.21:
+ '@tanstack/query-core@5.51.21':
resolution: {integrity: sha512-POQxm42IUp6n89kKWF4IZi18v3fxQWFRolvBA6phNVmA8psdfB1MvDnGacCJdS+EOX12w/CyHM62z//rHmYmvw==}
- dev: true
- /@tanstack/query-core/5.62.12:
+ '@tanstack/query-core@5.62.12':
resolution: {integrity: sha512-6igFeBgymHkCxVgaEk+yiLwkMf9haui/EQLmI3o9CatOyDThEoFKe8toLWvWliZC/Jf+h7NwHi/zjfyLArr1ow==}
- /@tanstack/query-core/5.62.15:
+ '@tanstack/query-core@5.62.15':
resolution: {integrity: sha512-wT20X14CxcWY8YLJ/1pnsXn/y1Q2uRJZYWW93PWRtZt+3/JlGZyiyTcO4pGnqycnP7CokCROAyatsraosqZsDA==}
- /@tanstack/query-devtools/5.62.9:
+ '@tanstack/query-devtools@5.62.9':
resolution: {integrity: sha512-b1NZzDLVf6laJsB1Cfm3ieuYzM+WqoO8qpm9v+3Etwd+Ph4zkhUMiT+wcWj5AhEPsXiRodKYiiW048VDNdBxNg==}
- /@tanstack/react-query-devtools/5.62.15_yiraw4ghf3vgr6ue3dbqy7ghf4:
+ '@tanstack/react-query-devtools@5.62.15':
resolution: {integrity: sha512-8aE7uD45NHZgNtHMVQC7PvM9f72mKK4bqcpHr9La8TsTRX7x8dy2Kdu2ReFNLCrdlEWkxdP5843tc/lHg+Q/rg==}
peerDependencies:
'@tanstack/react-query': ^5.62.15
react: ^18 || ^19
- dependencies:
- '@tanstack/query-devtools': 5.62.9
- '@tanstack/react-query': 5.62.15_react@19.0.0
- react: 19.0.0
- dev: false
- /@tanstack/react-query/5.62.15_react@19.0.0:
+ '@tanstack/react-query@5.62.15':
resolution: {integrity: sha512-Ny3xxsOWmEQCFyHiV3CF7t6+QAV+LpBEREiXyllKR4+tStyd8smOAa98ZHmEx0ZNy36M31K8enifB5wTSYAKJw==}
peerDependencies:
react: ^18 || ^19
- dependencies:
- '@tanstack/query-core': 5.62.15
- react: 19.0.0
- /@tanstack/solid-query/5.51.21_solid-js@1.9.5:
+ '@tanstack/solid-query@5.51.21':
resolution: {integrity: sha512-ZwiTMpownN5qwEZE7UB7ccfGkbzSECkZOv/P1+SQ+dKchNtkF9sA0Zz8IVnr6lgqumkCwS8M65ciBdzI0JfTAQ==}
peerDependencies:
solid-js: ^1.6.0
- dependencies:
- '@tanstack/query-core': 5.51.21
- solid-js: 1.9.5
- dev: true
-
- /@tanstack/svelte-query/5.62.12_svelte@5.19.9:
- resolution: {integrity: sha512-tG/FR6ttvf4nBeCvV/fel7KsvEJe/drAC/+WrfxgA5TzmjorSka0RoCN9TcoETcneGMXGqOD8rE9iK5z9KABUw==}
- peerDependencies:
- svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0
- dependencies:
- '@tanstack/query-core': 5.62.12
- svelte: 5.19.9
- dev: false
- /@tanstack/svelte-query/5.62.12_svelte@5.22.6:
+ '@tanstack/svelte-query@5.62.12':
resolution: {integrity: sha512-tG/FR6ttvf4nBeCvV/fel7KsvEJe/drAC/+WrfxgA5TzmjorSka0RoCN9TcoETcneGMXGqOD8rE9iK5z9KABUw==}
peerDependencies:
svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0
- dependencies:
- '@tanstack/query-core': 5.62.12
- svelte: 5.22.6
- dev: true
- /@tanstack/vue-query-devtools/5.62.12_xazzx54hlffwcp6dce6seqv4du:
+ '@tanstack/vue-query-devtools@5.62.12':
resolution: {integrity: sha512-ZxFz3a56Y1MkEnPaEgiusw8/55pjIeAsYjmNBODVB1ysr5cIrW+3Wlp9TwQmLSPLF5gULO9byX5WOoqLgYErMw==}
peerDependencies:
'@tanstack/vue-query': ^5.62.12
vue: ^3.3.0
- dependencies:
- '@tanstack/query-devtools': 5.62.9
- '@tanstack/vue-query': 5.62.12_vue@3.5.13
- vue: 3.5.13_typescript@5.5.3
- dev: false
- /@tanstack/vue-query/5.62.12_vue@3.5.13:
+ '@tanstack/vue-query@5.62.12':
resolution: {integrity: sha512-/d4zBLDUcc6pNHZTIzreD7oxp2AOk+G+ImTQzZMM7GVXI2kvW86repzK12vCaB1aIdg61wbUw/ytcdC42Ki5Rw==}
peerDependencies:
'@vue/composition-api': ^1.1.2
@@ -8945,146 +4833,78 @@ packages:
peerDependenciesMeta:
'@vue/composition-api':
optional: true
- dependencies:
- '@tanstack/match-sorter-utils': 8.19.4
- '@tanstack/query-core': 5.62.12
- '@vue/devtools-api': 6.6.4
- vue: 3.5.13_typescript@5.5.3
- vue-demi: 0.14.10_vue@3.5.13
- /@tootallnate/quickjs-emscripten/0.23.0:
+ '@tootallnate/quickjs-emscripten@0.23.0':
resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
- dev: true
- /@trysound/sax/0.2.0:
+ '@trysound/sax@0.2.0':
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- /@tsconfig/node10/1.0.11:
+ '@tsconfig/node10@1.0.11':
resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
- dev: true
- /@tsconfig/node12/1.0.11:
+ '@tsconfig/node12@1.0.11':
resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
- dev: true
- /@tsconfig/node14/1.0.3:
+ '@tsconfig/node14@1.0.3':
resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
- dev: true
- /@tsconfig/node16/1.0.4:
+ '@tsconfig/node16@1.0.4':
resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
- dev: true
- /@tsconfig/node20/20.1.4:
+ '@tsconfig/node20@20.1.4':
resolution: {integrity: sha512-sqgsT69YFeLWf5NtJ4Xq/xAF8p4ZQHlmGW74Nu2tD4+g5fAsposc4ZfaaPixVu4y01BEiDCWLRDCvDM5JOsRxg==}
- dev: true
- /@tufjs/canonical-json/2.0.0:
+ '@tufjs/canonical-json@2.0.0':
resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
engines: {node: ^16.14.0 || >=18.0.0}
- dev: true
- /@tufjs/models/3.0.1:
+ '@tufjs/models@3.0.1':
resolution: {integrity: sha512-UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@tufjs/canonical-json': 2.0.0
- minimatch: 9.0.5
- dev: true
- /@tybys/wasm-util/0.9.0:
+ '@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
- requiresBuild: true
- dependencies:
- tslib: 2.8.1
- dev: false
- optional: true
- /@types/babel__core/7.20.5:
+ '@types/babel__core@7.20.5':
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
- dependencies:
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
- '@types/babel__generator': 7.6.8
- '@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.20.6
- dev: true
- /@types/babel__generator/7.6.8:
+ '@types/babel__generator@7.6.8':
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
- dependencies:
- '@babel/types': 7.26.9
- dev: true
- /@types/babel__template/7.4.4:
+ '@types/babel__template@7.4.4':
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
- dependencies:
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
- dev: true
- /@types/babel__traverse/7.20.6:
- resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
- dependencies:
- '@babel/types': 7.26.9
- dev: true
+ '@types/babel__traverse@7.20.7':
+ resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==}
- /@types/body-parser/1.19.5:
+ '@types/body-parser@1.19.5':
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
- dependencies:
- '@types/connect': 3.4.38
- '@types/node': 22.13.10
- dev: true
- /@types/bonjour/3.5.13:
+ '@types/bonjour@3.5.13':
resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
- dependencies:
- '@types/node': 22.13.10
- dev: true
- /@types/connect-history-api-fallback/1.5.4:
+ '@types/connect-history-api-fallback@1.5.4':
resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
- dependencies:
- '@types/express-serve-static-core': 5.0.6
- '@types/node': 22.13.10
- dev: true
- /@types/connect/3.4.38:
+ '@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
- dependencies:
- '@types/node': 22.13.10
- dev: true
- /@types/cookie/0.6.0:
+ '@types/cookie@0.6.0':
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
- dev: true
- /@types/cors/2.8.17:
+ '@types/cors@2.8.17':
resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
- dependencies:
- '@types/node': 22.13.10
- dev: true
- /@types/cross-spawn/6.0.6:
+ '@types/cross-spawn@6.0.6':
resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==}
- dependencies:
- '@types/node': 22.13.10
- dev: true
- /@types/eslint-scope/3.7.7:
+ '@types/eslint-scope@3.7.7':
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
- dependencies:
- '@types/eslint': 9.6.1
- '@types/estree': 1.0.6
- dev: true
- /@types/eslint/9.6.0:
+ '@types/eslint@9.6.0':
resolution: {integrity: sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==}
- dependencies:
- '@types/estree': 1.0.6
- '@types/json-schema': 7.0.15
- dev: true
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
@@ -9094,214 +4914,110 @@ packages:
'@types/express-serve-static-core@4.19.6':
resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
- dependencies:
- '@types/node': 22.13.10
- '@types/qs': 6.9.18
- '@types/range-parser': 1.2.7
- '@types/send': 0.17.4
- dev: true
- /@types/express-serve-static-core/5.0.6:
+ '@types/express-serve-static-core@5.0.6':
resolution: {integrity: sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==}
- dependencies:
- '@types/node': 22.13.10
- '@types/qs': 6.9.18
- '@types/range-parser': 1.2.7
- '@types/send': 0.17.4
- dev: true
- /@types/express/4.17.21:
+ '@types/express@4.17.21':
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
- dependencies:
- '@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.19.6
- '@types/qs': 6.9.18
- '@types/serve-static': 1.15.7
- dev: true
- /@types/hast/3.0.4:
+ '@types/hast@3.0.4':
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
- dependencies:
- '@types/unist': 3.0.3
- dev: true
- /@types/http-errors/2.0.4:
+ '@types/http-errors@2.0.4':
resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
- dev: true
'@types/http-proxy@1.17.16':
resolution: {integrity: sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==}
- dependencies:
- '@types/node': 22.13.10
'@types/jasmine@5.1.7':
resolution: {integrity: sha512-DVOfk9FaClQfNFpSfaML15jjB5cjffDMvjtph525sroR5BEAW2uKnTOYUTqTFuZFjNvH0T5XMIydvIctnUKufw==}
- /@types/jsdom/21.1.7:
+ '@types/jsdom@21.1.7':
resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==}
- dependencies:
- '@types/node': 22.10.5
- '@types/tough-cookie': 4.0.5
- parse5: 7.2.1
- dev: true
- /@types/json-schema/7.0.15:
+ '@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
- /@types/json5/0.0.29:
+ '@types/json5@0.0.29':
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- dev: true
- /@types/linkify-it/5.0.0:
+ '@types/linkify-it@5.0.0':
resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
- dev: true
- /@types/markdown-it/14.1.2:
+ '@types/markdown-it@14.1.2':
resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
- dependencies:
- '@types/linkify-it': 5.0.0
- '@types/mdurl': 2.0.0
- dev: true
- /@types/mdast/4.0.4:
+ '@types/mdast@4.0.4':
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
- dependencies:
- '@types/unist': 3.0.3
- dev: true
- /@types/mdurl/2.0.0:
+ '@types/mdurl@2.0.0':
resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
- dev: true
- /@types/mime/1.3.5:
+ '@types/mime@1.3.5':
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
- dev: true
- /@types/node-forge/1.3.11:
+ '@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
- dependencies:
- '@types/node': 22.13.10
- dev: true
- /@types/node/12.20.55:
+ '@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- dev: true
- /@types/node/22.10.5:
+ '@types/node@22.10.5':
resolution: {integrity: sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==}
- dependencies:
- undici-types: 6.20.0
'@types/parse-path@7.0.3':
resolution: {integrity: sha512-LriObC2+KYZD3FzCrgWGv/qufdUy4eXrxcLgQMfYXgPbLIecKIsVBaQgUPmxSSLcjmYbDTQbMgr6qr6l/eb7Bg==}
- /@types/qs/6.9.18:
+ '@types/qs@6.9.18':
resolution: {integrity: sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==}
- dev: true
- /@types/range-parser/1.2.7:
+ '@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- dev: true
- /@types/react-dom/19.0.1:
+ '@types/react-dom@19.0.1':
resolution: {integrity: sha512-hljHij7MpWPKF6u5vojuyfV0YA4YURsQG7KT6SzV0Zs2BXAtgdTxG6A229Ub/xiWV4w/7JL8fi6aAyjshH4meA==}
- dependencies:
- '@types/react': 19.0.1
- /@types/react/19.0.1:
+ '@types/react@19.0.1':
resolution: {integrity: sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==}
- dependencies:
- csstype: 3.1.3
- /@types/resolve/1.20.2:
+ '@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
- /@types/retry/0.12.2:
+ '@types/retry@0.12.2':
resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==}
- dev: true
- /@types/semver/7.5.8:
- resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
- dev: true
+ '@types/semver@7.7.0':
+ resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==}
- /@types/send/0.17.4:
+ '@types/send@0.17.4':
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
- dependencies:
- '@types/mime': 1.3.5
- '@types/node': 22.13.10
- dev: true
- /@types/serve-index/1.9.4:
+ '@types/serve-index@1.9.4':
resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
- dependencies:
- '@types/express': 4.17.21
- dev: true
- /@types/serve-static/1.15.7:
+ '@types/serve-static@1.15.7':
resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
- dependencies:
- '@types/http-errors': 2.0.4
- '@types/node': 22.13.10
- '@types/send': 0.17.4
- dev: true
- /@types/sockjs/0.3.36:
+ '@types/sockjs@0.3.36':
resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
- dependencies:
- '@types/node': 22.13.10
- dev: true
- /@types/tough-cookie/4.0.5:
+ '@types/tough-cookie@4.0.5':
resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
- dev: true
- /@types/unist/3.0.3:
+ '@types/unist@3.0.3':
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
- dev: true
- /@types/web-bluetooth/0.0.20:
+ '@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
- dev: true
'@types/ws@8.18.0':
resolution: {integrity: sha512-8svvI3hMyvN0kKCJMvTJP/x6Y/EoQbepff882wL+Sn5QsXb3etnamgrJq4isrBxSJj5L2AuXcI0+bgkoAXGUJw==}
- /@types/yauzl/2.10.3:
+ '@types/yauzl@2.10.3':
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
- requiresBuild: true
- dependencies:
- '@types/node': 22.13.10
- dev: true
- optional: true
-
- /@typescript-eslint/eslint-plugin/7.18.0_cdi53umeqzw6zrbmodqrkqvslu:
- resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- '@typescript-eslint/parser': ^7.0.0
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 7.15.0_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/type-utils': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/utils': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/visitor-keys': 7.18.0
- eslint: 9.17.0
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 1.4.3_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/eslint-plugin/7.18.0_ulnpem3vhphymaemnltoyugxr4:
+ '@typescript-eslint/eslint-plugin@7.18.0':
resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
@@ -9311,85 +5027,22 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/type-utils': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/utils': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/visitor-keys': 7.18.0
- eslint: 9.17.0
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 1.4.3_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/eslint-plugin/8.19.1_lpim7asfdh6cjegyoqc2qmzxvm:
+ '@typescript-eslint/eslint-plugin@8.19.1':
resolution: {integrity: sha512-tJzcVyvvb9h/PB96g30MpxACd9IrunT7GF9wfA9/0TJ1LxGOJx1TdPzSbBBnNED7K9Ka8ybJsnEpiXPktolTLg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
- dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/scope-manager': 8.19.1
- '@typescript-eslint/type-utils': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/utils': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/visitor-keys': 8.19.1
- eslint: 9.17.0
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 2.0.1_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/eslint-plugin/8.26.0_v7em3iowsogr2ppwgchrzap2oy:
- resolution: {integrity: sha512-cLr1J6pe56zjKYajK6SSSre6nl1Gj6xDp1TY0trpgPzjVbgDwd09v2Ws37LABxzkicmUjhEeg/fAUjPJJB1v5Q==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
- dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/scope-manager': 8.26.0
- '@typescript-eslint/type-utils': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/utils': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/visitor-keys': 8.26.0
- eslint: 9.17.0
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 2.0.1_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/experimental-utils/5.62.0_5ss5apc2uy6gwlbeak2m4uqwhi:
+ '@typescript-eslint/experimental-utils@5.62.0':
resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- '@typescript-eslint/utils': 5.62.0_5ss5apc2uy6gwlbeak2m4uqwhi
- eslint: 9.17.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
- /@typescript-eslint/parser/7.15.0_5ss5apc2uy6gwlbeak2m4uqwhi:
+ '@typescript-eslint/parser@7.15.0':
resolution: {integrity: sha512-k9fYuQNnypLFcqORNClRykkGOMOj+pV6V91R4GO/l1FDGwpqmSwoOQrOHo3cGaH63e+D3ZiCAOsuS/D2c99j/A==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
@@ -9398,116 +5051,31 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- '@typescript-eslint/scope-manager': 7.15.0
- '@typescript-eslint/types': 7.15.0
- '@typescript-eslint/typescript-estree': 7.15.0_typescript@5.5.3
- '@typescript-eslint/visitor-keys': 7.15.0
- debug: 4.4.0
- eslint: 9.17.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/parser/7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi:
- resolution: {integrity: sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0_typescript@5.5.3
- '@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.4.0
- eslint: 9.17.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/parser/8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi:
+ '@typescript-eslint/parser@8.19.1':
resolution: {integrity: sha512-67gbfv8rAwawjYx3fYArwldTQKoYfezNUT4D5ioWetr/xCrxXxvleo3uuiFuKfejipvq+og7mjz3b0G2bVyUCw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
- dependencies:
- '@typescript-eslint/scope-manager': 8.19.1
- '@typescript-eslint/types': 8.19.1
- '@typescript-eslint/typescript-estree': 8.19.1_typescript@5.5.3
- '@typescript-eslint/visitor-keys': 8.19.1
- debug: 4.4.0
- eslint: 9.17.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/parser/8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi:
- resolution: {integrity: sha512-mNtXP9LTVBy14ZF3o7JG69gRPBK/2QWtQd0j0oH26HcY/foyJJau6pNUez7QrM5UHnSvwlQcJXKsk0I99B9pOA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
- dependencies:
- '@typescript-eslint/scope-manager': 8.26.0
- '@typescript-eslint/types': 8.26.0
- '@typescript-eslint/typescript-estree': 8.26.0_typescript@5.5.3
- '@typescript-eslint/visitor-keys': 8.26.0
- debug: 4.4.0
- eslint: 9.17.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/scope-manager/5.62.0:
+ '@typescript-eslint/scope-manager@5.62.0':
resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
- dev: true
- /@typescript-eslint/scope-manager/7.15.0:
+ '@typescript-eslint/scope-manager@7.15.0':
resolution: {integrity: sha512-Q/1yrF/XbxOTvttNVPihxh1b9fxamjEoz2Os/Pe38OHwxC24CyCqXxGTOdpb4lt6HYtqw9HetA/Rf6gDGaMPlw==}
engines: {node: ^18.18.0 || >=20.0.0}
- dependencies:
- '@typescript-eslint/types': 7.15.0
- '@typescript-eslint/visitor-keys': 7.15.0
- dev: true
- /@typescript-eslint/scope-manager/7.18.0:
+ '@typescript-eslint/scope-manager@7.18.0':
resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
engines: {node: ^18.18.0 || >=20.0.0}
- dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
- dev: true
- /@typescript-eslint/scope-manager/8.19.1:
+ '@typescript-eslint/scope-manager@8.19.1':
resolution: {integrity: sha512-60L9KIuN/xgmsINzonOcMDSB8p82h95hoBfSBtXuO4jlR1R9L1xSkmVZKgCPVfavDlXihh4ARNjXhh1gGnLC7Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dependencies:
- '@typescript-eslint/types': 8.19.1
- '@typescript-eslint/visitor-keys': 8.19.1
- dev: true
-
- /@typescript-eslint/scope-manager/8.26.0:
- resolution: {integrity: sha512-E0ntLvsfPqnPwng8b8y4OGuzh/iIOm2z8U3S9zic2TeMLW61u5IH2Q1wu0oSTkfrSzwbDJIB/Lm8O3//8BWMPA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dependencies:
- '@typescript-eslint/types': 8.26.0
- '@typescript-eslint/visitor-keys': 8.26.0
- dev: true
- /@typescript-eslint/type-utils/7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi:
+ '@typescript-eslint/type-utils@7.18.0':
resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
@@ -9516,77 +5084,31 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- '@typescript-eslint/typescript-estree': 7.18.0_typescript@5.5.3
- '@typescript-eslint/utils': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
- debug: 4.4.0
- eslint: 9.17.0
- ts-api-utils: 1.4.3_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/type-utils/8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi:
+ '@typescript-eslint/type-utils@8.19.1':
resolution: {integrity: sha512-Rp7k9lhDKBMRJB/nM9Ksp1zs4796wVNyihG9/TU9R6KCJDNkQbc2EOKjrBtLYh3396ZdpXLtr/MkaSEmNMtykw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
- dependencies:
- '@typescript-eslint/typescript-estree': 8.19.1_typescript@5.5.3
- '@typescript-eslint/utils': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
- debug: 4.4.0
- eslint: 9.17.0
- ts-api-utils: 2.0.1_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/type-utils/8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi:
- resolution: {integrity: sha512-ruk0RNChLKz3zKGn2LwXuVoeBcUMh+jaqzN461uMMdxy5H9epZqIBtYj7UiPXRuOpaALXGbmRuZQhmwHhaS04Q==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
- dependencies:
- '@typescript-eslint/typescript-estree': 8.26.0_typescript@5.5.3
- '@typescript-eslint/utils': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
- debug: 4.4.0
- eslint: 9.17.0
- ts-api-utils: 2.0.1_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/types/5.62.0:
+ '@typescript-eslint/types@5.62.0':
resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
- /@typescript-eslint/types/7.15.0:
+ '@typescript-eslint/types@7.15.0':
resolution: {integrity: sha512-aV1+B1+ySXbQH0pLK0rx66I3IkiZNidYobyfn0WFsdGhSXw+P3YOqeTq5GED458SfB24tg+ux3S+9g118hjlTw==}
engines: {node: ^18.18.0 || >=20.0.0}
- dev: true
- /@typescript-eslint/types/7.18.0:
+ '@typescript-eslint/types@7.18.0':
resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
engines: {node: ^18.18.0 || >=20.0.0}
- dev: true
- /@typescript-eslint/types/8.19.1:
+ '@typescript-eslint/types@8.19.1':
resolution: {integrity: sha512-JBVHMLj7B1K1v1051ZaMMgLW4Q/jre5qGK0Ew6UgXz1Rqh+/xPzV1aW581OM00X6iOfyr1be+QyW8LOUf19BbA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dev: true
- /@typescript-eslint/types/8.26.0:
- resolution: {integrity: sha512-89B1eP3tnpr9A8L6PZlSjBvnJhWXtYfZhECqlBl1D9Lme9mHO6iWlsprBtVenQvY1HMhax1mWOjhtL3fh/u+pA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dev: true
-
- /@typescript-eslint/typescript-estree/5.62.0_typescript@5.5.3:
+ '@typescript-eslint/typescript-estree@5.62.0':
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -9594,20 +5116,8 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.4.0
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.7.1
- tsutils: 3.21.0_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/typescript-estree/7.15.0_typescript@5.5.3:
+ '@typescript-eslint/typescript-estree@7.15.0':
resolution: {integrity: sha512-gjyB/rHAopL/XxfmYThQbXbzRMGhZzGw6KpcMbfe8Q3nNQKStpxnUKeXb0KiN/fFDR42Z43szs6rY7eHk0zdGQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
@@ -9615,21 +5125,8 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- '@typescript-eslint/types': 7.15.0
- '@typescript-eslint/visitor-keys': 7.15.0
- debug: 4.4.0
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 1.4.3_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/typescript-estree/7.18.0_typescript@5.5.3:
+ '@typescript-eslint/typescript-estree@7.18.0':
resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
@@ -9637,171 +5134,50 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.4.0
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 1.4.3_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/typescript-estree/8.19.1_typescript@5.5.3:
+ '@typescript-eslint/typescript-estree@8.19.1':
resolution: {integrity: sha512-jk/TZwSMJlxlNnqhy0Eod1PNEvCkpY6MXOXE/WLlblZ6ibb32i2We4uByoKPv1d0OD2xebDv4hbs3fm11SMw8Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.8.0'
- dependencies:
- '@typescript-eslint/types': 8.19.1
- '@typescript-eslint/visitor-keys': 8.19.1
- debug: 4.4.0
- fast-glob: 3.3.3
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 2.0.1_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/typescript-estree/8.26.0_typescript@5.5.3:
- resolution: {integrity: sha512-tiJ1Hvy/V/oMVRTbEOIeemA2XoylimlDQ03CgPPNaHYZbpsc78Hmngnt+WXZfJX1pjQ711V7g0H7cSJThGYfPQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- typescript: '>=4.8.4 <5.9.0'
- dependencies:
- '@typescript-eslint/types': 8.26.0
- '@typescript-eslint/visitor-keys': 8.26.0
- debug: 4.4.0
- fast-glob: 3.3.3
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 2.0.1_typescript@5.5.3
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/utils/5.62.0_5ss5apc2uy6gwlbeak2m4uqwhi:
+ '@typescript-eslint/utils@5.62.0':
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0_typescript@5.5.3
- eslint: 9.17.0
- eslint-scope: 5.1.1
- semver: 7.7.1
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
- /@typescript-eslint/utils/7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi:
+ '@typescript-eslint/utils@7.18.0':
resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0_typescript@5.5.3
- eslint: 9.17.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
- /@typescript-eslint/utils/8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi:
+ '@typescript-eslint/utils@8.19.1':
resolution: {integrity: sha512-IxG5gLO0Ne+KaUc8iW1A+XuKLd63o4wlbI1Zp692n1xojCl/THvgIKXJXBZixTh5dd5+yTJ/VXH7GJaaw21qXA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
- '@typescript-eslint/scope-manager': 8.19.1
- '@typescript-eslint/types': 8.19.1
- '@typescript-eslint/typescript-estree': 8.19.1_typescript@5.5.3
- eslint: 9.17.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/utils/8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi:
- resolution: {integrity: sha512-2L2tU3FVwhvU14LndnQCA2frYC8JnPDVKyQtWFPf8IYFMt/ykEN1bPolNhNbCVgOmdzTlWdusCTKA/9nKrf8Ig==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
- '@typescript-eslint/scope-manager': 8.26.0
- '@typescript-eslint/types': 8.26.0
- '@typescript-eslint/typescript-estree': 8.26.0_typescript@5.5.3
- eslint: 9.17.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@typescript-eslint/visitor-keys/5.62.0:
+ '@typescript-eslint/visitor-keys@5.62.0':
resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.62.0
- eslint-visitor-keys: 3.4.3
- dev: true
- /@typescript-eslint/visitor-keys/7.15.0:
+ '@typescript-eslint/visitor-keys@7.15.0':
resolution: {integrity: sha512-Hqgy/ETgpt2L5xueA/zHHIl4fJI2O4XUE9l4+OIfbJIRSnTJb/QscncdqqZzofQegIJugRIF57OJea1khw2SDw==}
engines: {node: ^18.18.0 || >=20.0.0}
- dependencies:
- '@typescript-eslint/types': 7.15.0
- eslint-visitor-keys: 3.4.3
- dev: true
- /@typescript-eslint/visitor-keys/7.18.0:
+ '@typescript-eslint/visitor-keys@7.18.0':
resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
engines: {node: ^18.18.0 || >=20.0.0}
- dependencies:
- '@typescript-eslint/types': 7.18.0
- eslint-visitor-keys: 3.4.3
- dev: true
- /@typescript-eslint/visitor-keys/8.19.1:
+ '@typescript-eslint/visitor-keys@8.19.1':
resolution: {integrity: sha512-fzmjU8CHK853V/avYZAvuVut3ZTfwN5YtMaoi+X9Y9MA9keaWNHC3zEQ9zvyX/7Hj+5JkNyK1l7TOR2hevHB6Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dependencies:
- '@typescript-eslint/types': 8.19.1
- eslint-visitor-keys: 4.2.0
- dev: true
-
- /@typescript-eslint/visitor-keys/8.26.0:
- resolution: {integrity: sha512-2z8JQJWAzPdDd51dRQ/oqIJxe99/hoLIqmf8RMCAJQtYDc535W/Jt2+RTP4bP0aKeBG1F65yjIZuczOXCmbWwg==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dependencies:
- '@typescript-eslint/types': 8.26.0
- eslint-visitor-keys: 4.2.0
- dev: true
- /@ungap/structured-clone/1.3.0:
+ '@ungap/structured-clone@1.3.0':
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
- dev: true
'@unhead/dom@1.11.20':
resolution: {integrity: sha512-jgfGYdOH+xHJF/j8gudjsYu3oIjFyXhCWcgKaw3vQnT616gSqyqnGQGOItL+BQtQZACKNISwIfx5PuOtztMKLA==}
@@ -9819,218 +5195,132 @@ packages:
resolution: {integrity: sha512-sqQaLbwqY9TvLEGeq8Fd7+F2TIuV3nZ5ihVISHjWpAM3y7DwNWRU7NmT9+yYT+2/jw1Vjwdkv5/HvDnvCLrgmg==}
peerDependencies:
vue: '>=2.7 || >=3'
- dependencies:
- '@unhead/schema': 1.11.20
- '@unhead/shared': 1.11.20
- hookable: 5.5.3
- unhead: 1.11.20
- vue: 3.5.13_typescript@5.5.3
+
+ '@unrs/resolver-binding-darwin-arm64@1.3.2':
+ resolution: {integrity: sha512-ddnlXgRi0Fog5+7U5Q1qY62wl95Q1lB4tXQX1UIA9YHmRCHN2twaQW0/4tDVGCvTVEU3xEayU7VemEr7GcBYUw==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@unrs/resolver-binding-darwin-x64@1.3.2':
+ resolution: {integrity: sha512-tnl9xoEeg503jis+LW5cuq4hyLGQyqaoBL8VdPSqcewo/FL1C8POHbzl+AL25TidWYJD+R6bGUTE381kA1sT9w==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@unrs/resolver-binding-freebsd-x64@1.3.2':
+ resolution: {integrity: sha512-zyPn9LFCCjhKPeCtECZaiMUgkYN/VpLb4a9Xv7QriJmTaQxsuDtXqOHifrzUXIhorJTyS+5MOKDuNL0X9I4EHA==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.3.2':
+ resolution: {integrity: sha512-UWx56Wh59Ro69fe+Wfvld4E1n9KG0e3zeouWLn8eSasyi/yVH/7ZW3CLTVFQ81oMKSpXwr5u6RpzttDXZKiO4g==}
+ cpu: [arm]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.3.2':
+ resolution: {integrity: sha512-VYGQXsOEJtfaoY2fOm8Z9ii5idFaHFYlrq3yMFZPaFKo8ufOXYm8hnfru7qetbM9MX116iWaPC0ZX5sK+1Dr+g==}
+ cpu: [arm]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-arm64-gnu@1.3.2':
+ resolution: {integrity: sha512-3zP420zxJfYPD1rGp2/OTIBxF8E3+/6VqCG+DEO6kkDgBiloa7Y8pw1o7N9BfgAC+VC8FPZsFXhV2lpx+lLRMQ==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-arm64-musl@1.3.2':
+ resolution: {integrity: sha512-ZWjSleUgr88H4Kei7yT4PlPqySTuWN1OYDDcdbmMCtLWFly3ed+rkrcCb3gvqXdDbYrGOtzv3g2qPEN+WWNv5Q==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.3.2':
+ resolution: {integrity: sha512-p+5OvYJ2UOlpjes3WfBlxyvQok2u26hLyPxLFHkYlfzhZW0juhvBf/tvewz1LDFe30M7zL9cF4OOO5dcvtk+cw==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-s390x-gnu@1.3.2':
+ resolution: {integrity: sha512-yweY7I6SqNn3kvj6vE4PQRo7j8Oz6+NiUhmgciBNAUOuI3Jq0bnW29hbHJdxZRSN1kYkQnSkbbA1tT8VnK816w==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-x64-gnu@1.3.2':
+ resolution: {integrity: sha512-fNIvtzJcGN9hzWTIayrTSk2+KHQrqKbbY+I88xMVMOFV9t4AXha4veJdKaIuuks+2JNr6GuuNdsL7+exywZ32w==}
+ cpu: [x64]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-x64-musl@1.3.2':
+ resolution: {integrity: sha512-OaFEw8WAjiwBGxutQgkWhoAGB5BQqZJ8Gjt/mW+m6DWNjimcxU22uWCuEtfw1CIwLlKPOzsgH0429fWmZcTGkg==}
+ cpu: [x64]
+ os: [linux]
+
+ '@unrs/resolver-binding-wasm32-wasi@1.3.2':
+ resolution: {integrity: sha512-u+sumtO7M0AGQ9bNQrF4BHNpUyxo23FM/yXZfmVAicTQ+mXtG06O7pm5zQUw3Mr4jRs2I84uh4O0hd8bdouuvQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
+ '@unrs/resolver-binding-win32-arm64-msvc@1.3.2':
+ resolution: {integrity: sha512-ZAJKy95vmDIHsRFuPNqPQRON8r2mSMf3p9DoX+OMOhvu2c8OXGg8MvhGRf3PNg45ozRrPdXDnngURKgaFfpGoQ==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@unrs/resolver-binding-win32-ia32-msvc@1.3.2':
+ resolution: {integrity: sha512-nQG4YFAS2BLoKVQFK/FrWJvFATI5DQUWQrcPcsWG9Ve5BLLHZuPOrJ2SpAJwLXQrRv6XHSFAYGI8wQpBg/CiFA==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@unrs/resolver-binding-win32-x64-msvc@1.3.2':
+ resolution: {integrity: sha512-XBWpUP0mHya6yGBwNefhyEa6V7HgYKCxEAY4qhTm/PcAQyBPNmjj97VZJOJkVdUsyuuii7xmq0pXWX/c2aToHQ==}
+ cpu: [x64]
+ os: [win32]
'@vercel/nft@0.29.2':
resolution: {integrity: sha512-A/Si4mrTkQqJ6EXJKv5EYCDQ3NL6nJXxG8VGXePsaiQigsomHYQC9xSpX8qGk7AEZk4b1ssbYIqJ0ISQQ7bfcA==}
engines: {node: '>=18'}
hasBin: true
- dependencies:
- '@mapbox/node-pre-gyp': 2.0.0
- '@rollup/pluginutils': 5.1.4_rollup@4.35.0
- acorn: 8.14.1
- acorn-import-attributes: 1.9.5_acorn@8.14.1
- async-sema: 3.1.1
- bindings: 1.5.0
- estree-walker: 2.0.2
- glob: 10.4.5
- graceful-fs: 4.2.11
- node-gyp-build: 4.8.4
- picomatch: 4.0.2
- resolve-from: 5.0.0
- transitivePeerDependencies:
- - encoding
- - rollup
- - supports-color
-
- /@vitejs/plugin-basic-ssl/1.2.0_vite@6.1.0:
- resolution: {integrity: sha512-mkQnxTkcldAzIsomk1UuLfAu9n+kpQ3JbHcpCp7d2Oo6ITtji8pHS3QToOWjhPFvNQSnhlkAjmGbhv2QvwO/7Q==}
- engines: {node: '>=14.21.3'}
- peerDependencies:
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
- dependencies:
- vite: 6.1.0_4c45tymmfdin4b4i5tudvmn5ny
- dev: true
-
- /@vitejs/plugin-basic-ssl/1.2.0_vite@6.2.0:
- resolution: {integrity: sha512-mkQnxTkcldAzIsomk1UuLfAu9n+kpQ3JbHcpCp7d2Oo6ITtji8pHS3QToOWjhPFvNQSnhlkAjmGbhv2QvwO/7Q==}
- engines: {node: '>=14.21.3'}
- peerDependencies:
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
- dependencies:
- vite: 6.2.0_2ybhmnti7g23zofer2g3osvokq
- dev: true
- /@vitejs/plugin-basic-ssl/1.2.0_vite@6.2.1:
+ '@vitejs/plugin-basic-ssl@1.2.0':
resolution: {integrity: sha512-mkQnxTkcldAzIsomk1UuLfAu9n+kpQ3JbHcpCp7d2Oo6ITtji8pHS3QToOWjhPFvNQSnhlkAjmGbhv2QvwO/7Q==}
engines: {node: '>=14.21.3'}
peerDependencies:
vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
- dependencies:
- vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
- dev: true
- /@vitejs/plugin-react/4.3.1_vite@6.0.9:
+ '@vitejs/plugin-react@4.3.1':
resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.2.0 || ^5.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-transform-react-jsx-self': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-transform-react-jsx-source': 7.25.9_@babel+core@7.26.9
- '@types/babel__core': 7.20.5
- react-refresh: 0.14.2
- vite: 6.0.9
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@vitejs/plugin-vue-jsx/4.1.1_vite@5.4.14+vue@3.5.13:
- resolution: {integrity: sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- peerDependencies:
- vite: ^5.0.0 || ^6.0.0
- vue: ^3.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-transform-typescript': 7.26.8_@babel+core@7.26.9
- '@vue/babel-plugin-jsx': 1.3.0_@babel+core@7.26.9
- vite: 5.4.14_4c45tymmfdin4b4i5tudvmn5ny
- vue: 3.5.13_typescript@5.5.3
- transitivePeerDependencies:
- - supports-color
-
- /@vitejs/plugin-vue-jsx/4.1.1_vite@6.0.9+vue@3.5.13:
- resolution: {integrity: sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- peerDependencies:
- vite: ^5.0.0 || ^6.0.0
- vue: ^3.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-transform-typescript': 7.26.8_@babel+core@7.26.9
- '@vue/babel-plugin-jsx': 1.3.0_@babel+core@7.26.9
- vite: 6.0.9_@types+node@22.10.5
- vue: 3.5.13_typescript@5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@vitejs/plugin-vue-jsx/4.1.1_vite@6.2.1+vue@3.5.13:
+ '@vitejs/plugin-vue-jsx@4.1.1':
resolution: {integrity: sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0 || ^6.0.0
vue: ^3.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-transform-typescript': 7.26.8_@babel+core@7.26.9
- '@vue/babel-plugin-jsx': 1.3.0_@babel+core@7.26.9
- vite: 6.2.1_jiti@2.4.2
- vue: 3.5.13_typescript@5.8.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@vitejs/plugin-vue/5.2.1_vite@5.4.14+vue@3.5.13:
- resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
- engines: {node: ^18.0.0 || >=20.0.0}
- peerDependencies:
- vite: ^5.0.0 || ^6.0.0
- vue: ^3.2.25
- dependencies:
- vite: 5.4.14
- vue: 3.5.13
-
- /@vitejs/plugin-vue/5.2.1_vite@6.0.9+vue@3.5.13:
- resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
- engines: {node: ^18.0.0 || >=20.0.0}
- peerDependencies:
- vite: ^5.0.0 || ^6.0.0
- vue: ^3.2.25
- dependencies:
- vite: 6.0.9_@types+node@22.10.5
- vue: 3.5.13_typescript@5.5.3
- dev: true
- /@vitejs/plugin-vue/5.2.1_vite@6.2.1+vue@3.5.13:
+ '@vitejs/plugin-vue@5.2.1':
resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
- dependencies:
- vite: 6.2.1_jiti@2.4.2
- vue: 3.5.13_typescript@5.8.2
- dev: false
- /@vitest/coverage-v8/1.6.0_vitest@1.6.0:
+ '@vitest/coverage-v8@1.6.0':
resolution: {integrity: sha512-KvapcbMY/8GYIG0rlwwOKCVNRc0OL20rrhFkg/CHNzncV03TE2XWvO5w9uZYoxNiMEBacAJt3unSOiZ7svePew==}
peerDependencies:
vitest: 1.6.0
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@bcoe/v8-coverage': 0.2.3
- debug: 4.4.0
- istanbul-lib-coverage: 3.2.2
- istanbul-lib-report: 3.0.1
- istanbul-lib-source-maps: 5.0.6
- istanbul-reports: 3.1.7
- magic-string: 0.30.17
- magicast: 0.3.5
- picocolors: 1.1.1
- std-env: 3.8.1
- strip-literal: 2.1.1
- test-exclude: 6.0.0
- vitest: 1.6.0_@types+node@22.10.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@vitest/expect/1.6.0:
+ '@vitest/expect@1.6.0':
resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==}
- dependencies:
- '@vitest/spy': 1.6.0
- '@vitest/utils': 1.6.0
- chai: 4.5.0
- dev: true
- /@vitest/runner/1.6.0:
+ '@vitest/runner@1.6.0':
resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==}
- dependencies:
- '@vitest/utils': 1.6.0
- p-limit: 5.0.0
- pathe: 1.1.2
- dev: true
- /@vitest/snapshot/1.6.0:
+ '@vitest/snapshot@1.6.0':
resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==}
- dependencies:
- magic-string: 0.30.17
- pathe: 1.1.2
- pretty-format: 29.7.0
- dev: true
- /@vitest/spy/1.6.0:
+ '@vitest/spy@1.6.0':
resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==}
- dependencies:
- tinyspy: 2.2.1
- dev: true
- /@vitest/utils/1.6.0:
+ '@vitest/utils@1.6.0':
resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
- dependencies:
- diff-sequences: 29.6.3
- estree-walker: 3.0.3
- loupe: 2.3.7
- pretty-format: 29.7.0
- dev: true
'@volar/language-core@2.4.12':
resolution: {integrity: sha512-RLrFdXEaQBWfSnYGVxvR2WrO6Bub0unkdHYIdC31HzIEqATIuuhRRzYu76iGPZ6OtA4Au1SnW0ZwIqPP217YhA==}
@@ -10041,7 +5331,7 @@ packages:
'@volar/typescript@2.4.12':
resolution: {integrity: sha512-HJB73OTJDgPc80K30wxi3if4fSsZZAOScbj2fcicMuOPoOkcf9NNAINb33o+DzhBdF9xTKC1gnPmIRDous5S0g==}
- /@vue-macros/common/1.16.1_vue@3.5.13:
+ '@vue-macros/common@1.16.1':
resolution: {integrity: sha512-Pn/AWMTjoMYuquepLZP813BIcq8DTZiNCoaceuNlvaYuOTd8DqBZWc5u0uOMQZMInwME1mdSmmBAcTluiV9Jtg==}
engines: {node: '>=16.14.0'}
peerDependencies:
@@ -10049,14 +5339,6 @@ packages:
peerDependenciesMeta:
vue:
optional: true
- dependencies:
- '@vue/compiler-sfc': 3.5.13
- ast-kit: 1.4.2
- local-pkg: 1.1.1
- magic-string-ast: 0.7.1
- pathe: 2.0.3
- picomatch: 4.0.2
- vue: 3.5.13_typescript@5.8.2
'@vue/babel-helper-vue-transform-on@1.4.0':
resolution: {integrity: sha512-mCokbouEQ/ocRce/FpKCRItGo+013tHg7tixg3DUNS+6bmIchPt66012kBMm476vyEIJPafrvOf4E5OYj3shSw==}
@@ -10068,138 +5350,45 @@ packages:
peerDependenciesMeta:
'@babel/core':
optional: true
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-jsx': 7.25.9_@babel+core@7.26.9
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- '@vue/babel-helper-vue-transform-on': 1.3.0
- '@vue/babel-plugin-resolve-type': 1.3.0_@babel+core@7.26.9
- '@vue/shared': 3.5.13
- transitivePeerDependencies:
- - supports-color
'@vue/babel-plugin-resolve-type@1.4.0':
resolution: {integrity: sha512-4xqDRRbQQEWHQyjlYSgZsWj44KfiF6D+ktCuXyZ8EnVDYV3pztmXJDf1HveAjUAXxAnR8daCQT51RneWWxtTyQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/parser': 7.26.9
- '@vue/compiler-sfc': 3.5.13
- transitivePeerDependencies:
- - supports-color
- /@vue/compiler-core/3.5.13:
+ '@vue/compiler-core@3.5.13':
resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
- dependencies:
- '@babel/parser': 7.26.9
- '@vue/shared': 3.5.13
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.2.1
- /@vue/compiler-dom/3.5.13:
+ '@vue/compiler-dom@3.5.13':
resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
- dependencies:
- '@vue/compiler-core': 3.5.13
- '@vue/shared': 3.5.13
- /@vue/compiler-sfc/3.5.13:
+ '@vue/compiler-sfc@3.5.13':
resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
- dependencies:
- '@babel/parser': 7.26.9
- '@vue/compiler-core': 3.5.13
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
- estree-walker: 2.0.2
- magic-string: 0.30.17
- postcss: 8.5.3
- source-map-js: 1.2.1
- /@vue/compiler-ssr/3.5.13:
+ '@vue/compiler-ssr@3.5.13':
resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
- dependencies:
- '@vue/compiler-dom': 3.5.13
- '@vue/shared': 3.5.13
- /@vue/compiler-vue2/2.7.16:
+ '@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
- dependencies:
- de-indent: 1.0.2
- he: 1.2.0
- dev: true
- /@vue/devtools-api/6.6.4:
+ '@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
'@vue/devtools-api@7.7.2':
resolution: {integrity: sha512-1syn558KhyN+chO5SjlZIwJ8bV/bQ1nOVTG66t2RbG66ZGekyiYNmRO7X9BJCXQqPsFHlnksqvPhce2qpzxFnA==}
- /@vue/devtools-core/7.6.8_vite@6.0.9+vue@3.5.13:
+ '@vue/devtools-core@7.6.8':
resolution: {integrity: sha512-8X4roysTwzQ94o7IobjVcOd1aZF5iunikrMrHPI2uUdigZCi2kFTQc7ffYiFiTNaLElCpjOhCnM7bo7aK1yU7A==}
peerDependencies:
vue: ^3.0.0
- dependencies:
- '@vue/devtools-kit': 7.6.8
- '@vue/devtools-shared': 7.7.2
- mitt: 3.0.1
- nanoid: 5.1.3
- pathe: 1.1.2
- vite-hot-client: 0.2.4_vite@6.0.9
- vue: 3.5.13
- transitivePeerDependencies:
- - vite
- dev: false
'@vue/devtools-core@7.7.2':
resolution: {integrity: sha512-lexREWj1lKi91Tblr38ntSsy6CvI8ba7u+jmwh2yruib/ltLUcsIzEjCnrkh1yYGGIKXbAuYV2tOG10fGDB9OQ==}
peerDependencies:
vue: ^3.0.0
- dependencies:
- '@vue/devtools-kit': 7.6.8
- '@vue/devtools-shared': 7.7.2
- mitt: 3.0.1
- nanoid: 5.1.3
- pathe: 1.1.2
- vite-hot-client: 0.2.4_vite@6.2.1
- vue: 3.5.13_typescript@5.5.3
- transitivePeerDependencies:
- - vite
- dev: true
-
- /@vue/devtools-core/7.7.2_vite@6.0.9+vue@3.5.13:
- resolution: {integrity: sha512-lexREWj1lKi91Tblr38ntSsy6CvI8ba7u+jmwh2yruib/ltLUcsIzEjCnrkh1yYGGIKXbAuYV2tOG10fGDB9OQ==}
- peerDependencies:
- vue: ^3.0.0
- dependencies:
- '@vue/devtools-kit': 7.7.2
- '@vue/devtools-shared': 7.7.2
- mitt: 3.0.1
- nanoid: 5.1.3
- pathe: 2.0.3
- vite-hot-client: 0.2.4_vite@6.0.9
- vue: 3.5.13_typescript@5.5.3
- transitivePeerDependencies:
- - vite
- /@vue/devtools-kit/7.6.8:
+ '@vue/devtools-kit@7.6.8':
resolution: {integrity: sha512-JhJ8M3sPU+v0P2iZBF2DkdmR9L0dnT5RXJabJqX6o8KtFs3tebdvfoXV2Dm3BFuqeECuMJIfF1aCzSt+WQ4wrw==}
- dependencies:
- '@vue/devtools-shared': 7.7.2
- birpc: 0.2.19
- hookable: 5.5.3
- mitt: 3.0.1
- perfect-debounce: 1.0.0
- speakingurl: 14.0.1
- superjson: 2.2.2
'@vue/devtools-kit@7.7.2':
resolution: {integrity: sha512-CY0I1JH3Z8PECbn6k3TqM1Bk9ASWxeMtTCvZr7vb+CHi+X/QwQm5F1/fPagraamKMAHVfuuCbdcnNg1A4CYVWQ==}
@@ -10207,21 +5396,13 @@ packages:
'@vue/devtools-shared@7.7.2':
resolution: {integrity: sha512-uBFxnp8gwW2vD6FrJB8JZLUzVb6PNRG0B0jBnHsOH8uKyva2qINY8PTF5Te4QlTbMDqU5K6qtJDr6cNsKWhbOA==}
- /@vue/eslint-config-prettier/10.1.0_ihiz3eglg54tlp4ip7syowrynq:
+ '@vue/eslint-config-prettier@10.1.0':
resolution: {integrity: sha512-J6wV91y2pXc0Phha01k0WOHBTPsoSTf4xlmMjoKaeSxBpAdsgTppGF5RZRdOHM7OA74zAXD+VLANrtYXpiPKkQ==}
peerDependencies:
eslint: '>= 8.21.0'
prettier: '>= 3.0.0'
- dependencies:
- eslint: 9.17.0
- eslint-config-prettier: 9.1.0_eslint@9.17.0
- eslint-plugin-prettier: 5.2.3_mtaaos5yzai2zmkzqvxmznyxti
- prettier: 3.4.2
- transitivePeerDependencies:
- - '@types/eslint'
- dev: true
- /@vue/eslint-config-typescript/14.2.0_3tezvrcgwmzx5dts2w5tywkdwq:
+ '@vue/eslint-config-typescript@14.2.0':
resolution: {integrity: sha512-JJ4wHuTJa2faQsBOUeWzuHOSFizVS7RWG2eH2noABk2LcT4wVcTOMZKM/lFobKBcgwADIPAKVRGFHVKooXImoA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
@@ -10231,75 +5412,36 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- eslint: 9.17.0
- eslint-plugin-vue: 9.32.0_eslint@9.17.0
- fast-glob: 3.3.3
- typescript: 5.5.3
- typescript-eslint: 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
- vue-eslint-parser: 9.4.3_eslint@9.17.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@vue/language-core/2.2.0_typescript@5.5.3:
+ '@vue/language-core@2.2.0':
resolution: {integrity: sha512-O1ZZFaaBGkKbsRfnVH1ifOK1/1BUkyK+3SQsfnh6PmMmD4qJcTU8godCeA96jjDRTL6zgnK7YzCHfaUlH2r0Mw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- '@volar/language-core': 2.4.12
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.13
- alien-signals: 0.4.14
- minimatch: 9.0.5
- muggle-string: 0.4.1
- path-browserify: 1.0.1
- typescript: 5.5.3
- dev: true
- /@vue/reactivity/3.5.13:
+ '@vue/reactivity@3.5.13':
resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
- dependencies:
- '@vue/shared': 3.5.13
- /@vue/runtime-core/3.5.13:
+ '@vue/runtime-core@3.5.13':
resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
- dependencies:
- '@vue/reactivity': 3.5.13
- '@vue/shared': 3.5.13
- /@vue/runtime-dom/3.5.13:
+ '@vue/runtime-dom@3.5.13':
resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
- dependencies:
- '@vue/reactivity': 3.5.13
- '@vue/runtime-core': 3.5.13
- '@vue/shared': 3.5.13
- csstype: 3.1.3
- /@vue/server-renderer/3.5.13_vue@3.5.13:
+ '@vue/server-renderer@3.5.13':
resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
peerDependencies:
vue: 3.5.13
- dependencies:
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
- vue: 3.5.13_typescript@5.5.3
- /@vue/shared/3.5.13:
+ '@vue/shared@3.5.13':
resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
- /@vue/test-utils/2.4.6:
+ '@vue/test-utils@2.4.6':
resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
- dependencies:
- js-beautify: 1.15.4
- vue-component-type-helpers: 2.2.8
- dev: true
- /@vue/tsconfig/0.7.0_3jdk7euojidjqlkepbdrol3p3i:
+ '@vue/tsconfig@0.7.0':
resolution: {integrity: sha512-ku2uNz5MaZ9IerPPUyOHzyjhXoX2kVJaVf7hL315DC17vS6IiZRmmCPfggNbU16QTvM80+uYYy3eYJB59WCtvg==}
peerDependencies:
typescript: 5.x
@@ -10309,24 +5451,11 @@ packages:
optional: true
vue:
optional: true
- dependencies:
- typescript: 5.5.3
- vue: 3.5.13_typescript@5.5.3
- dev: true
- /@vueuse/core/10.11.1_vue@3.5.13:
+ '@vueuse/core@10.11.1':
resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
- dependencies:
- '@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 10.11.1
- '@vueuse/shared': 10.11.1_vue@3.5.13
- vue-demi: 0.14.10_vue@3.5.13
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
- dev: true
- /@vueuse/integrations/10.11.1_q2nj55xqsxutrthy5peyde56gu:
+ '@vueuse/integrations@10.11.1':
resolution: {integrity: sha512-Y5hCGBguN+vuVYTZmdd/IMXLOdfS60zAmDmFYc4BKBcMUPZH1n4tdyDECCPjXm0bNT3ZRUy1xzTLGaUje8Xyaw==}
peerDependencies:
async-validator: ^4
@@ -10366,217 +5495,111 @@ packages:
optional: true
universal-cookie:
optional: true
- dependencies:
- '@vueuse/core': 10.11.1_vue@3.5.13
- '@vueuse/shared': 10.11.1_vue@3.5.13
- focus-trap: 7.6.4
- vue-demi: 0.14.10_vue@3.5.13
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
- dev: true
- /@vueuse/metadata/10.11.1:
+ '@vueuse/metadata@10.11.1':
resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
- dev: true
- /@vueuse/shared/10.11.1_vue@3.5.13:
+ '@vueuse/shared@10.11.1':
resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
- dependencies:
- vue-demi: 0.14.10_vue@3.5.13
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
- dev: true
- /@webassemblyjs/ast/1.14.1:
+ '@webassemblyjs/ast@1.14.1':
resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
- dependencies:
- '@webassemblyjs/helper-numbers': 1.13.2
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- dev: true
- /@webassemblyjs/floating-point-hex-parser/1.13.2:
+ '@webassemblyjs/floating-point-hex-parser@1.13.2':
resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
- dev: true
- /@webassemblyjs/helper-api-error/1.13.2:
+ '@webassemblyjs/helper-api-error@1.13.2':
resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
- dev: true
- /@webassemblyjs/helper-buffer/1.14.1:
+ '@webassemblyjs/helper-buffer@1.14.1':
resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
- dev: true
- /@webassemblyjs/helper-numbers/1.13.2:
+ '@webassemblyjs/helper-numbers@1.13.2':
resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
- dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.13.2
- '@webassemblyjs/helper-api-error': 1.13.2
- '@xtuc/long': 4.2.2
- dev: true
- /@webassemblyjs/helper-wasm-bytecode/1.13.2:
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2':
resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
- dev: true
- /@webassemblyjs/helper-wasm-section/1.14.1:
+ '@webassemblyjs/helper-wasm-section@1.14.1':
resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/wasm-gen': 1.14.1
- dev: true
- /@webassemblyjs/ieee754/1.13.2:
+ '@webassemblyjs/ieee754@1.13.2':
resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
- dependencies:
- '@xtuc/ieee754': 1.2.0
- dev: true
- /@webassemblyjs/leb128/1.13.2:
+ '@webassemblyjs/leb128@1.13.2':
resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
- dependencies:
- '@xtuc/long': 4.2.2
- dev: true
- /@webassemblyjs/utf8/1.13.2:
+ '@webassemblyjs/utf8@1.13.2':
resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
- dev: true
- /@webassemblyjs/wasm-edit/1.14.1:
+ '@webassemblyjs/wasm-edit@1.14.1':
resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/helper-wasm-section': 1.14.1
- '@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/wasm-opt': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
- '@webassemblyjs/wast-printer': 1.14.1
- dev: true
- /@webassemblyjs/wasm-gen/1.14.1:
+ '@webassemblyjs/wasm-gen@1.14.1':
resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/ieee754': 1.13.2
- '@webassemblyjs/leb128': 1.13.2
- '@webassemblyjs/utf8': 1.13.2
- dev: true
- /@webassemblyjs/wasm-opt/1.14.1:
+ '@webassemblyjs/wasm-opt@1.14.1':
resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==}
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
- dev: true
- /@webassemblyjs/wasm-parser/1.14.1:
+ '@webassemblyjs/wasm-parser@1.14.1':
resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==}
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-api-error': 1.13.2
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/ieee754': 1.13.2
- '@webassemblyjs/leb128': 1.13.2
- '@webassemblyjs/utf8': 1.13.2
- dev: true
- /@webassemblyjs/wast-printer/1.14.1:
+ '@webassemblyjs/wast-printer@1.14.1':
resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@xtuc/long': 4.2.2
- dev: true
- /@xtuc/ieee754/1.2.0:
+ '@xtuc/ieee754@1.2.0':
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
- dev: true
- /@xtuc/long/4.2.2:
+ '@xtuc/long@4.2.2':
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- dev: true
- /@yarnpkg/lockfile/1.1.0:
+ '@yarnpkg/lockfile@1.1.0':
resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
- dev: true
- /abbrev/2.0.0:
+ abbrev@2.0.0:
resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dev: true
- /abbrev/3.0.0:
+ abbrev@3.0.0:
resolution: {integrity: sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==}
engines: {node: ^18.17.0 || >=20.5.0}
- /abort-controller/3.0.0:
+ abort-controller@3.0.0:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
- dependencies:
- event-target-shim: 5.0.1
- /abstract-logging/2.0.1:
+ abstract-logging@2.0.1:
resolution: {integrity: sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==}
- /accepts/1.3.8:
+ accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
- dependencies:
- mime-types: 2.1.35
- negotiator: 0.6.3
- dev: true
- /acorn-import-attributes/1.9.5_acorn@8.14.1:
+ acorn-import-attributes@1.9.5:
resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
peerDependencies:
acorn: ^8
- dependencies:
- acorn: 8.14.1
-
- /acorn-jsx/5.3.2_acorn@7.4.1:
- resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
- peerDependencies:
- acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- acorn: 7.4.1
- dev: true
- /acorn-jsx/5.3.2_acorn@8.14.1:
+ acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- acorn: 8.14.1
- dev: true
- /acorn-typescript/1.4.13_acorn@8.14.1:
+ acorn-typescript@1.4.13:
resolution: {integrity: sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==}
peerDependencies:
acorn: '>=8.9.0'
- dependencies:
- acorn: 8.14.1
- /acorn-walk/8.3.4:
+ acorn-walk@8.3.4:
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
- dependencies:
- acorn: 8.14.1
- dev: true
- /acorn/7.4.1:
+ acorn@7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
- dev: true
- /acorn/8.14.0:
+ acorn@8.14.0:
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -10589,532 +5612,275 @@ packages:
adjust-sourcemap-loader@4.0.0:
resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==}
engines: {node: '>=8.9'}
- dependencies:
- loader-utils: 2.0.4
- regex-parser: 2.3.1
- dev: true
- /agent-base/7.1.3:
+ agent-base@7.1.3:
resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==}
engines: {node: '>= 14'}
- /ajv-draft-04/1.0.0_ajv@8.17.1:
+ ajv-draft-04@1.0.0:
resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==}
peerDependencies:
ajv: ^8.5.0
peerDependenciesMeta:
ajv:
optional: true
- dependencies:
- ajv: 8.17.1
- dev: false
- /ajv-formats/2.1.1:
+ ajv-formats@2.1.1:
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
+ peerDependencies:
+ ajv: ^8.0.0
peerDependenciesMeta:
ajv:
optional: true
- dependencies:
- ajv: 8.17.1
- dev: true
- /ajv-formats/3.0.1:
+ ajv-formats@3.0.1:
resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
+ peerDependencies:
+ ajv: ^8.0.0
peerDependenciesMeta:
ajv:
optional: true
- dependencies:
- ajv: 8.17.1
- /ajv-keywords/5.1.0_ajv@8.17.1:
+ ajv-keywords@5.1.0:
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
ajv: ^8.8.2
- dependencies:
- ajv: 8.17.1
- fast-deep-equal: 3.1.3
- dev: true
- /ajv/6.12.6:
+ ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
- dependencies:
- fast-deep-equal: 3.1.3
- fast-json-stable-stringify: 2.1.0
- json-schema-traverse: 0.4.1
- uri-js: 4.4.1
- dev: true
- /ajv/8.17.1:
+ ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- dependencies:
- fast-deep-equal: 3.1.3
- fast-uri: 3.0.6
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- algoliasearch@5.21.0:
- resolution: {integrity: sha512-hexLq2lSO1K5SW9j21Ubc+q9Ptx7dyRTY7se19U8lhIlVMLCNXWCyQ6C22p9ez8ccX0v7QVmwkl2l1CnuGoO2Q==}
+ algoliasearch@5.23.0:
+ resolution: {integrity: sha512-7TCj+hLx6fZKppLL74lYGDEltSBNSu4vqRwgqeIKZ3VQ0q3aOrdEN0f1sDWcvU1b+psn2wnl7aHt9hWtYatUUA==}
engines: {node: '>= 14.0.0'}
- dependencies:
- '@algolia/client-abtesting': 5.20.4
- '@algolia/client-analytics': 5.20.4
- '@algolia/client-common': 5.20.4
- '@algolia/client-insights': 5.20.4
- '@algolia/client-personalization': 5.20.4
- '@algolia/client-query-suggestions': 5.20.4
- '@algolia/client-search': 5.20.4
- '@algolia/ingestion': 1.20.4
- '@algolia/monitoring': 1.20.4
- '@algolia/recommend': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
- dev: true
-
- /alien-signals/0.4.14:
+
+ alien-signals@0.4.14:
resolution: {integrity: sha512-itUAVzhczTmP2U5yX67xVpsbbOiquusbWVyA9N+sy6+r6YVbFkahXvNCeEPWEOMhwDYwbVbGHFkVL03N9I5g+Q==}
- dev: true
- /ansi-colors/4.1.3:
+ ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
- /ansi-escapes/4.3.2:
+ ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
- dependencies:
- type-fest: 0.21.3
- /ansi-escapes/7.0.0:
+ ansi-escapes@7.0.0:
resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==}
engines: {node: '>=18'}
- dependencies:
- environment: 1.1.0
- dev: true
- /ansi-html-community/0.0.8:
+ ansi-html-community@0.0.8:
resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
engines: {'0': node >= 0.8.0}
hasBin: true
- dev: true
- /ansi-regex/5.0.1:
+ ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- /ansi-regex/6.1.0:
+ ansi-regex@6.1.0:
resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
- /ansi-styles/4.3.0:
+ ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
- dependencies:
- color-convert: 2.0.1
- /ansi-styles/5.2.0:
+ ansi-styles@5.2.0:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
- dev: true
- /ansi-styles/6.2.1:
+ ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
- /ansis/3.17.0:
- resolution: {integrity: sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==}
- engines: {node: '>=14'}
- dev: false
-
- /any-promise/1.3.0:
+ any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
- dev: true
- /anymatch/3.1.3:
+ anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
- dependencies:
- normalize-path: 3.0.0
- picomatch: 2.3.1
- /archiver-utils/5.0.2:
+ archiver-utils@5.0.2:
resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==}
engines: {node: '>= 14'}
- dependencies:
- glob: 10.4.5
- graceful-fs: 4.2.11
- is-stream: 2.0.1
- lazystream: 1.0.1
- lodash: 4.17.21
- normalize-path: 3.0.0
- readable-stream: 4.7.0
- /archiver/7.0.1:
+ archiver@7.0.1:
resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==}
engines: {node: '>= 14'}
- dependencies:
- archiver-utils: 5.0.2
- async: 3.2.6
- buffer-crc32: 1.0.0
- readable-stream: 4.7.0
- readdir-glob: 1.1.3
- tar-stream: 3.1.7
- zip-stream: 6.0.1
- /arg/4.1.3:
+ arg@4.1.3:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
- dev: true
- /arg/5.0.2:
+ arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
- dev: true
- /argparse/1.0.10:
+ argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
- dependencies:
- sprintf-js: 1.0.3
- dev: true
- /argparse/2.0.1:
+ argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- /aria-hidden/1.2.4:
+ aria-hidden@1.2.4:
resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
engines: {node: '>=10'}
- dependencies:
- tslib: 2.8.1
- dev: false
- /aria-query/5.3.2:
+ aria-query@5.3.2:
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
engines: {node: '>= 0.4'}
- /array-buffer-byte-length/1.0.2:
+ array-buffer-byte-length@1.0.2:
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- is-array-buffer: 3.0.5
- dev: true
- /array-flatten/1.1.1:
+ array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- dev: true
- /array-includes/3.1.8:
+ array-includes@3.1.8:
resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-object-atoms: 1.1.1
- get-intrinsic: 1.3.0
- is-string: 1.1.1
- dev: true
- /array-union/2.1.0:
+ array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- dev: true
- /array.prototype.findlast/1.2.5:
+ array.prototype.findlast@1.2.5:
resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- es-shim-unscopables: 1.1.0
- dev: true
- /array.prototype.findlastindex/1.2.5:
- resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
+ array.prototype.findlastindex@1.2.6:
+ resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- es-shim-unscopables: 1.1.0
- dev: true
- /array.prototype.flat/1.3.3:
+ array.prototype.flat@1.3.3:
resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-shim-unscopables: 1.1.0
- dev: true
- /array.prototype.flatmap/1.3.3:
+ array.prototype.flatmap@1.3.3:
resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-shim-unscopables: 1.1.0
- dev: true
- /array.prototype.tosorted/1.1.4:
+ array.prototype.tosorted@1.1.4:
resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- es-shim-unscopables: 1.1.0
- dev: true
- /arraybuffer.prototype.slice/1.0.4:
+ arraybuffer.prototype.slice@1.0.4:
resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
engines: {node: '>= 0.4'}
- dependencies:
- array-buffer-byte-length: 1.0.2
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- get-intrinsic: 1.3.0
- is-array-buffer: 3.0.5
- dev: true
- /assertion-error/1.1.0:
+ assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
- dev: true
ast-kit@1.4.2:
resolution: {integrity: sha512-lvGehj1XsrIoQrD5CfPduIzQbcpuX2EPjlk/vDMDQF9U9HLRB6WwMTdighj5n52hdhh8xg9VgPTU7Q25MuJ/rw==}
engines: {node: '>=16.14.0'}
- dependencies:
- '@babel/parser': 7.26.9
- pathe: 2.0.3
- /ast-types-flow/0.0.8:
+ ast-types-flow@0.0.8:
resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
- dev: true
- /ast-types/0.13.4:
+ ast-types@0.13.4:
resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
engines: {node: '>=4'}
- dependencies:
- tslib: 2.8.1
- dev: true
- /ast-walker-scope/0.6.2:
+ ast-walker-scope@0.6.2:
resolution: {integrity: sha512-1UWOyC50xI3QZkRuDj6PqDtpm1oHWtYs+NQGwqL/2R11eN3Q81PHAHPM0SWW3BNQm53UDwS//Jv8L4CCVLM1bQ==}
engines: {node: '>=16.14.0'}
- dependencies:
- '@babel/parser': 7.26.9
- ast-kit: 1.4.2
- /async-function/1.0.0:
+ async-function@1.0.0:
resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
engines: {node: '>= 0.4'}
- dev: true
- /async-sema/3.1.1:
+ async-sema@3.1.1:
resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
- /async/3.2.6:
+ async@3.2.6:
resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
- /asynckit/0.4.0:
+ asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- /atomic-sleep/1.0.0:
+ atomic-sleep@1.0.0:
resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==}
engines: {node: '>=8.0.0'}
- /autoprefixer/10.4.19_postcss@8.4.41:
+ autoprefixer@10.4.19:
resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
- dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001702
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.1.1
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
- dev: true
-
- /autoprefixer/10.4.20_postcss@8.4.41:
- resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
- engines: {node: ^10 || ^12 || >=14}
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001702
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.1.1
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
- dev: true
- /autoprefixer/10.4.20_postcss@8.5.2:
+ autoprefixer@10.4.20:
resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
- dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001702
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.1.1
- postcss: 8.5.2
- postcss-value-parser: 4.2.0
- dev: true
-
- /autoprefixer/10.4.21_postcss@8.5.3:
- resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==}
- engines: {node: ^10 || ^12 || >=14}
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001702
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.1.1
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /available-typed-arrays/1.0.7:
+ available-typed-arrays@1.0.7:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
- dependencies:
- possible-typed-array-names: 1.1.0
- dev: true
- /avvio/9.1.0:
+ avvio@9.1.0:
resolution: {integrity: sha512-fYASnYi600CsH/j9EQov7lECAniYiBFiiAtBNuZYLA2leLe9qOvZzqYHFjtIj6gD2VMoMLP14834LFWvr4IfDw==}
- dependencies:
- '@fastify/error': 4.0.0
- fastq: 1.19.1
axe-core@4.10.3:
resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==}
engines: {node: '>=4'}
- dev: true
axios@1.8.2:
resolution: {integrity: sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==}
- /axobject-query/4.1.0:
+ axobject-query@4.1.0:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
engines: {node: '>= 0.4'}
- /b4a/1.6.7:
+ b4a@1.6.7:
resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
- /babel-loader/9.2.1_36thhkzb4fzrlvycd72b4vi7u4:
+ babel-loader@9.2.1:
resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@babel/core': ^7.12.0
webpack: '>=5'
- dependencies:
- '@babel/core': 7.26.9
- find-cache-dir: 4.0.0
- schema-utils: 4.3.0
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
- /babel-plugin-polyfill-corejs2/0.4.12_@babel+core@7.26.9:
- resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==}
+ babel-plugin-polyfill-corejs2@0.4.13:
+ resolution: {integrity: sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3_@babel+core@7.26.9
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /babel-plugin-polyfill-corejs3/0.10.6_@babel+core@7.26.9:
+ babel-plugin-polyfill-corejs3@0.10.6:
resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3_@babel+core@7.26.9
- core-js-compat: 3.41.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /babel-plugin-polyfill-corejs3/0.11.1_@babel+core@7.26.9:
+ babel-plugin-polyfill-corejs3@0.11.1:
resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3_@babel+core@7.26.9
- core-js-compat: 3.41.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /babel-plugin-polyfill-regenerator/0.6.3_@babel+core@7.26.9:
- resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==}
+ babel-plugin-polyfill-regenerator@0.6.4:
+ resolution: {integrity: sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3_@babel+core@7.26.9
- transitivePeerDependencies:
- - supports-color
- dev: true
- /balanced-match/1.0.2:
+ balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- /bare-events/2.5.4:
+ bare-events@2.5.4:
resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==}
- optional: true
- /bare-fs/2.3.5:
+ bare-fs@2.3.5:
resolution: {integrity: sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==}
- requiresBuild: true
- dependencies:
- bare-events: 2.5.4
- bare-path: 2.1.3
- bare-stream: 2.6.5_bare-events@2.5.4
- transitivePeerDependencies:
- - bare-buffer
- dev: true
- optional: true
- /bare-os/2.4.4:
+ bare-os@2.4.4:
resolution: {integrity: sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==}
- dev: true
- optional: true
- /bare-path/2.1.3:
+ bare-path@2.1.3:
resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==}
- dependencies:
- bare-os: 2.4.4
- dev: true
- optional: true
bare-stream@2.6.5:
resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==}
@@ -11126,229 +5892,119 @@ packages:
optional: true
bare-events:
optional: true
- dependencies:
- bare-events: 2.5.4
- streamx: 2.22.0
- dev: true
- optional: true
- /base64-js/1.5.1:
+ base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- /base64id/2.0.0:
+ base64id@2.0.0:
resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
engines: {node: ^4.5.0 || >= 5.9}
- dev: true
- /basic-ftp/5.0.5:
+ basic-ftp@5.0.5:
resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==}
engines: {node: '>=10.0.0'}
- dev: true
- /batch/0.6.1:
+ batch@0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
- dev: true
- /beasties/0.2.0:
+ beasties@0.2.0:
resolution: {integrity: sha512-Ljqskqx/tbZagIglYoJIMzH5zgssyp+in9+9sAyh15N22AornBeIDnb8EZ6Rk+6ShfMxd92uO3gfpT0NtZbpow==}
engines: {node: '>=14.0.0'}
- dependencies:
- css-select: 5.1.0
- css-what: 6.1.0
- dom-serializer: 2.0.0
- domhandler: 5.0.3
- htmlparser2: 9.1.0
- picocolors: 1.1.1
- postcss: 8.5.3
- postcss-media-query-parser: 0.2.3
- dev: true
- /better-path-resolve/1.0.0:
+ better-path-resolve@1.0.0:
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
engines: {node: '>=4'}
- dependencies:
- is-windows: 1.0.2
- dev: true
- /big.js/5.2.2:
+ big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- dev: true
- /binary-extensions/2.3.0:
+ binary-extensions@2.3.0:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
- /bindings/1.5.0:
+ bindings@1.5.0:
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
- dependencies:
- file-uri-to-path: 1.0.0
- /birpc/0.2.19:
+ birpc@0.2.19:
resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
- /birpc/2.2.0:
- resolution: {integrity: sha512-1/22obknhoj56PcE+pZPp6AbWDdY55M81/ofpPW3Ltlp9Eh4zoFFLswvZmNpRTb790CY5tsNfgbYeNOqIARJfQ==}
- dev: false
-
- /bl/4.1.0:
+ bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
- dependencies:
- buffer: 5.7.1
- inherits: 2.0.4
- readable-stream: 3.6.2
- dev: true
- /body-parser/1.20.3:
+ 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}
- 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
- dev: true
- /bonjour-service/1.3.0:
+ bonjour-service@1.3.0:
resolution: {integrity: sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==}
- dependencies:
- fast-deep-equal: 3.1.3
- multicast-dns: 7.2.5
- dev: true
- /boolbase/1.0.0:
+ boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- /brace-expansion/1.1.11:
+ brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
- dependencies:
- balanced-match: 1.0.2
- concat-map: 0.0.1
- /brace-expansion/2.0.1:
+ brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- dependencies:
- balanced-match: 1.0.2
- /braces/3.0.3:
+ braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- dependencies:
- fill-range: 7.1.1
- /browserslist/4.24.4:
+ browserslist@4.24.4:
resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001702
- electron-to-chromium: 1.5.113
- node-releases: 2.0.19
- update-browserslist-db: 1.1.3_browserslist@4.24.4
- /buffer-crc32/0.2.13:
+ buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
- dev: true
- /buffer-crc32/1.0.0:
+ buffer-crc32@1.0.0:
resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
engines: {node: '>=8.0.0'}
- /buffer-from/1.1.2:
+ buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- /buffer/5.7.1:
+ buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
- dev: true
- /buffer/6.0.3:
+ buffer@6.0.3:
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
- /bundle-name/4.1.0:
+ bundle-name@4.1.0:
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
engines: {node: '>=18'}
- dependencies:
- run-applescript: 7.0.0
- /bundle-require/5.1.0_esbuild@0.24.2:
+ bundle-require@5.1.0:
resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
esbuild: '>=0.18'
- dependencies:
- esbuild: 0.24.2
- load-tsconfig: 0.2.5
- dev: true
- /busboy/1.6.0:
+ busboy@1.6.0:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
- dependencies:
- streamsearch: 1.1.0
- dev: false
- /bytes/3.1.2:
+ bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- dev: true
- /c12/1.11.2:
+ c12@1.11.2:
resolution: {integrity: sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==}
peerDependencies:
magicast: ^0.3.4
peerDependenciesMeta:
magicast:
optional: true
- dependencies:
- chokidar: 3.6.0
- confbox: 0.1.8
- defu: 6.1.4
- dotenv: 16.4.7
- giget: 1.2.5
- jiti: 1.21.7
- mlly: 1.7.4
- ohash: 1.1.6
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- rc9: 2.1.2
- dev: true
- /c12/2.0.1:
+ c12@2.0.1:
resolution: {integrity: sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A==}
peerDependencies:
magicast: ^0.3.5
peerDependenciesMeta:
magicast:
optional: true
- dependencies:
- chokidar: 4.0.3
- confbox: 0.1.8
- defu: 6.1.4
- dotenv: 16.4.7
- giget: 1.2.5
- jiti: 2.4.2
- mlly: 1.7.4
- ohash: 1.1.6
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- rc9: 2.1.2
c12@3.0.2:
resolution: {integrity: sha512-6Tzk1/TNeI3WBPpK0j/Ss4+gPj3PUJYbWl/MWDJBThFvwNGNkXtd7Cz8BJtD4aRwoGHtzQD0SnxamgUiBH0/Nw==}
@@ -11362,415 +6018,246 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- /cacache/19.0.1:
+ cacache@19.0.1:
resolution: {integrity: sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@npmcli/fs': 4.0.0
- fs-minipass: 3.0.3
- glob: 10.4.5
- lru-cache: 10.4.3
- minipass: 7.1.2
- minipass-collect: 2.0.1
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- p-map: 7.0.3
- ssri: 12.0.0
- tar: 7.4.3
- unique-filename: 4.0.0
- dev: true
call-bind-apply-helpers@1.0.2:
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
engines: {node: '>= 0.4'}
- dependencies:
- es-errors: 1.3.0
- function-bind: 1.1.2
- /call-bind/1.0.8:
+ call-bind@1.0.8:
resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind-apply-helpers: 1.0.2
- es-define-property: 1.0.1
- get-intrinsic: 1.3.0
- set-function-length: 1.2.2
- dev: true
call-bound@1.0.4:
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind-apply-helpers: 1.0.2
- get-intrinsic: 1.3.0
- dev: true
- /callsites/3.1.0:
+ callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- dev: true
- /camelcase-css/2.0.1:
+ camelcase-css@2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
- dev: true
- /caniuse-api/3.0.0:
+ caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001702
- lodash.memoize: 4.1.2
- lodash.uniq: 4.5.0
-
- caniuse-lite@1.0.30001703:
- resolution: {integrity: sha512-kRlAGTRWgPsOj7oARC9m1okJEXdL/8fekFVcxA8Hl7GH4r/sN4OJn/i6Flde373T50KS7Y37oFbMwlE8+F42kQ==}
- caniuse-lite@1.0.30001709:
- resolution: {integrity: sha512-NgL3vUTnDrPCZ3zTahp4fsugQ4dc7EKTSzwQDPEel6DMoMnfH2jhry9n2Zm8onbSR+f/QtKHFOA+iAQu4kbtWA==}
+ caniuse-lite@1.0.30001707:
+ resolution: {integrity: sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw==}
- /ccount/2.0.1:
+ ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- dev: true
- /chai/4.5.0:
+ chai@4.5.0:
resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==}
engines: {node: '>=4'}
- dependencies:
- assertion-error: 1.1.0
- check-error: 1.0.3
- deep-eql: 4.1.4
- get-func-name: 2.0.2
- loupe: 2.3.7
- pathval: 1.1.1
- type-detect: 4.1.0
- dev: true
- /chalk/4.1.2:
+ chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
- /chalk/5.4.1:
+ chalk@5.4.1:
resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
- dev: true
-
- /change-case/5.4.4:
- resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==}
- /char-regex/1.0.2:
+ char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
- dev: true
- /character-entities-html4/2.1.0:
+ character-entities-html4@2.1.0:
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
- dev: true
- /character-entities-legacy/3.0.0:
+ character-entities-legacy@3.0.0:
resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
- dev: true
- /chardet/0.7.0:
+ chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
- dev: true
- /check-error/1.0.3:
+ check-error@1.0.3:
resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
- dependencies:
- get-func-name: 2.0.2
- dev: true
- /chokidar/3.6.0:
+ chokidar@3.6.0:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.3
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
- /chokidar/4.0.3:
+ chokidar@4.0.3:
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
- dependencies:
- readdirp: 4.1.2
- /chownr/2.0.0:
+ chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
- /chownr/3.0.0:
+ chownr@3.0.0:
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
engines: {node: '>=18'}
- /chrome-trace-event/1.0.4:
+ chrome-trace-event@1.0.4:
resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
- dev: true
- /chromium-bidi/0.5.24_c4f7xbigk5ph7wwb2u23nrsx5q:
+ chromium-bidi@0.5.24:
resolution: {integrity: sha512-5xQNN2SVBdZv4TxeMLaI+PelrnZsHDhn8h2JtyriLr+0qHcZS8BMuo93qN6J1VmtmrgYP+rmcLHcbpnA8QJh+w==}
peerDependencies:
devtools-protocol: '*'
- dependencies:
- devtools-protocol: 0.0.1299070
- mitt: 3.0.1
- urlpattern-polyfill: 10.0.0
- zod: 3.23.8
- dev: true
- /ci-info/3.9.0:
+ ci-info@3.9.0:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
- dev: true
- /citty/0.1.6:
+ citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
- dependencies:
- consola: 3.4.0
cjs-module-lexer@1.4.3:
resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==}
- /classnames/2.5.1:
+ classnames@2.5.1:
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
- dev: false
- /clear/0.1.0:
+ clear@0.1.0:
resolution: {integrity: sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw==}
- /cli-cursor/3.1.0:
+ cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
- dependencies:
- restore-cursor: 3.1.0
- dev: true
- /cli-cursor/5.0.0:
+ cli-cursor@5.0.0:
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
engines: {node: '>=18'}
- dependencies:
- restore-cursor: 5.1.0
- dev: true
- /cli-highlight/2.1.11:
+ cli-highlight@2.1.11:
resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==}
engines: {node: '>=8.0.0', npm: '>=5.0.0'}
hasBin: true
- dependencies:
- chalk: 4.1.2
- highlight.js: 10.7.3
- mz: 2.7.0
- parse5: 5.1.1
- parse5-htmlparser2-tree-adapter: 6.0.1
- yargs: 16.2.0
- dev: true
- /cli-spinners/2.9.2:
+ cli-spinners@2.9.2:
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
- dev: true
- /cli-table3/0.6.5:
+ cli-table3@0.6.5:
resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
engines: {node: 10.* || >= 12.*}
- dependencies:
- string-width: 4.2.3
- optionalDependencies:
- '@colors/colors': 1.5.0
- dev: true
- /cli-truncate/4.0.0:
+ cli-truncate@4.0.0:
resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==}
engines: {node: '>=18'}
- dependencies:
- slice-ansi: 5.0.0
- string-width: 7.2.0
- dev: true
- /cli-width/4.1.0:
+ cli-width@4.1.0:
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
engines: {node: '>= 12'}
- dev: true
- /client-only/0.0.1:
+ client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
- dev: false
- /clipboardy/4.0.0:
+ clipboardy@4.0.0:
resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==}
engines: {node: '>=18'}
- dependencies:
- execa: 8.0.1
- is-wsl: 3.1.0
- is64bit: 2.0.0
- /cliui/7.0.4:
+ cliui@7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
- dev: true
- /cliui/8.0.1:
+ cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
- /clone-deep/4.0.1:
+ clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
- dependencies:
- is-plain-object: 2.0.4
- kind-of: 6.0.3
- shallow-clone: 3.0.1
- dev: true
- /clone/1.0.4:
+ clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
- dev: true
- /clsx/2.1.1:
+ clsx@2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
- /cluster-key-slot/1.1.2:
+ cluster-key-slot@1.1.2:
resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
engines: {node: '>=0.10.0'}
- /color-convert/2.0.1:
+ color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- dependencies:
- color-name: 1.1.4
- /color-name/1.1.4:
+ color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- /color-string/1.9.1:
+ color-string@1.9.1:
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
- dependencies:
- color-name: 1.1.4
- simple-swizzle: 0.2.2
- /color/4.2.3:
+ color@4.2.3:
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
engines: {node: '>=12.5.0'}
- dependencies:
- color-convert: 2.0.1
- color-string: 1.9.1
- /colord/2.9.3:
+ colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
- /colorette/1.4.0:
- resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
-
- /colorette/2.0.20:
+ colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
- dev: true
- /combined-stream/1.0.8:
+ combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
- dependencies:
- delayed-stream: 1.0.0
- /comma-separated-tokens/2.0.3:
+ comma-separated-tokens@2.0.3:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
- dev: true
- /commander/10.0.1:
+ commander@10.0.1:
resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
engines: {node: '>=14'}
- dev: true
- /commander/12.1.0:
+ commander@12.1.0:
resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
engines: {node: '>=18'}
- dev: true
- /commander/13.0.0:
+ commander@13.0.0:
resolution: {integrity: sha512-oPYleIY8wmTVzkvQq10AEok6YcTC4sRUBl8F9gVuwchGVUCTbl/vhLTaQqutuuySYOsu8YTgV+OxKc/8Yvx+mQ==}
engines: {node: '>=18'}
- dev: false
- /commander/2.20.3:
+ commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- /commander/4.1.1:
+ commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'}
- dev: true
- /commander/7.2.0:
+ commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
- /commander/8.3.0:
+ commander@8.3.0:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
- /common-path-prefix/3.0.0:
+ common-path-prefix@3.0.0:
resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
- dev: true
- /commondir/1.0.1:
+ commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- /compatx/0.1.8:
+ compatx@0.1.8:
resolution: {integrity: sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==}
- /compress-commons/6.0.2:
+ compress-commons@6.0.2:
resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==}
engines: {node: '>= 14'}
- dependencies:
- crc-32: 1.2.2
- crc32-stream: 6.0.0
- is-stream: 2.0.1
- normalize-path: 3.0.0
- readable-stream: 4.7.0
- /compressible/2.0.18:
+ compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
- dependencies:
- mime-db: 1.53.0
- dev: true
- /compression/1.8.0:
+ compression@1.8.0:
resolution: {integrity: sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==}
engines: {node: '>= 0.8.0'}
- dependencies:
- bytes: 3.1.2
- compressible: 2.0.18
- debug: 2.6.9
- negotiator: 0.6.4
- on-headers: 1.0.2
- safe-buffer: 5.2.1
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
- dev: true
- /concat-map/0.0.1:
+ concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- /confbox/0.1.8:
+ confbox@0.1.8:
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
confbox@0.2.1:
@@ -11779,54 +6266,33 @@ packages:
config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
- /config-chain/1.1.13:
- resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
- dependencies:
- ini: 1.3.8
- proto-list: 1.2.4
- dev: true
-
- /connect-history-api-fallback/2.0.0:
+ connect-history-api-fallback@2.0.0:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
engines: {node: '>=0.8'}
- dev: true
- /connect/3.7.0:
+ connect@3.7.0:
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
engines: {node: '>= 0.10.0'}
- dependencies:
- debug: 2.6.9
- finalhandler: 1.1.2
- parseurl: 1.3.3
- utils-merge: 1.0.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /consola/3.4.0:
- resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==}
+ consola@3.4.2:
+ resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
engines: {node: ^14.18.0 || >=16.10.0}
- /content-disposition/0.5.4:
+ content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
- dependencies:
- safe-buffer: 5.2.1
- dev: true
- /content-type/1.0.5:
+ content-type@1.0.5:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
- dev: true
- /convert-source-map/1.9.0:
+ convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
- dev: true
- /convert-source-map/2.0.0:
+ convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- /cookie-es/1.2.2:
+ cookie-es@1.2.2:
resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
cookie-es@2.0.0:
@@ -11835,73 +6301,46 @@ packages:
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- /cookie-signature/1.0.6:
- resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- dev: true
-
- /cookie/0.6.0:
+ cookie@0.6.0:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
- dev: true
- /cookie/0.7.1:
+ cookie@0.7.1:
resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
- dev: true
- /cookie/0.7.2:
+ cookie@0.7.2:
resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
engines: {node: '>= 0.6'}
- dev: true
- /cookie/1.0.2:
+ cookie@1.0.2:
resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==}
engines: {node: '>=18'}
- /copy-anything/2.0.6:
+ copy-anything@2.0.6:
resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
- dependencies:
- is-what: 3.14.1
- /copy-anything/3.0.5:
+ copy-anything@3.0.5:
resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
engines: {node: '>=12.13'}
- dependencies:
- is-what: 4.1.16
- /copy-webpack-plugin/12.0.2_webpack@5.98.0:
+ copy-webpack-plugin@12.0.2:
resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
webpack: ^5.1.0
- dependencies:
- fast-glob: 3.3.3
- glob-parent: 6.0.2
- globby: 14.1.0
- normalize-path: 3.0.0
- schema-utils: 4.3.0
- serialize-javascript: 6.0.2
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
- /core-js-compat/3.41.0:
+ core-js-compat@3.41.0:
resolution: {integrity: sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==}
- dependencies:
- browserslist: 4.24.4
- dev: true
- /core-util-is/1.0.3:
+ core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- /cors/2.8.5:
+ cors@2.8.5:
resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
engines: {node: '>= 0.10'}
- dependencies:
- object-assign: 4.1.1
- vary: 1.1.2
- dev: true
- /cosmiconfig/9.0.0_typescript@5.5.3:
+ cosmiconfig@9.0.0:
resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
engines: {node: '>=14'}
peerDependencies:
@@ -11909,75 +6348,48 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- env-paths: 2.2.1
- import-fresh: 3.3.1
- js-yaml: 4.1.0
- parse-json: 5.2.0
- typescript: 5.5.3
- dev: true
- /crc-32/1.2.2:
+ crc-32@1.2.2:
resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
engines: {node: '>=0.8'}
hasBin: true
- /crc32-stream/6.0.0:
+ crc32-stream@6.0.0:
resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==}
engines: {node: '>= 14'}
- dependencies:
- crc-32: 1.2.2
- readable-stream: 4.7.0
- /create-require/1.1.1:
+ create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
- dev: true
- /croner/9.0.0:
+ croner@9.0.0:
resolution: {integrity: sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==}
engines: {node: '>=18.0'}
- cronstrue@2.56.0:
- resolution: {integrity: sha512-/YC3b4D/E/S8ToQ7f676A2fqoC3vVpXKjJ4SMsP0jYsvRYJdZ6h9+Fq/Y7FoFDEUFCqLTca+G2qTV227lyyFZg==}
+ cronstrue@2.57.0:
+ resolution: {integrity: sha512-gQOfxJa1RA9uDT4hx37NshhX4dW9t9zTCtIYu15LUziH+mkpuLXYcSEyM8ZewMJ2p8UVuHGjI3n4hGpu3HtCbg==}
hasBin: true
- /cross-spawn/5.1.0:
+ cross-spawn@5.1.0:
resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
- dependencies:
- lru-cache: 4.1.5
- shebang-command: 1.2.0
- which: 1.3.1
- dev: true
- /cross-spawn/7.0.5:
+ cross-spawn@7.0.5:
resolution: {integrity: sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==}
engines: {node: '>= 8'}
- dependencies:
- path-key: 3.1.1
- shebang-command: 2.0.0
- which: 2.0.2
- dev: true
- /cross-spawn/7.0.6:
+ cross-spawn@7.0.6:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
- dependencies:
- path-key: 3.1.1
- shebang-command: 2.0.0
- which: 2.0.2
crossws@0.3.4:
resolution: {integrity: sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==}
- /css-declaration-sorter/7.2.0_postcss@8.5.3:
+ css-declaration-sorter@7.2.0:
resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.0.9
- dependencies:
- postcss: 8.5.3
- /css-loader/7.1.2_webpack@5.98.0:
+ css-loader@7.1.2:
resolution: {integrity: sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
@@ -11988,183 +6400,92 @@ packages:
optional: true
webpack:
optional: true
- dependencies:
- icss-utils: 5.1.0_postcss@8.5.3
- postcss: 8.5.3
- postcss-modules-extract-imports: 3.1.0_postcss@8.5.3
- postcss-modules-local-by-default: 4.2.0_postcss@8.5.3
- postcss-modules-scope: 3.2.1_postcss@8.5.3
- postcss-modules-values: 4.0.0_postcss@8.5.3
- postcss-value-parser: 4.2.0
- semver: 7.7.1
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
- /css-select/5.1.0:
+ css-select@5.1.0:
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
- dependencies:
- boolbase: 1.0.0
- css-what: 6.1.0
- domhandler: 5.0.3
- domutils: 3.2.2
- nth-check: 2.1.1
- /css-tree/2.2.1:
+ css-tree@2.2.1:
resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
- dependencies:
- mdn-data: 2.0.28
- source-map-js: 1.2.1
- /css-tree/2.3.1:
+ css-tree@2.3.1:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
- dependencies:
- mdn-data: 2.0.30
- source-map-js: 1.2.1
- /css-what/6.1.0:
+ css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
- /cssesc/3.0.0:
+ cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- /cssnano-preset-default/7.0.6_postcss@8.5.3:
+ cssnano-preset-default@7.0.6:
resolution: {integrity: sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- browserslist: 4.24.4
- css-declaration-sorter: 7.2.0_postcss@8.5.3
- cssnano-utils: 5.0.0_postcss@8.5.3
- postcss: 8.5.3
- postcss-calc: 10.1.1_postcss@8.5.3
- postcss-colormin: 7.0.2_postcss@8.5.3
- postcss-convert-values: 7.0.4_postcss@8.5.3
- postcss-discard-comments: 7.0.3_postcss@8.5.3
- postcss-discard-duplicates: 7.0.1_postcss@8.5.3
- postcss-discard-empty: 7.0.0_postcss@8.5.3
- postcss-discard-overridden: 7.0.0_postcss@8.5.3
- postcss-merge-longhand: 7.0.4_postcss@8.5.3
- postcss-merge-rules: 7.0.4_postcss@8.5.3
- postcss-minify-font-values: 7.0.0_postcss@8.5.3
- postcss-minify-gradients: 7.0.0_postcss@8.5.3
- postcss-minify-params: 7.0.2_postcss@8.5.3
- postcss-minify-selectors: 7.0.4_postcss@8.5.3
- postcss-normalize-charset: 7.0.0_postcss@8.5.3
- postcss-normalize-display-values: 7.0.0_postcss@8.5.3
- postcss-normalize-positions: 7.0.0_postcss@8.5.3
- postcss-normalize-repeat-style: 7.0.0_postcss@8.5.3
- postcss-normalize-string: 7.0.0_postcss@8.5.3
- postcss-normalize-timing-functions: 7.0.0_postcss@8.5.3
- postcss-normalize-unicode: 7.0.2_postcss@8.5.3
- postcss-normalize-url: 7.0.0_postcss@8.5.3
- postcss-normalize-whitespace: 7.0.0_postcss@8.5.3
- postcss-ordered-values: 7.0.1_postcss@8.5.3
- postcss-reduce-initial: 7.0.2_postcss@8.5.3
- postcss-reduce-transforms: 7.0.0_postcss@8.5.3
- postcss-svgo: 7.0.1_postcss@8.5.3
- postcss-unique-selectors: 7.0.3_postcss@8.5.3
-
- /cssnano-utils/5.0.0_postcss@8.5.3:
+
+ cssnano-utils@5.0.0:
resolution: {integrity: sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- /cssnano/7.0.6_postcss@8.5.3:
+ cssnano@7.0.6:
resolution: {integrity: sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- cssnano-preset-default: 7.0.6_postcss@8.5.3
- lilconfig: 3.1.3
- postcss: 8.5.3
- /csso/5.0.5:
+ 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'}
- dependencies:
- css-tree: 2.2.1
- /cssstyle/3.0.0:
+ cssstyle@3.0.0:
resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==}
engines: {node: '>=14'}
- dependencies:
- rrweb-cssom: 0.6.0
- dev: true
- /csstype/3.1.3:
+ csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- /custom-event/1.0.1:
+ custom-event@1.0.1:
resolution: {integrity: sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==}
- dev: true
- /damerau-levenshtein/1.0.8:
+ damerau-levenshtein@1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
- dev: true
- /data-uri-to-buffer/4.0.1:
+ data-uri-to-buffer@4.0.1:
resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
engines: {node: '>= 12'}
- dev: true
- /data-uri-to-buffer/6.0.2:
+ data-uri-to-buffer@6.0.2:
resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==}
engines: {node: '>= 14'}
- dev: true
- /data-urls/5.0.0:
+ data-urls@5.0.0:
resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
engines: {node: '>=18'}
- dependencies:
- whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.1
- dev: true
- /data-view-buffer/1.0.2:
+ data-view-buffer@1.0.2:
resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- is-data-view: 1.0.2
- dev: true
- /data-view-byte-length/1.0.2:
+ data-view-byte-length@1.0.2:
resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- is-data-view: 1.0.2
- dev: true
- /data-view-byte-offset/1.0.1:
+ data-view-byte-offset@1.0.1:
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- is-data-view: 1.0.2
- dev: true
- /dataloader/1.4.0:
+ dataloader@1.4.0:
resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==}
- dev: true
- /date-format/4.0.14:
+ date-format@4.0.14:
resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==}
engines: {node: '>=4.0'}
- dev: true
db0@0.3.1:
resolution: {integrity: sha512-3RogPLE2LLq6t4YiFCREyl572aBjkfMvfwPyN51df00TbPbryL3XqBYuJ/j6mgPssPK8AKfYdLxizaO5UG10sA==}
@@ -12189,32 +6510,26 @@ packages:
sqlite3:
optional: true
- /de-indent/1.0.2:
+ de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
- dev: true
- /debug/2.6.9:
+ debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
- dependencies:
- ms: 2.0.0
- /debug/3.2.7:
+ debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
- dependencies:
- ms: 2.1.3
- dev: true
- /debug/4.3.4:
+ debug@4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -12222,11 +6537,8 @@ packages:
peerDependenciesMeta:
supports-color:
optional: true
- dependencies:
- ms: 2.1.2
- dev: true
- /debug/4.3.7:
+ debug@4.3.7:
resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -12234,22 +6546,8 @@ packages:
peerDependenciesMeta:
supports-color:
optional: true
- dependencies:
- ms: 2.1.3
- dev: true
-
- /debug/4.4.0:
- resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
- dependencies:
- ms: 2.1.3
- /debug/4.4.0_supports-color@9.4.0:
+ debug@4.4.0:
resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -12257,399 +6555,268 @@ packages:
peerDependenciesMeta:
supports-color:
optional: true
- dependencies:
- ms: 2.1.3
- supports-color: 9.4.0
- /decimal.js/10.5.0:
+ decimal.js@10.5.0:
resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==}
- dev: true
- /deep-eql/4.1.4:
+ deep-eql@4.1.4:
resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
engines: {node: '>=6'}
- dependencies:
- type-detect: 4.1.0
- dev: true
- /deep-is/0.1.4:
+ deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- dev: true
- /deepmerge/4.3.1:
+ deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- /default-browser-id/5.0.0:
+ default-browser-id@5.0.0:
resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
engines: {node: '>=18'}
- /default-browser/5.2.1:
+ default-browser@5.2.1:
resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
engines: {node: '>=18'}
- dependencies:
- bundle-name: 4.1.0
- default-browser-id: 5.0.0
- /defaults/1.0.4:
+ defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
- dependencies:
- clone: 1.0.4
- dev: true
- /define-data-property/1.1.4:
+ define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
- dependencies:
- es-define-property: 1.0.1
- es-errors: 1.3.0
- gopd: 1.2.0
- dev: true
- /define-lazy-prop/2.0.0:
+ define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
- /define-lazy-prop/3.0.0:
+ define-lazy-prop@3.0.0:
resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
engines: {node: '>=12'}
- /define-properties/1.2.1:
+ define-properties@1.2.1:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
- dependencies:
- define-data-property: 1.1.4
- has-property-descriptors: 1.0.2
- object-keys: 1.1.1
- dev: true
- /defu/6.1.4:
+ defu@6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
- /degenerator/5.0.1:
+ degenerator@5.0.1:
resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
engines: {node: '>= 14'}
- dependencies:
- ast-types: 0.13.4
- escodegen: 2.1.0
- esprima: 4.0.1
- dev: true
- /delayed-stream/1.0.0:
+ delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
- /denque/2.1.0:
+ denque@2.1.0:
resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==}
engines: {node: '>=0.10'}
- /depd/1.1.2:
+ depd@1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
- dev: true
- /depd/2.0.0:
+ depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- /dequal/2.0.3:
+ dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- /destr/2.0.3:
+ destr@2.0.3:
resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==}
- /destroy/1.2.0:
+ destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- /detect-indent/6.1.0:
+ detect-indent@6.1.0:
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
engines: {node: '>=8'}
- dev: true
- /detect-libc/1.0.3:
+ detect-libc@1.0.3:
resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
engines: {node: '>=0.10'}
hasBin: true
- /detect-libc/2.0.3:
+ detect-libc@2.0.3:
resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
- /detect-node-es/1.1.0:
+ detect-node-es@1.1.0:
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
- dev: false
- /detect-node/2.1.0:
+ detect-node@2.1.0:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
- dev: true
- /devalue/5.1.1:
+ devalue@5.1.1:
resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==}
- /devlop/1.1.0:
+ devlop@1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
- dependencies:
- dequal: 2.0.3
- dev: true
- /devtools-protocol/0.0.1299070:
+ devtools-protocol@0.0.1299070:
resolution: {integrity: sha512-+qtL3eX50qsJ7c+qVyagqi7AWMoQCBGNfoyJZMwm/NSXVqLYbuitrWEEIzxfUmTNy7//Xe8yhMmQ+elj3uAqSg==}
- dev: true
- /di/0.0.1:
+ di@0.0.1:
resolution: {integrity: sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==}
- dev: true
- /didyoumean/1.2.2:
+ didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- dev: true
- /diff-sequences/29.6.3:
+ diff-sequences@29.6.3:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dev: true
- /diff/4.0.2:
+ diff@4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
- dev: true
- /diff/7.0.0:
+ diff@7.0.0:
resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
engines: {node: '>=0.3.1'}
- /dir-glob/3.0.1:
+ dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
- dependencies:
- path-type: 4.0.0
- dev: true
- /dlv/1.1.3:
+ dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- dev: true
- /dns-packet/5.6.1:
+ dns-packet@5.6.1:
resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==}
engines: {node: '>=6'}
- dependencies:
- '@leichtgewicht/ip-codec': 2.0.5
- dev: true
- /doctrine/2.1.0:
+ doctrine@2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
- dependencies:
- esutils: 2.0.3
- dev: true
- /dom-serialize/2.2.1:
+ dom-serialize@2.2.1:
resolution: {integrity: sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==}
- dependencies:
- custom-event: 1.0.1
- ent: 2.2.2
- extend: 3.0.2
- void-elements: 2.0.1
- dev: true
- /dom-serializer/2.0.0:
+ dom-serializer@2.0.0:
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
- dependencies:
- domelementtype: 2.3.0
- domhandler: 5.0.3
- entities: 4.5.0
- /domelementtype/2.3.0:
+ domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
- /domhandler/5.0.3:
+ domhandler@5.0.3:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
- dependencies:
- domelementtype: 2.3.0
- /domutils/3.2.2:
+ domutils@3.2.2:
resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
- dependencies:
- dom-serializer: 2.0.0
- domelementtype: 2.3.0
- domhandler: 5.0.3
- /dot-prop/9.0.0:
+ dot-prop@9.0.0:
resolution: {integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==}
engines: {node: '>=18'}
- dependencies:
- type-fest: 4.37.0
- /dotenv/16.4.7:
+ dotenv@16.4.7:
resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
engines: {node: '>=12'}
- /dotenv/8.6.0:
+ dotenv@8.6.0:
resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
engines: {node: '>=10'}
- dev: true
- /dunder-proto/1.0.1:
+ dunder-proto@1.0.1:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind-apply-helpers: 1.0.2
- es-errors: 1.3.0
- gopd: 1.2.0
- /duplexer/0.1.2:
+ duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- /eastasianwidth/0.2.0:
+ eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- /editorconfig/1.0.4:
+ editorconfig@1.0.4:
resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==}
engines: {node: '>=14'}
hasBin: true
- dependencies:
- '@one-ini/wasm': 0.1.1
- commander: 10.0.1
- minimatch: 9.0.1
- semver: 7.7.1
- dev: true
- /ee-first/1.1.1:
+ ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.114:
- resolution: {integrity: sha512-DFptFef3iktoKlFQK/afbo274/XNWD00Am0xa7M8FZUepHlHT8PEuiNBoRfFHbH1okqN58AlhbJ4QTkcnXorjA==}
+ electron-to-chromium@1.5.126:
+ resolution: {integrity: sha512-AtH1uLcTC72LA4vfYcEJJkrMk/MY/X0ub8Hv7QGAePW2JkeUFHEL/QfS4J77R6M87Sss8O0OcqReSaN1bpyA+Q==}
- /emoji-regex-xs/1.0.0:
+ emoji-regex-xs@1.0.0:
resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
- dev: true
- /emoji-regex/10.4.0:
+ emoji-regex@10.4.0:
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
- dev: true
- /emoji-regex/8.0.0:
+ emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- /emoji-regex/9.2.2:
+ emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- /emojilib/2.4.0:
+ emojilib@2.4.0:
resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==}
- dev: true
- /emojis-list/3.0.0:
+ emojis-list@3.0.0:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
- dev: true
- /encodeurl/1.0.2:
+ encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
- /encodeurl/2.0.0:
+ encodeurl@2.0.0:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
- /encoding/0.1.13:
+ encoding@0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
- requiresBuild: true
- dependencies:
- iconv-lite: 0.6.3
- dev: true
- optional: true
- /end-of-stream/1.4.4:
+ end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- dependencies:
- once: 1.4.0
- dev: true
- /engine.io-parser/5.2.3:
+ engine.io-parser@5.2.3:
resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==}
engines: {node: '>=10.0.0'}
- dev: true
- /engine.io/6.6.4:
+ engine.io@6.6.4:
resolution: {integrity: sha512-ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g==}
engines: {node: '>=10.2.0'}
- dependencies:
- '@types/cors': 2.8.17
- '@types/node': 22.13.10
- accepts: 1.3.8
- base64id: 2.0.0
- cookie: 0.7.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
- dev: true
enhanced-resolve@5.18.1:
resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
engines: {node: '>=10.13.0'}
- dependencies:
- graceful-fs: 4.2.11
- tapable: 2.2.1
- /enquirer/2.4.1:
+ enquirer@2.4.1:
resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
engines: {node: '>=8.6'}
- dependencies:
- ansi-colors: 4.1.3
- strip-ansi: 6.0.1
- dev: true
- /ent/2.2.2:
+ ent@2.2.2:
resolution: {integrity: sha512-kKvD1tO6BM+oK9HzCPpUdRb4vKFQY/FPTFmurMvh6LlN68VMrdj77w8yp51/kDbpkFOS9J8w5W6zIzgM2H8/hw==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- punycode: 1.4.1
- safe-regex-test: 1.1.0
- dev: true
- /entities/4.5.0:
+ entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
- /env-paths/2.2.1:
+ env-paths@2.2.1:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
- dev: true
- /environment/1.1.0:
+ environment@1.1.0:
resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
engines: {node: '>=18'}
- dev: true
- /err-code/2.0.3:
+ err-code@2.0.3:
resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
- dev: true
- /errno/0.1.8:
+ errno@0.1.8:
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
hasBin: true
- requiresBuild: true
- dependencies:
- prr: 1.0.1
- optional: true
- /error-ex/1.3.2:
+ error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- dependencies:
- is-arrayish: 0.2.1
- dev: true
- /error-stack-parser-es/0.1.5:
+ error-stack-parser-es@0.1.5:
resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==}
error-stack-parser-es@1.0.5:
@@ -12658,129 +6825,45 @@ packages:
errx@0.1.0:
resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
- /es-abstract/1.23.9:
+ es-abstract@1.23.9:
resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
engines: {node: '>= 0.4'}
- dependencies:
- array-buffer-byte-length: 1.0.2
- arraybuffer.prototype.slice: 1.0.4
- available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- call-bound: 1.0.4
- data-view-buffer: 1.0.2
- data-view-byte-length: 1.0.2
- data-view-byte-offset: 1.0.1
- es-define-property: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- es-set-tostringtag: 2.1.0
- es-to-primitive: 1.3.0
- function.prototype.name: 1.1.8
- get-intrinsic: 1.3.0
- get-proto: 1.0.1
- get-symbol-description: 1.1.0
- globalthis: 1.0.4
- gopd: 1.2.0
- has-property-descriptors: 1.0.2
- has-proto: 1.2.0
- has-symbols: 1.1.0
- hasown: 2.0.2
- internal-slot: 1.1.0
- is-array-buffer: 3.0.5
- is-callable: 1.2.7
- is-data-view: 1.0.2
- is-regex: 1.2.1
- is-shared-array-buffer: 1.0.4
- is-string: 1.1.1
- is-typed-array: 1.1.15
- is-weakref: 1.1.1
- math-intrinsics: 1.1.0
- object-inspect: 1.13.4
- object-keys: 1.1.1
- object.assign: 4.1.7
- own-keys: 1.0.1
- regexp.prototype.flags: 1.5.4
- safe-array-concat: 1.1.3
- safe-push-apply: 1.0.0
- safe-regex-test: 1.1.0
- set-proto: 1.0.0
- string.prototype.trim: 1.2.10
- string.prototype.trimend: 1.0.9
- string.prototype.trimstart: 1.0.8
- typed-array-buffer: 1.0.3
- typed-array-byte-length: 1.0.3
- typed-array-byte-offset: 1.0.4
- typed-array-length: 1.0.7
- unbox-primitive: 1.1.0
- which-typed-array: 1.1.19
- dev: true
- /es-define-property/1.0.1:
+ es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
- /es-errors/1.3.0:
+ es-errors@1.3.0:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- /es-iterator-helpers/1.2.1:
+ es-iterator-helpers@1.2.1:
resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.4
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- es-set-tostringtag: 2.1.0
- function-bind: 1.1.2
- get-intrinsic: 1.3.0
- globalthis: 1.0.4
- gopd: 1.2.0
- has-property-descriptors: 1.0.2
- has-proto: 1.2.0
- has-symbols: 1.1.0
- internal-slot: 1.1.0
- iterator.prototype: 1.1.5
- safe-array-concat: 1.1.3
- dev: true
- /es-module-lexer/1.6.0:
+ es-module-lexer@1.6.0:
resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
- /es-object-atoms/1.1.1:
+ es-object-atoms@1.1.1:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
engines: {node: '>= 0.4'}
- dependencies:
- es-errors: 1.3.0
- /es-set-tostringtag/2.1.0:
+ es-set-tostringtag@2.1.0:
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
engines: {node: '>= 0.4'}
- dependencies:
- es-errors: 1.3.0
- get-intrinsic: 1.3.0
- has-tostringtag: 1.0.2
- hasown: 2.0.2
es-shim-unscopables@1.1.0:
resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==}
engines: {node: '>= 0.4'}
- /es-to-primitive/1.3.0:
+ es-to-primitive@1.3.0:
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
- dependencies:
- is-callable: 1.2.7
- is-date-object: 1.1.0
- is-symbol: 1.1.1
- dev: true
- /esbuild-wasm/0.25.0:
+ esbuild-wasm@0.25.0:
resolution: {integrity: sha512-60iuWr6jdTVylmGXjpnqk3pCktUi5Rmjiv6EMza3h4X20BLtfL2BjUGs1+UCt2G9UK7jVGrJdUr5i1k0sL3wBg==}
engines: {node: '>=18'}
hasBin: true
- dev: true
esbuild@0.19.12:
resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
@@ -12791,98 +6874,19 @@ packages:
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
engines: {node: '>=12'}
hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.21.5
- '@esbuild/android-arm': 0.21.5
- '@esbuild/android-arm64': 0.21.5
- '@esbuild/android-x64': 0.21.5
- '@esbuild/darwin-arm64': 0.21.5
- '@esbuild/darwin-x64': 0.21.5
- '@esbuild/freebsd-arm64': 0.21.5
- '@esbuild/freebsd-x64': 0.21.5
- '@esbuild/linux-arm': 0.21.5
- '@esbuild/linux-arm64': 0.21.5
- '@esbuild/linux-ia32': 0.21.5
- '@esbuild/linux-loong64': 0.21.5
- '@esbuild/linux-mips64el': 0.21.5
- '@esbuild/linux-ppc64': 0.21.5
- '@esbuild/linux-riscv64': 0.21.5
- '@esbuild/linux-s390x': 0.21.5
- '@esbuild/linux-x64': 0.21.5
- '@esbuild/netbsd-x64': 0.21.5
- '@esbuild/openbsd-x64': 0.21.5
- '@esbuild/sunos-x64': 0.21.5
- '@esbuild/win32-arm64': 0.21.5
- '@esbuild/win32-ia32': 0.21.5
- '@esbuild/win32-x64': 0.21.5
- /esbuild/0.24.2:
+ esbuild@0.24.2:
resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
engines: {node: '>=18'}
hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.24.2
- '@esbuild/android-arm': 0.24.2
- '@esbuild/android-arm64': 0.24.2
- '@esbuild/android-x64': 0.24.2
- '@esbuild/darwin-arm64': 0.24.2
- '@esbuild/darwin-x64': 0.24.2
- '@esbuild/freebsd-arm64': 0.24.2
- '@esbuild/freebsd-x64': 0.24.2
- '@esbuild/linux-arm': 0.24.2
- '@esbuild/linux-arm64': 0.24.2
- '@esbuild/linux-ia32': 0.24.2
- '@esbuild/linux-loong64': 0.24.2
- '@esbuild/linux-mips64el': 0.24.2
- '@esbuild/linux-ppc64': 0.24.2
- '@esbuild/linux-riscv64': 0.24.2
- '@esbuild/linux-s390x': 0.24.2
- '@esbuild/linux-x64': 0.24.2
- '@esbuild/netbsd-arm64': 0.24.2
- '@esbuild/netbsd-x64': 0.24.2
- '@esbuild/openbsd-arm64': 0.24.2
- '@esbuild/openbsd-x64': 0.24.2
- '@esbuild/sunos-x64': 0.24.2
- '@esbuild/win32-arm64': 0.24.2
- '@esbuild/win32-ia32': 0.24.2
- '@esbuild/win32-x64': 0.24.2
- /esbuild/0.25.0:
+ esbuild@0.25.0:
resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==}
engines: {node: '>=18'}
hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.0
- '@esbuild/android-arm': 0.25.0
- '@esbuild/android-arm64': 0.25.0
- '@esbuild/android-x64': 0.25.0
- '@esbuild/darwin-arm64': 0.25.0
- '@esbuild/darwin-x64': 0.25.0
- '@esbuild/freebsd-arm64': 0.25.0
- '@esbuild/freebsd-x64': 0.25.0
- '@esbuild/linux-arm': 0.25.0
- '@esbuild/linux-arm64': 0.25.0
- '@esbuild/linux-ia32': 0.25.0
- '@esbuild/linux-loong64': 0.25.0
- '@esbuild/linux-mips64el': 0.25.0
- '@esbuild/linux-ppc64': 0.25.0
- '@esbuild/linux-riscv64': 0.25.0
- '@esbuild/linux-s390x': 0.25.0
- '@esbuild/linux-x64': 0.25.0
- '@esbuild/netbsd-arm64': 0.25.0
- '@esbuild/netbsd-x64': 0.25.0
- '@esbuild/openbsd-arm64': 0.25.0
- '@esbuild/openbsd-x64': 0.25.0
- '@esbuild/sunos-x64': 0.25.0
- '@esbuild/win32-arm64': 0.25.0
- '@esbuild/win32-ia32': 0.25.0
- '@esbuild/win32-x64': 0.25.0
- esbuild@0.25.2:
- resolution: {integrity: sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==}
+ esbuild@0.25.1:
+ resolution: {integrity: sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==}
engines: {node: '>=18'}
hasBin: true
@@ -12890,41 +6894,29 @@ packages:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
- /escape-html/1.0.3:
+ escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- /escape-string-regexp/4.0.0:
+ escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- dev: true
- /escape-string-regexp/5.0.0:
+ escape-string-regexp@5.0.0:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
- /escodegen/2.1.0:
+ escodegen@2.1.0:
resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
engines: {node: '>=6.0'}
hasBin: true
- dependencies:
- esprima: 4.0.1
- estraverse: 5.3.0
- esutils: 2.0.3
- optionalDependencies:
- source-map: 0.6.1
- dev: true
- /eslint-compat-utils/0.5.1_eslint@9.17.0:
+ eslint-compat-utils@0.5.1:
resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
engines: {node: '>=12'}
peerDependencies:
eslint: '>=6.0.0'
- dependencies:
- eslint: 9.17.0
- semver: 7.7.1
- dev: true
- /eslint-config-next/15.1.6_5ss5apc2uy6gwlbeak2m4uqwhi:
+ eslint-config-next@15.1.6:
resolution: {integrity: sha512-Wd1uy6y7nBbXUSg9QAuQ+xYEKli5CgUhLjz1QHW11jLDis5vK5XB3PemL6jEmy7HrdhaRFDz+GTZ/3FoH+EUjg==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
@@ -12932,46 +6924,18 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- '@next/eslint-plugin-next': 15.1.6
- '@rushstack/eslint-patch': 1.10.5
- '@typescript-eslint/eslint-plugin': 8.26.0_v7em3iowsogr2ppwgchrzap2oy
- '@typescript-eslint/parser': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
- eslint: 9.17.0
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.8.3_nvlu7damiw5cbtvwahtaw7wqzu
- eslint-plugin-import: 2.31.0_c37dzixbmggai75yklrynnhi3e
- eslint-plugin-jsx-a11y: 6.10.2_eslint@9.17.0
- eslint-plugin-react: 7.37.4_eslint@9.17.0
- eslint-plugin-react-hooks: 5.2.0_eslint@9.17.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - eslint-import-resolver-webpack
- - eslint-plugin-import-x
- - supports-color
- dev: true
- /eslint-config-prettier/9.1.0_eslint@9.17.0:
+ eslint-config-prettier@9.1.0:
resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
- dependencies:
- eslint: 9.17.0
- dev: true
- /eslint-import-resolver-node/0.3.9:
+ eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
- dependencies:
- debug: 3.2.7
- is-core-module: 2.16.1
- resolve: 1.22.10
- transitivePeerDependencies:
- - supports-color
- dev: true
- eslint-import-resolver-typescript@3.8.5:
- resolution: {integrity: sha512-0ZRnzOqKc7TRm85w6REOUkVLHevN6nWd/xZsmKhSD/dcDktoxQaQAg59e5EK/QEsGFf7o5JSpE6qTwCEz0WjTw==}
+ eslint-import-resolver-typescript@3.10.0:
+ resolution: {integrity: sha512-aV3/dVsT0/H9BtpNwbaqvl+0xGMRGzncLyhm793NFGvbwGGvzyAykqWZ8oZlZuGwuHkwJjhWJkG1cM3ynvd2pQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -12982,21 +6946,8 @@ packages:
optional: true
eslint-plugin-import-x:
optional: true
- dependencies:
- '@nolyfill/is-core-module': 1.0.39
- debug: 4.4.0
- enhanced-resolve: 5.18.1
- eslint: 9.17.0
- eslint-plugin-import: 2.31.0_c37dzixbmggai75yklrynnhi3e
- get-tsconfig: 4.10.0
- is-bun-module: 1.3.0
- stable-hash: 0.0.4
- tinyglobby: 0.2.12
- transitivePeerDependencies:
- - supports-color
- dev: true
- /eslint-module-utils/2.12.0_jqrnenp2cu2fukdjhj3d3anjxa:
+ eslint-module-utils@2.12.0:
resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
engines: {node: '>=4'}
peerDependencies:
@@ -13016,17 +6967,8 @@ packages:
optional: true
eslint-import-resolver-webpack:
optional: true
- dependencies:
- '@typescript-eslint/parser': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
- debug: 3.2.7
- eslint: 9.17.0
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.8.3_nvlu7damiw5cbtvwahtaw7wqzu
- transitivePeerDependencies:
- - supports-color
- dev: true
- /eslint-plugin-import/2.31.0_c37dzixbmggai75yklrynnhi3e:
+ eslint-plugin-import@2.31.0:
resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
engines: {node: '>=4'}
peerDependencies:
@@ -13035,161 +6977,66 @@ packages:
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
- dependencies:
- '@rtsao/scc': 1.1.0
- '@typescript-eslint/parser': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
- array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
- array.prototype.flat: 1.3.3
- array.prototype.flatmap: 1.3.3
- debug: 3.2.7
- doctrine: 2.1.0
- eslint: 9.17.0
- eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0_jqrnenp2cu2fukdjhj3d3anjxa
- hasown: 2.0.2
- is-core-module: 2.16.1
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.fromentries: 2.0.8
- object.groupby: 1.0.3
- object.values: 1.2.1
- semver: 6.3.1
- string.prototype.trimend: 1.0.9
- tsconfig-paths: 3.15.0
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
- dev: true
- /eslint-plugin-jsx-a11y/6.10.2_eslint@9.17.0:
+ eslint-plugin-jsx-a11y@6.10.2:
resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
- dependencies:
- aria-query: 5.3.2
- array-includes: 3.1.8
- array.prototype.flatmap: 1.3.3
- ast-types-flow: 0.0.8
- axe-core: 4.10.3
- axobject-query: 4.1.0
- damerau-levenshtein: 1.0.8
- emoji-regex: 9.2.2
- eslint: 9.17.0
- hasown: 2.0.2
- jsx-ast-utils: 3.3.5
- language-tags: 1.0.9
- minimatch: 3.1.2
- object.fromentries: 2.0.8
- safe-regex-test: 1.1.0
- string.prototype.includes: 2.0.1
- dev: true
- /eslint-plugin-prettier/5.2.3_mtaaos5yzai2zmkzqvxmznyxti:
- resolution: {integrity: sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==}
+ eslint-plugin-prettier@5.2.5:
+ resolution: {integrity: sha512-IKKP8R87pJyMl7WWamLgPkloB16dagPIdd2FjBDbyRYPKo93wS/NbCOPh6gH+ieNLC+XZrhJt/kWj0PS/DFdmg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
'@types/eslint': '>=8.0.0'
eslint: '>=8.0.0'
- eslint-config-prettier: '*'
+ eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0'
prettier: '>=3.0.0'
peerDependenciesMeta:
'@types/eslint':
optional: true
eslint-config-prettier:
optional: true
- dependencies:
- eslint: 9.17.0
- eslint-config-prettier: 9.1.0_eslint@9.17.0
- prettier: 3.4.2
- prettier-linter-helpers: 1.0.0
- synckit: 0.9.2
- dev: true
- /eslint-plugin-react-hooks/4.6.2_eslint@9.17.0:
+ eslint-plugin-react-hooks@4.6.2:
resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- dependencies:
- eslint: 9.17.0
- dev: true
eslint-plugin-react-hooks@5.2.0:
resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
- dependencies:
- eslint: 9.17.0
- dev: true
- /eslint-plugin-react-refresh/0.4.7_eslint@9.17.0:
+ eslint-plugin-react-refresh@0.4.7:
resolution: {integrity: sha512-yrj+KInFmwuQS2UQcg1SF83ha1tuHC1jMQbRNyuWtlEzzKRDgAl7L4Yp4NlDUZTZNlWvHEzOtJhMi40R7JxcSw==}
peerDependencies:
eslint: '>=7'
- dependencies:
- eslint: 9.17.0
- dev: true
- /eslint-plugin-react/7.37.4_eslint@9.17.0:
+ eslint-plugin-react@7.37.4:
resolution: {integrity: sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
- dependencies:
- array-includes: 3.1.8
- array.prototype.findlast: 1.2.5
- array.prototype.flatmap: 1.3.3
- array.prototype.tosorted: 1.1.4
- doctrine: 2.1.0
- es-iterator-helpers: 1.2.1
- eslint: 9.17.0
- estraverse: 5.3.0
- hasown: 2.0.2
- jsx-ast-utils: 3.3.5
- minimatch: 3.1.2
- object.entries: 1.1.8
- object.fromentries: 2.0.8
- object.values: 1.2.1
- prop-types: 15.8.1
- resolve: 2.0.0-next.5
- semver: 6.3.1
- string.prototype.matchall: 4.0.12
- string.prototype.repeat: 1.0.0
- dev: true
- /eslint-plugin-simple-import-sort/12.1.1_eslint@9.17.0:
+ eslint-plugin-simple-import-sort@12.1.1:
resolution: {integrity: sha512-6nuzu4xwQtE3332Uz0to+TxDQYRLTKRESSc2hefVT48Zc8JthmN23Gx9lnYhu0FtkRSL1oxny3kJ2aveVhmOVA==}
peerDependencies:
eslint: '>=5.0.0'
- dependencies:
- eslint: 9.17.0
- dev: true
- /eslint-plugin-sort-destructure-keys/2.0.0_eslint@9.17.0:
+ eslint-plugin-sort-destructure-keys@2.0.0:
resolution: {integrity: sha512-4w1UQCa3o/YdfWaLr9jY8LfGowwjwjmwClyFLxIsToiyIdZMq3x9Ti44nDn34DtTPP7PWg96tUONKVmATKhYGQ==}
engines: {node: '>=12'}
peerDependencies:
eslint: 5 - 9
- dependencies:
- eslint: 9.17.0
- natural-compare-lite: 1.4.0
- dev: true
- /eslint-plugin-sort-keys-fix/1.1.2:
+ eslint-plugin-sort-keys-fix@1.1.2:
resolution: {integrity: sha512-DNPHFGCA0/hZIsfODbeLZqaGY/+q3vgtshF85r+YWDNCQ2apd9PNs/zL6ttKm0nD1IFwvxyg3YOTI7FHl4unrw==}
engines: {node: '>=0.10.0'}
- dependencies:
- espree: 6.2.1
- esutils: 2.0.3
- natural-compare: 1.4.0
- requireindex: 1.2.0
- dev: true
- /eslint-plugin-svelte/2.36.0_a6a62f7rdcwtb6ednkki4wpcty:
+ eslint-plugin-svelte@2.36.0:
resolution: {integrity: sha512-D30hSj13Y8YEn7yGXos7EYp0lpEb3Z2V/M+6a3MZ13KGVhaefdW2A9j8IBIcW4YR+j6fo901USzLeXQz/XbWeQ==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -13198,103 +7045,46 @@ packages:
peerDependenciesMeta:
svelte:
optional: true
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
- '@jridgewell/sourcemap-codec': 1.5.0
- debug: 4.4.0
- eslint: 9.17.0
- eslint-compat-utils: 0.5.1_eslint@9.17.0
- esutils: 2.0.3
- known-css-properties: 0.30.0
- postcss: 8.5.3
- postcss-load-config: 3.1.4_postcss@8.5.3
- postcss-safe-parser: 6.0.0_postcss@8.5.3
- postcss-selector-parser: 6.1.2
- semver: 7.7.1
- svelte: 5.19.9
- svelte-eslint-parser: 0.43.0_svelte@5.19.9
- transitivePeerDependencies:
- - supports-color
- - ts-node
- dev: true
- /eslint-plugin-typescript-sort-keys/3.3.0_ulnpem3vhphymaemnltoyugxr4:
+ eslint-plugin-typescript-sort-keys@3.3.0:
resolution: {integrity: sha512-bRW3Rc/VNdrSP9OoY5wgjjaXCOOkZKpzvl/Mk6l8Sg8CMehVIcg9K4y33l+ZcZiknpl0aR6rKusxuCJNGZWmVw==}
engines: {node: '>= 16'}
peerDependencies:
'@typescript-eslint/parser': '>=6'
eslint: ^7 || ^8
typescript: ^3 || ^4 || ^5
- dependencies:
- '@typescript-eslint/experimental-utils': 5.62.0_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/parser': 7.18.0_5ss5apc2uy6gwlbeak2m4uqwhi
- eslint: 9.17.0
- json-schema: 0.4.0
- natural-compare-lite: 1.4.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /eslint-plugin-vue/9.32.0_eslint@9.17.0:
+ eslint-plugin-vue@9.32.0:
resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
- eslint: 9.17.0
- globals: 13.24.0
- natural-compare: 1.4.0
- nth-check: 2.1.1
- postcss-selector-parser: 6.1.2
- semver: 7.7.1
- vue-eslint-parser: 9.4.3_eslint@9.17.0
- xml-name-validator: 4.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /eslint-scope/5.1.1:
+ eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
- dependencies:
- esrecurse: 4.3.0
- estraverse: 4.3.0
- dev: true
- /eslint-scope/7.2.2:
+ eslint-scope@7.2.2:
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- esrecurse: 4.3.0
- estraverse: 5.3.0
- dev: true
eslint-scope@8.3.0:
resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dependencies:
- esrecurse: 4.3.0
- estraverse: 5.3.0
- dev: true
- /eslint-visitor-keys/1.3.0:
+ eslint-visitor-keys@1.3.0:
resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
engines: {node: '>=4'}
- dev: true
- /eslint-visitor-keys/3.4.3:
+ 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}
- dev: true
- /eslint-visitor-keys/4.2.0:
+ eslint-visitor-keys@4.2.0:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dev: true
- /eslint/9.17.0:
+ eslint@9.17.0:
resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
@@ -13303,582 +7093,258 @@ packages:
peerDependenciesMeta:
jiti:
optional: true
- dependencies:
- '@eslint-community/eslint-utils': 4.4.1_eslint@9.17.0
- '@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.19.2
- '@eslint/core': 0.9.1
- '@eslint/eslintrc': 3.3.0
- '@eslint/js': 9.17.0
- '@eslint/plugin-kit': 0.2.7
- '@humanfs/node': 0.16.6
- '@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.4.2
- '@types/estree': 1.0.6
- '@types/json-schema': 7.0.15
- ajv: 6.12.6
- chalk: 4.1.2
- cross-spawn: 7.0.6
- debug: 4.4.0
- escape-string-regexp: 4.0.0
- eslint-scope: 8.3.0
- eslint-visitor-keys: 4.2.0
- espree: 10.3.0
- esquery: 1.6.0
- esutils: 2.0.3
- fast-deep-equal: 3.1.3
- file-entry-cache: 8.0.0
- find-up: 5.0.0
- glob-parent: 6.0.2
- ignore: 5.3.2
- imurmurhash: 0.1.4
- is-glob: 4.0.3
- json-stable-stringify-without-jsonify: 1.0.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.4
- transitivePeerDependencies:
- - supports-color
- dev: true
- /esm-env/1.2.2:
+ esm-env@1.2.2:
resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==}
- /espree/10.3.0:
+ espree@10.3.0:
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- dependencies:
- acorn: 8.14.1
- acorn-jsx: 5.3.2_acorn@8.14.1
- eslint-visitor-keys: 4.2.0
- dev: true
- /espree/6.2.1:
+ espree@6.2.1:
resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==}
engines: {node: '>=6.0.0'}
- dependencies:
- acorn: 7.4.1
- acorn-jsx: 5.3.2_acorn@7.4.1
- eslint-visitor-keys: 1.3.0
- dev: true
- /espree/9.6.1:
+ espree@9.6.1:
resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- acorn: 8.14.1
- acorn-jsx: 5.3.2_acorn@8.14.1
- eslint-visitor-keys: 3.4.3
- dev: true
- /esprima/4.0.1:
+ esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- dev: true
- /esquery/1.6.0:
+ esquery@1.6.0:
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
engines: {node: '>=0.10'}
- dependencies:
- estraverse: 5.3.0
- dev: true
esrap@1.4.5:
resolution: {integrity: sha512-CjNMjkBWWZeHn+VX+gS8YvFwJ5+NDhg8aWZBSFJPR8qQduDNjbJodA2WcwCm7uQa5Rjqj+nZvVmceg1RbHFB9g==}
- /esrecurse/4.3.0:
+ esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
- dependencies:
- estraverse: 5.3.0
- dev: true
- /estraverse/4.3.0:
+ estraverse@4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
- dev: true
- /estraverse/5.3.0:
+ estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- dev: true
- /estree-walker/2.0.2:
+ estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
- /estree-walker/3.0.3:
+ estree-walker@3.0.3:
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
- dependencies:
- '@types/estree': 1.0.6
- /esutils/2.0.3:
+ esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
- dev: true
- /etag/1.8.1:
+ etag@1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
- /event-target-shim/5.0.1:
+ event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
- /eventemitter3/4.0.7:
+ eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
- dev: true
- /eventemitter3/5.0.1:
+ eventemitter3@5.0.1:
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
- dev: true
- /events/3.3.0:
+ events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- /execa/7.2.0:
+ execa@7.2.0:
resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 6.0.1
- human-signals: 4.3.1
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.3.0
- onetime: 6.0.0
- signal-exit: 3.0.7
- strip-final-newline: 3.0.0
- /execa/8.0.1:
+ execa@8.0.1:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 8.0.1
- human-signals: 5.0.0
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.3.0
- onetime: 6.0.0
- signal-exit: 4.1.0
- strip-final-newline: 3.0.0
- /execa/9.5.2:
+ execa@9.5.2:
resolution: {integrity: sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==}
engines: {node: ^18.19.0 || >=20.5.0}
- dependencies:
- '@sindresorhus/merge-streams': 4.0.0
- cross-spawn: 7.0.6
- figures: 6.1.0
- get-stream: 9.0.1
- human-signals: 8.0.0
- is-plain-obj: 4.1.0
- is-stream: 4.0.1
- npm-run-path: 6.0.0
- pretty-ms: 9.2.0
- signal-exit: 4.1.0
- strip-final-newline: 4.0.0
- yoctocolors: 2.1.1
- /exponential-backoff/3.1.2:
+ exponential-backoff@3.1.2:
resolution: {integrity: sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==}
- dev: true
- /express/4.21.0:
+ express@4.21.0:
resolution: {integrity: sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==}
engines: {node: '>= 0.10.0'}
- 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.6.0
- 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.10
- 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
- dev: true
- /express/4.21.2:
+ express@4.21.2:
resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
engines: {node: '>= 0.10.0'}
- 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
- dev: true
exsolve@1.0.4:
resolution: {integrity: sha512-xsZH6PXaER4XoV+NiT7JHp1bJodJVT+cxeSH1G0f0tlT0lJqYuHUP3bUx2HtfTDvOagMINYp8rsqusxud3RXhw==}
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
- dev: true
- /extendable-error/0.1.7:
+ extendable-error@0.1.7:
resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
- dev: true
- /external-editor/3.1.0:
+ external-editor@3.1.0:
resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
engines: {node: '>=4'}
- dependencies:
- chardet: 0.7.0
- iconv-lite: 0.4.24
- tmp: 0.0.33
- dev: true
- /externality/1.0.2:
+ externality@1.0.2:
resolution: {integrity: sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==}
- dependencies:
- enhanced-resolve: 5.18.1
- mlly: 1.7.4
- pathe: 1.1.2
- ufo: 1.5.4
- /extract-zip/2.0.1:
+ extract-zip@2.0.1:
resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
engines: {node: '>= 10.17.0'}
hasBin: true
- dependencies:
- debug: 4.4.0
- get-stream: 5.2.0
- yauzl: 2.10.0
- optionalDependencies:
- '@types/yauzl': 2.10.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /fake-indexeddb/6.0.0:
+ fake-indexeddb@6.0.0:
resolution: {integrity: sha512-YEboHE5VfopUclOck7LncgIqskAqnv4q0EWbYCaxKKjAvO93c+TJIaBuGy8CBFdbg9nKdpN3AuPRwVBJ4k7NrQ==}
engines: {node: '>=18'}
- dev: true
- /fast-decode-uri-component/1.0.1:
+ fast-decode-uri-component@1.0.1:
resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==}
- /fast-deep-equal/3.1.3:
+ fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- /fast-diff/1.3.0:
+ fast-diff@1.3.0:
resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
- dev: true
- /fast-fifo/1.3.2:
+ fast-fifo@1.3.2:
resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
- /fast-glob/3.3.1:
+ fast-glob@3.3.1:
resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
engines: {node: '>=8.6.0'}
- 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
- dev: true
- /fast-glob/3.3.3:
+ fast-glob@3.3.3:
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
engines: {node: '>=8.6.0'}
- 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-json-stable-stringify/2.1.0:
+ fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- dev: true
- /fast-json-stringify/6.0.1:
+ fast-json-stringify@6.0.1:
resolution: {integrity: sha512-s7SJE83QKBZwg54dIbD5rCtzOBVD43V1ReWXXYqBgwCwHLYAAT0RQc/FmrQglXqWPpz6omtryJQOau5jI4Nrvg==}
- dependencies:
- '@fastify/merge-json-schemas': 0.2.1
- ajv: 8.17.1
- ajv-formats: 3.0.1
- fast-uri: 3.0.6
- json-schema-ref-resolver: 2.0.1
- rfdc: 1.4.1
- /fast-levenshtein/2.0.6:
+ fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- dev: true
- /fast-npm-meta/0.2.2:
+ fast-npm-meta@0.2.2:
resolution: {integrity: sha512-E+fdxeaOQGo/CMWc9f4uHFfgUPJRAu7N3uB8GBvB3SDPAIWJK4GKyYhkAGFq+GYrcbKNfQIz5VVQyJnDuPPCrg==}
- /fast-npm-meta/0.3.1:
- resolution: {integrity: sha512-W9gVhqRyz2O3j20I0nFmYEyaMC/046oaMRxxAQ0w6noakfbhpLmlIXmnnqSOmVVuJZ6x5hOPVwlv7PocuawZsw==}
- dev: false
-
- /fast-querystring/1.1.2:
+ fast-querystring@1.1.2:
resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==}
- dependencies:
- fast-decode-uri-component: 1.0.1
- /fast-redact/3.5.0:
+ fast-redact@3.5.0:
resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==}
engines: {node: '>=6'}
- /fast-uri/3.0.6:
+ fast-uri@3.0.6:
resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==}
- /fastify-openapi-glue/4.8.0:
+ fastify-openapi-glue@4.8.0:
resolution: {integrity: sha512-wJVLKiZcLGYxHcJb81HO3UQbr8QGBuAlljSTWl2t2jwyvyFlLWDIzMa1rs3fe/vV3+1VwTJvsRb9j5BaqaEnFg==}
engines: {node: '>=14.0.0'}
hasBin: true
- dependencies:
- '@seriousme/openapi-schema-validator': 2.3.1
- fastify-plugin: 5.0.1
- js-yaml: 4.1.0
- minimist: 1.2.8
- dev: false
- /fastify-plugin/5.0.1:
+ fastify-plugin@5.0.1:
resolution: {integrity: sha512-HCxs+YnRaWzCl+cWRYFnHmeRFyR5GVnJTAaCJQiYzQSDwK9MgJdyAsuL3nh0EWRCYMgQ5MeziymvmAhUHYHDUQ==}
- dev: false
- /fastify/5.2.0:
+ fastify@5.2.0:
resolution: {integrity: sha512-3s+Qt5S14Eq5dCpnE0FxTp3z4xKChI83ZnMv+k0FwX+VUoZrgCFoLAxpfdi/vT4y6Mk+g7aAMt9pgXDoZmkefQ==}
- dependencies:
- '@fastify/ajv-compiler': 4.0.2
- '@fastify/error': 4.0.0
- '@fastify/fast-json-stringify-compiler': 5.0.2
- abstract-logging: 2.0.1
- avvio: 9.1.0
- fast-json-stringify: 6.0.1
- find-my-way: 9.2.0
- light-my-request: 6.6.0
- pino: 9.6.0
- process-warning: 4.0.1
- proxy-addr: 2.0.7
- rfdc: 1.4.1
- secure-json-parse: 3.0.2
- semver: 7.7.1
- toad-cache: 3.7.0
fastq@1.19.1:
resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
- /faye-websocket/0.11.4:
+ faye-websocket@0.11.4:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
engines: {node: '>=0.8.0'}
- dependencies:
- websocket-driver: 0.7.4
- dev: true
- /fd-slicer/1.1.0:
+ fd-slicer@1.1.0:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
- dependencies:
- pend: 1.2.0
- dev: true
-
- /fdir/6.4.3:
- resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==}
- peerDependencies:
- picomatch: ^3 || ^4
- peerDependenciesMeta:
- picomatch:
- optional: true
- dev: true
- /fdir/6.4.3_picomatch@4.0.2:
+ fdir@6.4.3:
resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
picomatch:
optional: true
- dependencies:
- picomatch: 4.0.2
- /fetch-blob/3.2.0:
+ fetch-blob@3.2.0:
resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
engines: {node: ^12.20 || >= 14.13}
- dependencies:
- node-domexception: 1.0.0
- web-streams-polyfill: 3.3.3
- dev: true
- /fflate/0.8.2:
+ fflate@0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
- dev: true
- /figures/6.1.0:
+ figures@6.1.0:
resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
engines: {node: '>=18'}
- dependencies:
- is-unicode-supported: 2.1.0
- /file-entry-cache/8.0.0:
+ file-entry-cache@8.0.0:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
- dependencies:
- flat-cache: 4.0.1
- dev: true
- /file-uri-to-path/1.0.0:
+ file-uri-to-path@1.0.0:
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
- /fill-range/7.1.1:
+ fill-range@7.1.1:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- dependencies:
- to-regex-range: 5.0.1
- /finalhandler/1.1.2:
+ finalhandler@1.1.2:
resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
engines: {node: '>= 0.8'}
- dependencies:
- debug: 2.6.9
- encodeurl: 1.0.2
- escape-html: 1.0.3
- on-finished: 2.3.0
- parseurl: 1.3.3
- statuses: 1.5.0
- unpipe: 1.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /finalhandler/1.3.1:
+ finalhandler@1.3.1:
resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
engines: {node: '>= 0.8'}
- 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
- dev: true
- /find-cache-dir/4.0.0:
+ find-cache-dir@4.0.0:
resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==}
engines: {node: '>=14.16'}
- dependencies:
- common-path-prefix: 3.0.0
- pkg-dir: 7.0.0
- dev: true
- find-my-way@9.2.0:
- resolution: {integrity: sha512-d3uCir8Hmg7W1Ywp8nKf2lJJYU9Nwinvo+1D39Dn09nz65UKXIxUh7j7K8zeWhxqe1WrkS7FJyON/Q/3lPoc6w==}
- engines: {node: '>=14'}
- dependencies:
- fast-deep-equal: 3.1.3
- fast-querystring: 1.1.2
- safe-regex2: 4.0.1
+ find-my-way@9.3.0:
+ resolution: {integrity: sha512-eRoFWQw+Yv2tuYlK2pjFS2jGXSxSppAs3hSQjfxVKxM5amECzIgYYc1FEI8ZmhSh/Ig+FrKEz43NLRKJjYCZVg==}
+ engines: {node: '>=20'}
- /find-up/4.1.0:
+ find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
- dependencies:
- locate-path: 5.0.0
- path-exists: 4.0.0
- dev: true
- /find-up/5.0.0:
+ find-up@5.0.0:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
- dependencies:
- locate-path: 6.0.0
- path-exists: 4.0.0
- dev: true
- /find-up/6.3.0:
+ find-up@6.3.0:
resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- locate-path: 7.2.0
- path-exists: 5.0.0
- dev: true
- /flat-cache/4.0.1:
+ flat-cache@4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
- dependencies:
- flatted: 3.3.3
- keyv: 4.5.4
- dev: true
- /flat/5.0.2:
+ flat@5.0.2:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- dev: true
flatted@3.3.3:
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
- /focus-trap/7.6.4:
+ focus-trap@7.6.4:
resolution: {integrity: sha512-xx560wGBk7seZ6y933idtjJQc1l+ck+pI3sKvhKozdBV1dRZoKhkW5xoCaFv9tQiX5RH1xfSxjuNu6g+lmN/gw==}
- dependencies:
- tabbable: 6.2.0
- dev: true
- /follow-redirects/1.15.9:
+ follow-redirects@1.15.9:
resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -13890,212 +7356,124 @@ packages:
for-each@0.3.5:
resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
engines: {node: '>= 0.4'}
- dependencies:
- is-callable: 1.2.7
- dev: true
foreground-child@3.3.1:
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
engines: {node: '>=14'}
- dependencies:
- cross-spawn: 7.0.6
- signal-exit: 4.1.0
form-data@4.0.2:
resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
engines: {node: '>= 6'}
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- es-set-tostringtag: 2.1.0
- mime-types: 2.1.35
- /formdata-polyfill/4.0.10:
+ formdata-polyfill@4.0.10:
resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
engines: {node: '>=12.20.0'}
- dependencies:
- fetch-blob: 3.2.0
- dev: true
- /forwarded/0.2.0:
+ forwarded@0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
- /fraction.js/4.3.7:
+ fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
- /fresh/0.5.2:
+ fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- /fs-extra/11.3.0:
+ fs-extra@11.3.0:
resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==}
engines: {node: '>=14.14'}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.1
- /fs-extra/7.0.1:
+ fs-extra@7.0.1:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
- dev: true
- /fs-extra/8.1.0:
+ fs-extra@8.1.0:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
- dev: true
- /fs-minipass/2.1.0:
+ fs-minipass@2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
- dependencies:
- minipass: 3.3.6
- /fs-minipass/3.0.3:
+ fs-minipass@3.0.3:
resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dependencies:
- minipass: 7.1.2
- dev: true
- /fs.realpath/1.0.0:
+ fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- dev: true
- /fsevents/2.3.3:
+ fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
- requiresBuild: true
- optional: true
- /function-bind/1.1.2:
+ function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- /function.prototype.name/1.1.8:
+ function.prototype.name@1.1.8:
resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.4
- define-properties: 1.2.1
- functions-have-names: 1.2.3
- hasown: 2.0.2
- is-callable: 1.2.7
- dev: true
- /functions-have-names/1.2.3:
+ functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
- dev: true
-
- /fuse.js/7.1.0:
- resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
- engines: {node: '>=10'}
- dev: false
- /gensync/1.0.0-beta.2:
+ gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- /get-caller-file/2.0.5:
+ get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- /get-east-asian-width/1.3.0:
+ get-east-asian-width@1.3.0:
resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
engines: {node: '>=18'}
- dev: true
- /get-func-name/2.0.2:
+ get-func-name@2.0.2:
resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
- dev: true
get-intrinsic@1.3.0:
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind-apply-helpers: 1.0.2
- es-define-property: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- function-bind: 1.1.2
- get-proto: 1.0.1
- gopd: 1.2.0
- has-symbols: 1.1.0
- hasown: 2.0.2
- math-intrinsics: 1.1.0
- /get-nonce/1.0.1:
+ get-nonce@1.0.1:
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
engines: {node: '>=6'}
- dev: false
- /get-port-please/3.1.2:
+ get-port-please@3.1.2:
resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==}
- /get-proto/1.0.1:
+ get-proto@1.0.1:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
- dependencies:
- dunder-proto: 1.0.1
- es-object-atoms: 1.1.1
- /get-stream/5.2.0:
+ get-stream@5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
- dependencies:
- pump: 3.0.2
- dev: true
- /get-stream/6.0.1:
+ get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- /get-stream/8.0.1:
+ get-stream@8.0.1:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
- /get-stream/9.0.1:
+ get-stream@9.0.1:
resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
engines: {node: '>=18'}
- dependencies:
- '@sec-ant/readable-stream': 0.4.1
- is-stream: 4.0.1
- /get-symbol-description/1.1.0:
+ get-symbol-description@1.1.0:
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- get-intrinsic: 1.3.0
- dev: true
- /get-tsconfig/4.10.0:
+ get-tsconfig@4.10.0:
resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==}
- dependencies:
- resolve-pkg-maps: 1.0.0
- dev: true
- /get-uri/6.0.4:
+ get-uri@6.0.4:
resolution: {integrity: sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==}
engines: {node: '>= 14'}
- dependencies:
- basic-ftp: 5.0.5
- data-uri-to-buffer: 6.0.2
- debug: 4.4.0
- transitivePeerDependencies:
- - supports-color
- dev: true
giget@1.2.5:
resolution: {integrity: sha512-r1ekGw/Bgpi3HLV3h1MRBIlSAdHoIMklpaQ3OQLFcRw9PwAj2rqigvIbg+dBUI51OxVI2jsEtDywDBjSiuf7Ug==}
@@ -14104,29 +7482,6 @@ packages:
giget@2.0.0:
resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==}
hasBin: true
- dependencies:
- citty: 0.1.6
- consola: 3.4.0
- defu: 6.1.4
- node-fetch-native: 1.6.6
- nypm: 0.5.4
- pathe: 2.0.3
- tar: 6.2.1
-
- /giget/2.0.0:
- resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==}
- hasBin: true
- dependencies:
- citty: 0.1.6
- consola: 3.4.0
- defu: 6.1.4
- node-fetch-native: 1.6.6
- nypm: 0.6.0
- pathe: 2.0.3
-
- /git-config-path/2.0.0:
- resolution: {integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==}
- engines: {node: '>=4'}
git-up@8.0.1:
resolution: {integrity: sha512-2XFu1uNZMSjkyetaF+8rqn6P0XqpMq/C+2ycjI6YwrIKcszZ5/WR4UubxjN0lILOKqLkLaHDaCr2B6fP1cke6g==}
@@ -14134,35 +7489,21 @@ packages:
git-url-parse@16.0.1:
resolution: {integrity: sha512-mcD36GrhAzX5JVOsIO52qNpgRyFzYWRbU1VSRFCvJt1IJvqfvH427wWw/CFqkWvjVPtdG5VTx4MKUeC5GeFPDQ==}
- /glob-parent/5.1.2:
+ glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
- dependencies:
- is-glob: 4.0.3
- /glob-parent/6.0.2:
+ glob-parent@6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
- dependencies:
- is-glob: 4.0.3
- dev: true
- /glob-to-regexp/0.4.1:
+ glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- dev: true
- /glob/10.4.3:
+ glob@10.4.3:
resolution: {integrity: sha512-Q38SGlYRpVtDBPSWEylRyctn7uDeTp4NQERTLiCT1FqA9JXPYWqAVmQU6qh4r/zMM5ehxTcbaO8EjhWnvEhmyg==}
engines: {node: '>=18'}
hasBin: true
- dependencies:
- foreground-child: 3.3.1
- jackspeak: 3.4.3
- minimatch: 9.0.5
- minipass: 7.1.2
- package-json-from-dist: 1.0.1
- path-scurry: 1.11.1
- dev: true
glob@10.4.5:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
@@ -14171,14 +7512,6 @@ packages:
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
- 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
- dev: true
glob@8.1.0:
resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
@@ -14188,49 +7521,30 @@ packages:
global-directory@4.0.1:
resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
engines: {node: '>=18'}
- dependencies:
- ini: 4.1.1
- /globals/11.12.0:
+ globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals/13.24.0:
+ globals@13.24.0:
resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
- dependencies:
- type-fest: 0.20.2
- dev: true
- /globals/14.0.0:
+ globals@14.0.0:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- dev: true
- /globals/15.14.0:
+ globals@15.14.0:
resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
engines: {node: '>=18'}
- dev: true
- /globalthis/1.0.4:
+ globalthis@1.0.4:
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
- dependencies:
- define-properties: 1.2.1
- gopd: 1.2.0
- dev: true
- /globby/11.1.0:
+ globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.3
- ignore: 5.3.2
- merge2: 1.4.1
- slash: 3.0.0
- dev: true
globby@13.2.2:
resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
@@ -14239,196 +7553,120 @@ packages:
globby@14.1.0:
resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==}
engines: {node: '>=18'}
- dependencies:
- '@sindresorhus/merge-streams': 2.3.0
- fast-glob: 3.3.3
- ignore: 7.0.3
- path-type: 6.0.0
- slash: 5.1.0
- unicorn-magic: 0.3.0
- /gopd/1.2.0:
+ gopd@1.2.0:
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
engines: {node: '>= 0.4'}
- /graceful-fs/4.2.11:
+ graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- /graphemer/1.4.0:
+ graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
- dev: true
- /gzip-size/7.0.0:
+ gzip-size@7.0.0:
resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- duplexer: 0.1.2
h3@1.15.1:
resolution: {integrity: sha512-+ORaOBttdUm1E2Uu/obAyCguiI7MbBvsLTndc3gyK3zU+SYLoZXlyCP9Xgy0gikkGufFLTZXCXD6+4BsufnmHA==}
- /handle-thing/2.0.1:
+ handle-thing@2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
- dev: true
- /handlebars/4.7.8:
+ handlebars@4.7.8:
resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
engines: {node: '>=0.4.7'}
hasBin: true
- dependencies:
- minimist: 1.2.8
- neo-async: 2.6.2
- source-map: 0.6.1
- wordwrap: 1.0.0
- optionalDependencies:
- uglify-js: 3.19.3
- dev: false
- /has-bigints/1.1.0:
+ has-bigints@1.1.0:
resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
engines: {node: '>= 0.4'}
- dev: true
- /has-flag/4.0.0:
+ has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- /has-property-descriptors/1.0.2:
+ has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- dependencies:
- es-define-property: 1.0.1
- dev: true
- /has-proto/1.2.0:
+ has-proto@1.2.0:
resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
engines: {node: '>= 0.4'}
- dependencies:
- dunder-proto: 1.0.1
- dev: true
- /has-symbols/1.1.0:
+ has-symbols@1.1.0:
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
- /has-tostringtag/1.0.2:
+ has-tostringtag@1.0.2:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: 1.1.0
- /hash-sum/2.0.0:
+ hash-sum@2.0.0:
resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
- /hasown/2.0.2:
+ hasown@2.0.2:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
- dependencies:
- function-bind: 1.1.2
hast-util-to-html@9.0.5:
resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==}
- /hast-util-whitespace/3.0.0:
+ hast-util-whitespace@3.0.0:
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
- dependencies:
- '@types/hast': 3.0.4
- dev: true
- /he/1.2.0:
+ he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
- dev: true
- /highlight.js/10.7.3:
+ highlight.js@10.7.3:
resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==}
- dev: true
- /hookable/5.5.3:
+ hookable@5.5.3:
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
- /hosted-git-info/8.0.2:
+ hosted-git-info@8.0.2:
resolution: {integrity: sha512-sYKnA7eGln5ov8T8gnYlkSOxFJvywzEx9BueN6xo/GKO8PGiI6uK6xx+DIGe45T3bdVjLAQDQW1aicT8z8JwQg==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- lru-cache: 10.4.3
- dev: true
- /hpack.js/2.1.6:
+ hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
- dependencies:
- inherits: 2.0.4
- obuf: 1.1.2
- readable-stream: 2.3.8
- wbuf: 1.7.3
- dev: true
- /html-encoding-sniffer/4.0.0:
+ html-encoding-sniffer@4.0.0:
resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
engines: {node: '>=18'}
- dependencies:
- whatwg-encoding: 3.1.1
- dev: true
- /html-escaper/2.0.2:
+ html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
- dev: true
html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
- dev: true
- /htmlparser2/9.1.0:
+ htmlparser2@9.1.0:
resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==}
- dependencies:
- domelementtype: 2.3.0
- domhandler: 5.0.3
- domutils: 3.2.2
- entities: 4.5.0
- dev: true
- /http-cache-semantics/4.1.1:
+ http-cache-semantics@4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
- dev: true
- /http-deceiver/1.2.7:
+ http-deceiver@1.2.7:
resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
- dev: true
- /http-errors/1.6.3:
+ http-errors@1.6.3:
resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.3
- setprototypeof: 1.1.0
- statuses: 1.5.0
- dev: true
- /http-errors/2.0.0:
+ http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
- dependencies:
- depd: 2.0.0
- inherits: 2.0.4
- setprototypeof: 1.2.0
- statuses: 2.0.1
- toidentifier: 1.0.1
- /http-parser-js/0.5.9:
+ http-parser-js@0.5.9:
resolution: {integrity: sha512-n1XsPy3rXVxlqxVioEWdC+0+M+SQw0DpJynwtOPo1X+ZlvdzTLtDBIJJlDQTnwZIFJrZSzSGmIOUdP8tu+SgLw==}
- dev: true
- /http-proxy-agent/7.0.2:
+ http-proxy-agent@7.0.2:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
- dependencies:
- agent-base: 7.1.3
- debug: 4.4.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /http-proxy-middleware/2.0.7_@types+express@4.17.21:
+ http-proxy-middleware@2.0.7:
resolution: {integrity: sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -14436,806 +7674,487 @@ packages:
peerDependenciesMeta:
'@types/express':
optional: true
- dependencies:
- '@types/express': 4.17.21
- '@types/http-proxy': 1.17.16
- http-proxy: 1.18.1
- is-glob: 4.0.3
- is-plain-obj: 3.0.0
- micromatch: 4.0.8
- transitivePeerDependencies:
- - debug
- dev: true
- /http-proxy-middleware/3.0.3:
+ http-proxy-middleware@3.0.3:
resolution: {integrity: sha512-usY0HG5nyDUwtqpiZdETNbmKtw3QQ1jwYFZ9wi5iHzX2BcILwQKtYDJPo7XHTsu5Z0B2Hj3W9NNnbd+AjFWjqg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@types/http-proxy': 1.17.16
- debug: 4.4.0
- http-proxy: 1.18.1_debug@4.4.0
- is-glob: 4.0.3
- is-plain-object: 5.0.0
- micromatch: 4.0.8
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /http-proxy/1.18.1:
- resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
- engines: {node: '>=8.0.0'}
- dependencies:
- eventemitter3: 4.0.7
- follow-redirects: 1.15.9
- requires-port: 1.0.0
- transitivePeerDependencies:
- - debug
- dev: true
- /http-proxy/1.18.1_debug@4.4.0:
+ http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
- dependencies:
- eventemitter3: 4.0.7
- follow-redirects: 1.15.9_debug@4.4.0
- requires-port: 1.0.0
- transitivePeerDependencies:
- - debug
- dev: true
- /http-shutdown/1.2.2:
+ 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/7.0.6:
- resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
- engines: {node: '>= 14'}
- dependencies:
- agent-base: 7.1.3
- debug: 4.4.0
- transitivePeerDependencies:
- - supports-color
-
- /https-proxy-agent/7.0.6_supports-color@9.4.0:
+ https-proxy-agent@7.0.6:
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
- dependencies:
- agent-base: 7.1.3
- debug: 4.4.0_supports-color@9.4.0
- transitivePeerDependencies:
- - supports-color
- /httpxy/0.1.7:
+ httpxy@0.1.7:
resolution: {integrity: sha512-pXNx8gnANKAndgga5ahefxc++tJvNL87CXoRwxn1cJE2ZkWEojF3tNfQIEhZX/vfpt+wzeAzpUI4qkediX1MLQ==}
- /human-id/1.0.2:
+ human-id@1.0.2:
resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==}
- dev: true
- /human-signals/4.3.1:
+ human-signals@4.3.1:
resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
engines: {node: '>=14.18.0'}
- /human-signals/5.0.0:
+ human-signals@5.0.0:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
- /human-signals/8.0.0:
+ human-signals@8.0.0:
resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==}
engines: {node: '>=18.18.0'}
- /husky/9.1.7:
+ husky@9.1.7:
resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==}
engines: {node: '>=18'}
hasBin: true
- dev: true
- /hyperdyperid/1.2.0:
+ hyperdyperid@1.2.0:
resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==}
engines: {node: '>=10.18'}
- dev: true
- /iconv-lite/0.4.24:
+ iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
- dependencies:
- safer-buffer: 2.1.2
- dev: true
- /iconv-lite/0.6.3:
+ iconv-lite@0.6.3:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
- dependencies:
- safer-buffer: 2.1.2
- /icss-utils/5.1.0_postcss@8.5.3:
+ icss-utils@5.1.0:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- dependencies:
- postcss: 8.5.3
- dev: true
- /ieee754/1.2.1:
+ ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- /ignore-walk/7.0.0:
+ ignore-walk@7.0.0:
resolution: {integrity: sha512-T4gbf83A4NH95zvhVYZc+qWocBBGlpzUXLPGurJggw/WIOwicfXJChLDP/iBZnN5WqROSu5Bm3hhle4z8a8YGQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- minimatch: 9.0.5
- dev: true
- /ignore/5.3.2:
+ ignore@5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
- dev: true
- /ignore/6.0.2:
+ ignore@6.0.2:
resolution: {integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==}
engines: {node: '>= 4'}
- /ignore/7.0.3:
+ ignore@7.0.3:
resolution: {integrity: sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==}
engines: {node: '>= 4'}
- /image-meta/0.2.1:
+ image-meta@0.2.1:
resolution: {integrity: sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw==}
- /image-size/0.5.5:
+ image-size@0.5.5:
resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
engines: {node: '>=0.10.0'}
hasBin: true
- requiresBuild: true
- optional: true
- /immutable/5.0.3:
- resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
+ immutable@5.1.1:
+ resolution: {integrity: sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==}
import-fresh@3.3.1:
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
- dependencies:
- parent-module: 1.0.1
- resolve-from: 4.0.0
- dev: true
- /import-meta-resolve/4.1.0:
+ import-meta-resolve@4.1.0:
resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
- dev: true
impound@0.2.2:
resolution: {integrity: sha512-9CNg+Ly8QjH4FwCUoE9nl1zeqY1NPK1s1P6Btp4L8lJxn8oZLN/0p6RZhitnyEL0BnVWrcVPfbs0Q3x+O/ucHg==}
- /impound/0.2.1_rollup@4.35.0:
- resolution: {integrity: sha512-V+8yPoV8sT3VYNY8A8F/lfox+QShWdb4enaG3ou/k7d5gY20lVwaE6M2O4zI6Z3XGEWSEEh3e+W3G7qfJeYfKA==}
- dependencies:
- '@rollup/pluginutils': 5.1.4_rollup@4.35.0
- mlly: 1.7.4
- pathe: 2.0.3
- unenv: 2.0.0-rc.14
- unplugin: 2.2.0
- transitivePeerDependencies:
- - rollup
- dev: false
-
- /imurmurhash/0.1.4:
+ imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- dev: true
-
- /index-to-position/0.1.2:
- resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==}
- engines: {node: '>=18'}
- /inflight/1.0.6:
+ 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.
- dependencies:
- once: 1.4.0
- wrappy: 1.0.2
- dev: true
- /inherits/2.0.3:
+ inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
- dev: true
- /inherits/2.0.4:
+ inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- /ini/1.3.8:
+ ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- /ini/4.1.1:
+ ini@4.1.1:
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- /ini/5.0.0:
+ ini@5.0.0:
resolution: {integrity: sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==}
engines: {node: ^18.17.0 || >=20.5.0}
- dev: true
- /internal-slot/1.1.0:
+ internal-slot@1.1.0:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
- dependencies:
- es-errors: 1.3.0
- hasown: 2.0.2
- side-channel: 1.1.0
- dev: true
ioredis@5.6.0:
resolution: {integrity: sha512-tBZlIIWbndeWBWCXWZiqtOF/yxf6yZX3tAlTJ7nfo5jhd6dctNxF7QnYlZLZ1a0o0pDoen7CgZqO+zjNaFbJAg==}
engines: {node: '>=12.22.0'}
- dependencies:
- '@ioredis/commands': 1.2.0
- cluster-key-slot: 1.1.2
- debug: 4.4.0
- denque: 2.1.0
- lodash.defaults: 4.2.0
- lodash.isarguments: 3.1.0
- redis-errors: 1.2.0
- redis-parser: 3.0.0
- standard-as-callback: 2.1.0
- transitivePeerDependencies:
- - supports-color
- /ip-address/9.0.5:
+ ip-address@9.0.5:
resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
engines: {node: '>= 12'}
- dependencies:
- jsbn: 1.1.0
- sprintf-js: 1.1.3
- dev: true
- /ipaddr.js/1.9.1:
+ ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- /ipaddr.js/2.2.0:
+ ipaddr.js@2.2.0:
resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==}
engines: {node: '>= 10'}
- dev: true
- /iron-webcrypto/1.2.1:
+ iron-webcrypto@1.2.1:
resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
- /is-array-buffer/3.0.5:
+ is-array-buffer@3.0.5:
resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.4
- get-intrinsic: 1.3.0
- dev: true
- /is-arrayish/0.2.1:
+ is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- dev: true
- /is-arrayish/0.3.2:
+ is-arrayish@0.3.2:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
- /is-async-function/2.1.1:
+ is-async-function@2.1.1:
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
engines: {node: '>= 0.4'}
- dependencies:
- async-function: 1.0.0
- call-bound: 1.0.4
- get-proto: 1.0.1
- has-tostringtag: 1.0.2
- safe-regex-test: 1.1.0
- dev: true
- /is-bigint/1.1.0:
+ is-bigint@1.1.0:
resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
engines: {node: '>= 0.4'}
- dependencies:
- has-bigints: 1.1.0
- dev: true
- /is-binary-path/2.1.0:
+ is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- dependencies:
- binary-extensions: 2.3.0
is-boolean-object@1.2.2:
resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- has-tostringtag: 1.0.2
- dev: true
- /is-bun-module/1.3.0:
- resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==}
- dependencies:
- semver: 7.7.1
- dev: true
+ is-bun-module@2.0.0:
+ resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
- /is-callable/1.2.7:
+ is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- dev: true
- /is-core-module/2.16.1:
+ is-core-module@2.16.1:
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
engines: {node: '>= 0.4'}
- dependencies:
- hasown: 2.0.2
- /is-data-view/1.0.2:
+ is-data-view@1.0.2:
resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- get-intrinsic: 1.3.0
- is-typed-array: 1.1.15
- dev: true
- /is-date-object/1.1.0:
+ is-date-object@1.1.0:
resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- has-tostringtag: 1.0.2
- dev: true
- /is-docker/2.2.1:
+ is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
hasBin: true
- /is-docker/3.0.0:
+ is-docker@3.0.0:
resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true
- /is-extglob/2.1.1:
+ is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- /is-finalizationregistry/1.1.1:
+ is-finalizationregistry@1.1.1:
resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- dev: true
- /is-fullwidth-code-point/3.0.0:
+ is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- /is-fullwidth-code-point/4.0.0:
+ is-fullwidth-code-point@4.0.0:
resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
engines: {node: '>=12'}
- dev: true
- /is-fullwidth-code-point/5.0.0:
+ is-fullwidth-code-point@5.0.0:
resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==}
engines: {node: '>=18'}
- dependencies:
- get-east-asian-width: 1.3.0
- dev: true
- /is-generator-function/1.1.0:
+ is-generator-function@1.1.0:
resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- get-proto: 1.0.1
- has-tostringtag: 1.0.2
- safe-regex-test: 1.1.0
- dev: true
- /is-glob/4.0.3:
+ is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
- dependencies:
- is-extglob: 2.1.1
- /is-inside-container/1.0.0:
+ is-inside-container@1.0.0:
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
engines: {node: '>=14.16'}
hasBin: true
- dependencies:
- is-docker: 3.0.0
- /is-installed-globally/1.0.0:
+ is-installed-globally@1.0.0:
resolution: {integrity: sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==}
engines: {node: '>=18'}
- dependencies:
- global-directory: 4.0.1
- is-path-inside: 4.0.0
- /is-interactive/1.0.0:
+ is-interactive@1.0.0:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
- dev: true
- /is-map/2.0.3:
+ is-map@2.0.3:
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
- dev: true
- /is-module/1.0.0:
+ is-module@1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
- /is-network-error/1.1.0:
+ is-network-error@1.1.0:
resolution: {integrity: sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==}
engines: {node: '>=16'}
- dev: true
- /is-number-object/1.1.1:
+ is-number-object@1.1.1:
resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- has-tostringtag: 1.0.2
- dev: true
- /is-number/7.0.0:
+ is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- /is-path-inside/4.0.0:
+ is-path-inside@4.0.0:
resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==}
engines: {node: '>=12'}
- /is-plain-obj/3.0.0:
+ is-plain-obj@3.0.0:
resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
engines: {node: '>=10'}
- dev: true
- /is-plain-obj/4.1.0:
+ is-plain-obj@4.1.0:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
- /is-plain-object/2.0.4:
+ is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
- dependencies:
- isobject: 3.0.1
- dev: true
- /is-plain-object/5.0.0:
+ is-plain-object@5.0.0:
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
engines: {node: '>=0.10.0'}
- dev: true
- /is-potential-custom-element-name/1.0.1:
+ is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
- dev: true
- /is-reference/1.2.1:
+ is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
- dependencies:
- '@types/estree': 1.0.6
- /is-reference/3.0.3:
+ is-reference@3.0.3:
resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
- dependencies:
- '@types/estree': 1.0.6
- /is-regex/1.2.1:
+ is-regex@1.2.1:
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- gopd: 1.2.0
- has-tostringtag: 1.0.2
- hasown: 2.0.2
- dev: true
- /is-set/2.0.3:
+ is-set@2.0.3:
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
engines: {node: '>= 0.4'}
- dev: true
- /is-shared-array-buffer/1.0.4:
+ is-shared-array-buffer@1.0.4:
resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- dev: true
is-ssh@1.4.1:
resolution: {integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==}
- /is-stream/2.0.1:
+ is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- /is-stream/3.0.0:
+ is-stream@3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- /is-stream/4.0.1:
+ is-stream@4.0.1:
resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
engines: {node: '>=18'}
- /is-string/1.1.1:
+ is-string@1.1.1:
resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- has-tostringtag: 1.0.2
- dev: true
- /is-subdir/1.2.0:
+ is-subdir@1.2.0:
resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
engines: {node: '>=4'}
- dependencies:
- better-path-resolve: 1.0.0
- dev: true
- /is-symbol/1.1.1:
+ is-symbol@1.1.1:
resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- has-symbols: 1.1.0
- safe-regex-test: 1.1.0
- dev: true
- /is-typed-array/1.1.15:
+ is-typed-array@1.1.15:
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
engines: {node: '>= 0.4'}
- dependencies:
- which-typed-array: 1.1.19
- dev: true
- /is-unicode-supported/0.1.0:
+ is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
- dev: true
- /is-unicode-supported/2.1.0:
+ is-unicode-supported@2.1.0:
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
- /is-weakmap/2.0.2:
+ is-weakmap@2.0.2:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
- dev: true
is-weakref@1.1.1:
resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- dev: true
- /is-weakset/2.0.4:
+ is-weakset@2.0.4:
resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- get-intrinsic: 1.3.0
- dev: true
- /is-what/3.14.1:
+ is-what@3.14.1:
resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
- /is-what/4.1.16:
+ is-what@4.1.16:
resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
engines: {node: '>=12.13'}
- /is-windows/1.0.2:
+ is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
- dev: true
- /is-wsl/2.2.0:
+ is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
- dependencies:
- is-docker: 2.2.1
- /is-wsl/3.1.0:
+ is-wsl@3.1.0:
resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
engines: {node: '>=16'}
- dependencies:
- is-inside-container: 1.0.0
- /is64bit/2.0.0:
+ is64bit@2.0.0:
resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==}
engines: {node: '>=18'}
- dependencies:
- system-architecture: 0.1.0
- /isarray/1.0.0:
+ isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
- /isarray/2.0.5:
+ isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
- dev: true
- /isbinaryfile/4.0.10:
+ isbinaryfile@4.0.10:
resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==}
engines: {node: '>= 8.0.0'}
- dev: true
- /isexe/2.0.0:
+ isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- /isexe/3.1.1:
+ isexe@3.1.1:
resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
engines: {node: '>=16'}
- /isobject/3.0.1:
+ isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- dev: true
- /istanbul-lib-coverage/3.2.2:
+ istanbul-lib-coverage@3.2.2:
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
- dev: true
- /istanbul-lib-instrument/5.2.1:
+ istanbul-lib-instrument@5.2.1:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
- dependencies:
- '@babel/core': 7.26.9
- '@babel/parser': 7.26.9
- '@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.2
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /istanbul-lib-instrument/6.0.3:
+ istanbul-lib-instrument@6.0.3:
resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
engines: {node: '>=10'}
- dependencies:
- '@babel/core': 7.26.9
- '@babel/parser': 7.26.9
- '@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.2
- semver: 7.7.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /istanbul-lib-report/3.0.1:
+ istanbul-lib-report@3.0.1:
resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
engines: {node: '>=10'}
- dependencies:
- istanbul-lib-coverage: 3.2.2
- make-dir: 4.0.0
- supports-color: 7.2.0
- dev: true
- /istanbul-lib-source-maps/4.0.1:
+ istanbul-lib-source-maps@4.0.1:
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
engines: {node: '>=10'}
- dependencies:
- debug: 4.4.0
- istanbul-lib-coverage: 3.2.2
- source-map: 0.6.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /istanbul-lib-source-maps/5.0.6:
+ istanbul-lib-source-maps@5.0.6:
resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==}
engines: {node: '>=10'}
- dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- debug: 4.4.0
- istanbul-lib-coverage: 3.2.2
- transitivePeerDependencies:
- - supports-color
- dev: true
- /istanbul-reports/3.1.7:
+ istanbul-reports@3.1.7:
resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
engines: {node: '>=8'}
- dependencies:
- html-escaper: 2.0.2
- istanbul-lib-report: 3.0.1
- dev: true
- /iterator.prototype/1.1.5:
+ iterator.prototype@1.1.5:
resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
engines: {node: '>= 0.4'}
- dependencies:
- define-data-property: 1.1.4
- es-object-atoms: 1.1.1
- get-intrinsic: 1.3.0
- get-proto: 1.0.1
- has-symbols: 1.1.0
- set-function-name: 2.0.2
- dev: true
- /jackspeak/3.4.3:
+ jackspeak@3.4.3:
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
- /jasmine-core/4.6.1:
+ jasmine-core@4.6.1:
resolution: {integrity: sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==}
- dev: true
- /jasmine-core/5.2.0:
+ jasmine-core@5.2.0:
resolution: {integrity: sha512-tSAtdrvWybZkQmmaIoDgnvHG8ORUNw5kEVlO5CvrXj02Jjr9TZrmjFq7FUiOUzJiOP2wLGYT6PgrQgQF4R1xiw==}
- dev: true
- /jest-worker/27.5.1:
+ jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
- dependencies:
- '@types/node': 22.13.10
- merge-stream: 2.0.0
- supports-color: 8.1.1
- dev: true
- /jiti/1.21.7:
+ jiti@1.21.7:
resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
hasBin: true
- dev: true
- /jiti/2.4.2:
+ jiti@2.4.2:
resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
hasBin: true
- /joycon/3.1.1:
+ joycon@3.1.1:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'}
- dev: true
js-beautify@1.15.4:
resolution: {integrity: sha512-9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA==}
engines: {node: '>=14'}
hasBin: true
- dependencies:
- config-chain: 1.1.13
- editorconfig: 1.0.4
- glob: 10.4.5
- js-cookie: 3.0.5
- nopt: 7.2.1
- dev: true
- /js-cookie/3.0.5:
+ js-cookie@3.0.5:
resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
engines: {node: '>=14'}
- dev: true
-
- /js-levenshtein/1.1.6:
- resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==}
- engines: {node: '>=0.10.0'}
- /js-tokens/4.0.0:
+ js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- /js-tokens/9.0.1:
+ js-tokens@9.0.1:
resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
- /js-yaml/3.14.1:
+ js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
- dependencies:
- argparse: 1.0.10
- esprima: 4.0.1
- dev: true
- /js-yaml/4.1.0:
+ js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
- dependencies:
- argparse: 2.0.1
- /jsbn/1.1.0:
+ jsbn@1.1.0:
resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
- dev: true
- /jsdom/23.0.0:
+ jsdom@23.0.0:
resolution: {integrity: sha512-cbL/UCtohJguhFC7c2/hgW6BeZCNvP7URQGnx9tSJRYKCdnfbfWOrtuLTMfiB2VxKsx5wPHVsh/J0aBy9lIIhQ==}
engines: {node: '>=18'}
peerDependencies:
@@ -15243,268 +8162,143 @@ packages:
peerDependenciesMeta:
canvas:
optional: true
- dependencies:
- cssstyle: 3.0.0
- data-urls: 5.0.0
- decimal.js: 10.5.0
- form-data: 4.0.2
- html-encoding-sniffer: 4.0.0
- http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6
- is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.18
- parse5: 7.2.1
- rrweb-cssom: 0.6.0
- saxes: 6.0.0
- symbol-tree: 3.2.4
- tough-cookie: 4.1.4
- w3c-xmlserializer: 5.0.0
- webidl-conversions: 7.0.0
- whatwg-encoding: 3.1.1
- whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.1
- ws: 8.18.1
- xml-name-validator: 5.0.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: true
- /jsesc/3.0.2:
+ jsesc@3.0.2:
resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
engines: {node: '>=6'}
hasBin: true
- dev: true
- /jsesc/3.1.0:
+ jsesc@3.1.0:
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
engines: {node: '>=6'}
hasBin: true
- /json-buffer/3.0.1:
+ json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
- dev: true
- /json-parse-even-better-errors/2.3.1:
+ json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- dev: true
- /json-parse-even-better-errors/3.0.2:
+ json-parse-even-better-errors@3.0.2:
resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dev: true
- /json-parse-even-better-errors/4.0.0:
+ json-parse-even-better-errors@4.0.0:
resolution: {integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==}
engines: {node: ^18.17.0 || >=20.5.0}
- dev: true
- /json-schema-ref-resolver/2.0.1:
+ json-schema-ref-resolver@2.0.1:
resolution: {integrity: sha512-HG0SIB9X4J8bwbxCbnd5FfPEbcXAJYTi1pBJeP/QPON+w8ovSME8iRG+ElHNxZNX2Qh6eYn1GdzJFS4cDFfx0Q==}
- dependencies:
- dequal: 2.0.3
- /json-schema-traverse/0.4.1:
+ json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
- dev: true
- /json-schema-traverse/1.0.0:
+ json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- /json-schema/0.4.0:
+ json-schema@0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
- dev: true
- /json-stable-stringify-without-jsonify/1.0.1:
+ json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- dev: true
- /json5/1.0.2:
+ json5@1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
- dependencies:
- minimist: 1.2.8
- dev: true
- /json5/2.2.3:
+ json5@2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
hasBin: true
- /jsonc-parser/3.3.1:
+ jsonc-parser@3.3.1:
resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
- dev: true
- /jsonfile/4.0.0:
+ jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
- optionalDependencies:
- graceful-fs: 4.2.11
- dev: true
- /jsonfile/6.1.0:
+ jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
- dependencies:
- universalify: 2.0.1
- optionalDependencies:
- graceful-fs: 4.2.11
- /jsonparse/1.3.1:
+ jsonparse@1.3.1:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
- dev: true
- /jsx-ast-utils/3.3.5:
+ jsx-ast-utils@3.3.5:
resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
engines: {node: '>=4.0'}
- dependencies:
- array-includes: 3.1.8
- array.prototype.flat: 1.3.3
- object.assign: 4.1.7
- object.values: 1.2.1
- dev: true
- /karma-chrome-launcher/3.2.0:
+ karma-chrome-launcher@3.2.0:
resolution: {integrity: sha512-rE9RkUPI7I9mAxByQWkGJFXfFD6lE4gC5nPuZdobf/QdTEJI6EU4yIay/cfU/xV4ZxlM5JiTv7zWYgA64NpS5Q==}
- dependencies:
- which: 1.3.1
- dev: true
- /karma-coverage/2.2.1:
+ karma-coverage@2.2.1:
resolution: {integrity: sha512-yj7hbequkQP2qOSb20GuNSIyE//PgJWHwC2IydLE6XRtsnaflv+/OSGNssPjobYUlhVVagy99TQpqUt3vAUG7A==}
engines: {node: '>=10.0.0'}
- dependencies:
- istanbul-lib-coverage: 3.2.2
- istanbul-lib-instrument: 5.2.1
- 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
- dev: true
- /karma-jasmine-html-reporter/2.1.0_jvw23k3cxymogxssauqt35ffa4:
+ karma-jasmine-html-reporter@2.1.0:
resolution: {integrity: sha512-sPQE1+nlsn6Hwb5t+HHwyy0A1FNCVKuL1192b+XNauMYWThz2kweiBVW1DqloRpVvZIJkIoHVB7XRpK78n1xbQ==}
peerDependencies:
jasmine-core: ^4.0.0 || ^5.0.0
karma: ^6.0.0
karma-jasmine: ^5.0.0
- dependencies:
- jasmine-core: 5.2.0
- karma: 6.4.4
- karma-jasmine: 5.1.0_karma@6.4.4
- dev: true
- /karma-jasmine/5.1.0_karma@6.4.4:
+ karma-jasmine@5.1.0:
resolution: {integrity: sha512-i/zQLFrfEpRyQoJF9fsCdTMOF5c2dK7C7OmsuKg2D0YSsuZSfQDiLuaiktbuio6F2wiCsZSnSnieIQ0ant/uzQ==}
engines: {node: '>=12'}
peerDependencies:
karma: ^6.0.0
- dependencies:
- jasmine-core: 4.6.1
- karma: 6.4.4
- dev: true
- /karma-source-map-support/1.4.0:
+ karma-source-map-support@1.4.0:
resolution: {integrity: sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==}
- dependencies:
- source-map-support: 0.5.21
- dev: true
- /karma/6.4.4:
+ karma@6.4.4:
resolution: {integrity: sha512-LrtUxbdvt1gOpo3gxG+VAJlJAEMhbWlM4YrFQgql98FwF7+K8K12LYO4hnDdUkNjeztYrOXEMqgTajSWgmtI/w==}
engines: {node: '>= 10'}
hasBin: true
- 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.21
- 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.8.1
- source-map: 0.6.1
- tmp: 0.2.3
- ua-parser-js: 0.7.40
- yargs: 16.2.0
- transitivePeerDependencies:
- - bufferutil
- - debug
- - supports-color
- - utf-8-validate
- dev: true
- /keyv/4.5.4:
+ keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
- dependencies:
- json-buffer: 3.0.1
- dev: true
- /kind-of/6.0.3:
+ kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- dev: true
- /kleur/3.0.3:
+ kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- /kleur/4.1.5:
+ kleur@4.1.5:
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
- /klona/2.0.6:
+ klona@2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
- /knitwork/1.2.0:
+ knitwork@1.2.0:
resolution: {integrity: sha512-xYSH7AvuQ6nXkq42x0v5S8/Iry+cfulBz/DJQzhIyESdLD7425jXsPy4vn5cCXU+HhRN2kVw51Vd1K6/By4BQg==}
- /known-css-properties/0.30.0:
+ known-css-properties@0.30.0:
resolution: {integrity: sha512-VSWXYUnsPu9+WYKkfmJyLKtIvaRJi1kXUqVmBACORXZQxT5oZDsoZ2vQP+bQFDnWtpI/4eq3MLoRMjI2fnLzTQ==}
- dev: true
- /kolorist/1.8.0:
+ kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- /language-subtag-registry/0.3.23:
+ language-subtag-registry@0.3.23:
resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
- dev: true
- /language-tags/1.0.9:
+ language-tags@1.0.9:
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
engines: {node: '>=0.10'}
- dependencies:
- language-subtag-registry: 0.3.23
- dev: true
- /launch-editor/2.10.0:
+ launch-editor@2.10.0:
resolution: {integrity: sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==}
- dependencies:
- picocolors: 1.1.1
- shell-quote: 1.8.2
lazystream@1.0.1:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
engines: {node: '>= 0.6.3'}
- dependencies:
- readable-stream: 2.3.8
- /less-loader/12.2.0_less@4.2.2+webpack@5.98.0:
+ less-loader@12.2.0:
resolution: {integrity: sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==}
engines: {node: '>= 18.12.0'}
peerDependencies:
@@ -15516,305 +8310,156 @@ packages:
optional: true
webpack:
optional: true
- dependencies:
- less: 4.2.2
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
- /less/4.2.2:
+ less@4.2.2:
resolution: {integrity: sha512-tkuLHQlvWUTeQ3doAqnHbNn8T6WX1KA8yvbKG9x4VtKtIjHsVKQZCH11zRgAfbDAXC2UNIg/K9BYAAcEzUIrNg==}
engines: {node: '>=6'}
hasBin: true
- dependencies:
- copy-anything: 2.0.6
- parse-node-version: 1.0.1
- tslib: 2.8.1
- optionalDependencies:
- errno: 0.1.8
- graceful-fs: 4.2.11
- image-size: 0.5.5
- make-dir: 2.1.0
- mime: 1.6.0
- needle: 3.3.1
- source-map: 0.6.1
- /levn/0.4.1:
+ levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
- dependencies:
- prelude-ls: 1.2.1
- type-check: 0.4.0
- dev: true
- /license-webpack-plugin/4.0.2_webpack@5.98.0:
+ license-webpack-plugin@4.0.2:
resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==}
peerDependencies:
webpack: '*'
peerDependenciesMeta:
webpack:
optional: true
- webpack-sources:
- optional: true
- dependencies:
- webpack: 5.98.0_esbuild@0.25.0
- webpack-sources: 3.2.3
- dev: true
light-my-request@6.6.0:
resolution: {integrity: sha512-CHYbu8RtboSIoVsHZ6Ye4cj4Aw/yg2oAFimlF7mNvfDV192LR7nDiKtSIfCuLT7KokPSTn/9kfVLm5OGN0A28A==}
- /lilconfig/2.1.0:
+ lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- dev: true
- /lilconfig/3.1.3:
+ lilconfig@3.1.3:
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
- /lines-and-columns/1.2.4:
+ lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- dev: true
- /lint-staged/15.3.0:
+ lint-staged@15.3.0:
resolution: {integrity: sha512-vHFahytLoF2enJklgtOtCtIjZrKD/LoxlaUusd5nh7dWv/dkKQJY74ndFSzxCdv7g0ueGg1ORgTSt4Y9LPZn9A==}
engines: {node: '>=18.12.0'}
hasBin: true
- dependencies:
- chalk: 5.4.1
- commander: 12.1.0
- debug: 4.4.0
- execa: 8.0.1
- lilconfig: 3.1.3
- listr2: 8.2.5
- micromatch: 4.0.8
- pidtree: 0.6.0
- string-argv: 0.3.2
- yaml: 2.6.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /listhen/1.9.0:
+ listhen@1.9.0:
resolution: {integrity: sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==}
hasBin: true
- dependencies:
- '@parcel/watcher': 2.5.1
- '@parcel/watcher-wasm': 2.5.1
- citty: 0.1.6
- clipboardy: 4.0.0
- consola: 3.4.0
- crossws: 0.3.4
- defu: 6.1.4
- get-port-please: 3.1.2
- h3: 1.15.1
- http-shutdown: 1.2.2
- jiti: 2.4.2
- mlly: 1.7.4
- node-forge: 1.3.1
- pathe: 1.1.2
- std-env: 3.8.1
- ufo: 1.5.4
- untun: 0.1.3
- uqr: 0.1.2
- /listr2/8.2.5:
+ listr2@8.2.5:
resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
engines: {node: '>=18.0.0'}
- dependencies:
- cli-truncate: 4.0.0
- colorette: 2.0.20
- eventemitter3: 5.0.1
- log-update: 6.1.0
- rfdc: 1.4.1
- wrap-ansi: 9.0.0
- dev: true
- /lmdb/3.2.6:
+ lmdb@3.2.6:
resolution: {integrity: sha512-SuHqzPl7mYStna8WRotY8XX/EUZBjjv3QyKIByeCLFfC9uXT/OIHByEcA07PzbMfQAM0KYJtLgtpMRlIe5dErQ==}
hasBin: true
- requiresBuild: true
- dependencies:
- msgpackr: 1.11.2
- node-addon-api: 6.1.0
- node-gyp-build-optional-packages: 5.2.2
- ordered-binary: 1.5.3
- weak-lru-cache: 1.2.2
- optionalDependencies:
- '@lmdb/lmdb-darwin-arm64': 3.2.6
- '@lmdb/lmdb-darwin-x64': 3.2.6
- '@lmdb/lmdb-linux-arm': 3.2.6
- '@lmdb/lmdb-linux-arm64': 3.2.6
- '@lmdb/lmdb-linux-x64': 3.2.6
- '@lmdb/lmdb-win32-x64': 3.2.6
- dev: true
- optional: true
- /load-tsconfig/0.2.5:
+ load-tsconfig@0.2.5:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: true
- /loader-runner/4.3.0:
+ loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
- dev: true
- /loader-utils/2.0.4:
+ loader-utils@2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.3
- dev: true
- /loader-utils/3.3.1:
+ loader-utils@3.3.1:
resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==}
engines: {node: '>= 12.13.0'}
- dev: true
- /local-pkg/0.5.1:
+ local-pkg@0.5.1:
resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
engines: {node: '>=14'}
- dependencies:
- mlly: 1.7.4
- pkg-types: 1.3.1
local-pkg@1.1.1:
resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==}
engines: {node: '>=14'}
- dependencies:
- mlly: 1.7.4
- pkg-types: 2.1.0
- quansync: 0.2.8
- /locate-character/3.0.0:
+ locate-character@3.0.0:
resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
- /locate-path/5.0.0:
+ locate-path@5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
- dependencies:
- p-locate: 4.1.0
- dev: true
- /locate-path/6.0.0:
+ locate-path@6.0.0:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
- dependencies:
- p-locate: 5.0.0
- dev: true
- /locate-path/7.2.0:
+ locate-path@7.2.0:
resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- p-locate: 6.0.0
- dev: true
- /lodash.debounce/4.0.8:
+ lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- dev: true
- /lodash.defaults/4.2.0:
+ lodash.defaults@4.2.0:
resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
- /lodash.isarguments/3.1.0:
+ lodash.isarguments@3.1.0:
resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
- /lodash.memoize/4.1.2:
+ lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
- /lodash.merge/4.6.2:
+ lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- dev: true
- /lodash.sortby/4.7.0:
+ lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
- dev: true
- /lodash.startcase/4.4.0:
+ lodash.startcase@4.4.0:
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
- dev: true
- /lodash.uniq/4.5.0:
+ lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- /lodash/4.17.21:
+ lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- /log-symbols/4.1.0:
+ log-symbols@4.1.0:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
- dependencies:
- chalk: 4.1.2
- is-unicode-supported: 0.1.0
- dev: true
- /log-update/6.1.0:
+ log-update@6.1.0:
resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
engines: {node: '>=18'}
- dependencies:
- ansi-escapes: 7.0.0
- cli-cursor: 5.0.0
- slice-ansi: 7.1.0
- strip-ansi: 7.1.0
- wrap-ansi: 9.0.0
- dev: true
- /log4js/6.9.1:
+ log4js@6.9.1:
resolution: {integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==}
engines: {node: '>=8.0'}
- dependencies:
- date-format: 4.0.14
- debug: 4.4.0
- flatted: 3.3.3
- rfdc: 1.4.1
- streamroller: 3.1.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /loose-envify/1.4.0:
+ loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- dependencies:
- js-tokens: 4.0.0
- dev: true
- /loupe/2.3.7:
+ loupe@2.3.7:
resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
- dependencies:
- get-func-name: 2.0.2
- dev: true
- /lru-cache/10.4.3:
+ lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- /lru-cache/4.1.5:
+ lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
- dependencies:
- pseudomap: 1.0.2
- yallist: 2.1.2
- dev: true
- /lru-cache/5.1.1:
+ lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- dependencies:
- yallist: 3.1.1
- /lru-cache/6.0.0:
+ lru-cache@6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
- dependencies:
- yallist: 4.0.0
- dev: true
- /lru-cache/7.18.3:
+ lru-cache@7.18.3:
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
engines: {node: '>=12'}
- dev: true
magic-regexp@0.8.0:
resolution: {integrity: sha512-lOSLWdE156csDYwCTIGiAymOLN7Epu/TU5e/oAnISZfU6qP+pgjkE+xbVjVn3yLPKN8n1G2yIAYTAM5KRk6/ow==}
@@ -15822,358 +8467,227 @@ packages:
magic-string-ast@0.7.1:
resolution: {integrity: sha512-ub9iytsEbT7Yw/Pd29mSo/cNQpaEu67zR1VVcXDiYjSFwzeBxNdTd0FMnSslLQXiRj8uGPzwsaoefrMD5XAmdw==}
engines: {node: '>=16.14.0'}
- dependencies:
- magic-string: 0.30.17
- /magic-string/0.30.17:
+ magic-string@0.30.17:
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
- /magicast/0.3.5:
+ magicast@0.3.5:
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
- dependencies:
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
- source-map-js: 1.2.1
- /make-dir/2.1.0:
+ make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
- requiresBuild: true
- dependencies:
- pify: 4.0.1
- semver: 5.7.2
- optional: true
- /make-dir/4.0.0:
+ make-dir@4.0.0:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
- dependencies:
- semver: 7.7.1
- dev: true
- /make-error/1.3.6:
+ make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- dev: true
- /make-fetch-happen/14.0.3:
+ make-fetch-happen@14.0.3:
resolution: {integrity: sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@npmcli/agent': 3.0.0
- cacache: 19.0.1
- http-cache-semantics: 4.1.1
- minipass: 7.1.2
- minipass-fetch: 4.0.1
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- negotiator: 1.0.0
- proc-log: 5.0.0
- promise-retry: 2.0.1
- ssri: 12.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /mark.js/8.11.1:
+ mark.js@8.11.1:
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
- dev: true
- /marked-terminal/7.3.0_marked@9.1.6:
+ marked-terminal@7.3.0:
resolution: {integrity: sha512-t4rBvPsHc57uE/2nJOLmMbZCQ4tgAccAED3ngXQqW6g+TxA488JzJ+FK3lQkzBQOI1mRV/r/Kq+1ZlJ4D0owQw==}
engines: {node: '>=16.0.0'}
peerDependencies:
marked: '>=1 <16'
- dependencies:
- ansi-escapes: 7.0.0
- ansi-regex: 6.1.0
- chalk: 5.4.1
- cli-highlight: 2.1.11
- cli-table3: 0.6.5
- marked: 9.1.6
- node-emoji: 2.2.0
- supports-hyperlinks: 3.2.0
- dev: true
- /marked/9.1.6:
+ marked@9.1.6:
resolution: {integrity: sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==}
engines: {node: '>= 16'}
hasBin: true
- dev: true
- /math-intrinsics/1.1.0:
+ math-intrinsics@1.1.0:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
engines: {node: '>= 0.4'}
- /mdast-util-to-hast/13.2.0:
+ mdast-util-to-hast@13.2.0:
resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
- dependencies:
- '@types/hast': 3.0.4
- '@types/mdast': 4.0.4
- '@ungap/structured-clone': 1.3.0
- devlop: 1.1.0
- micromark-util-sanitize-uri: 2.0.1
- trim-lines: 3.0.1
- unist-util-position: 5.0.0
- unist-util-visit: 5.0.0
- vfile: 6.0.3
- dev: true
- /mdn-data/2.0.28:
+ mdn-data@2.0.28:
resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
- /mdn-data/2.0.30:
+ mdn-data@2.0.30:
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
- /media-typer/0.3.0:
+ media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
- dev: true
- /memfs/4.17.0:
+ memfs@4.17.0:
resolution: {integrity: sha512-4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg==}
engines: {node: '>= 4.0.0'}
- dependencies:
- '@jsonjoy.com/json-pack': 1.1.1_tslib@2.8.1
- '@jsonjoy.com/util': 1.5.0_tslib@2.8.1
- tree-dump: 1.0.2_tslib@2.8.1
- tslib: 2.8.1
- dev: true
- /memorystream/0.3.1:
+ memorystream@0.3.1:
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
engines: {node: '>= 0.10.0'}
- dev: true
- /merge-descriptors/1.0.3:
+ merge-descriptors@1.0.3:
resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
- dev: true
- /merge-stream/2.0.0:
+ merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- /merge2/1.4.1:
+ merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /methods/1.1.2:
+ methods@1.1.2:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
- dev: true
- /micromark-util-character/2.1.1:
+ micromark-util-character@2.1.1:
resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
- dependencies:
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.2
- dev: true
- /micromark-util-encode/2.0.1:
+ micromark-util-encode@2.0.1:
resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
- dev: true
- /micromark-util-sanitize-uri/2.0.1:
+ micromark-util-sanitize-uri@2.0.1:
resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
- dependencies:
- micromark-util-character: 2.1.1
- micromark-util-encode: 2.0.1
- micromark-util-symbol: 2.0.1
- dev: true
- /micromark-util-symbol/2.0.1:
+ micromark-util-symbol@2.0.1:
resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
- dev: true
micromark-util-types@2.0.2:
resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==}
- /micromatch/4.0.8:
+ micromatch@4.0.8:
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
- dependencies:
- braces: 3.0.3
- picomatch: 2.3.1
- /mime-db/1.52.0:
+ mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
mime-db@1.54.0:
resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
engines: {node: '>= 0.6'}
- dev: true
- /mime-types/2.1.35:
+ mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
- dependencies:
- mime-db: 1.52.0
- /mime/1.6.0:
+ mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
- /mime/2.6.0:
+ mime@2.6.0:
resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
engines: {node: '>=4.0.0'}
hasBin: true
- dev: true
- /mime/3.0.0:
+ mime@3.0.0:
resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
engines: {node: '>=10.0.0'}
hasBin: true
- /mime/4.0.6:
+ mime@4.0.6:
resolution: {integrity: sha512-4rGt7rvQHBbaSOF9POGkk1ocRP16Md1x36Xma8sz8h8/vfCUI2OtEIeCqe4Ofes853x4xDoPiFLIT47J5fI/7A==}
engines: {node: '>=16'}
hasBin: true
- /mimic-fn/2.1.0:
+ mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- dev: true
- /mimic-fn/4.0.0:
+ mimic-fn@4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
- /mimic-function/5.0.1:
+ mimic-function@5.0.1:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
- dev: true
- /mini-css-extract-plugin/2.9.2_webpack@5.98.0:
+ mini-css-extract-plugin@2.9.2:
resolution: {integrity: sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
- dependencies:
- schema-utils: 4.3.0
- tapable: 2.2.1
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
- /minimalistic-assert/1.0.1:
+ minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
- dev: true
- /minimatch/3.1.2:
+ minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
- dependencies:
- brace-expansion: 1.1.11
- /minimatch/5.1.6:
+ minimatch@5.1.6:
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
engines: {node: '>=10'}
- dependencies:
- brace-expansion: 2.0.1
- /minimatch/9.0.1:
+ minimatch@9.0.1:
resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
engines: {node: '>=16 || 14 >=14.17'}
- dependencies:
- brace-expansion: 2.0.1
- dev: true
- /minimatch/9.0.5:
+ minimatch@9.0.5:
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
- dependencies:
- brace-expansion: 2.0.1
- /minimist/1.2.8:
+ minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- /minipass-collect/2.0.1:
+ minipass-collect@2.0.1:
resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
engines: {node: '>=16 || 14 >=14.17'}
- dependencies:
- minipass: 7.1.2
- dev: true
- /minipass-fetch/4.0.1:
+ minipass-fetch@4.0.1:
resolution: {integrity: sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- minipass: 7.1.2
- minipass-sized: 1.0.3
- minizlib: 3.0.1
- optionalDependencies:
- encoding: 0.1.13
- dev: true
- /minipass-flush/1.0.5:
+ minipass-flush@1.0.5:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
engines: {node: '>= 8'}
- dependencies:
- minipass: 3.3.6
- dev: true
- /minipass-pipeline/1.2.4:
+ minipass-pipeline@1.2.4:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
engines: {node: '>=8'}
- dependencies:
- minipass: 3.3.6
- dev: true
- /minipass-sized/1.0.3:
+ minipass-sized@1.0.3:
resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
engines: {node: '>=8'}
- dependencies:
- minipass: 3.3.6
- dev: true
- /minipass/3.3.6:
+ minipass@3.3.6:
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
- dependencies:
- yallist: 4.0.0
- /minipass/5.0.0:
+ minipass@5.0.0:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- /minipass/7.1.2:
+ minipass@7.1.2:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
- /minisearch/6.3.0:
+ minisearch@6.3.0:
resolution: {integrity: sha512-ihFnidEeU8iXzcVHy74dhkxh/dn8Dc08ERl0xwoMMGqp4+LvRSCgicb+zGqWthVokQKvCSxITlh3P08OzdTYCQ==}
- dev: true
- /minizlib/2.1.2:
+ minizlib@2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
- dependencies:
- minipass: 3.3.6
- yallist: 4.0.0
- /minizlib/3.0.1:
+ minizlib@3.0.1:
resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==}
engines: {node: '>= 18'}
- dependencies:
- minipass: 7.1.2
- rimraf: 5.0.10
- /mitt/3.0.1:
+ mitt@3.0.1:
resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
- /mkdirp/0.5.6:
+ mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
- dependencies:
- minimist: 1.2.8
- dev: true
- /mkdirp/1.0.4:
+ mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
- /mkdirp/3.0.1:
+ mkdirp@3.0.1:
resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
engines: {node: '>=10'}
hasBin: true
@@ -16195,11 +8709,6 @@ packages:
mlly@1.7.4:
resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
- dependencies:
- acorn: 8.14.1
- pathe: 2.0.3
- pkg-types: 1.3.1
- ufo: 1.5.4
mocked-exports@0.1.1:
resolution: {integrity: sha512-aF7yRQr/Q0O2/4pIXm6PZ5G+jAd7QS4Yu8m+WEeEHGnbo+7mE36CbLSDQiXYV8bVL3NfmdeqPJct0tUlnjVSnA==}
@@ -16207,90 +8716,50 @@ packages:
mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
- dev: true
mrmime@2.0.1:
resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
engines: {node: '>=10'}
- /ms/2.0.0:
+ ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- /ms/2.1.2:
+ ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
- dev: true
- /ms/2.1.3:
+ ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- /msgpackr-extract/3.0.3:
+ msgpackr-extract@3.0.3:
resolution: {integrity: sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==}
hasBin: true
- requiresBuild: true
- dependencies:
- node-gyp-build-optional-packages: 5.2.2
- optionalDependencies:
- '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.3
- '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.3
- dev: true
- optional: true
- /msgpackr/1.11.2:
+ msgpackr@1.11.2:
resolution: {integrity: sha512-F9UngXRlPyWCDEASDpTf6c9uNhGPTqnTeLVt7bN+bU1eajoR/8V9ys2BRaV5C/e5ihE6sJ9uPIKaYt6bFuO32g==}
- optionalDependencies:
- msgpackr-extract: 3.0.3
- dev: true
- optional: true
- /muggle-string/0.4.1:
+ muggle-string@0.4.1:
resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
- dev: true
- /multicast-dns/7.2.5:
+ multicast-dns@7.2.5:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
- dependencies:
- dns-packet: 5.6.1
- thunky: 1.1.0
- dev: true
- /mute-stream/1.0.0:
+ mute-stream@1.0.0:
resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dev: true
- /mute-stream/2.0.0:
+ mute-stream@2.0.0:
resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
engines: {node: ^18.17.0 || >=20.5.0}
- dev: true
- /mz/2.7.0:
+ mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
- dependencies:
- any-promise: 1.3.0
- object-assign: 4.1.1
- thenify-all: 1.6.0
- dev: true
nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@3.3.9:
- resolution: {integrity: sha512-SppoicMGpZvbF1l3z4x7No3OlIjP7QJvC9XR7AhZr1kL133KHnKPztkKDc+Ir4aJ/1VhTySrtKhrsycmrMQfvg==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
-
- nanoid@5.1.3:
- resolution: {integrity: sha512-zAbEOEr7u2CbxwoMRlz/pNSpRP0FdAU4pRaYunCdEezWohXFs+a0Xw7RfkKaezMsmSM1vttcLthJtwRnVtOfHQ==}
- engines: {node: ^18 || >=20}
- hasBin: true
-
nanoid@5.1.5:
resolution: {integrity: sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==}
engines: {node: ^18 || >=20}
@@ -16299,53 +8768,35 @@ packages:
nanotar@0.1.1:
resolution: {integrity: sha512-AiJsGsSF3O0havL1BydvI4+wR76sKT+okKRwWIaK96cZUnXqH0uNBOsHlbwZq3+m2BR1VKqHDVudl3gO4mYjpQ==}
- /nanotar/0.2.0:
- resolution: {integrity: sha512-9ca1h0Xjvo9bEkE4UOxgAzLV0jHKe6LMaxo37ND2DAhhAtd0j8pR1Wxz+/goMrZO8AEZTWCmyaOsFI/W5AdpCQ==}
- dev: false
-
- /napi-wasm/1.1.3:
- resolution: {integrity: sha512-h/4nMGsHjZDCYmQVNODIrYACVJ+I9KItbG+0si6W/jSjdA9JbWDoU4LLeMXVcEQGHjttI2tuXqDrbGF7qkUHHg==}
-
- /natural-compare-lite/1.4.0:
+ natural-compare-lite@1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
- dev: true
- /natural-compare/1.4.0:
+ natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- dev: true
- /needle/3.3.1:
+ needle@3.3.1:
resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
engines: {node: '>= 4.4.x'}
hasBin: true
- requiresBuild: true
- dependencies:
- iconv-lite: 0.6.3
- sax: 1.4.1
- optional: true
- /negotiator/0.6.3:
+ negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
- dev: true
- /negotiator/0.6.4:
+ negotiator@0.6.4:
resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
engines: {node: '>= 0.6'}
- dev: true
- /negotiator/1.0.0:
+ negotiator@1.0.0:
resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
engines: {node: '>= 0.6'}
- dev: true
- /neo-async/2.6.2:
+ neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- /netmask/2.0.2:
+ netmask@2.0.2:
resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
engines: {node: '>= 0.4.0'}
- dev: true
next@15.2.4:
resolution: {integrity: sha512-VwL+LAaPSxEkd3lU2xWbgEOtrM8oedmyhBqaVNmgKB+GvZlCy9rgaEc+y2on0wv+l0oSFqLtYD6dcC1eAedUaQ==}
@@ -16367,33 +8818,9 @@ packages:
optional: true
sass:
optional: true
- dependencies:
- '@next/env': 15.1.6
- '@swc/counter': 0.1.3
- '@swc/helpers': 0.5.15
- busboy: 1.6.0
- caniuse-lite: 1.0.30001702
- postcss: 8.4.31
- react: 19.0.0
- react-dom: 19.0.0_react@19.0.0
- styled-jsx: 5.1.6_react@19.0.0
- optionalDependencies:
- '@next/swc-darwin-arm64': 15.1.6
- '@next/swc-darwin-x64': 15.1.6
- '@next/swc-linux-arm64-gnu': 15.1.6
- '@next/swc-linux-arm64-musl': 15.1.6
- '@next/swc-linux-x64-gnu': 15.1.6
- '@next/swc-linux-x64-musl': 15.1.6
- '@next/swc-win32-arm64-msvc': 15.1.6
- '@next/swc-win32-x64-msvc': 15.1.6
- sharp: 0.33.5
- transitivePeerDependencies:
- - '@babel/core'
- - babel-plugin-macros
- dev: false
- nitropack@2.11.6:
- resolution: {integrity: sha512-iaLzOKYxsNL8G6h9cMFTC/hAN4RfhZsrFzFFzemr6Vfn57MooYEz6KLeUoRyTposlAeEWTVejz8naYOORIrnDg==}
+ nitropack@2.11.8:
+ resolution: {integrity: sha512-ummTu4R8Lhd1nO3nWrW7eeiHA2ey3ntbWFKkYakm4rcbvT6meWp+oykyrYBNFQKhobQl9CydmUWlCyztYXFPJw==}
engines: {node: ^16.11.0 || >=17.0.0}
hasBin: true
peerDependencies:
@@ -16401,415 +8828,53 @@ packages:
peerDependenciesMeta:
xml2js:
optional: true
- dependencies:
- '@cloudflare/kv-asset-handler': 0.3.4
- '@netlify/functions': 3.0.0
- '@rollup/plugin-alias': 5.1.1_rollup@4.35.0
- '@rollup/plugin-commonjs': 28.0.3_rollup@4.35.0
- '@rollup/plugin-inject': 5.0.5_rollup@4.35.0
- '@rollup/plugin-json': 6.1.0_rollup@4.35.0
- '@rollup/plugin-node-resolve': 16.0.0_rollup@4.35.0
- '@rollup/plugin-replace': 6.0.2_rollup@4.35.0
- '@rollup/plugin-terser': 0.4.4_rollup@4.35.0
- '@types/http-proxy': 1.17.16
- '@vercel/nft': 0.29.2_rollup@4.35.0
- archiver: 7.0.1
- c12: 3.0.2_magicast@0.3.5
- chokidar: 4.0.3
- citty: 0.1.6
- compatx: 0.1.8
- confbox: 0.2.1
- consola: 3.4.0
- cookie-es: 2.0.0
- croner: 9.0.0
- crossws: 0.3.4
- db0: 0.3.1
- defu: 6.1.4
- destr: 2.0.3
- dot-prop: 9.0.0
- esbuild: 0.25.0
- escape-string-regexp: 5.0.0
- etag: 1.8.1
- exsolve: 1.0.4
- fs-extra: 11.3.0
- globby: 14.1.0
- gzip-size: 7.0.0
- h3: 1.15.1
- hookable: 5.5.3
- httpxy: 0.1.7
- ioredis: 5.6.0
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- listhen: 1.9.0
- magic-string: 0.30.17
- magicast: 0.3.5
- mime: 4.0.6
- mlly: 1.7.4
- node-fetch-native: 1.6.6
- node-mock-http: 1.0.0
- ofetch: 1.4.1
- ohash: 2.0.11
- openapi-typescript: 7.6.1
- pathe: 2.0.3
- perfect-debounce: 1.0.0
- pkg-types: 2.1.0
- pretty-bytes: 6.1.1
- radix3: 1.1.2
- rollup: 4.35.0
- rollup-plugin-visualizer: 5.14.0_rollup@4.35.0
- scule: 1.3.0
- semver: 7.7.1
- serve-placeholder: 2.0.2
- serve-static: 1.16.2
- source-map: 0.7.4
- std-env: 3.8.1
- ufo: 1.5.4
- ultrahtml: 1.5.3
- uncrypto: 0.1.3
- unctx: 2.4.1
- unenv: 2.0.0-rc.14
- unimport: 4.1.2
- unplugin-utils: 0.2.4
- unstorage: 1.15.0_db0@0.3.1+ioredis@5.6.0
- untyped: 2.0.0
- unwasm: 0.3.9
- youch: 4.1.0-beta.6
- youch-core: 0.3.2
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@electric-sql/pglite'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/kv'
- - aws4fetch
- - better-sqlite3
- - drizzle-orm
- - encoding
- - idb-keyval
- - mysql2
- - rolldown
- - sqlite3
- - supports-color
- - typescript
- - uploadthing
- dev: false
- /nitropack/2.11.6_typescript@5.5.3:
- resolution: {integrity: sha512-iaLzOKYxsNL8G6h9cMFTC/hAN4RfhZsrFzFFzemr6Vfn57MooYEz6KLeUoRyTposlAeEWTVejz8naYOORIrnDg==}
- engines: {node: ^16.11.0 || >=17.0.0}
- hasBin: true
+ node-addon-api@6.1.0:
+ resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
+
+ node-addon-api@7.1.1:
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
+
+ node-domexception@1.0.0:
+ resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
+ engines: {node: '>=10.5.0'}
+
+ node-emoji@2.2.0:
+ resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==}
+ engines: {node: '>=18'}
+
+ node-fetch-native@1.6.6:
+ resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==}
+
+ node-fetch@2.7.0:
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
+ engines: {node: 4.x || >=6.0.0}
peerDependencies:
- xml2js: ^0.6.2
+ encoding: ^0.1.0
peerDependenciesMeta:
- xml2js:
+ encoding:
optional: true
- dependencies:
- '@cloudflare/kv-asset-handler': 0.3.4
- '@netlify/functions': 3.0.0
- '@rollup/plugin-alias': 5.1.1_rollup@4.35.0
- '@rollup/plugin-commonjs': 28.0.3_rollup@4.35.0
- '@rollup/plugin-inject': 5.0.5_rollup@4.35.0
- '@rollup/plugin-json': 6.1.0_rollup@4.35.0
- '@rollup/plugin-node-resolve': 16.0.0_rollup@4.35.0
- '@rollup/plugin-replace': 6.0.2_rollup@4.35.0
- '@rollup/plugin-terser': 0.4.4_rollup@4.35.0
- '@types/http-proxy': 1.17.16
- '@vercel/nft': 0.29.2_rollup@4.35.0
- archiver: 7.0.1
- c12: 3.0.2_magicast@0.3.5
- chokidar: 4.0.3
- citty: 0.1.6
- compatx: 0.1.8
- confbox: 0.2.1
- consola: 3.4.0
- cookie-es: 2.0.0
- croner: 9.0.0
- crossws: 0.3.4
- db0: 0.3.1
- defu: 6.1.4
- destr: 2.0.3
- dot-prop: 9.0.0
- esbuild: 0.25.0
- escape-string-regexp: 5.0.0
- etag: 1.8.1
- exsolve: 1.0.4
- fs-extra: 11.3.0
- globby: 14.1.0
- gzip-size: 7.0.0
- h3: 1.15.1
- hookable: 5.5.3
- httpxy: 0.1.7
- ioredis: 5.6.0
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- listhen: 1.9.0
- magic-string: 0.30.17
- magicast: 0.3.5
- mime: 4.0.6
- mlly: 1.7.4
- node-fetch-native: 1.6.6
- node-mock-http: 1.0.0
- ofetch: 1.4.1
- ohash: 2.0.11
- openapi-typescript: 7.6.1_typescript@5.5.3
- pathe: 2.0.3
- perfect-debounce: 1.0.0
- pkg-types: 2.1.0
- pretty-bytes: 6.1.1
- radix3: 1.1.2
- rollup: 4.35.0
- rollup-plugin-visualizer: 5.14.0_rollup@4.35.0
- scule: 1.3.0
- semver: 7.7.1
- serve-placeholder: 2.0.2
- serve-static: 1.16.2
- source-map: 0.7.4
- std-env: 3.8.1
- ufo: 1.5.4
- ultrahtml: 1.5.3
- uncrypto: 0.1.3
- unctx: 2.4.1
- unenv: 2.0.0-rc.14
- unimport: 4.1.2
- unplugin-utils: 0.2.4
- unstorage: 1.15.0_db0@0.3.1+ioredis@5.6.0
- untyped: 2.0.0
- unwasm: 0.3.9
- youch: 4.1.0-beta.6
- youch-core: 0.3.2
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@electric-sql/pglite'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/kv'
- - aws4fetch
- - better-sqlite3
- - drizzle-orm
- - encoding
- - idb-keyval
- - mysql2
- - rolldown
- - sqlite3
- - supports-color
- - typescript
- - uploadthing
- dev: true
-
- /nitropack/2.11.6_typescript@5.8.2:
- resolution: {integrity: sha512-iaLzOKYxsNL8G6h9cMFTC/hAN4RfhZsrFzFFzemr6Vfn57MooYEz6KLeUoRyTposlAeEWTVejz8naYOORIrnDg==}
- engines: {node: ^16.11.0 || >=17.0.0}
- hasBin: true
- peerDependencies:
- xml2js: ^0.6.2
- peerDependenciesMeta:
- xml2js:
- optional: true
- dependencies:
- '@cloudflare/kv-asset-handler': 0.3.4
- '@netlify/functions': 3.0.0
- '@rollup/plugin-alias': 5.1.1_rollup@4.35.0
- '@rollup/plugin-commonjs': 28.0.3_rollup@4.35.0
- '@rollup/plugin-inject': 5.0.5_rollup@4.35.0
- '@rollup/plugin-json': 6.1.0_rollup@4.35.0
- '@rollup/plugin-node-resolve': 16.0.0_rollup@4.35.0
- '@rollup/plugin-replace': 6.0.2_rollup@4.35.0
- '@rollup/plugin-terser': 0.4.4_rollup@4.35.0
- '@types/http-proxy': 1.17.16
- '@vercel/nft': 0.29.2_rollup@4.35.0
- archiver: 7.0.1
- c12: 3.0.2_magicast@0.3.5
- chokidar: 4.0.3
- citty: 0.1.6
- compatx: 0.1.8
- confbox: 0.2.1
- consola: 3.4.0
- cookie-es: 2.0.0
- croner: 9.0.0
- crossws: 0.3.4
- db0: 0.3.1
- defu: 6.1.4
- destr: 2.0.3
- dot-prop: 9.0.0
- esbuild: 0.25.0
- escape-string-regexp: 5.0.0
- etag: 1.8.1
- exsolve: 1.0.4
- fs-extra: 11.3.0
- globby: 14.1.0
- gzip-size: 7.0.0
- h3: 1.15.1
- hookable: 5.5.3
- httpxy: 0.1.7
- ioredis: 5.6.0
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- listhen: 1.9.0
- magic-string: 0.30.17
- magicast: 0.3.5
- mime: 4.0.6
- mlly: 1.7.4
- node-fetch-native: 1.6.6
- node-mock-http: 1.0.0
- ofetch: 1.4.1
- ohash: 2.0.11
- openapi-typescript: 7.6.1_typescript@5.8.2
- pathe: 2.0.3
- perfect-debounce: 1.0.0
- pkg-types: 2.1.0
- pretty-bytes: 6.1.1
- radix3: 1.1.2
- rollup: 4.35.0
- rollup-plugin-visualizer: 5.14.0_rollup@4.35.0
- scule: 1.3.0
- semver: 7.7.1
- serve-placeholder: 2.0.2
- serve-static: 1.16.2
- source-map: 0.7.4
- std-env: 3.8.1
- ufo: 1.5.4
- ultrahtml: 1.5.3
- uncrypto: 0.1.3
- unctx: 2.4.1
- unenv: 2.0.0-rc.14
- unimport: 4.1.2
- unplugin-utils: 0.2.4
- unstorage: 1.15.0_db0@0.3.1+ioredis@5.6.0
- untyped: 2.0.0
- unwasm: 0.3.9
- youch: 4.1.0-beta.6
- youch-core: 0.3.2
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@electric-sql/pglite'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/kv'
- - aws4fetch
- - better-sqlite3
- - drizzle-orm
- - encoding
- - idb-keyval
- - mysql2
- - rolldown
- - sqlite3
- - supports-color
- - typescript
- - uploadthing
-
- /node-addon-api/6.1.0:
- resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
- dev: true
- optional: true
-
- /node-addon-api/7.1.1:
- resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
-
- /node-domexception/1.0.0:
- resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
- engines: {node: '>=10.5.0'}
- dev: true
-
- /node-emoji/2.2.0:
- resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==}
- engines: {node: '>=18'}
- dependencies:
- '@sindresorhus/is': 4.6.0
- char-regex: 1.0.2
- emojilib: 2.4.0
- skin-tone: 2.0.0
- dev: true
-
- /node-fetch-native/1.6.6:
- resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==}
-
- /node-fetch/2.7.0:
- resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
- dependencies:
- whatwg-url: 5.0.0
- /node-fetch/3.3.2:
+ node-fetch@3.3.2:
resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- data-uri-to-buffer: 4.0.1
- fetch-blob: 3.2.0
- formdata-polyfill: 4.0.10
- dev: true
- /node-forge/1.3.1:
+ node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
- /node-gyp-build-optional-packages/5.2.2:
+ node-gyp-build-optional-packages@5.2.2:
resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==}
hasBin: true
- dependencies:
- detect-libc: 2.0.3
- dev: true
- optional: true
- /node-gyp-build/4.8.4:
+ node-gyp-build@4.8.4:
resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
hasBin: true
- /node-gyp/11.1.0:
+ node-gyp@11.1.0:
resolution: {integrity: sha512-/+7TuHKnBpnMvUQnsYEb0JOozDZqarQbfNuSGLXIjhStMT0fbw7IdSqWgopOP5xhRZE+lsbIvAHcekddruPZgQ==}
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
- dependencies:
- env-paths: 2.2.1
- exponential-backoff: 3.1.2
- glob: 10.4.5
- graceful-fs: 4.2.11
- make-fetch-happen: 14.0.3
- nopt: 8.1.0
- proc-log: 5.0.0
- semver: 7.7.1
- tar: 7.4.3
- which: 5.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
node-mock-http@1.0.0:
resolution: {integrity: sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==}
@@ -16817,140 +8882,82 @@ packages:
node-releases@2.0.19:
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
- /nopt/7.2.1:
+ nopt@7.2.1:
resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
- dependencies:
- abbrev: 2.0.0
- dev: true
- /nopt/8.1.0:
+ nopt@8.1.0:
resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==}
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
- dependencies:
- abbrev: 3.0.0
- /normalize-path/3.0.0:
+ normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- /normalize-range/0.1.2:
+ normalize-range@0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- /npm-bundled/4.0.0:
+ npm-bundled@4.0.0:
resolution: {integrity: sha512-IxaQZDMsqfQ2Lz37VvyyEtKLe8FsRZuysmedy/N06TU1RyVppYKXrO4xIhR0F+7ubIBox6Q7nir6fQI3ej39iA==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- npm-normalize-package-bin: 4.0.0
- dev: true
- /npm-install-checks/7.1.1:
+ npm-install-checks@7.1.1:
resolution: {integrity: sha512-u6DCwbow5ynAX5BdiHQ9qvexme4U3qHW3MWe5NqH+NeBm0LbiH6zvGjNNew1fY+AZZUtVHbOPF3j7mJxbUzpXg==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- semver: 7.7.1
- dev: true
- /npm-normalize-package-bin/3.0.1:
+ npm-normalize-package-bin@3.0.1:
resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dev: true
- /npm-normalize-package-bin/4.0.0:
+ npm-normalize-package-bin@4.0.0:
resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==}
engines: {node: ^18.17.0 || >=20.5.0}
- dev: true
- /npm-package-arg/12.0.2:
+ npm-package-arg@12.0.2:
resolution: {integrity: sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- hosted-git-info: 8.0.2
- proc-log: 5.0.0
- semver: 7.7.1
- validate-npm-package-name: 6.0.0
- dev: true
- /npm-packlist/9.0.0:
+ npm-packlist@9.0.0:
resolution: {integrity: sha512-8qSayfmHJQTx3nJWYbbUmflpyarbLMBc6LCAjYsiGtXxDB68HaZpb8re6zeaLGxZzDuMdhsg70jryJe+RrItVQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- ignore-walk: 7.0.0
- dev: true
- /npm-pick-manifest/10.0.0:
+ npm-pick-manifest@10.0.0:
resolution: {integrity: sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- npm-install-checks: 7.1.1
- npm-normalize-package-bin: 4.0.0
- npm-package-arg: 12.0.2
- semver: 7.7.1
- dev: true
- /npm-registry-fetch/18.0.2:
+ npm-registry-fetch@18.0.2:
resolution: {integrity: sha512-LeVMZBBVy+oQb5R6FDV9OlJCcWDU+al10oKpe+nsvcHnG24Z3uM3SvJYKfGJlfGjVU8v9liejCrUR/M5HO5NEQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@npmcli/redact': 3.1.1
- jsonparse: 1.3.1
- make-fetch-happen: 14.0.3
- minipass: 7.1.2
- minipass-fetch: 4.0.1
- minizlib: 3.0.1
- npm-package-arg: 12.0.2
- proc-log: 5.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /npm-run-all2/6.2.0:
+ npm-run-all2@6.2.0:
resolution: {integrity: sha512-wA7yVIkthe6qJBfiJ2g6aweaaRlw72itsFGF6HuwCHKwtwAx/4BY1vVpk6bw6lS8RLMsexoasOkd0aYOmsFG7Q==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>= 8'}
hasBin: true
- dependencies:
- ansi-styles: 6.2.1
- cross-spawn: 7.0.6
- memorystream: 0.3.1
- minimatch: 9.0.5
- pidtree: 0.6.0
- read-package-json-fast: 3.0.2
- shell-quote: 1.8.2
- dev: true
- /npm-run-path/4.0.1:
+ npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- dependencies:
- path-key: 3.1.1
- /npm-run-path/5.3.0:
+ npm-run-path@5.3.0:
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- path-key: 4.0.0
- /npm-run-path/6.0.0:
+ npm-run-path@6.0.0:
resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
engines: {node: '>=18'}
- dependencies:
- path-key: 4.0.0
- unicorn-magic: 0.3.0
- /nth-check/2.1.1:
+ nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- dependencies:
- boolbase: 1.0.0
- nuxi@3.22.5:
- resolution: {integrity: sha512-fYEA7FDWQAVxGclBA/HHD+I4OurKuGBgxr/IGI6a78vjIg91AIhOPAzVcEkMtCSb0RWOnju3U1XO4ENnHMCq5Q==}
+ nuxi@3.23.1:
+ resolution: {integrity: sha512-l5FJQRpI1qjoRvZBsSSur0Tr5KtRnffEUQLZNjL1aDyAEoXb/lshPdaiL4aEgcJmRK+lys/IATzIFNHzZJ9qsg==}
engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
- /nuxt/3.14.1592_crdijjrbkat5leu3vz4llrpmey:
+ nuxt@3.14.1592:
resolution: {integrity: sha512-roWAQH4Mb6WY72cNos+YVw0DgTCNAhNygiAMCedM7hbX6ESTR2n3VH7tU0yIWDPe/hfFdii4M4wWTTNHOtS44g==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
@@ -16962,284 +8969,19 @@ packages:
optional: true
'@types/node':
optional: true
- dependencies:
- '@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.7.0_vite@6.2.1+vue@3.5.13
- '@nuxt/kit': 3.14.1592
- '@nuxt/schema': 3.14.1592
- '@nuxt/telemetry': 2.6.5
- '@nuxt/vite-builder': 3.14.1592_athuzuloh4kfrhr5uozaoiw4xa
- '@types/node': 22.13.10
- '@unhead/dom': 1.11.20
- '@unhead/shared': 1.11.20
- '@unhead/ssr': 1.11.20
- '@unhead/vue': 1.11.20_vue@3.5.13
- '@vue/shared': 3.5.13
- acorn: 8.14.0
- c12: 2.0.1
- chokidar: 4.0.3
- compatx: 0.1.8
- consola: 3.4.0
- cookie-es: 1.2.2
- defu: 6.1.4
- destr: 2.0.3
- devalue: 5.1.1
- errx: 0.1.0
- esbuild: 0.24.2
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- globby: 14.1.0
- h3: 1.15.1
- hookable: 5.5.3
- ignore: 6.0.2
- impound: 0.2.1
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
- nanotar: 0.1.1
- nitropack: 2.11.6_typescript@5.5.3
- nuxi: 3.22.5
- nypm: 0.3.12
- ofetch: 1.4.1
- ohash: 1.1.6
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- radix3: 1.1.2
- scule: 1.3.0
- semver: 7.7.1
- std-env: 3.8.1
- strip-literal: 2.1.1
- tinyglobby: 0.2.10
- ufo: 1.5.4
- ultrahtml: 1.5.3
- uncrypto: 0.1.3
- unctx: 2.4.1
- unenv: 1.10.0
- unhead: 1.11.20
- unimport: 3.14.6
- unplugin: 1.16.1
- unplugin-vue-router: 0.10.9_4zkhmgh5wx2nmrd47udboenwxe
- unstorage: 1.15.0
- untyped: 1.5.2
- vue: 3.5.13_typescript@5.5.3
- vue-bundle-renderer: 2.1.1
- vue-devtools-stub: 0.1.0
- vue-router: 4.5.0_vue@3.5.13
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@biomejs/biome'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@electric-sql/pglite'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/kv'
- - aws4fetch
- - better-sqlite3
- - bufferutil
- - db0
- - drizzle-orm
- - encoding
- - eslint
- - idb-keyval
- - ioredis
- - less
- - lightningcss
- - magicast
- - meow
- - mysql2
- - optionator
- - rolldown
- - rollup
- - sass
- - sass-embedded
- - sqlite3
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - uploadthing
- - utf-8-validate
- - vite
- - vls
- - vti
- - vue-tsc
- - xml2js
- dev: true
-
- nwsapi@2.2.18:
- resolution: {integrity: sha512-p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA==}
-
- /nuxt/3.16.0_rfsowatrio6jr7glkuhyrhvtsa:
- resolution: {integrity: sha512-4j2tuHo+kcComQ1WrCD+i1w3UFOHrcnNH30cwiEY/WZZlBZOlC6DtUm6aBjhfpBFaMYsF4PbyKsNW+7FHwckHA==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0.0}
- hasBin: true
- peerDependencies:
- '@parcel/watcher': ^2.1.0
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- peerDependenciesMeta:
- '@parcel/watcher':
- optional: true
- '@types/node':
- optional: true
- dependencies:
- '@nuxt/cli': 3.22.5
- '@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 2.2.1_vite@6.0.9+vue@3.5.13
- '@nuxt/kit': 3.16.0
- '@nuxt/schema': 3.16.0
- '@nuxt/telemetry': 2.6.5
- '@nuxt/vite-builder': 3.16.0_potaacg5vf44wwtz5b4udteggy
- '@oxc-parser/wasm': 0.56.5
- '@unhead/vue': 2.0.0-rc.9_vue@3.5.13
- '@vue/shared': 3.5.13
- c12: 3.0.2
- chokidar: 4.0.3
- compatx: 0.1.8
- consola: 3.4.0
- cookie-es: 2.0.0
- defu: 6.1.4
- destr: 2.0.3
- devalue: 5.1.1
- errx: 0.1.0
- esbuild: 0.25.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- exsolve: 1.0.4
- globby: 14.1.0
- h3: 1.15.1
- hookable: 5.5.3
- ignore: 7.0.3
- impound: 0.2.1_rollup@4.35.0
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
- nanotar: 0.2.0
- nitropack: 2.11.6_typescript@5.8.2
- nypm: 0.6.0
- ofetch: 1.4.1
- ohash: 2.0.11
- on-change: 5.0.1
- oxc-parser: 0.56.5
- pathe: 2.0.3
- perfect-debounce: 1.0.0
- pkg-types: 2.1.0
- radix3: 1.1.2
- scule: 1.3.0
- semver: 7.7.1
- std-env: 3.8.1
- strip-literal: 3.0.0
- tinyglobby: 0.2.12
- ufo: 1.5.4
- ultrahtml: 1.5.3
- uncrypto: 0.1.3
- unctx: 2.4.1
- unenv: 2.0.0-rc.14
- unimport: 4.1.2
- unplugin: 2.2.0
- unplugin-vue-router: 0.12.0_4zkhmgh5wx2nmrd47udboenwxe
- unstorage: 1.15.0
- untyped: 2.0.0
- vue: 3.5.13_typescript@5.8.2
- vue-bundle-renderer: 2.1.1
- vue-devtools-stub: 0.1.0
- vue-router: 4.5.0_vue@3.5.13
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@biomejs/biome'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@electric-sql/pglite'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/kv'
- - aws4fetch
- - better-sqlite3
- - bufferutil
- - db0
- - drizzle-orm
- - encoding
- - eslint
- - idb-keyval
- - ioredis
- - less
- - lightningcss
- - magicast
- - meow
- - mysql2
- - optionator
- - rolldown
- - rollup
- - sass
- - sass-embedded
- - sqlite3
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - typescript
- - uploadthing
- - utf-8-validate
- - vite
- - vls
- - vti
- - vue-tsc
- - xml2js
- - yaml
- dev: false
- /nwsapi/2.2.18:
- resolution: {integrity: sha512-p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA==}
- dev: true
+ nwsapi@2.2.19:
+ resolution: {integrity: sha512-94bcyI3RsqiZufXjkr3ltkI86iEl+I7uiHVDtcq9wJUTwYQJ5odHDeSzkkrRzi80jJ8MaeZgqKjH1bAWAFw9bA==}
- /nypm/0.3.12:
+ nypm@0.3.12:
resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
- dependencies:
- citty: 0.1.6
- consola: 3.4.0
- execa: 8.0.1
- pathe: 1.1.2
- pkg-types: 1.3.1
- ufo: 1.5.4
- /nypm/0.4.1:
+ nypm@0.4.1:
resolution: {integrity: sha512-1b9mihliBh8UCcKtcGRu//G50iHpjxIQVUqkdhPT/SDVE7KdJKoHXLS0heuYTQCx95dFqiyUbXZB9r8ikn+93g==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
- dependencies:
- citty: 0.1.6
- consola: 3.4.0
- pathe: 1.1.2
- pkg-types: 1.3.1
- tinyexec: 0.3.2
- ufo: 1.5.4
nypm@0.5.4:
resolution: {integrity: sha512-X0SNNrZiGU8/e/zAB7sCTtdxWTMSIO73q+xuKgglm2Yvzwlo8UoC5FNySQFCvl84uPaeADkqHUZUkWy4aH4xOA==}
@@ -17250,105 +8992,48 @@ packages:
resolution: {integrity: sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
- dependencies:
- citty: 0.1.6
- consola: 3.4.0
- pathe: 2.0.3
- pkg-types: 1.3.1
- tinyexec: 0.3.2
- ufo: 1.5.4
-
- /nypm/0.6.0:
- resolution: {integrity: sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg==}
- engines: {node: ^14.16.0 || >=16.10.0}
- hasBin: true
- dependencies:
- citty: 0.1.6
- consola: 3.4.0
- pathe: 2.0.3
- pkg-types: 2.1.0
- tinyexec: 0.3.2
- /object-assign/4.1.1:
+ object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- dev: true
- /object-hash/3.0.0:
+ object-hash@3.0.0:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- dev: true
object-inspect@1.13.4:
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
- dev: true
- /object-keys/1.1.1:
+ object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- dev: true
- /object.assign/4.1.7:
+ object.assign@4.1.7:
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.4
- define-properties: 1.2.1
- es-object-atoms: 1.1.1
- has-symbols: 1.1.0
- object-keys: 1.1.1
- dev: true
- /object.entries/1.1.8:
- resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
+ object.entries@1.1.9:
+ resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-object-atoms: 1.1.1
- dev: true
- /object.fromentries/2.0.8:
+ object.fromentries@2.0.8:
resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-object-atoms: 1.1.1
- dev: true
- /object.groupby/1.0.3:
+ object.groupby@1.0.3:
resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- dev: true
- /object.values/1.2.1:
+ object.values@1.2.1:
resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.4
- define-properties: 1.2.1
- es-object-atoms: 1.1.1
- dev: true
- /obuf/1.1.2:
+ obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
- dev: true
- /ofetch/1.4.1:
+ ofetch@1.4.1:
resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==}
- dependencies:
- destr: 2.0.3
- node-fetch-native: 1.6.6
- ufo: 1.5.4
ohash@1.1.6:
resolution: {integrity: sha512-TBu7PtV8YkAZn0tSxobKY2n2aAQva936lhRrj6957aDaCf9IEtqsKbgMzXE/F/sjqYOwmrukeORHNLe5glk7Cg==}
@@ -17356,522 +9041,272 @@ packages:
ohash@2.0.11:
resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
- /ohash/2.0.11:
- resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
-
- /on-change/5.0.1:
- resolution: {integrity: sha512-n7THCP7RkyReRSLkJb8kUWoNsxUIBxTkIp3JKno+sEz6o/9AJ3w3P9fzQkITEkMwyTKJjZciF3v/pVoouxZZMg==}
- engines: {node: '>=18'}
- dev: false
-
- /on-exit-leak-free/2.1.2:
+ on-exit-leak-free@2.1.2:
resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
engines: {node: '>=14.0.0'}
- /on-finished/2.3.0:
+ on-finished@2.3.0:
resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
engines: {node: '>= 0.8'}
- dependencies:
- ee-first: 1.1.1
- dev: true
- /on-finished/2.4.1:
+ on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
- dependencies:
- ee-first: 1.1.1
- /on-headers/1.0.2:
+ on-headers@1.0.2:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
- dev: true
- /once/1.4.0:
+ once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
- dependencies:
- wrappy: 1.0.2
- dev: true
- /onetime/5.1.2:
+ onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
- dependencies:
- mimic-fn: 2.1.0
- dev: true
- /onetime/6.0.0:
+ onetime@6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
- dependencies:
- mimic-fn: 4.0.0
- /onetime/7.0.0:
+ onetime@7.0.0:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
- dependencies:
- mimic-function: 5.0.1
- dev: true
- /oniguruma-to-es/2.3.0:
+ oniguruma-to-es@2.3.0:
resolution: {integrity: sha512-bwALDxriqfKGfUufKGGepCzu9x7nJQuoRoAFp4AnwehhC2crqrDIAP/uN2qdlsAvSMpeRC3+Yzhqc7hLmle5+g==}
- dependencies:
- emoji-regex-xs: 1.0.0
- regex: 5.1.1
- regex-recursion: 5.1.1
- dev: true
- /open/10.1.0:
+ open@10.1.0:
resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
engines: {node: '>=18'}
- dependencies:
- default-browser: 5.2.1
- define-lazy-prop: 3.0.0
- is-inside-container: 1.0.0
- is-wsl: 3.1.0
- /open/8.4.2:
+ open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
- dependencies:
- define-lazy-prop: 2.0.0
- is-docker: 2.2.1
- is-wsl: 2.2.0
-
- openapi-typescript@7.6.1:
- resolution: {integrity: sha512-F7RXEeo/heF3O9lOXo2bNjCOtfp7u+D6W3a3VNEH2xE6v+fxLtn5nq0uvUcA1F5aT+CMhNeC5Uqtg5tlXFX/ag==}
- hasBin: true
- peerDependencies:
- typescript: ^5.x
- dependencies:
- '@redocly/openapi-core': 1.33.0_supports-color@9.4.0
- ansi-colors: 4.1.3
- change-case: 5.4.4
- parse-json: 8.1.0
- supports-color: 9.4.0
- yargs-parser: 21.1.1
- dev: false
-
- /openapi-typescript/7.6.1_typescript@5.5.3:
- resolution: {integrity: sha512-F7RXEeo/heF3O9lOXo2bNjCOtfp7u+D6W3a3VNEH2xE6v+fxLtn5nq0uvUcA1F5aT+CMhNeC5Uqtg5tlXFX/ag==}
- hasBin: true
- peerDependencies:
- typescript: ^5.x
- dependencies:
- '@redocly/openapi-core': 1.33.0_supports-color@9.4.0
- ansi-colors: 4.1.3
- change-case: 5.4.4
- parse-json: 8.1.0
- supports-color: 9.4.0
- typescript: 5.5.3
- yargs-parser: 21.1.1
- dev: true
-
- /openapi-typescript/7.6.1_typescript@5.8.2:
- resolution: {integrity: sha512-F7RXEeo/heF3O9lOXo2bNjCOtfp7u+D6W3a3VNEH2xE6v+fxLtn5nq0uvUcA1F5aT+CMhNeC5Uqtg5tlXFX/ag==}
- hasBin: true
- peerDependencies:
- typescript: ^5.x
- dependencies:
- '@redocly/openapi-core': 1.33.0_supports-color@9.4.0
- ansi-colors: 4.1.3
- change-case: 5.4.4
- parse-json: 8.1.0
- supports-color: 9.4.0
- typescript: 5.8.2
- yargs-parser: 21.1.1
- /optionator/0.9.4:
+ optionator@0.9.4:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
- dependencies:
- deep-is: 0.1.4
- fast-levenshtein: 2.0.6
- levn: 0.4.1
- prelude-ls: 1.2.1
- type-check: 0.4.0
- word-wrap: 1.2.5
- dev: true
- /ora/5.4.1:
+ ora@5.4.1:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
- 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
- dev: true
- /ordered-binary/1.5.3:
+ ordered-binary@1.5.3:
resolution: {integrity: sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==}
- dev: true
- optional: true
- /os-tmpdir/1.0.2:
+ os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
- dev: true
- /outdent/0.5.0:
+ outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
- dev: true
- /own-keys/1.0.1:
+ own-keys@1.0.1:
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.3.0
- object-keys: 1.1.1
- safe-push-apply: 1.0.0
- dev: true
- /oxc-parser/0.56.5:
- resolution: {integrity: sha512-MNT32sqiTFeSbQZP2WZIRQ/mlIpNNq4sua+/4hBG4qT5aef2iQe+1/BjezZURPlvucZeSfN1Y6b60l7OgBdyUA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@oxc-project/types': 0.56.5
- optionalDependencies:
- '@oxc-parser/binding-darwin-arm64': 0.56.5
- '@oxc-parser/binding-darwin-x64': 0.56.5
- '@oxc-parser/binding-linux-arm-gnueabihf': 0.56.5
- '@oxc-parser/binding-linux-arm64-gnu': 0.56.5
- '@oxc-parser/binding-linux-arm64-musl': 0.56.5
- '@oxc-parser/binding-linux-x64-gnu': 0.56.5
- '@oxc-parser/binding-linux-x64-musl': 0.56.5
- '@oxc-parser/binding-wasm32-wasi': 0.56.5
- '@oxc-parser/binding-win32-arm64-msvc': 0.56.5
- '@oxc-parser/binding-win32-x64-msvc': 0.56.5
- dev: false
-
- /p-filter/2.1.0:
+ p-filter@2.1.0:
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
engines: {node: '>=8'}
- dependencies:
- p-map: 2.1.0
- dev: true
- /p-limit/2.3.0:
+ p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
- dependencies:
- p-try: 2.2.0
- dev: true
- /p-limit/3.1.0:
+ p-limit@3.1.0:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
- dependencies:
- yocto-queue: 0.1.0
- dev: true
- /p-limit/4.0.0:
+ p-limit@4.0.0:
resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- yocto-queue: 1.2.0
- dev: true
- /p-limit/5.0.0:
+ p-limit@5.0.0:
resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
engines: {node: '>=18'}
- dependencies:
- yocto-queue: 1.2.0
- dev: true
- /p-locate/4.1.0:
+ p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
- dependencies:
- p-limit: 2.3.0
- dev: true
- /p-locate/5.0.0:
+ p-locate@5.0.0:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
- dependencies:
- p-limit: 3.1.0
- dev: true
- /p-locate/6.0.0:
+ p-locate@6.0.0:
resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- p-limit: 4.0.0
- dev: true
- /p-map/2.1.0:
+ p-map@2.1.0:
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
engines: {node: '>=6'}
- dev: true
- /p-map/7.0.3:
+ p-map@7.0.3:
resolution: {integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==}
engines: {node: '>=18'}
- dev: true
- /p-retry/6.2.1:
+ p-retry@6.2.1:
resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==}
engines: {node: '>=16.17'}
- dependencies:
- '@types/retry': 0.12.2
- is-network-error: 1.1.0
- retry: 0.13.1
- dev: true
- /p-try/2.2.0:
+ p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- dev: true
pac-proxy-agent@7.2.0:
resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==}
engines: {node: '>= 14'}
- dependencies:
- '@tootallnate/quickjs-emscripten': 0.23.0
- agent-base: 7.1.3
- debug: 4.4.0
- get-uri: 6.0.4
- http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6
- pac-resolver: 7.0.1
- socks-proxy-agent: 8.0.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /pac-resolver/7.0.1:
+ pac-resolver@7.0.1:
resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
engines: {node: '>= 14'}
- dependencies:
- degenerator: 5.0.1
- netmask: 2.0.2
- dev: true
- /package-json-from-dist/1.0.1:
+ package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
package-manager-detector@0.2.11:
resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==}
- /packrup/0.1.2:
+ package-manager-detector@1.1.0:
+ resolution: {integrity: sha512-Y8f9qUlBzW8qauJjd/eu6jlpJZsuPJm2ZAV0cDVd420o4EdpH5RPdoCv+60/TdJflGatr4sDfpAL6ArWZbM5tA==}
+
+ packrup@0.1.2:
resolution: {integrity: sha512-ZcKU7zrr5GlonoS9cxxrb5HVswGnyj6jQvwFBa6p5VFw7G71VAHcUKL5wyZSU/ECtPM/9gacWxy2KFQKt1gMNA==}
- /pacote/20.0.0:
+ pacote@20.0.0:
resolution: {integrity: sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A==}
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
- dependencies:
- '@npmcli/git': 6.0.3
- '@npmcli/installed-package-contents': 3.0.0
- '@npmcli/package-json': 6.1.1
- '@npmcli/promise-spawn': 8.0.2
- '@npmcli/run-script': 9.1.0
- cacache: 19.0.1
- fs-minipass: 3.0.3
- minipass: 7.1.2
- npm-package-arg: 12.0.2
- npm-packlist: 9.0.0
- npm-pick-manifest: 10.0.0
- npm-registry-fetch: 18.0.2
- proc-log: 5.0.0
- promise-retry: 2.0.1
- sigstore: 3.1.0
- ssri: 12.0.0
- tar: 6.2.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /parent-module/1.0.1:
+ parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
- dependencies:
- callsites: 3.1.0
- dev: true
-
- /parse-git-config/3.0.0:
- resolution: {integrity: sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==}
- engines: {node: '>=8'}
- dependencies:
- git-config-path: 2.0.0
- ini: 1.3.8
- /parse-json/5.2.0:
+ parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
- dependencies:
- '@babel/code-frame': 7.26.2
- error-ex: 1.3.2
- json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.2.4
- dev: true
-
- /parse-json/8.1.0:
- resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==}
- engines: {node: '>=18'}
- dependencies:
- '@babel/code-frame': 7.26.2
- index-to-position: 0.1.2
- type-fest: 4.37.0
- /parse-ms/4.0.0:
+ parse-ms@4.0.0:
resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
engines: {node: '>=18'}
- /parse-node-version/1.0.1:
+ parse-node-version@1.0.1:
resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
engines: {node: '>= 0.10'}
parse-path@7.0.1:
resolution: {integrity: sha512-6ReLMptznuuOEzLoGEa+I1oWRSj2Zna5jLWC+l6zlfAI4dbbSaIES29ThzuPkbhNahT65dWzfoZEO6cfJw2Ksg==}
- /parse-url/9.2.0:
+ parse-url@9.2.0:
resolution: {integrity: sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==}
engines: {node: '>=14.13.0'}
- dependencies:
- '@types/parse-path': 7.0.3
- parse-path: 7.0.1
- /parse5-html-rewriting-stream/7.0.0:
+ parse5-html-rewriting-stream@7.0.0:
resolution: {integrity: sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==}
- dependencies:
- entities: 4.5.0
- parse5: 7.2.1
- parse5-sax-parser: 7.0.0
- dev: true
- /parse5-htmlparser2-tree-adapter/6.0.1:
+ parse5-htmlparser2-tree-adapter@6.0.1:
resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
- dependencies:
- parse5: 6.0.1
- dev: true
- /parse5-sax-parser/7.0.0:
+ parse5-sax-parser@7.0.0:
resolution: {integrity: sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==}
- dependencies:
- parse5: 7.2.1
- dev: true
- /parse5/5.1.1:
+ parse5@5.1.1:
resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==}
- dev: true
- /parse5/6.0.1:
+ parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
- dev: true
- /parse5/7.2.1:
+ parse5@7.2.1:
resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
- dependencies:
- entities: 4.5.0
- /parseurl/1.3.3:
+ parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
- /path-browserify/1.0.1:
+ path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
- dev: true
- /path-exists/4.0.0:
+ path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- dev: true
- /path-exists/5.0.0:
+ path-exists@5.0.0:
resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: true
- /path-is-absolute/1.0.1:
+ path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- dev: true
- /path-key/3.1.1:
+ path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- /path-key/4.0.0:
+ path-key@4.0.0:
resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
engines: {node: '>=12'}
- /path-parse/1.0.7:
+ path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-scurry/1.11.1:
+ path-scurry@1.11.1:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
- dependencies:
- lru-cache: 10.4.3
- minipass: 7.1.2
- /path-to-regexp/0.1.10:
+ path-to-regexp@0.1.10:
resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==}
- dev: true
- /path-to-regexp/0.1.12:
+ path-to-regexp@0.1.12:
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
- dev: true
- /path-type/4.0.0:
+ path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- dev: true
path-type@6.0.0:
resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==}
engines: {node: '>=18'}
- /pathe/1.1.2:
+ pathe@1.1.2:
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
pathe@2.0.3:
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
- /pathval/1.1.1:
+ pathval@1.1.1:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
- dev: true
- /pend/1.2.0:
+ pend@1.2.0:
resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
- dev: true
- /perfect-debounce/1.0.0:
+ perfect-debounce@1.0.0:
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
- /picocolors/1.1.1:
+ picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
- /picomatch/2.3.1:
+ picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /picomatch/4.0.2:
+ picomatch@4.0.2:
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
engines: {node: '>=12'}
- /pidtree/0.6.0:
+ pidtree@0.6.0:
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
engines: {node: '>=0.10'}
hasBin: true
- dev: true
- /pify/2.3.0:
+ pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
- dev: true
- /pify/4.0.1:
+ pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
- /pinia/2.3.0_3jdk7euojidjqlkepbdrol3p3i:
+ pinia@2.3.0:
resolution: {integrity: sha512-ohZj3jla0LL0OH5PlLTDMzqKiVw2XARmC1XYLdLWIPBMdhDW/123ZWr4zVAhtJm+aoSkFa13pYXskAvAscIkhQ==}
peerDependencies:
typescript: '>=4.4.4'
@@ -17879,164 +9314,93 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- '@vue/devtools-api': 6.6.4
- typescript: 5.5.3
- vue: 3.5.13_typescript@5.5.3
- vue-demi: 0.14.10_vue@3.5.13
- transitivePeerDependencies:
- - '@vue/composition-api'
- dev: false
- /pino-abstract-transport/2.0.0:
+ pino-abstract-transport@2.0.0:
resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==}
- dependencies:
- split2: 4.2.0
- /pino-std-serializers/7.0.0:
+ pino-std-serializers@7.0.0:
resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==}
- /pino/9.6.0:
+ pino@9.6.0:
resolution: {integrity: sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==}
hasBin: true
- dependencies:
- atomic-sleep: 1.0.0
- fast-redact: 3.5.0
- on-exit-leak-free: 2.1.2
- pino-abstract-transport: 2.0.0
- pino-std-serializers: 7.0.0
- process-warning: 4.0.1
- quick-format-unescaped: 4.0.4
- real-require: 0.2.0
- safe-stable-stringify: 2.5.0
- sonic-boom: 4.2.0
- thread-stream: 3.1.0
- /pirates/4.0.6:
- resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ pirates@4.0.7:
+ resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
engines: {node: '>= 6'}
- dev: true
- /piscina/4.8.0:
+ piscina@4.8.0:
resolution: {integrity: sha512-EZJb+ZxDrQf3dihsUL7p42pjNyrNIFJCrRHPMgxu/svsj+P3xS3fuEWp7k2+rfsavfl1N0G29b1HGs7J0m8rZA==}
- optionalDependencies:
- '@napi-rs/nice': 1.0.1
- dev: true
- /pkg-dir/7.0.0:
+ pkg-dir@7.0.0:
resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
engines: {node: '>=14.16'}
- dependencies:
- find-up: 6.3.0
- dev: true
- /pkg-types/1.3.1:
+ pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
- dependencies:
- confbox: 0.1.8
- mlly: 1.7.4
- pathe: 2.0.3
pkg-types@2.1.0:
resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==}
- pluralize@8.0.0:
- resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
- engines: {node: '>=4'}
-
possible-typed-array-names@1.1.0:
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
engines: {node: '>= 0.4'}
- dev: true
postcss-calc@10.1.1:
resolution: {integrity: sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==}
engines: {node: ^18.12 || ^20.9 || >=22.0}
peerDependencies:
postcss: ^8.4.38
- dependencies:
- postcss: 8.5.3
- postcss-selector-parser: 7.1.0
- postcss-value-parser: 4.2.0
- /postcss-colormin/7.0.2_postcss@8.5.3:
+ postcss-colormin@7.0.2:
resolution: {integrity: sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- browserslist: 4.24.4
- caniuse-api: 3.0.0
- colord: 2.9.3
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-convert-values/7.0.4_postcss@8.5.3:
+ postcss-convert-values@7.0.4:
resolution: {integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- browserslist: 4.24.4
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-discard-comments/7.0.3_postcss@8.5.3:
+ postcss-discard-comments@7.0.3:
resolution: {integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-selector-parser: 6.1.2
- /postcss-discard-duplicates/7.0.1_postcss@8.5.3:
+ postcss-discard-duplicates@7.0.1:
resolution: {integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- /postcss-discard-empty/7.0.0_postcss@8.5.3:
+ postcss-discard-empty@7.0.0:
resolution: {integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- /postcss-discard-overridden/7.0.0_postcss@8.5.3:
+ postcss-discard-overridden@7.0.0:
resolution: {integrity: sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- /postcss-import/15.1.0_postcss@8.4.41:
+ postcss-import@15.1.0:
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
- dependencies:
- postcss: 8.4.41
- postcss-value-parser: 4.2.0
- read-cache: 1.0.0
- resolve: 1.22.10
- dev: true
- /postcss-js/4.0.1_postcss@8.4.41:
+ postcss-js@4.0.1:
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
- dependencies:
- camelcase-css: 2.0.1
- postcss: 8.4.41
- dev: true
- /postcss-load-config/3.1.4_postcss@8.5.3:
+ postcss-load-config@3.1.4:
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -18047,13 +9411,8 @@ packages:
optional: true
ts-node:
optional: true
- dependencies:
- lilconfig: 2.1.0
- postcss: 8.5.3
- yaml: 1.10.2
- dev: true
- /postcss-load-config/4.0.2_postcss@8.4.41:
+ postcss-load-config@4.0.2:
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
engines: {node: '>= 14'}
peerDependencies:
@@ -18064,13 +9423,8 @@ packages:
optional: true
ts-node:
optional: true
- dependencies:
- lilconfig: 3.1.3
- postcss: 8.4.41
- yaml: 2.7.0
- dev: true
- /postcss-load-config/6.0.1:
+ postcss-load-config@6.0.1:
resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
engines: {node: '>= 18'}
peerDependencies:
@@ -18087,11 +9441,8 @@ packages:
optional: true
yaml:
optional: true
- dependencies:
- lilconfig: 3.1.3
- dev: true
- /postcss-loader/8.1.1_xs7e2gsbl5bxvzarier6f656oi:
+ postcss-loader@8.1.1:
resolution: {integrity: sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==}
engines: {node: '>= 18.12.0'}
peerDependencies:
@@ -18103,608 +9454,368 @@ packages:
optional: true
webpack:
optional: true
- dependencies:
- cosmiconfig: 9.0.0_typescript@5.5.3
- jiti: 1.21.7
- postcss: 8.5.2
- semver: 7.7.1
- webpack: 5.98.0_esbuild@0.25.0
- transitivePeerDependencies:
- - typescript
- dev: true
- /postcss-media-query-parser/0.2.3:
+ postcss-media-query-parser@0.2.3:
resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
- dev: true
- /postcss-merge-longhand/7.0.4_postcss@8.5.3:
+ postcss-merge-longhand@7.0.4:
resolution: {integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- stylehacks: 7.0.4_postcss@8.5.3
- /postcss-merge-rules/7.0.4_postcss@8.5.3:
+ postcss-merge-rules@7.0.4:
resolution: {integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- browserslist: 4.24.4
- caniuse-api: 3.0.0
- cssnano-utils: 5.0.0_postcss@8.5.3
- postcss: 8.5.3
- postcss-selector-parser: 6.1.2
- /postcss-minify-font-values/7.0.0_postcss@8.5.3:
+ postcss-minify-font-values@7.0.0:
resolution: {integrity: sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-minify-gradients/7.0.0_postcss@8.5.3:
+ postcss-minify-gradients@7.0.0:
resolution: {integrity: sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- colord: 2.9.3
- cssnano-utils: 5.0.0_postcss@8.5.3
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-minify-params/7.0.2_postcss@8.5.3:
+ postcss-minify-params@7.0.2:
resolution: {integrity: sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- browserslist: 4.24.4
- cssnano-utils: 5.0.0_postcss@8.5.3
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-minify-selectors/7.0.4_postcss@8.5.3:
+ postcss-minify-selectors@7.0.4:
resolution: {integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- cssesc: 3.0.0
- postcss: 8.5.3
- postcss-selector-parser: 6.1.2
- /postcss-modules-extract-imports/3.1.0_postcss@8.5.3:
+ postcss-modules-extract-imports@3.1.0:
resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- dependencies:
- postcss: 8.5.3
- dev: true
- /postcss-modules-local-by-default/4.2.0_postcss@8.5.3:
+ postcss-modules-local-by-default@4.2.0:
resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.5.3
- postcss: 8.5.3
- postcss-selector-parser: 7.1.0
- postcss-value-parser: 4.2.0
- dev: true
- /postcss-modules-scope/3.2.1_postcss@8.5.3:
+ postcss-modules-scope@3.2.1:
resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- dependencies:
- postcss: 8.5.3
- postcss-selector-parser: 7.1.0
- dev: true
- /postcss-modules-values/4.0.0_postcss@8.5.3:
+ postcss-modules-values@4.0.0:
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.5.3
- postcss: 8.5.3
- dev: true
- /postcss-nested/6.2.0_postcss@8.4.41:
+ postcss-nested@6.2.0:
resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
- dependencies:
- postcss: 8.4.41
- postcss-selector-parser: 6.1.2
- dev: true
- /postcss-normalize-charset/7.0.0_postcss@8.5.3:
+ postcss-normalize-charset@7.0.0:
resolution: {integrity: sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- /postcss-normalize-display-values/7.0.0_postcss@8.5.3:
+ postcss-normalize-display-values@7.0.0:
resolution: {integrity: sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-normalize-positions/7.0.0_postcss@8.5.3:
+ postcss-normalize-positions@7.0.0:
resolution: {integrity: sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-normalize-repeat-style/7.0.0_postcss@8.5.3:
+ postcss-normalize-repeat-style@7.0.0:
resolution: {integrity: sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-normalize-string/7.0.0_postcss@8.5.3:
+ postcss-normalize-string@7.0.0:
resolution: {integrity: sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-normalize-timing-functions/7.0.0_postcss@8.5.3:
+ postcss-normalize-timing-functions@7.0.0:
resolution: {integrity: sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-normalize-unicode/7.0.2_postcss@8.5.3:
+ postcss-normalize-unicode@7.0.2:
resolution: {integrity: sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- browserslist: 4.24.4
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-normalize-url/7.0.0_postcss@8.5.3:
+ postcss-normalize-url@7.0.0:
resolution: {integrity: sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-normalize-whitespace/7.0.0_postcss@8.5.3:
+ postcss-normalize-whitespace@7.0.0:
resolution: {integrity: sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-ordered-values/7.0.1_postcss@8.5.3:
+ postcss-ordered-values@7.0.1:
resolution: {integrity: sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- cssnano-utils: 5.0.0_postcss@8.5.3
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-reduce-initial/7.0.2_postcss@8.5.3:
+ postcss-reduce-initial@7.0.2:
resolution: {integrity: sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- browserslist: 4.24.4
- caniuse-api: 3.0.0
- postcss: 8.5.3
- /postcss-reduce-transforms/7.0.0_postcss@8.5.3:
+ postcss-reduce-transforms@7.0.0:
resolution: {integrity: sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- /postcss-safe-parser/6.0.0_postcss@8.5.3:
+ postcss-safe-parser@6.0.0:
resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.3.3
- dependencies:
- postcss: 8.5.3
- dev: true
- /postcss-scss/4.0.9_postcss@8.5.3:
+ postcss-scss@4.0.9:
resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.4.29
- dependencies:
- postcss: 8.5.3
- dev: true
- /postcss-selector-parser/6.1.2:
+ postcss-selector-parser@6.1.2:
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
- /postcss-selector-parser/7.1.0:
+ postcss-selector-parser@7.1.0:
resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==}
engines: {node: '>=4'}
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
- /postcss-svgo/7.0.1_postcss@8.5.3:
+ postcss-svgo@7.0.1:
resolution: {integrity: sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==}
engines: {node: ^18.12.0 || ^20.9.0 || >= 18}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
- svgo: 3.3.2
- /postcss-unique-selectors/7.0.3_postcss@8.5.3:
+ postcss-unique-selectors@7.0.3:
resolution: {integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- postcss: 8.5.3
- postcss-selector-parser: 6.1.2
- /postcss-value-parser/4.2.0:
+ postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss/8.4.31:
+ postcss@8.4.31:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.9
- picocolors: 1.1.1
- source-map-js: 1.2.1
- dev: false
- /postcss/8.4.41:
+ postcss@8.4.41:
resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==}
engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.9
- picocolors: 1.1.1
- source-map-js: 1.2.1
- dev: true
postcss@8.5.2:
resolution: {integrity: sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==}
engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.9
- picocolors: 1.1.1
- source-map-js: 1.2.1
- dev: true
- /postcss/8.5.3:
+ postcss@8.5.3:
resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.9
- picocolors: 1.1.1
- source-map-js: 1.2.1
preact@10.26.4:
resolution: {integrity: sha512-KJhO7LBFTjP71d83trW+Ilnjbo+ySsaAgCfXOXUlmGzJ4ygYPWmysm77yg4emwfmoz3b22yvH5IsVFHbhUaH5w==}
- /prelude-ls/1.2.1:
+ prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- dev: true
- /prettier-linter-helpers/1.0.0:
+ prettier-linter-helpers@1.0.0:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
- dependencies:
- fast-diff: 1.3.0
- dev: true
- /prettier-plugin-svelte/3.1.2_d4fl4iupozqpdh7airl3rcs4ue:
+ prettier-plugin-svelte@3.1.2:
resolution: {integrity: sha512-7xfMZtwgAWHMT0iZc8jN4o65zgbAQ3+O32V6W7pXrqNvKnHnkoyQCGCbKeUyXKZLbYE0YhFRnamfxfkEGxm8qA==}
peerDependencies:
prettier: ^3.0.0
svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0
- dependencies:
- prettier: 3.4.2
- svelte: 5.19.9
- dev: true
- /prettier/2.8.8:
+ prettier@2.8.8:
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
hasBin: true
- dev: true
- /prettier/3.4.2:
+ prettier@3.4.2:
resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
engines: {node: '>=14'}
hasBin: true
- dev: true
- /pretty-bytes/6.1.1:
+ pretty-bytes@6.1.1:
resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==}
engines: {node: ^14.13.1 || >=16.0.0}
- /pretty-format/29.7.0:
+ pretty-format@29.7.0:
resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/schemas': 29.6.3
- ansi-styles: 5.2.0
- react-is: 18.3.1
- dev: true
- /pretty-ms/9.2.0:
+ pretty-ms@9.2.0:
resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
engines: {node: '>=18'}
- dependencies:
- parse-ms: 4.0.0
- /proc-log/5.0.0:
+ proc-log@5.0.0:
resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dev: true
- /process-nextick-args/2.0.1:
+ process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- /process-warning/4.0.1:
+ process-warning@4.0.1:
resolution: {integrity: sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==}
- /process/0.11.10:
+ process@0.11.10:
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
engines: {node: '>= 0.6.0'}
- /progress/2.0.3:
+ progress@2.0.3:
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
engines: {node: '>=0.4.0'}
- dev: true
- /promise-retry/2.0.1:
+ promise-retry@2.0.1:
resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
engines: {node: '>=10'}
- dependencies:
- err-code: 2.0.3
- retry: 0.12.0
- dev: true
- /prompts/2.4.2:
+ prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
- dependencies:
- kleur: 3.0.3
- sisteransi: 1.0.5
- /prop-types/15.8.1:
+ prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
- dependencies:
- loose-envify: 1.4.0
- object-assign: 4.1.1
- react-is: 16.13.1
- dev: true
property-information@7.0.0:
resolution: {integrity: sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==}
- /proto-list/1.2.4:
+ proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
- dev: true
protocols@2.0.2:
resolution: {integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==}
- /proxy-addr/2.0.7:
+ proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
- dependencies:
- forwarded: 0.2.0
- ipaddr.js: 1.9.1
- /proxy-agent/6.4.0:
+ proxy-agent@6.4.0:
resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==}
engines: {node: '>= 14'}
- dependencies:
- agent-base: 7.1.3
- debug: 4.4.0
- http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6
- lru-cache: 7.18.3
- pac-proxy-agent: 7.2.0
- proxy-from-env: 1.1.0
- socks-proxy-agent: 8.0.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /proxy-from-env/1.1.0:
+ proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
- /prr/1.0.1:
+ prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
- optional: true
- /pseudomap/1.0.2:
+ pseudomap@1.0.2:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
- dev: true
- /psl/1.15.0:
+ psl@1.15.0:
resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
- dependencies:
- punycode: 2.3.1
- dev: true
- /pump/3.0.2:
+ pump@3.0.2:
resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
- dependencies:
- end-of-stream: 1.4.4
- once: 1.4.0
- dev: true
- /punycode/1.4.1:
+ punycode@1.4.1:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
- dev: true
- /punycode/2.3.1:
+ punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- dev: true
- /puppeteer-core/22.12.1:
+ puppeteer-core@22.12.1:
resolution: {integrity: sha512-XmqeDPVdC5/3nGJys1jbgeoZ02wP0WV1GBlPtr/ULRbGXJFuqgXMcKQ3eeNtFpBzGRbpeoCGWHge1ZWKWl0Exw==}
engines: {node: '>=18'}
- dependencies:
- '@puppeteer/browsers': 2.2.3
- chromium-bidi: 0.5.24_c4f7xbigk5ph7wwb2u23nrsx5q
- debug: 4.4.0
- devtools-protocol: 0.0.1299070
- ws: 8.18.1
- transitivePeerDependencies:
- - bare-buffer
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: true
- /puppeteer/22.12.1_typescript@5.5.3:
+ puppeteer@22.12.1:
resolution: {integrity: sha512-1GxY8dnEnHr1SLzdSDr0FCjM6JQfAh2E2I/EqzeF8a58DbGVk9oVjj4lFdqNoVbpgFSpAbz7VER9St7S1wDpNg==}
engines: {node: '>=18'}
hasBin: true
- requiresBuild: true
- dependencies:
- '@puppeteer/browsers': 2.2.3
- cosmiconfig: 9.0.0_typescript@5.5.3
- devtools-protocol: 0.0.1299070
- puppeteer-core: 22.12.1
- transitivePeerDependencies:
- - bare-buffer
- - bufferutil
- - supports-color
- - typescript
- - utf-8-validate
- dev: true
- /qjobs/1.2.0:
+ qjobs@1.2.0:
resolution: {integrity: sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==}
engines: {node: '>=0.9'}
- dev: true
- /qs/6.13.0:
+ qs@6.13.0:
resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
engines: {node: '>=0.6'}
- dependencies:
- side-channel: 1.1.0
- dev: true
- quansync@0.2.8:
- resolution: {integrity: sha512-4+saucphJMazjt7iOM27mbFCk+D9dd/zmgMDCzRZ8MEoBfYp7lAvoN38et/phRQF6wOPMy/OROBGgoWeSKyluA==}
+ quansync@0.2.10:
+ resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==}
querystringify@2.2.0:
resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
- dev: true
- /queue-microtask/1.2.3:
+ queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- /quick-format-unescaped/4.0.4:
+ quick-format-unescaped@4.0.4:
resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==}
- /radix3/1.1.2:
+ radix3@1.1.2:
resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
- /randombytes/2.1.0:
+ randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
- dependencies:
- safe-buffer: 5.2.1
- /range-parser/1.2.1:
+ range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- /raw-body/2.5.2:
+ raw-body@2.5.2:
resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
- dependencies:
- bytes: 3.1.2
- http-errors: 2.0.0
- iconv-lite: 0.4.24
- unpipe: 1.0.0
- dev: true
- /rc9/2.1.2:
+ rc9@2.1.2:
resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
- dependencies:
- defu: 6.1.4
- destr: 2.0.3
- /react-dom/19.0.0_react@19.0.0:
+ react-dom@19.0.0:
resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
peerDependencies:
react: ^19.0.0
- dependencies:
- react: 19.0.0
- scheduler: 0.25.0
- dev: false
- /react-is/16.13.1:
+ react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- dev: true
- /react-is/18.3.1:
+ react-is@18.3.1:
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
- dev: true
- /react-refresh/0.14.2:
+ react-refresh@0.14.2:
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
- dev: true
- /react-remove-scroll-bar/2.3.8_2e3fe46pmji5vpxr5buusdg5gq:
+ react-remove-scroll-bar@2.3.8:
resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
engines: {node: '>=10'}
peerDependencies:
@@ -18713,14 +9824,8 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- react: 19.0.0
- react-style-singleton: 2.2.3_2e3fe46pmji5vpxr5buusdg5gq
- tslib: 2.8.1
- dev: false
- /react-remove-scroll/2.6.3_2e3fe46pmji5vpxr5buusdg5gq:
+ react-remove-scroll@2.6.3:
resolution: {integrity: sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -18729,17 +9834,8 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- react: 19.0.0
- react-remove-scroll-bar: 2.3.8_2e3fe46pmji5vpxr5buusdg5gq
- react-style-singleton: 2.2.3_2e3fe46pmji5vpxr5buusdg5gq
- tslib: 2.8.1
- use-callback-ref: 1.3.3_2e3fe46pmji5vpxr5buusdg5gq
- use-sidecar: 1.1.3_2e3fe46pmji5vpxr5buusdg5gq
- dev: false
- /react-style-singleton/2.2.3_2e3fe46pmji5vpxr5buusdg5gq:
+ react-style-singleton@2.2.3:
resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -18748,159 +9844,87 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- get-nonce: 1.0.1
- react: 19.0.0
- tslib: 2.8.1
- dev: false
- /react/19.0.0:
+ react@19.0.0:
resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
engines: {node: '>=0.10.0'}
- /read-cache/1.0.0:
+ read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
- dependencies:
- pify: 2.3.0
- dev: true
- /read-package-json-fast/3.0.2:
+ read-package-json-fast@3.0.2:
resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dependencies:
- json-parse-even-better-errors: 3.0.2
- npm-normalize-package-bin: 3.0.1
- dev: true
- /read-yaml-file/1.1.0:
+ read-yaml-file@1.1.0:
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
engines: {node: '>=6'}
- dependencies:
- graceful-fs: 4.2.11
- js-yaml: 3.14.1
- pify: 4.0.1
- strip-bom: 3.0.0
- dev: true
- /readable-stream/2.3.8:
+ readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 1.0.0
- process-nextick-args: 2.0.1
- safe-buffer: 5.1.2
- string_decoder: 1.1.1
- util-deprecate: 1.0.2
- /readable-stream/3.6.2:
+ readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
- dependencies:
- inherits: 2.0.4
- string_decoder: 1.3.0
- util-deprecate: 1.0.2
- dev: true
- /readable-stream/4.7.0:
+ readable-stream@4.7.0:
resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- abort-controller: 3.0.0
- buffer: 6.0.3
- events: 3.3.0
- process: 0.11.10
- string_decoder: 1.3.0
- /readdir-glob/1.1.3:
+ readdir-glob@1.1.3:
resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
- dependencies:
- minimatch: 5.1.6
- /readdirp/3.6.0:
+ readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
- dependencies:
- picomatch: 2.3.1
- /readdirp/4.1.2:
+ readdirp@4.1.2:
resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
engines: {node: '>= 14.18.0'}
- /real-require/0.2.0:
+ real-require@0.2.0:
resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
engines: {node: '>= 12.13.0'}
- /redis-errors/1.2.0:
+ redis-errors@1.2.0:
resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==}
engines: {node: '>=4'}
- /redis-parser/3.0.0:
+ redis-parser@3.0.0:
resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==}
engines: {node: '>=4'}
- dependencies:
- redis-errors: 1.2.0
- /reflect-metadata/0.2.2:
+ reflect-metadata@0.2.2:
resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
- dev: true
- /reflect.getprototypeof/1.0.10:
+ reflect.getprototypeof@1.0.10:
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- get-intrinsic: 1.3.0
- get-proto: 1.0.1
- which-builtin-type: 1.2.1
- dev: true
- /regenerate-unicode-properties/10.2.0:
+ regenerate-unicode-properties@10.2.0:
resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
engines: {node: '>=4'}
- dependencies:
- regenerate: 1.4.2
- dev: true
- /regenerate/1.4.2:
+ regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- dev: true
- /regenerator-runtime/0.14.1:
+ regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
- dev: true
- /regenerator-transform/0.15.2:
+ regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
- dependencies:
- '@babel/runtime': 7.26.9
- dev: true
- /regex-parser/2.3.1:
+ regex-parser@2.3.1:
resolution: {integrity: sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==}
- dev: true
- /regex-recursion/5.1.1:
+ regex-recursion@5.1.1:
resolution: {integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==}
- dependencies:
- regex: 5.1.1
- regex-utilities: 2.3.0
- dev: true
- /regex-utilities/2.3.0:
+ regex-utilities@2.3.0:
resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
- dev: true
- /regex/5.1.1:
+ regex@5.1.1:
resolution: {integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==}
- dependencies:
- regex-utilities: 2.3.0
- dev: true
regexp-tree@0.1.27:
resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
@@ -18909,166 +9933,104 @@ packages:
regexp.prototype.flags@1.5.4:
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-errors: 1.3.0
- get-proto: 1.0.1
- gopd: 1.2.0
- set-function-name: 2.0.2
- dev: true
- /regexpu-core/6.2.0:
+ regexpu-core@6.2.0:
resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
engines: {node: '>=4'}
- dependencies:
- regenerate: 1.4.2
- regenerate-unicode-properties: 10.2.0
- regjsgen: 0.8.0
- regjsparser: 0.12.0
- unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.2.0
- dev: true
- /regjsgen/0.8.0:
+ regjsgen@0.8.0:
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
- dev: true
- /regjsparser/0.12.0:
+ regjsparser@0.12.0:
resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
hasBin: true
- dependencies:
- jsesc: 3.0.2
- dev: true
- /remove-accents/0.5.0:
+ remove-accents@0.5.0:
resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==}
- /require-directory/2.1.1:
+ require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
- /require-from-string/2.0.2:
+ require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
- /requireindex/1.2.0:
+ requireindex@1.2.0:
resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==}
engines: {node: '>=0.10.5'}
- dev: true
- /requires-port/1.0.0:
+ requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
- dev: true
- /resolve-from/4.0.0:
+ resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- dev: true
- /resolve-from/5.0.0:
+ resolve-from@5.0.0:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
- /resolve-pkg-maps/1.0.0:
+ resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
- dev: true
- /resolve-url-loader/5.0.0:
+ resolve-url-loader@5.0.0:
resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==}
engines: {node: '>=12'}
- dependencies:
- adjust-sourcemap-loader: 4.0.0
- convert-source-map: 1.9.0
- loader-utils: 2.0.4
- postcss: 8.5.3
- source-map: 0.6.1
- dev: true
- /resolve/1.22.10:
+ resolve@1.22.10:
resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
engines: {node: '>= 0.4'}
hasBin: true
- dependencies:
- is-core-module: 2.16.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
- /resolve/2.0.0-next.5:
+ resolve@2.0.0-next.5:
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
- dependencies:
- is-core-module: 2.16.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
- dev: true
- /restore-cursor/3.1.0:
+ restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
- dependencies:
- onetime: 5.1.2
- signal-exit: 3.0.7
- dev: true
- /restore-cursor/5.1.0:
+ restore-cursor@5.1.0:
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
engines: {node: '>=18'}
- dependencies:
- onetime: 7.0.0
- signal-exit: 4.1.0
- dev: true
- /ret/0.5.0:
+ ret@0.5.0:
resolution: {integrity: sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==}
engines: {node: '>=10'}
- /retry/0.12.0:
+ retry@0.12.0:
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
engines: {node: '>= 4'}
- dev: true
- /retry/0.13.1:
+ retry@0.13.1:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
engines: {node: '>= 4'}
- dev: true
reusify@1.1.0:
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /rfdc/1.4.1:
+ rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- /rimraf/3.0.2:
+ rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- dependencies:
- glob: 7.2.3
- dev: true
- /rimraf/5.0.10:
+ rimraf@5.0.10:
resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
hasBin: true
- dependencies:
- glob: 10.4.5
- /rollup-plugin-dts/6.1.1_tvniqcuwx6bs2alzrkuiqowlke:
+ rollup-plugin-dts@6.1.1:
resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==}
engines: {node: '>=16'}
peerDependencies:
rollup: ^3.29.4 || ^4
typescript: ^4.5 || ^5.0
- dependencies:
- magic-string: 0.30.17
- rollup: 4.31.0
- typescript: 5.5.3
- optionalDependencies:
- '@babel/code-frame': 7.26.2
- dev: true
- /rollup-plugin-visualizer/5.14.0:
+ rollup-plugin-visualizer@5.14.0:
resolution: {integrity: sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==}
engines: {node: '>=18'}
hasBin: true
@@ -19080,11 +10042,6 @@ packages:
optional: true
rollup:
optional: true
- dependencies:
- open: 8.4.2
- picomatch: 4.0.2
- source-map: 0.7.4
- yargs: 17.7.2
rollup@3.29.5:
resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==}
@@ -19095,166 +10052,63 @@ packages:
resolution: {integrity: sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- dependencies:
- '@types/estree': 1.0.6
- optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.31.0
- '@rollup/rollup-android-arm64': 4.31.0
- '@rollup/rollup-darwin-arm64': 4.31.0
- '@rollup/rollup-darwin-x64': 4.31.0
- '@rollup/rollup-freebsd-arm64': 4.31.0
- '@rollup/rollup-freebsd-x64': 4.31.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.31.0
- '@rollup/rollup-linux-arm-musleabihf': 4.31.0
- '@rollup/rollup-linux-arm64-gnu': 4.31.0
- '@rollup/rollup-linux-arm64-musl': 4.31.0
- '@rollup/rollup-linux-loongarch64-gnu': 4.31.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.31.0
- '@rollup/rollup-linux-riscv64-gnu': 4.31.0
- '@rollup/rollup-linux-s390x-gnu': 4.31.0
- '@rollup/rollup-linux-x64-gnu': 4.31.0
- '@rollup/rollup-linux-x64-musl': 4.31.0
- '@rollup/rollup-win32-arm64-msvc': 4.31.0
- '@rollup/rollup-win32-ia32-msvc': 4.31.0
- '@rollup/rollup-win32-x64-msvc': 4.31.0
- fsevents: 2.3.3
- dev: true
- /rollup/4.34.8:
+ rollup@4.34.8:
resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- dependencies:
- '@types/estree': 1.0.6
- optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.34.8
- '@rollup/rollup-android-arm64': 4.34.8
- '@rollup/rollup-darwin-arm64': 4.34.8
- '@rollup/rollup-darwin-x64': 4.34.8
- '@rollup/rollup-freebsd-arm64': 4.34.8
- '@rollup/rollup-freebsd-x64': 4.34.8
- '@rollup/rollup-linux-arm-gnueabihf': 4.34.8
- '@rollup/rollup-linux-arm-musleabihf': 4.34.8
- '@rollup/rollup-linux-arm64-gnu': 4.34.8
- '@rollup/rollup-linux-arm64-musl': 4.34.8
- '@rollup/rollup-linux-loongarch64-gnu': 4.34.8
- '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8
- '@rollup/rollup-linux-riscv64-gnu': 4.34.8
- '@rollup/rollup-linux-s390x-gnu': 4.34.8
- '@rollup/rollup-linux-x64-gnu': 4.34.8
- '@rollup/rollup-linux-x64-musl': 4.34.8
- '@rollup/rollup-win32-arm64-msvc': 4.34.8
- '@rollup/rollup-win32-ia32-msvc': 4.34.8
- '@rollup/rollup-win32-x64-msvc': 4.34.8
- fsevents: 2.3.3
- dev: true
- rollup@4.39.0:
- resolution: {integrity: sha512-thI8kNc02yNvnmJp8dr3fNWJ9tCONDhp6TV35X6HkKGGs9E6q7YWCHbe5vKiTa7TAiNcFEmXKj3X/pG2b3ci0g==}
+ rollup@4.37.0:
+ resolution: {integrity: sha512-iAtQy/L4QFU+rTJ1YUjXqJOJzuwEghqWzCEYD2FEghT7Gsy1VdABntrO4CLopA5IkflTyqNiLNwPcOJ3S7UKLg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- dependencies:
- '@types/estree': 1.0.6
- optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.35.0
- '@rollup/rollup-android-arm64': 4.35.0
- '@rollup/rollup-darwin-arm64': 4.35.0
- '@rollup/rollup-darwin-x64': 4.35.0
- '@rollup/rollup-freebsd-arm64': 4.35.0
- '@rollup/rollup-freebsd-x64': 4.35.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.35.0
- '@rollup/rollup-linux-arm-musleabihf': 4.35.0
- '@rollup/rollup-linux-arm64-gnu': 4.35.0
- '@rollup/rollup-linux-arm64-musl': 4.35.0
- '@rollup/rollup-linux-loongarch64-gnu': 4.35.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.35.0
- '@rollup/rollup-linux-riscv64-gnu': 4.35.0
- '@rollup/rollup-linux-s390x-gnu': 4.35.0
- '@rollup/rollup-linux-x64-gnu': 4.35.0
- '@rollup/rollup-linux-x64-musl': 4.35.0
- '@rollup/rollup-win32-arm64-msvc': 4.35.0
- '@rollup/rollup-win32-ia32-msvc': 4.35.0
- '@rollup/rollup-win32-x64-msvc': 4.35.0
- fsevents: 2.3.3
- /rrweb-cssom/0.6.0:
+ rrweb-cssom@0.6.0:
resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
- dev: true
- /run-applescript/7.0.0:
+ run-applescript@7.0.0:
resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
engines: {node: '>=18'}
- /run-parallel/1.2.0:
+ run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- dependencies:
- queue-microtask: 1.2.3
- /rxjs/7.8.1:
+ rxjs@7.8.1:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
- dependencies:
- tslib: 2.8.1
- dev: true
- /rxjs/7.8.2:
- resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
- dependencies:
- tslib: 2.8.1
-
- /sade/1.8.1:
+ sade@1.8.1:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
- dependencies:
- mri: 1.2.0
- dev: true
- /safe-array-concat/1.1.3:
+ safe-array-concat@1.1.3:
resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
engines: {node: '>=0.4'}
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.4
- get-intrinsic: 1.3.0
- has-symbols: 1.1.0
- isarray: 2.0.5
- dev: true
- /safe-buffer/5.1.2:
+ safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- /safe-buffer/5.2.1:
+ safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- /safe-push-apply/1.0.0:
+ safe-push-apply@1.0.0:
resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
engines: {node: '>= 0.4'}
- dependencies:
- es-errors: 1.3.0
- isarray: 2.0.5
- dev: true
- /safe-regex-test/1.1.0:
+ safe-regex-test@1.1.0:
resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- is-regex: 1.2.1
- dev: true
- /safe-regex2/4.0.1:
- resolution: {integrity: sha512-goqsB+bSlOmVX+CiFX2PFc1OV88j5jvBqIM+DgqrucHnUguAUNtiNOs+aTadq2NqsLQ+TQ3UEVG3gtSFcdlkCg==}
- dependencies:
- ret: 0.5.0
+ safe-regex2@5.0.0:
+ resolution: {integrity: sha512-YwJwe5a51WlK7KbOJREPdjNrpViQBI3p4T50lfwPuDhZnE3XGVTlGvi+aolc5+RvxDD6bnUmjVsU9n1eboLUYw==}
- /safe-stable-stringify/2.5.0:
+ safe-stable-stringify@2.5.0:
resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
engines: {node: '>=10'}
- /safer-buffer/2.1.2:
+ safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- /sass-loader/16.0.5_sass@1.85.0+webpack@5.98.0:
+ sass-loader@16.0.5:
resolution: {integrity: sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==}
engines: {node: '>= 18.12.0'}
peerDependencies:
@@ -19274,369 +10128,190 @@ packages:
optional: true
webpack:
optional: true
- dependencies:
- neo-async: 2.6.2
- sass: 1.85.0
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
- /sass/1.85.0:
+ sass@1.85.0:
resolution: {integrity: sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==}
engines: {node: '>=14.0.0'}
hasBin: true
- dependencies:
- chokidar: 4.0.3
- immutable: 5.0.3
- source-map-js: 1.2.1
- optionalDependencies:
- '@parcel/watcher': 2.5.1
- /sax/1.4.1:
+ sax@1.4.1:
resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
- optional: true
- /saxes/6.0.0:
+ saxes@6.0.0:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
- dependencies:
- xmlchars: 2.2.0
- dev: true
- /scheduler/0.25.0:
+ scheduler@0.25.0:
resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
- dev: false
- /schema-utils/4.3.0:
+ schema-utils@4.3.0:
resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
engines: {node: '>= 10.13.0'}
- dependencies:
- '@types/json-schema': 7.0.15
- ajv: 8.17.1
- ajv-formats: 2.1.1
- ajv-keywords: 5.1.0_ajv@8.17.1
- dev: true
- /scule/1.3.0:
+ scule@1.3.0:
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
- /search-insights/2.17.3:
+ search-insights@2.17.3:
resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==}
- dev: true
- /secure-json-parse/3.0.2:
+ secure-json-parse@3.0.2:
resolution: {integrity: sha512-H6nS2o8bWfpFEV6U38sOSjS7bTbdgbCGU9wEM6W14P5H0QOsz94KCusifV44GpHDTu2nqZbuDNhTzu+mjDSw1w==}
- /select-hose/2.0.0:
+ select-hose@2.0.0:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
- dev: true
- /selfsigned/2.4.1:
+ selfsigned@2.4.1:
resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
engines: {node: '>=10'}
- dependencies:
- '@types/node-forge': 1.3.11
- node-forge: 1.3.1
- dev: true
- /semver/5.7.2:
+ semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
- optional: true
- /semver/6.3.1:
+ semver@6.3.1:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- /semver/7.6.0:
+ semver@7.6.0:
resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
engines: {node: '>=10'}
hasBin: true
- dependencies:
- lru-cache: 6.0.0
- dev: true
semver@7.7.1:
resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
engines: {node: '>=10'}
hasBin: true
- /send/0.19.0:
+ send@0.19.0:
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.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
- /serialize-javascript/6.0.2:
+ serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
- dependencies:
- randombytes: 2.1.0
- /seroval-plugins/1.2.1_seroval@1.2.1:
+ seroval-plugins@1.2.1:
resolution: {integrity: sha512-H5vs53+39+x4Udwp4J5rNZfgFuA+Lt+uU+09w1gYBVWomtAl98B+E9w7yC05Xc81/HgLvJdlyqJbU0fJCKCmdw==}
engines: {node: '>=10'}
peerDependencies:
seroval: ^1.0
- dependencies:
- seroval: 1.2.1
- dev: true
- /seroval/1.2.1:
+ seroval@1.2.1:
resolution: {integrity: sha512-yBxFFs3zmkvKNmR0pFSU//rIsYjuX418TnlDmc2weaq5XFDqDIV/NOMPBoLrbxjLH42p4UzRuXHryXh9dYcKcw==}
engines: {node: '>=10'}
- dev: true
- /serve-index/1.9.1:
+ serve-index@1.9.1:
resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
- 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
- dev: true
- /serve-placeholder/2.0.2:
+ serve-placeholder@2.0.2:
resolution: {integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==}
- dependencies:
- defu: 6.1.4
- /serve-static/1.16.2:
+ serve-static@1.16.2:
resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
- dependencies:
- encodeurl: 2.0.0
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 0.19.0
- transitivePeerDependencies:
- - supports-color
- /set-cookie-parser/2.7.1:
+ set-cookie-parser@2.7.1:
resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==}
- /set-function-length/1.2.2:
+ set-function-length@1.2.2:
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
engines: {node: '>= 0.4'}
- dependencies:
- define-data-property: 1.1.4
- es-errors: 1.3.0
- function-bind: 1.1.2
- get-intrinsic: 1.3.0
- gopd: 1.2.0
- has-property-descriptors: 1.0.2
- dev: true
- /set-function-name/2.0.2:
+ set-function-name@2.0.2:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
- dependencies:
- define-data-property: 1.1.4
- es-errors: 1.3.0
- functions-have-names: 1.2.3
- has-property-descriptors: 1.0.2
- dev: true
- /set-proto/1.0.0:
+ set-proto@1.0.0:
resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
engines: {node: '>= 0.4'}
- dependencies:
- dunder-proto: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- dev: true
- /setprototypeof/1.1.0:
+ setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
- dev: true
- /setprototypeof/1.2.0:
+ setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- /shallow-clone/3.0.1:
+ shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
- dependencies:
- kind-of: 6.0.3
- dev: true
- /sharp/0.33.5:
+ sharp@0.33.5:
resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- requiresBuild: true
- dependencies:
- color: 4.2.3
- detect-libc: 2.0.3
- semver: 7.7.1
- optionalDependencies:
- '@img/sharp-darwin-arm64': 0.33.5
- '@img/sharp-darwin-x64': 0.33.5
- '@img/sharp-libvips-darwin-arm64': 1.0.4
- '@img/sharp-libvips-darwin-x64': 1.0.4
- '@img/sharp-libvips-linux-arm': 1.0.5
- '@img/sharp-libvips-linux-arm64': 1.0.4
- '@img/sharp-libvips-linux-s390x': 1.0.4
- '@img/sharp-libvips-linux-x64': 1.0.4
- '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
- '@img/sharp-libvips-linuxmusl-x64': 1.0.4
- '@img/sharp-linux-arm': 0.33.5
- '@img/sharp-linux-arm64': 0.33.5
- '@img/sharp-linux-s390x': 0.33.5
- '@img/sharp-linux-x64': 0.33.5
- '@img/sharp-linuxmusl-arm64': 0.33.5
- '@img/sharp-linuxmusl-x64': 0.33.5
- '@img/sharp-wasm32': 0.33.5
- '@img/sharp-win32-ia32': 0.33.5
- '@img/sharp-win32-x64': 0.33.5
- /shebang-command/1.2.0:
+ shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
- dependencies:
- shebang-regex: 1.0.0
- dev: true
- /shebang-command/2.0.0:
+ shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
- dependencies:
- shebang-regex: 3.0.0
- /shebang-regex/1.0.0:
+ shebang-regex@1.0.0:
resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /shebang-regex/3.0.0:
+ shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- /shell-quote/1.8.2:
+ shell-quote@1.8.2:
resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
engines: {node: '>= 0.4'}
shiki@1.29.2:
resolution: {integrity: sha512-njXuliz/cP+67jU2hukkxCNuH1yUi4QfdZZY+sMr5PPrIyXSu5iTb/qYC4BiWWB0vZ+7TbdvYUCeL23zpwCfbg==}
- /side-channel-list/1.0.0:
+ side-channel-list@1.0.0:
resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
engines: {node: '>= 0.4'}
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.4
- dev: true
- /side-channel-map/1.0.1:
+ side-channel-map@1.0.1:
resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- get-intrinsic: 1.3.0
- object-inspect: 1.13.4
- dev: true
- /side-channel-weakmap/1.0.2:
+ side-channel-weakmap@1.0.2:
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- get-intrinsic: 1.3.0
- object-inspect: 1.13.4
- side-channel-map: 1.0.1
- dev: true
- /side-channel/1.1.0:
+ side-channel@1.1.0:
resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
engines: {node: '>= 0.4'}
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.4
- side-channel-list: 1.0.0
- side-channel-map: 1.0.1
- side-channel-weakmap: 1.0.2
- dev: true
- /siginfo/2.0.0:
+ siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
- dev: true
- /signal-exit/3.0.7:
+ signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- /signal-exit/4.1.0:
+ signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- /sigstore/3.1.0:
+ sigstore@3.1.0:
resolution: {integrity: sha512-ZpzWAFHIFqyFE56dXqgX/DkDRZdz+rRcjoIk/RQU4IX0wiCv1l8S7ZrXDHcCc+uaf+6o7w3h2l3g6GYG5TKN9Q==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@sigstore/bundle': 3.1.0
- '@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.4.0
- '@sigstore/sign': 3.1.0
- '@sigstore/tuf': 3.1.0
- '@sigstore/verify': 2.1.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /simple-git/3.27.0:
+ simple-git@3.27.0:
resolution: {integrity: sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA==}
- dependencies:
- '@kwsites/file-exists': 1.1.1
- '@kwsites/promise-deferred': 1.1.1
- debug: 4.4.0
- transitivePeerDependencies:
- - supports-color
- /simple-swizzle/0.2.2:
+ simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
- dependencies:
- is-arrayish: 0.3.2
sirv@3.0.1:
resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==}
engines: {node: '>=18'}
- dependencies:
- '@polka/url': 1.0.0-next.28
- mrmime: 2.0.1
- totalist: 3.0.1
- /sisteransi/1.0.5:
+ sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
- /skin-tone/2.0.0:
+ skin-tone@2.0.0:
resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==}
engines: {node: '>=8'}
- dependencies:
- unicode-emoji-modifier-base: 1.0.0
- dev: true
- /slash/3.0.0:
+ slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- dev: true
slash@4.0.0:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
@@ -19646,434 +10321,230 @@ packages:
resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
engines: {node: '>=14.16'}
- /slice-ansi/5.0.0:
+ slice-ansi@5.0.0:
resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
engines: {node: '>=12'}
- dependencies:
- ansi-styles: 6.2.1
- is-fullwidth-code-point: 4.0.0
- dev: true
- /slice-ansi/7.1.0:
+ slice-ansi@7.1.0:
resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==}
engines: {node: '>=18'}
- dependencies:
- ansi-styles: 6.2.1
- is-fullwidth-code-point: 5.0.0
- dev: true
- /smart-buffer/4.2.0:
+ smart-buffer@4.2.0:
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
- dev: true
- /smob/1.5.0:
+ smob@1.5.0:
resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
- /socket.io-adapter/2.5.5:
+ socket.io-adapter@2.5.5:
resolution: {integrity: sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==}
- dependencies:
- debug: 4.3.7
- ws: 8.17.1
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: true
- /socket.io-parser/4.2.4:
+ socket.io-parser@4.2.4:
resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==}
engines: {node: '>=10.0.0'}
- dependencies:
- '@socket.io/component-emitter': 3.1.2
- debug: 4.3.7
- transitivePeerDependencies:
- - supports-color
- dev: true
- /socket.io/4.8.1:
+ socket.io@4.8.1:
resolution: {integrity: sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==}
engines: {node: '>=10.2.0'}
- dependencies:
- accepts: 1.3.8
- base64id: 2.0.0
- cors: 2.8.5
- debug: 4.3.7
- engine.io: 6.6.4
- socket.io-adapter: 2.5.5
- socket.io-parser: 4.2.4
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: true
- /sockjs/0.3.24:
+ sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
- dependencies:
- faye-websocket: 0.11.4
- uuid: 8.3.2
- websocket-driver: 0.7.4
- dev: true
- /socks-proxy-agent/8.0.5:
+ socks-proxy-agent@8.0.5:
resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==}
engines: {node: '>= 14'}
- dependencies:
- agent-base: 7.1.3
- debug: 4.4.0
- socks: 2.8.4
- transitivePeerDependencies:
- - supports-color
- dev: true
socks@2.8.4:
resolution: {integrity: sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==}
engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
- dependencies:
- ip-address: 9.0.5
- smart-buffer: 4.2.0
- dev: true
solid-js@1.9.5:
resolution: {integrity: sha512-ogI3DaFcyn6UhYhrgcyRAMbu/buBJitYQASZz5WzfQVPP10RD2AbCoRZ517psnezrasyCbWzIxZ6kVqet768xw==}
- /sonic-boom/4.2.0:
+ sonic-boom@4.2.0:
resolution: {integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==}
- dependencies:
- atomic-sleep: 1.0.0
- /source-map-js/1.2.1:
+ source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
- /source-map-loader/5.0.0_webpack@5.98.0:
+ source-map-loader@5.0.0:
resolution: {integrity: sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
webpack: ^5.72.1
- dependencies:
- iconv-lite: 0.6.3
- source-map-js: 1.2.1
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
- /source-map-support/0.5.21:
+ source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
- dependencies:
- buffer-from: 1.1.2
- source-map: 0.6.1
- /source-map/0.6.1:
+ source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- /source-map/0.7.4:
+ source-map@0.7.4:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
- /source-map/0.8.0-beta.0:
+ source-map@0.8.0-beta.0:
resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
engines: {node: '>= 8'}
- dependencies:
- whatwg-url: 7.1.0
- dev: true
- /space-separated-tokens/2.0.2:
+ space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
- dev: true
- /spawndamnit/2.0.0:
+ spawndamnit@2.0.0:
resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==}
- dependencies:
- cross-spawn: 5.1.0
- signal-exit: 3.0.7
- dev: true
- /spawndamnit/3.0.1:
+ spawndamnit@3.0.1:
resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==}
- dependencies:
- cross-spawn: 7.0.6
- signal-exit: 4.1.0
- dev: true
- /spdx-correct/3.2.0:
+ spdx-correct@3.2.0:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
- dependencies:
- spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.21
- dev: true
- /spdx-exceptions/2.5.0:
+ spdx-exceptions@2.5.0:
resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
- dev: true
- /spdx-expression-parse/3.0.1:
+ spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
- dependencies:
- spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.21
- dev: true
- /spdx-license-ids/3.0.21:
+ spdx-license-ids@3.0.21:
resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==}
- dev: true
- /spdy-transport/3.0.0:
+ spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
- dependencies:
- debug: 4.4.0
- 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
- dev: true
- /spdy/4.0.2:
+ spdy@4.0.2:
resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
engines: {node: '>=6.0.0'}
- dependencies:
- debug: 4.4.0
- handle-thing: 2.0.1
- http-deceiver: 1.2.7
- select-hose: 2.0.0
- spdy-transport: 3.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /speakingurl/14.0.1:
+ speakingurl@14.0.1:
resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
engines: {node: '>=0.10.0'}
- /split2/4.2.0:
+ split2@4.2.0:
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
engines: {node: '>= 10.x'}
- /sprintf-js/1.0.3:
+ sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- dev: true
- /sprintf-js/1.1.3:
+ sprintf-js@1.1.3:
resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
- dev: true
- /ssri/12.0.0:
+ ssri@12.0.0:
resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- minipass: 7.1.2
- dev: true
- /stable-hash/0.0.4:
- resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
- dev: true
+ stable-hash@0.0.5:
+ resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==}
- /stackback/0.0.2:
+ stackback@0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
- dev: true
- /standard-as-callback/2.1.0:
+ standard-as-callback@2.1.0:
resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
- /statuses/1.5.0:
+ statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
- dev: true
- /statuses/2.0.1:
+ statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
std-env@3.8.1:
resolution: {integrity: sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==}
- /streamroller/3.1.5:
+ streamroller@3.1.5:
resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==}
engines: {node: '>=8.0'}
- dependencies:
- date-format: 4.0.14
- debug: 4.4.0
- fs-extra: 8.1.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /streamsearch/1.1.0:
+ streamsearch@1.1.0:
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
engines: {node: '>=10.0.0'}
- dev: false
- /streamx/2.22.0:
+ streamx@2.22.0:
resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==}
- dependencies:
- fast-fifo: 1.3.2
- text-decoder: 1.2.3
- optionalDependencies:
- bare-events: 2.5.4
- /string-argv/0.3.2:
+ string-argv@0.3.2:
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
engines: {node: '>=0.6.19'}
- dev: true
- /string-width/4.2.3:
+ string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
- dependencies:
- emoji-regex: 8.0.0
- is-fullwidth-code-point: 3.0.0
- strip-ansi: 6.0.1
- /string-width/5.1.2:
+ string-width@5.1.2:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
- dependencies:
- eastasianwidth: 0.2.0
- emoji-regex: 9.2.2
- strip-ansi: 7.1.0
- /string-width/7.2.0:
+ string-width@7.2.0:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
- dependencies:
- emoji-regex: 10.4.0
- get-east-asian-width: 1.3.0
- strip-ansi: 7.1.0
- dev: true
- /string.prototype.includes/2.0.1:
+ string.prototype.includes@2.0.1:
resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.9
- dev: true
- /string.prototype.matchall/4.0.12:
+ string.prototype.matchall@4.0.12:
resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.4
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- get-intrinsic: 1.3.0
- gopd: 1.2.0
- has-symbols: 1.1.0
- internal-slot: 1.1.0
- regexp.prototype.flags: 1.5.4
- set-function-name: 2.0.2
- side-channel: 1.1.0
- dev: true
- /string.prototype.repeat/1.0.0:
+ string.prototype.repeat@1.0.0:
resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
- dependencies:
- define-properties: 1.2.1
- es-abstract: 1.23.9
- dev: true
- /string.prototype.trim/1.2.10:
+ string.prototype.trim@1.2.10:
resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.4
- define-data-property: 1.1.4
- define-properties: 1.2.1
- es-abstract: 1.23.9
- es-object-atoms: 1.1.1
- has-property-descriptors: 1.0.2
- dev: true
- /string.prototype.trimend/1.0.9:
+ string.prototype.trimend@1.0.9:
resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.4
- define-properties: 1.2.1
- es-object-atoms: 1.1.1
- dev: true
- /string.prototype.trimstart/1.0.8:
+ string.prototype.trimstart@1.0.8:
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-object-atoms: 1.1.1
- dev: true
- /string_decoder/1.1.1:
+ string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
- dependencies:
- safe-buffer: 5.1.2
- /string_decoder/1.3.0:
+ string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
- dependencies:
- safe-buffer: 5.2.1
- /stringify-entities/4.0.4:
+ stringify-entities@4.0.4:
resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
- dependencies:
- character-entities-html4: 2.1.0
- character-entities-legacy: 3.0.0
- dev: true
- /strip-ansi/6.0.1:
+ strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- dependencies:
- ansi-regex: 5.0.1
- /strip-ansi/7.1.0:
+ strip-ansi@7.1.0:
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
engines: {node: '>=12'}
- dependencies:
- ansi-regex: 6.1.0
- /strip-bom/3.0.0:
+ strip-bom@3.0.0:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
- dev: true
- /strip-final-newline/3.0.0:
+ strip-final-newline@3.0.0:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'}
- /strip-final-newline/4.0.0:
+ strip-final-newline@4.0.0:
resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
engines: {node: '>=18'}
- /strip-json-comments/3.1.1:
+ strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- dev: true
- /strip-literal/2.1.1:
+ strip-literal@2.1.1:
resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
- dependencies:
- js-tokens: 9.0.1
- /strip-literal/3.0.0:
+ strip-literal@3.0.0:
resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
- dependencies:
- js-tokens: 9.0.1
- /structured-clone-es/1.0.0:
- resolution: {integrity: sha512-FL8EeKFFyNQv5cMnXI31CIMCsFarSVI2bF0U0ImeNE3g/F1IvJQyqzOXxPBRXiwQfyBTlbNe88jh1jFW0O/jiQ==}
- dev: false
-
- /styled-jsx/5.1.6_react@19.0.0:
+ styled-jsx@5.1.6:
resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
engines: {node: '>= 12.0.0'}
peerDependencies:
@@ -20085,40 +10556,21 @@ packages:
optional: true
babel-plugin-macros:
optional: true
- dependencies:
- client-only: 0.0.1
- react: 19.0.0
- dev: false
- /stylehacks/7.0.4_postcss@8.5.3:
+ stylehacks@7.0.4:
resolution: {integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- dependencies:
- browserslist: 4.24.4
- postcss: 8.5.3
- postcss-selector-parser: 6.1.2
- /sucrase/3.35.0:
+ sucrase@3.35.0:
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
- dependencies:
- '@jridgewell/gen-mapping': 0.3.8
- commander: 4.1.1
- glob: 10.4.5
- lines-and-columns: 1.2.4
- mz: 2.7.0
- pirates: 4.0.6
- ts-interface-checker: 0.1.13
- dev: true
- /superjson/2.2.2:
+ superjson@2.2.2:
resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
engines: {node: '>=16'}
- dependencies:
- copy-anything: 3.0.5
supports-color@10.0.0:
resolution: {integrity: sha512-HRVVSbCCMbj7/kdWF9Q+bbckjBHLtHMEoJWlkmYzzdwhYMkjkOwubLM6t7NbWKjgKamGDrWL1++KrjUO1t9oAQ==}
@@ -20127,52 +10579,28 @@ packages:
supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
- dependencies:
- has-flag: 4.0.0
- /supports-color/8.1.1:
+ supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
- dependencies:
- has-flag: 4.0.0
- dev: true
-
- /supports-color/9.4.0:
- resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==}
- engines: {node: '>=12'}
supports-hyperlinks@3.2.0:
resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==}
engines: {node: '>=14.18'}
- dependencies:
- has-flag: 4.0.0
- supports-color: 7.2.0
- dev: true
- /supports-preserve-symlinks-flag/1.0.0:
+ supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /svelte-check/4.1.4_6p6tysakew3sev7ys2p7vrl5ri:
+ svelte-check@4.1.4:
resolution: {integrity: sha512-v0j7yLbT29MezzaQJPEDwksybTE2Ups9rUxEXy92T06TiA0cbqcO8wAOwNUVkFW6B0hsYHA+oAX3BS8b/2oHtw==}
engines: {node: '>= 18.0.0'}
hasBin: true
peerDependencies:
svelte: ^4.0.0 || ^5.0.0-next.0
typescript: '>=5.0.0'
- dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- chokidar: 4.0.3
- fdir: 6.4.3
- picocolors: 1.1.1
- sade: 1.8.1
- svelte: 5.19.9
- typescript: 5.5.3
- transitivePeerDependencies:
- - picomatch
- dev: true
- /svelte-eslint-parser/0.43.0_svelte@5.19.9:
+ svelte-eslint-parser@0.43.0:
resolution: {integrity: sha512-GpU52uPKKcVnh8tKN5P4UZpJ/fUDndmq7wfsvoVXsyP+aY0anol7Yqo01fyrlaWGMFfm4av5DyrjlaXdLRJvGA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -20180,152 +10608,60 @@ packages:
peerDependenciesMeta:
svelte:
optional: true
- dependencies:
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
- postcss: 8.5.3
- postcss-scss: 4.0.9_postcss@8.5.3
- svelte: 5.19.9
- dev: true
- /svelte/5.19.9:
+ svelte@5.19.9:
resolution: {integrity: sha512-860s752/ZZxHIsii31ELkdKBOCeAuDsfb/AGUXJyQyzUVLRSt4oqEw/BV5+2+mNg8mbqmD3OK+vMvwWMPM6f8A==}
engines: {node: '>=18'}
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@jridgewell/sourcemap-codec': 1.5.0
- '@types/estree': 1.0.6
- acorn: 8.14.1
- acorn-typescript: 1.4.13_acorn@8.14.1
- aria-query: 5.3.2
- axobject-query: 4.1.0
- clsx: 2.1.1
- esm-env: 1.2.2
- esrap: 1.4.5
- is-reference: 3.0.3
- locate-character: 3.0.0
- magic-string: 0.30.17
- zimmerframe: 1.1.2
svgo@3.3.2:
resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==}
engines: {node: '>=14.0.0'}
hasBin: true
- dependencies:
- '@trysound/sax': 0.2.0
- commander: 7.2.0
- css-select: 5.1.0
- css-tree: 2.3.1
- css-what: 6.1.0
- csso: 5.0.5
- picocolors: 1.1.1
- /symbol-observable/4.0.0:
+ symbol-observable@4.0.0:
resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==}
engines: {node: '>=0.10'}
- dev: true
- /symbol-tree/3.2.4:
+ symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
- dev: true
- /synckit/0.9.2:
- resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
+ synckit@0.10.3:
+ resolution: {integrity: sha512-R1urvuyiTaWfeCggqEvpDJwAlDVdsT9NM+IP//Tk2x7qHCkSvBk/fwFgw/TLAHzZlrAnnazMcRw0ZD8HlYFTEQ==}
engines: {node: ^14.18.0 || >=16.0.0}
- dependencies:
- '@pkgr/core': 0.1.1
- tslib: 2.8.1
- dev: true
- /system-architecture/0.1.0:
+ system-architecture@0.1.0:
resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
engines: {node: '>=18'}
- /tabbable/6.2.0:
+ tabbable@6.2.0:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
- dev: true
- /tailwindcss/3.4.9:
+ tailwindcss@3.4.9:
resolution: {integrity: sha512-1SEOvRr6sSdV5IDf9iC+NU4dhwdqzF4zKKq3sAbasUWHEM6lsMhX+eNN5gkPx1BvLFEnZQEUFbXnGj8Qlp83Pg==}
engines: {node: '>=14.0.0'}
hasBin: true
- dependencies:
- '@alloc/quick-lru': 5.2.0
- arg: 5.0.2
- chokidar: 3.6.0
- didyoumean: 1.2.2
- dlv: 1.1.3
- fast-glob: 3.3.3
- glob-parent: 6.0.2
- is-glob: 4.0.3
- jiti: 1.21.7
- lilconfig: 2.1.0
- micromatch: 4.0.8
- normalize-path: 3.0.0
- object-hash: 3.0.0
- picocolors: 1.1.1
- postcss: 8.4.41
- postcss-import: 15.1.0_postcss@8.4.41
- postcss-js: 4.0.1_postcss@8.4.41
- postcss-load-config: 4.0.2_postcss@8.4.41
- postcss-nested: 6.2.0_postcss@8.4.41
- postcss-selector-parser: 6.1.2
- resolve: 1.22.10
- sucrase: 3.35.0
- transitivePeerDependencies:
- - ts-node
- dev: true
- /tapable/2.2.1:
+ tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- /tar-fs/3.0.5:
+ tar-fs@3.0.5:
resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==}
- dependencies:
- pump: 3.0.2
- tar-stream: 3.1.7
- optionalDependencies:
- bare-fs: 2.3.5
- bare-path: 2.1.3
- transitivePeerDependencies:
- - bare-buffer
- dev: true
- /tar-stream/3.1.7:
+ tar-stream@3.1.7:
resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
- dependencies:
- b4a: 1.6.7
- fast-fifo: 1.3.2
- streamx: 2.22.0
- /tar/6.2.1:
+ tar@6.2.1:
resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
- dependencies:
- chownr: 2.0.0
- fs-minipass: 2.1.0
- minipass: 5.0.0
- minizlib: 2.1.2
- mkdirp: 1.0.4
- yallist: 4.0.0
- /tar/7.4.3:
+ tar@7.4.3:
resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
engines: {node: '>=18'}
- dependencies:
- '@isaacs/fs-minipass': 4.0.1
- chownr: 3.0.0
- minipass: 7.1.2
- minizlib: 3.0.1
- mkdirp: 3.0.1
- yallist: 5.0.0
- /term-size/2.2.1:
+ term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
- dev: true
terser-webpack-plugin@5.3.14:
resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==}
@@ -20342,115 +10678,53 @@ packages:
optional: true
uglify-js:
optional: true
- dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- esbuild: 0.25.0
- jest-worker: 27.5.1
- schema-utils: 4.3.0
- serialize-javascript: 6.0.2
- terser: 5.39.0
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
-
- /terser-webpack-plugin/5.3.14_webpack@5.98.0:
- 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
- dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- jest-worker: 27.5.1
- schema-utils: 4.3.0
- serialize-javascript: 6.0.2
- terser: 5.39.0
- webpack: 5.98.0
- dev: true
- /terser/5.39.0:
+ terser@5.39.0:
resolution: {integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==}
engines: {node: '>=10'}
hasBin: true
- dependencies:
- '@jridgewell/source-map': 0.3.6
- acorn: 8.14.1
- commander: 2.20.3
- source-map-support: 0.5.21
- /test-exclude/6.0.0:
+ test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
- dependencies:
- '@istanbuljs/schema': 0.1.3
- glob: 7.2.3
- minimatch: 3.1.2
- dev: true
- /text-decoder/1.2.3:
+ text-decoder@1.2.3:
resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
- dependencies:
- b4a: 1.6.7
- /thenify-all/1.6.0:
+ thenify-all@1.6.0:
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
engines: {node: '>=0.8'}
- dependencies:
- thenify: 3.3.1
- dev: true
- /thenify/3.3.1:
+ thenify@3.3.1:
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
- dependencies:
- any-promise: 1.3.0
- dev: true
- /thingies/1.21.0_tslib@2.8.1:
+ thingies@1.21.0:
resolution: {integrity: sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==}
engines: {node: '>=10.18'}
peerDependencies:
tslib: ^2
- dependencies:
- tslib: 2.8.1
- dev: true
- /thread-stream/3.1.0:
+ thread-stream@3.1.0:
resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==}
- dependencies:
- real-require: 0.2.0
- /through/2.3.8:
+ through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
- dev: true
- /thunky/1.1.0:
+ thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
- dev: true
- /tiny-invariant/1.3.3:
+ tiny-invariant@1.3.3:
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
- /tinybench/2.9.0:
+ tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
- dev: true
- /tinyexec/0.3.2:
+ tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- /tinyglobby/0.2.10:
+ tinyglobby@0.2.10:
resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
engines: {node: '>=12.0.0'}
- dependencies:
- fdir: 6.4.3_picomatch@4.0.2
- picomatch: 4.0.2
tinyglobby@0.2.12:
resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
@@ -20459,110 +10733,78 @@ packages:
tinypool@0.8.4:
resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
engines: {node: '>=14.0.0'}
- dev: true
- /tinyspy/2.2.1:
+ tinyspy@2.2.1:
resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
engines: {node: '>=14.0.0'}
- dev: true
- /tmp/0.0.33:
+ tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
- dependencies:
- os-tmpdir: 1.0.2
- dev: true
- /tmp/0.2.3:
+ tmp@0.2.3:
resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
engines: {node: '>=14.14'}
- dev: true
- /to-regex-range/5.0.1:
+ to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
- dependencies:
- is-number: 7.0.0
- /toad-cache/3.7.0:
+ toad-cache@3.7.0:
resolution: {integrity: sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==}
engines: {node: '>=12'}
- /toidentifier/1.0.1:
+ toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- /totalist/3.0.1:
+ totalist@3.0.1:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
- /tough-cookie/4.1.4:
+ tough-cookie@4.1.4:
resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
engines: {node: '>=6'}
- dependencies:
- psl: 1.15.0
- punycode: 2.3.1
- universalify: 0.2.0
- url-parse: 1.5.10
- dev: true
- /tr46/0.0.3:
+ tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- /tr46/1.0.1:
+ tr46@1.0.1:
resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
- dependencies:
- punycode: 2.3.1
- dev: true
- /tr46/5.0.0:
- resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ tr46@5.1.0:
+ resolution: {integrity: sha512-IUWnUK7ADYR5Sl1fZlO1INDUhVhatWl7BtJWsIhwJ0UAK7ilzzIa8uIqOO/aYVWHZPJkKbEL+362wrzoeRF7bw==}
engines: {node: '>=18'}
- dependencies:
- punycode: 2.3.1
- dev: true
- /tree-dump/1.0.2_tslib@2.8.1:
+ tree-dump@1.0.2:
resolution: {integrity: sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
- dependencies:
- tslib: 2.8.1
- dev: true
- /tree-kill/1.2.2:
+ tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
- dev: true
- /trim-lines/3.0.1:
+ trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
- dev: true
- /ts-api-utils/1.4.3_typescript@5.5.3:
+ ts-api-utils@1.4.3:
resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
engines: {node: '>=16'}
peerDependencies:
typescript: '>=4.2.0'
- dependencies:
- typescript: 5.5.3
- dev: true
- ts-api-utils@2.0.1:
- resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==}
+ ts-api-utils@2.1.0:
+ resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
engines: {node: '>=18.12'}
peerDependencies:
typescript: '>=4.8.4'
- dependencies:
- typescript: 5.5.3
- dev: true
- /ts-interface-checker/0.1.13:
+ ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- dev: true
- /ts-node/10.9.2_vqq2jgqvcrokzxf4leekoaudga:
+ ts-node@10.9.2:
resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
@@ -20575,23 +10817,6 @@ packages:
optional: true
'@swc/wasm':
optional: true
- 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': 22.13.10
- acorn: 8.14.1
- acorn-walk: 8.3.4
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 5.5.3
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- dev: true
tsconfck@3.1.5:
resolution: {integrity: sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg==}
@@ -20605,21 +10830,14 @@ packages:
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
- dependencies:
- '@types/json5': 0.0.29
- json5: 1.0.2
- minimist: 1.2.8
- strip-bom: 3.0.0
- dev: true
- /tslib/1.14.1:
+ tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- dev: true
- /tslib/2.8.1:
+ tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- /tsup/8.3.5_typescript@5.5.3:
+ tsup@8.3.5:
resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==}
engines: {node: '>=18'}
hasBin: true
@@ -20637,144 +10855,74 @@ packages:
optional: true
typescript:
optional: true
- dependencies:
- bundle-require: 5.1.0_esbuild@0.24.2
- cac: 6.7.14
- chokidar: 4.0.3
- consola: 3.4.0
- debug: 4.4.0
- esbuild: 0.24.2
- joycon: 3.1.1
- picocolors: 1.1.1
- postcss-load-config: 6.0.1
- resolve-from: 5.0.0
- rollup: 4.31.0
- source-map: 0.8.0-beta.0
- sucrase: 3.35.0
- tinyexec: 0.3.2
- tinyglobby: 0.2.12
- tree-kill: 1.2.2
- typescript: 5.5.3
- transitivePeerDependencies:
- - jiti
- - supports-color
- - tsx
- - yaml
- dev: true
- /tsutils/3.21.0_typescript@5.5.3:
+ 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'
- dependencies:
- tslib: 1.14.1
- typescript: 5.5.3
- dev: true
- /tuf-js/3.0.1:
+ tuf-js@3.0.1:
resolution: {integrity: sha512-+68OP1ZzSF84rTckf3FA95vJ1Zlx/uaXyiiKyPd1pA4rZNkpEvDAKmsu1xUSmbF/chCRYgZ6UZkDwC7PmzmAyA==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- '@tufjs/models': 3.0.1
- debug: 4.4.0
- make-fetch-happen: 14.0.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /turbo-darwin-64/2.4.0:
+ turbo-darwin-64@2.4.0:
resolution: {integrity: sha512-kVMScnPUa3R4n7woNmkR15kOY0aUwCLJcUyH5UC59ggKqr5HIHwweKYK8N1pwBQso0LQF4I9i93hIzfJguCcwQ==}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /turbo-darwin-arm64/2.4.0:
+ turbo-darwin-arm64@2.4.0:
resolution: {integrity: sha512-8JObIpfun1guA7UlFR5jC/SOVm49lRscxMxfg5jZ5ABft79rhFC+ygN9AwAhGKv6W2DUhIh2xENkSgu4EDmUyg==}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /turbo-linux-64/2.4.0:
+ turbo-linux-64@2.4.0:
resolution: {integrity: sha512-xWDGGcRlBuGV7HXWAVuTY6vsQi4aZxGMAnuiuNDg8Ij1aHGohOM0RUsWMXjxz4vuJmjk9+/D6NQqHH3AJEXezg==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /turbo-linux-arm64/2.4.0:
+ turbo-linux-arm64@2.4.0:
resolution: {integrity: sha512-c3En99xMguc/Pdtk/rZP53LnDdw0W6lgUc04he8r8F+UHYSNvgzHh0WGXXmCC6lGbBH72kPhhGx4bAwyvi7dug==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /turbo-windows-64/2.4.0:
+ turbo-windows-64@2.4.0:
resolution: {integrity: sha512-/gOORuOlyA8JDPzyA16CD3wvyRcuBFePa1URAnFUof9hXQmKxK0VvSDO79cYZFsJSchCKNJpckUS0gYxGsWwoA==}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /turbo-windows-arm64/2.4.0:
+ turbo-windows-arm64@2.4.0:
resolution: {integrity: sha512-/DJIdTFijEMM5LSiEpSfarDOMOlYqJV+EzmppqWtHqDsOLF4hbbIBH9sJR6OOp5dURAu5eURBYdmvBRz9Lo6TA==}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /turbo/2.4.0:
+ turbo@2.4.0:
resolution: {integrity: sha512-ah/yQp2oMif1X0u7fBJ4MLMygnkbKnW5O8SG6pJvloPCpHfFoZctkSVQiJ3VnvNTq71V2JJIdwmOeu1i34OQyg==}
hasBin: true
- optionalDependencies:
- turbo-darwin-64: 2.4.0
- turbo-darwin-arm64: 2.4.0
- turbo-linux-64: 2.4.0
- turbo-linux-arm64: 2.4.0
- turbo-windows-64: 2.4.0
- turbo-windows-arm64: 2.4.0
- dev: true
- /type-check/0.4.0:
+ type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
- dependencies:
- prelude-ls: 1.2.1
- dev: true
- /type-detect/4.1.0:
+ type-detect@4.1.0:
resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
engines: {node: '>=4'}
- dev: true
- /type-fest/0.20.2:
+ type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
- dev: true
- /type-fest/0.21.3:
+ type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
- type-fest@4.37.0:
- resolution: {integrity: sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==}
+ type-fest@4.38.0:
+ resolution: {integrity: sha512-2dBz5D5ycHIoliLYLi0Q2V7KRaDlH0uWIvmk7TYlAg5slqwiPv1ezJdZm1QEM0xgk29oYWMCbIG7E6gHpvChlg==}
engines: {node: '>=16'}
- /type-is/1.6.18:
+ type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
- dependencies:
- media-typer: 0.3.0
- mime-types: 2.1.35
- dev: true
type-level-regexp@0.1.17:
resolution: {integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==}
@@ -20782,128 +10930,57 @@ packages:
typed-array-buffer@1.0.3:
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- is-typed-array: 1.1.15
- dev: true
- /typed-array-byte-length/1.0.3:
+ typed-array-byte-length@1.0.3:
resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- for-each: 0.3.5
- gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
- dev: true
- /typed-array-byte-offset/1.0.4:
+ typed-array-byte-offset@1.0.4:
resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
engines: {node: '>= 0.4'}
- dependencies:
- available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- for-each: 0.3.5
- gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
- reflect.getprototypeof: 1.0.10
- dev: true
- /typed-array-length/1.0.7:
+ typed-array-length@1.0.7:
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- for-each: 0.3.5
- gopd: 1.2.0
- is-typed-array: 1.1.15
- possible-typed-array-names: 1.1.0
- reflect.getprototypeof: 1.0.10
- dev: true
- /typed-assert/1.0.9:
+ typed-assert@1.0.9:
resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==}
- dev: true
- /typescript-eslint/8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi:
+ typescript-eslint@8.19.1:
resolution: {integrity: sha512-LKPUQpdEMVOeKluHi8md7rwLcoXHhwvWp3x+sJkMuq3gGm9yaYJtPo8sRZSblMFJ5pcOGCAak/scKf1mvZDlQw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
- dependencies:
- '@typescript-eslint/eslint-plugin': 8.19.1_lpim7asfdh6cjegyoqc2qmzxvm
- '@typescript-eslint/parser': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/utils': 8.19.1_5ss5apc2uy6gwlbeak2m4uqwhi
- eslint: 9.17.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /typescript-eslint/8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi:
- resolution: {integrity: sha512-PtVz9nAnuNJuAVeUFvwztjuUgSnJInODAUx47VDwWPXzd5vismPOtPtt83tzNXyOjVQbPRp786D6WFW/M2koIA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
- dependencies:
- '@typescript-eslint/eslint-plugin': 8.26.0_v7em3iowsogr2ppwgchrzap2oy
- '@typescript-eslint/parser': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
- '@typescript-eslint/utils': 8.26.0_5ss5apc2uy6gwlbeak2m4uqwhi
- eslint: 9.17.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
- dev: true
- /typescript/5.5.3:
+ typescript@5.5.3:
resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==}
engines: {node: '>=14.17'}
hasBin: true
- /typescript/5.6.1-rc:
+ typescript@5.6.1-rc:
resolution: {integrity: sha512-E3b2+1zEFu84jB0YQi9BORDjz9+jGbwwy1Zi3G0LUNw7a7cePUrHMRNy8aPh53nXpkFGVHSxIZo5vKTfYaFiBQ==}
engines: {node: '>=14.17'}
hasBin: true
- dev: true
-
- /typescript/5.8.2:
- resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
- engines: {node: '>=14.17'}
- hasBin: true
- /ua-parser-js/0.7.40:
+ ua-parser-js@0.7.40:
resolution: {integrity: sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ==}
hasBin: true
- dev: true
- /ufo/1.5.4:
+ ufo@1.5.4:
resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
- /uglify-js/3.19.3:
+ uglify-js@3.19.3:
resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
engines: {node: '>=0.8.0'}
hasBin: true
- requiresBuild: true
- dev: false
- optional: true
- /ultrahtml/1.5.3:
+ ultrahtml@1.5.3:
resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==}
- /unbox-primitive/1.1.0:
+ unbox-primitive@1.1.0:
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bound: 1.0.4
- has-bigints: 1.1.0
- has-symbols: 1.1.0
- which-boxed-primitive: 1.1.1
- dev: true
unbuild@2.0.0:
resolution: {integrity: sha512-JWCUYx3Oxdzvw2J9kTAp+DKE8df/BnH/JTSj6JyA4SH40ECdFu7FoJJcrm8G92B7TjofQ6GZGjJs50TRxoH6Wg==}
@@ -20916,190 +10993,94 @@ packages:
unbzip2-stream@1.4.3:
resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
- dependencies:
- buffer: 5.7.1
- through: 2.3.8
- dev: true
- /uncrypto/0.1.3:
+ uncrypto@0.1.3:
resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
- /unctx/2.4.1:
+ unctx@2.4.1:
resolution: {integrity: sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg==}
- dependencies:
- acorn: 8.14.1
- estree-walker: 3.0.3
- magic-string: 0.30.17
- unplugin: 2.2.0
- /undici-types/6.20.0:
+ undici-types@6.20.0:
resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
- /unenv/1.10.0:
+ unenv@1.10.0:
resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
- dependencies:
- consola: 3.4.0
- defu: 6.1.4
- mime: 3.0.0
- node-fetch-native: 1.6.6
- pathe: 1.1.2
- unenv@2.0.0-rc.14:
- resolution: {integrity: sha512-od496pShMen7nOy5VmVJCnq8rptd45vh6Nx/r2iPbrba6pa6p+tS2ywuIHRZ/OBvSbQZB0kWvpO9XBNVFXHD3Q==}
+ unenv@2.0.0-rc.15:
+ resolution: {integrity: sha512-J/rEIZU8w6FOfLNz/hNKsnY+fFHWnu9MH4yRbSZF3xbbGHovcetXPs7sD+9p8L6CeNC//I9bhRYAOsBt2u7/OA==}
unhead@1.11.20:
resolution: {integrity: sha512-3AsNQC0pjwlLqEYHLjtichGWankK8yqmocReITecmpB1H0aOabeESueyy+8X1gyJx4ftZVwo9hqQ4O3fPWffCA==}
- /unhead/1.11.20:
- resolution: {integrity: sha512-3AsNQC0pjwlLqEYHLjtichGWankK8yqmocReITecmpB1H0aOabeESueyy+8X1gyJx4ftZVwo9hqQ4O3fPWffCA==}
- dependencies:
- '@unhead/dom': 1.11.20
- '@unhead/schema': 1.11.20
- '@unhead/shared': 1.11.20
- hookable: 5.5.3
-
- /unhead/2.0.0-rc.9:
- resolution: {integrity: sha512-N1p9as7Hg9Gs3l5kkxxsi9eTa8xTHUADZgN1U+hCKHWKegGhvJ4wApzBjk4Zng7O92wPlPDGk8oHSWgO6jg6tw==}
- dependencies:
- hookable: 5.5.3
- dev: false
-
- /unicode-canonical-property-names-ecmascript/2.0.1:
+ unicode-canonical-property-names-ecmascript@2.0.1:
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
engines: {node: '>=4'}
- dev: true
- /unicode-emoji-modifier-base/1.0.0:
+ unicode-emoji-modifier-base@1.0.0:
resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==}
engines: {node: '>=4'}
- dev: true
- /unicode-match-property-ecmascript/2.0.0:
+ unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
- dependencies:
- unicode-canonical-property-names-ecmascript: 2.0.1
- unicode-property-aliases-ecmascript: 2.1.0
- dev: true
- /unicode-match-property-value-ecmascript/2.2.0:
+ unicode-match-property-value-ecmascript@2.2.0:
resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
engines: {node: '>=4'}
- dev: true
- /unicode-property-aliases-ecmascript/2.1.0:
+ unicode-property-aliases-ecmascript@2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
- dev: true
unicorn-magic@0.3.0:
resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
engines: {node: '>=18'}
- /unimport/3.14.6:
+ unimport@3.14.6:
resolution: {integrity: sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g==}
- dependencies:
- '@rollup/pluginutils': 5.1.4
- acorn: 8.14.1
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.3
- local-pkg: 1.1.1
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 2.0.3
- picomatch: 4.0.2
- pkg-types: 1.3.1
- scule: 1.3.0
- strip-literal: 2.1.1
- unplugin: 1.16.1
- transitivePeerDependencies:
- - rollup
unimport@4.1.2:
resolution: {integrity: sha512-oVUL7PSlyVV3QRhsdcyYEMaDX8HJyS/CnUonEJTYA3//bWO+o/4gG8F7auGWWWkrrxBQBYOO8DKe+C53ktpRXw==}
engines: {node: '>=18.12.0'}
- dependencies:
- acorn: 8.14.1
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- local-pkg: 1.1.1
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 2.0.3
- picomatch: 4.0.2
- pkg-types: 1.3.1
- scule: 1.3.0
- strip-literal: 3.0.0
- tinyglobby: 0.2.12
- unplugin: 2.2.0
- unplugin-utils: 0.2.4
- /unique-filename/4.0.0:
+ unique-filename@4.0.0:
resolution: {integrity: sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- unique-slug: 5.0.0
- dev: true
- /unique-slug/5.0.0:
+ unique-slug@5.0.0:
resolution: {integrity: sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==}
engines: {node: ^18.17.0 || >=20.5.0}
- dependencies:
- imurmurhash: 0.1.4
- dev: true
- /unist-util-is/6.0.0:
+ unist-util-is@6.0.0:
resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
- dependencies:
- '@types/unist': 3.0.3
- dev: true
- /unist-util-position/5.0.0:
+ unist-util-position@5.0.0:
resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
- dependencies:
- '@types/unist': 3.0.3
- dev: true
- /unist-util-stringify-position/4.0.0:
+ unist-util-stringify-position@4.0.0:
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
- dependencies:
- '@types/unist': 3.0.3
- dev: true
- /unist-util-visit-parents/6.0.1:
+ unist-util-visit-parents@6.0.1:
resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
- dependencies:
- '@types/unist': 3.0.3
- unist-util-is: 6.0.0
- dev: true
- /unist-util-visit/5.0.0:
+ unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
- dependencies:
- '@types/unist': 3.0.3
- unist-util-is: 6.0.0
- unist-util-visit-parents: 6.0.1
- dev: true
- /universalify/0.1.2:
+ universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
- dev: true
- /universalify/0.2.0:
+ universalify@0.2.0:
resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
engines: {node: '>= 4.0.0'}
- dev: true
- /universalify/2.0.1:
+ universalify@2.0.1:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- /unpipe/1.0.0:
+ unpipe@1.0.0:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- dev: true
unplugin-utils@0.2.4:
resolution: {integrity: sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==}
@@ -21112,74 +11093,21 @@ packages:
peerDependenciesMeta:
vue-router:
optional: true
- dependencies:
- '@babel/types': 7.26.9
- '@rollup/pluginutils': 5.1.4
- '@vue-macros/common': 1.16.1_vue@3.5.13
- ast-walker-scope: 0.6.2
- chokidar: 3.6.0
- fast-glob: 3.3.3
- json5: 2.2.3
- local-pkg: 0.5.1
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 1.1.2
- scule: 1.3.0
- unplugin: 2.0.0-beta.1
- vue-router: 4.5.0_vue@3.5.13
- yaml: 2.7.0
- transitivePeerDependencies:
- - rollup
- - vue
-
- /unplugin-vue-router/0.12.0_4zkhmgh5wx2nmrd47udboenwxe:
- resolution: {integrity: sha512-xjgheKU0MegvXQcy62GVea0LjyOdMxN0/QH+ijN29W62ZlMhG7o7K+0AYqfpprvPwpWtuRjiyC5jnV2SxWye2w==}
- peerDependencies:
- vue-router: ^4.4.0
- peerDependenciesMeta:
- vue-router:
- optional: true
- dependencies:
- '@babel/types': 7.26.9
- '@vue-macros/common': 1.16.1_vue@3.5.13
- ast-walker-scope: 0.6.2
- chokidar: 4.0.3
- fast-glob: 3.3.3
- json5: 2.2.3
- local-pkg: 1.1.1
- magic-string: 0.30.17
- micromatch: 4.0.8
- mlly: 1.7.4
- pathe: 2.0.3
- scule: 1.3.0
- unplugin: 2.2.0
- unplugin-utils: 0.2.4
- vue-router: 4.5.0_vue@3.5.13
- yaml: 2.7.0
- transitivePeerDependencies:
- - vue
- dev: false
- /unplugin/1.16.1:
+ unplugin@1.16.1:
resolution: {integrity: sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==}
engines: {node: '>=14.0.0'}
- dependencies:
- acorn: 8.14.1
- webpack-virtual-modules: 0.6.2
- /unplugin/2.0.0-beta.1:
+ unplugin@2.0.0-beta.1:
resolution: {integrity: sha512-2qzQo5LN2DmUZXkWDHvGKLF5BP0WN+KthD6aPnPJ8plRBIjv4lh5O07eYcSxgO2znNw9s4MNhEO1sB+JDllDbQ==}
engines: {node: '>=18.12.0'}
- dependencies:
- acorn: 8.14.1
- webpack-virtual-modules: 0.6.2
- unplugin@2.2.0:
- resolution: {integrity: sha512-m1ekpSwuOT5hxkJeZGRxO7gXbXT3gF26NjQ7GdVHoLoF8/nopLcd/QfPigpCy7i51oFHiRJg/CyHhj4vs2+KGw==}
+ unplugin@2.2.2:
+ resolution: {integrity: sha512-Qp+iiD+qCRnUek+nDoYvtWX7tfnYyXsrOnJ452FRTgOyKmTM7TUJ3l+PLPJOOWPTUyKISKp4isC5JJPSXUjGgw==}
engines: {node: '>=18.12.0'}
- dependencies:
- acorn: 8.14.1
- webpack-virtual-modules: 0.6.2
+
+ unrs-resolver@1.3.2:
+ resolution: {integrity: sha512-ZKQBC351Ubw0PY8xWhneIfb6dygTQeUHtCcNGd0QB618zabD/WbFMYdRyJ7xeVT+6G82K5v/oyZO0QSHFtbIuw==}
unstorage@1.15.0:
resolution: {integrity: sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==}
@@ -21239,108 +11167,14 @@ packages:
optional: true
uploadthing:
optional: true
- dependencies:
- anymatch: 3.1.3
- chokidar: 4.0.3
- destr: 2.0.3
- h3: 1.15.1
- lru-cache: 10.4.3
- node-fetch-native: 1.6.6
- ofetch: 1.4.1
- ufo: 1.5.4
- /unstorage/1.15.0_db0@0.3.1+ioredis@5.6.0:
- resolution: {integrity: sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==}
- peerDependencies:
- '@azure/app-configuration': ^1.8.0
- '@azure/cosmos': ^4.2.0
- '@azure/data-tables': ^13.3.0
- '@azure/identity': ^4.6.0
- '@azure/keyvault-secrets': ^4.9.0
- '@azure/storage-blob': ^12.26.0
- '@capacitor/preferences': ^6.0.3
- '@deno/kv': '>=0.9.0'
- '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0
- '@planetscale/database': ^1.19.0
- '@upstash/redis': ^1.34.3
- '@vercel/blob': '>=0.27.1'
- '@vercel/kv': ^1.0.1
- aws4fetch: ^1.0.20
- db0: '>=0.2.1'
- idb-keyval: ^6.2.1
- ioredis: ^5.4.2
- uploadthing: ^7.4.4
- peerDependenciesMeta:
- '@azure/app-configuration':
- optional: true
- '@azure/cosmos':
- optional: true
- '@azure/data-tables':
- optional: true
- '@azure/identity':
- optional: true
- '@azure/keyvault-secrets':
- optional: true
- '@azure/storage-blob':
- optional: true
- '@capacitor/preferences':
- optional: true
- '@deno/kv':
- optional: true
- '@netlify/blobs':
- optional: true
- '@planetscale/database':
- optional: true
- '@upstash/redis':
- optional: true
- '@vercel/blob':
- optional: true
- '@vercel/kv':
- optional: true
- aws4fetch:
- optional: true
- db0:
- optional: true
- idb-keyval:
- optional: true
- ioredis:
- optional: true
- uploadthing:
- optional: true
- dependencies:
- anymatch: 3.1.3
- chokidar: 4.0.3
- db0: 0.3.1
- destr: 2.0.3
- h3: 1.15.1
- ioredis: 5.6.0
- lru-cache: 10.4.3
- node-fetch-native: 1.6.6
- ofetch: 1.4.1
- ufo: 1.5.4
-
- /untun/0.1.3:
+ untun@0.1.3:
resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
hasBin: true
- dependencies:
- citty: 0.1.6
- consola: 3.4.0
- pathe: 1.1.2
- /untyped/1.5.2:
+ untyped@1.5.2:
resolution: {integrity: sha512-eL/8PlhLcMmlMDtNPKhyyz9kEBDS3Uk4yMu/ewlkT2WFbtzScjHWPJLdQLmaGPUKjXzwe9MumOtOgc4Fro96Kg==}
hasBin: true
- dependencies:
- '@babel/core': 7.26.9
- '@babel/standalone': 7.26.9
- '@babel/types': 7.26.9
- citty: 0.1.6
- defu: 6.1.4
- jiti: 2.4.2
- knitwork: 1.2.0
- scule: 1.3.0
- transitivePeerDependencies:
- - supports-color
untyped@2.0.0:
resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==}
@@ -21348,51 +11182,26 @@ packages:
unwasm@0.3.9:
resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==}
- dependencies:
- knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 1.1.2
- pkg-types: 1.3.1
- unplugin: 1.16.1
update-browserslist-db@1.1.3:
resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
- dependencies:
- browserslist: 4.24.4
- escalade: 3.2.0
- picocolors: 1.1.1
- /uqr/0.1.2:
+ uqr@0.1.2:
resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==}
- /uri-js-replace/1.0.1:
- resolution: {integrity: sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==}
-
- /uri-js/4.4.1:
+ uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
- dependencies:
- punycode: 2.3.1
- dev: true
- /url-parse/1.5.10:
+ url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
- dependencies:
- querystringify: 2.2.0
- requires-port: 1.0.0
- dev: true
- /urlpattern-polyfill/10.0.0:
+ urlpattern-polyfill@10.0.0:
resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==}
- dev: true
- /urlpattern-polyfill/8.0.2:
- resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==}
-
- /use-callback-ref/1.3.3_2e3fe46pmji5vpxr5buusdg5gq:
+ use-callback-ref@1.3.3:
resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
engines: {node: '>=10'}
peerDependencies:
@@ -21401,13 +11210,8 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- react: 19.0.0
- tslib: 2.8.1
- dev: false
- /use-sidecar/1.1.3_2e3fe46pmji5vpxr5buusdg5gq:
+ use-sidecar@1.1.3:
resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -21416,672 +11220,128 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
- dependencies:
- '@types/react': 19.0.1
- detect-node-es: 1.1.0
- react: 19.0.0
- tslib: 2.8.1
- dev: false
- /util-deprecate/1.0.2:
+ util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- /utils-merge/1.0.1:
+ utils-merge@1.0.1:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
- dev: true
- /uuid/8.3.2:
+ uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
- dev: true
- /v8-compile-cache-lib/3.0.1:
+ v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
- dev: true
- /validate-npm-package-license/3.0.4:
+ validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
- dependencies:
- spdx-correct: 3.2.0
- spdx-expression-parse: 3.0.1
- dev: true
- /validate-npm-package-name/5.0.1:
+ validate-npm-package-name@5.0.1:
resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dev: true
- /validate-npm-package-name/6.0.0:
+ validate-npm-package-name@6.0.0:
resolution: {integrity: sha512-d7KLgL1LD3U3fgnvWEY1cQXoO/q6EQ1BSz48Sa149V/5zVTAbgmZIpyI8TRi6U9/JNyeYLlTKsEMPtLC27RFUg==}
engines: {node: ^18.17.0 || >=20.5.0}
- dev: true
- /vary/1.1.2:
+ vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- dev: true
- /vfile-message/4.0.2:
+ vfile-message@4.0.2:
resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
- dependencies:
- '@types/unist': 3.0.3
- unist-util-stringify-position: 4.0.0
- dev: true
-
- /vfile/6.0.3:
- resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- dependencies:
- '@types/unist': 3.0.3
- vfile-message: 4.0.2
- dev: true
-
- /vite-dev-rpc/1.0.7_vite@6.0.9:
- resolution: {integrity: sha512-FxSTEofDbUi2XXujCA+hdzCDkXFG1PXktMjSk1efq9Qb5lOYaaM9zNSvKvPPF7645Bak79kSp1PTooMW2wktcA==}
- peerDependencies:
- vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1
- dependencies:
- birpc: 2.2.0
- vite: 6.0.9_jiti@2.4.2
- vite-hot-client: 2.0.4_vite@6.0.9
- dev: false
-
- /vite-hot-client/0.2.4_vite@6.0.9:
- resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
- peerDependencies:
- vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
- dependencies:
- vite: 6.0.9_@types+node@22.10.5
-
- /vite-hot-client/0.2.4_vite@6.2.1:
- resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
- peerDependencies:
- vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
- dependencies:
- vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
- dev: true
-
- /vite-hot-client/2.0.4_vite@6.0.9:
- resolution: {integrity: sha512-W9LOGAyGMrbGArYJN4LBCdOC5+Zwh7dHvOHC0KmGKkJhsOzaKbpo/jEjpPKVHIW0/jBWj8RZG0NUxfgA8BxgAg==}
- peerDependencies:
- vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
- dependencies:
- vite: 6.0.9_jiti@2.4.2
- dev: false
-
- /vite-node/1.6.0:
- resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- dependencies:
- cac: 6.7.14
- debug: 4.4.0
- pathe: 1.1.2
- picocolors: 1.1.1
- vite: 5.4.14
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- dev: true
-
- vite-node@2.1.9:
- resolution: {integrity: sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- dependencies:
- cac: 6.7.14
- debug: 4.4.0
- pathe: 1.1.2
- picocolors: 1.1.1
- vite: 5.4.14_@types+node@22.10.5
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- dev: true
-
- /vite-node/2.1.9:
- resolution: {integrity: sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- dependencies:
- cac: 6.7.14
- debug: 4.4.0
- es-module-lexer: 1.6.0
- pathe: 1.1.2
- vite: 5.4.14
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- dev: false
-
- /vite-node/2.1.9_4c45tymmfdin4b4i5tudvmn5ny:
- resolution: {integrity: sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- dependencies:
- cac: 6.7.14
- debug: 4.4.0
- es-module-lexer: 1.6.0
- pathe: 1.1.2
- vite: 5.4.14_4c45tymmfdin4b4i5tudvmn5ny
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- dev: true
-
- /vite-node/3.0.8_jiti@2.4.2:
- resolution: {integrity: sha512-6PhR4H9VGlcwXZ+KWCdMqbtG649xCPZqfI9j2PsK1FcXgEzro5bGHcVKFCTqPLaNKZES8Evqv4LwvZARsq5qlg==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
- hasBin: true
- dependencies:
- cac: 6.7.14
- debug: 4.4.0
- es-module-lexer: 1.6.0
- pathe: 2.0.3
- vite: 6.2.1_jiti@2.4.2
- transitivePeerDependencies:
- - '@types/node'
- - jiti
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
- dev: false
-
- /vite-plugin-checker/0.8.0_g2qas7ygesedvhf2ugjm5sssam:
- resolution: {integrity: sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g==}
- engines: {node: '>=14.16'}
- peerDependencies:
- '@biomejs/biome': '>=1.7'
- eslint: '>=7'
- meow: ^9.0.0
- optionator: ^0.9.1
- stylelint: '>=13'
- typescript: '*'
- vite: '>=2.0.0'
- vls: '*'
- vti: '*'
- vue-tsc: ~2.1.6
- peerDependenciesMeta:
- '@biomejs/biome':
- optional: true
- eslint:
- optional: true
- meow:
- optional: true
- optionator:
- optional: true
- stylelint:
- optional: true
- typescript:
- optional: true
- vls:
- optional: true
- vti:
- optional: true
- vue-tsc:
- optional: true
- dependencies:
- '@babel/code-frame': 7.26.2
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- chokidar: 3.6.0
- commander: 8.3.0
- eslint: 9.17.0
- fast-glob: 3.3.3
- fs-extra: 11.3.0
- npm-run-path: 4.0.1
- strip-ansi: 6.0.1
- tiny-invariant: 1.3.3
- typescript: 5.5.3
- vite: 5.4.14_4c45tymmfdin4b4i5tudvmn5ny
- vscode-languageclient: 7.0.0
- vscode-languageserver: 7.0.0
- vscode-languageserver-textdocument: 1.0.12
- vscode-uri: 3.1.0
- dev: true
-
- /vite-plugin-checker/0.8.0_vite@5.4.14:
- resolution: {integrity: sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g==}
- engines: {node: '>=14.16'}
- peerDependencies:
- '@biomejs/biome': '>=1.7'
- eslint: '>=7'
- meow: ^9.0.0
- optionator: ^0.9.1
- stylelint: '>=13'
- typescript: '*'
- vite: '>=2.0.0'
- vls: '*'
- vti: '*'
- vue-tsc: ~2.1.6
- peerDependenciesMeta:
- '@biomejs/biome':
- optional: true
- eslint:
- optional: true
- meow:
- optional: true
- optionator:
- optional: true
- stylelint:
- optional: true
- typescript:
- optional: true
- vls:
- optional: true
- vti:
- optional: true
- vue-tsc:
- optional: true
- dependencies:
- '@babel/code-frame': 7.26.2
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- chokidar: 3.6.0
- commander: 8.3.0
- fast-glob: 3.3.3
- fs-extra: 11.3.0
- npm-run-path: 4.0.1
- strip-ansi: 6.0.1
- tiny-invariant: 1.3.3
- vite: 5.4.14
- vscode-languageclient: 7.0.0
- vscode-languageserver: 7.0.0
- vscode-languageserver-textdocument: 1.0.12
- vscode-uri: 3.1.0
- dev: false
-
- /vite-plugin-checker/0.9.0_ptvrnkm6bz64vzfpjx5savnhve:
- resolution: {integrity: sha512-gf/zc0KWX8ATEOgnpgAM1I+IbvWkkO80RB+FxlLtC5cabXSesbJmAUw6E+mMDDMGIT+VHAktmxJZpMTt3lSubQ==}
- engines: {node: '>=14.16'}
- peerDependencies:
- '@biomejs/biome': '>=1.7'
- eslint: '>=7'
- meow: ^13.2.0
- optionator: ^0.9.1
- stylelint: '>=16'
- typescript: '*'
- vite: '>=2.0.0'
- vls: '*'
- vti: '*'
- vue-tsc: ~2.2.2
- peerDependenciesMeta:
- '@biomejs/biome':
- optional: true
- eslint:
- optional: true
- meow:
- optional: true
- optionator:
- optional: true
- stylelint:
- optional: true
- typescript:
- optional: true
- vls:
- optional: true
- vti:
- optional: true
- vue-tsc:
- optional: true
- dependencies:
- '@babel/code-frame': 7.26.2
- chokidar: 4.0.3
- npm-run-path: 6.0.0
- picocolors: 1.1.1
- picomatch: 4.0.2
- strip-ansi: 7.1.0
- tiny-invariant: 1.3.3
- tinyglobby: 0.2.12
- typescript: 5.8.2
- vite: 6.2.1_jiti@2.4.2
- vscode-uri: 3.1.0
- dev: false
- /vite-plugin-inspect/0.8.9_bvsh322jwpdo7ddnjh6oe5rlyq:
- resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
- engines: {node: '>=14'}
- peerDependencies:
- '@nuxt/kit': '*'
- vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1
- peerDependenciesMeta:
- '@nuxt/kit':
- optional: true
- dependencies:
- '@antfu/utils': 0.7.10
- '@nuxt/kit': 3.16.0_magicast@0.3.5
- '@rollup/pluginutils': 5.1.4
- debug: 4.4.0
- error-stack-parser-es: 0.1.5
- fs-extra: 11.3.0
- open: 10.1.0
- perfect-debounce: 1.0.0
- picocolors: 1.1.1
- sirv: 3.0.1
- vite: 6.0.9
- transitivePeerDependencies:
- - rollup
- - supports-color
- dev: false
-
- /vite-plugin-inspect/0.8.9_rfi3pg7mxb6hcnrgbo2flrc7ia:
- resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
- engines: {node: '>=14'}
- peerDependencies:
- '@nuxt/kit': '*'
- vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1
- peerDependenciesMeta:
- '@nuxt/kit':
- optional: true
- dependencies:
- '@antfu/utils': 0.7.10
- '@nuxt/kit': 3.16.0_magicast@0.3.5
- '@rollup/pluginutils': 5.1.4
- debug: 4.4.0
- error-stack-parser-es: 0.1.5
- fs-extra: 11.3.0
- open: 10.1.0
- perfect-debounce: 1.0.0
- picocolors: 1.1.1
- sirv: 3.0.1
- vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
- transitivePeerDependencies:
- - rollup
- - supports-color
- dev: true
-
- /vite-plugin-inspect/0.8.9_vite@6.0.9:
- resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
- engines: {node: '>=14'}
- peerDependencies:
- '@nuxt/kit': '*'
- vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1
- peerDependenciesMeta:
- '@nuxt/kit':
- optional: true
- dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.4
- debug: 4.4.0
- error-stack-parser-es: 0.1.5
- fs-extra: 11.3.0
- open: 10.1.0
- perfect-debounce: 1.0.0
- picocolors: 1.1.1
- sirv: 3.0.1
- vite: 6.0.9_@types+node@22.10.5
- transitivePeerDependencies:
- - rollup
- - supports-color
- dev: true
-
- /vite-plugin-inspect/11.0.0_bvsh322jwpdo7ddnjh6oe5rlyq:
- resolution: {integrity: sha512-Q0RDNcMs1mbI2yGRwOzSapnnA6NFO0j88+Vb8pJX0iYMw34WczwKJi3JgheItDhbWRq/CLUR0cs+ajZpcUaIFQ==}
- engines: {node: '>=14'}
- peerDependencies:
- '@nuxt/kit': '*'
- vite: ^6.0.0
- peerDependenciesMeta:
- '@nuxt/kit':
- optional: true
- dependencies:
- '@nuxt/kit': 3.16.0_magicast@0.3.5
- ansis: 3.17.0
- debug: 4.4.0
- error-stack-parser-es: 1.0.5
- ohash: 2.0.11
- open: 10.1.0
- perfect-debounce: 1.0.0
- sirv: 3.0.1
- unplugin-utils: 0.2.4
- vite: 6.0.9_jiti@2.4.2
- vite-dev-rpc: 1.0.7_vite@6.0.9
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /vite-plugin-vue-devtools/7.7.0_vite@6.0.9+vue@3.5.13:
- resolution: {integrity: sha512-1dWiREwIl4JELwXGHXih80hIgjcViMcZGr3j0edo6NQ9kNzAOxMIUgFqc/TO1ary4ZroJUxoB0YDI6jnDf13iQ==}
- engines: {node: '>=v14.21.3'}
- peerDependencies:
- vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
- dependencies:
- '@vue/devtools-core': 7.7.2_vite@6.0.9+vue@3.5.13
- '@vue/devtools-kit': 7.7.2
- '@vue/devtools-shared': 7.7.2
- execa: 9.5.2
- sirv: 3.0.1
- vite: 6.0.9_@types+node@22.10.5
- vite-plugin-inspect: 0.8.9_vite@6.0.9
- vite-plugin-vue-inspector: 5.3.1_vite@6.0.9
- transitivePeerDependencies:
- - '@nuxt/kit'
- - rollup
- - supports-color
- - vue
- dev: true
-
- /vite-plugin-vue-inspector/5.3.1_vite@6.0.9:
- resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
- peerDependencies:
- vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-syntax-import-attributes': 7.26.0_@babel+core@7.26.9
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.26.9
- '@babel/plugin-transform-typescript': 7.26.8_@babel+core@7.26.9
- '@vue/babel-plugin-jsx': 1.3.0_@babel+core@7.26.9
- '@vue/compiler-dom': 3.5.13
- kolorist: 1.8.0
- magic-string: 0.30.17
- vite: 6.0.9_@types+node@22.10.5
- transitivePeerDependencies:
- - supports-color
-
- /vite-plugin-vue-inspector/5.3.1_vite@6.2.1:
- resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
- peerDependencies:
- vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.25.9_@babel+core@7.26.9
- '@babel/plugin-syntax-import-attributes': 7.26.0_@babel+core@7.26.9
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.26.9
- '@babel/plugin-transform-typescript': 7.26.8_@babel+core@7.26.9
- '@vue/babel-plugin-jsx': 1.3.0_@babel+core@7.26.9
- '@vue/compiler-dom': 3.5.13
- kolorist: 1.8.0
- magic-string: 0.30.17
- vite: 6.2.1_4c45tymmfdin4b4i5tudvmn5ny
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /vite-plugin-vue-tracer/0.1.1_vite@6.0.9+vue@3.5.13:
- resolution: {integrity: sha512-8BuReHmbSPd6iRQDQhlyK5+DexY1Hmb4K0GUVo9Te1Yaz8gyOZspBm9qdG1SvebdSIKw3WNlzpdstJ47TJ4bOw==}
- peerDependencies:
- vite: ^6.0.0
- vue: ^3.5.0
- dependencies:
- estree-walker: 3.0.3
- magic-string: 0.30.17
- pathe: 2.0.3
- source-map-js: 1.2.1
- vite: 6.0.9_jiti@2.4.2
- vue: 3.5.13_typescript@5.8.2
- dev: false
+ vfile@6.0.3:
+ resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
+
+ vite-hot-client@0.2.4:
+ resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
+ peerDependencies:
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
- /vite/5.4.14:
- resolution: {integrity: sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==}
+ vite-node@1.6.0:
+ resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- esbuild: 0.21.5
- postcss: 8.5.3
- rollup: 4.35.0
- optionalDependencies:
- fsevents: 2.3.3
- vite@5.4.16:
- resolution: {integrity: sha512-Y5gnfp4NemVfgOTDQAunSD4346fal44L9mszGGY/e+qxsRT5y1sMlS/8tiQ8AFAp+MFgYNSINdfEchJiPm41vQ==}
+ vite-node@2.1.9:
+ resolution: {integrity: sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
+
+ vite-plugin-checker@0.8.0:
+ resolution: {integrity: sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g==}
+ engines: {node: '>=14.16'}
peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
+ '@biomejs/biome': '>=1.7'
+ eslint: '>=7'
+ meow: ^9.0.0
+ optionator: ^0.9.1
+ stylelint: '>=13'
+ typescript: '*'
+ vite: '>=2.0.0'
+ vls: '*'
+ vti: '*'
+ vue-tsc: ~2.1.6
peerDependenciesMeta:
- '@types/node':
+ '@biomejs/biome':
optional: true
- less:
+ eslint:
optional: true
- lightningcss:
+ meow:
optional: true
- sass:
+ optionator:
optional: true
- sass-embedded:
+ stylelint:
optional: true
- stylus:
+ typescript:
optional: true
- sugarss:
+ vls:
optional: true
- terser:
+ vti:
+ optional: true
+ vue-tsc:
optional: true
- vite@6.0.13:
- resolution: {integrity: sha512-vreFe9+wkAVt1I6gerGnUmDH1ir9gmbQ7+jtfMAk4iwSMkuQxl4/eGc26LLhCWTJf1wCgQWFxZBRsjPHKmEM+w==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
- hasBin: true
+ vite-plugin-inspect@0.8.9:
+ resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
+ engines: {node: '>=14'}
peerDependencies:
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- jiti: '>=1.21.0'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.16.0
- tsx: ^4.8.1
- yaml: ^2.4.2
+ '@nuxt/kit': '*'
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1
peerDependenciesMeta:
- '@types/node':
- optional: true
- jiti:
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- tsx:
- optional: true
- yaml:
+ '@nuxt/kit':
optional: true
- dependencies:
- esbuild: 0.24.2
- postcss: 8.5.3
- rollup: 4.35.0
- optionalDependencies:
- fsevents: 2.3.3
- /vite/6.0.9_@types+node@22.10.5:
- resolution: {integrity: sha512-MSgUxHcaXLtnBPktkbUSoQUANApKYuxZ6DrbVENlIorbhL2dZydTLaZ01tjUoE3szeFzlFk9ANOKk0xurh4MKA==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ vite-plugin-vue-devtools@7.7.0:
+ resolution: {integrity: sha512-1dWiREwIl4JELwXGHXih80hIgjcViMcZGr3j0edo6NQ9kNzAOxMIUgFqc/TO1ary4ZroJUxoB0YDI6jnDf13iQ==}
+ engines: {node: '>=v14.21.3'}
+ peerDependencies:
+ vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
+
+ vite-plugin-vue-inspector@5.3.1:
+ resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
+ peerDependencies:
+ vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
+
+ vite@5.4.15:
+ resolution: {integrity: sha512-6ANcZRivqL/4WtwPGTKNaosuNJr5tWiftOC7liM7G9+rMb8+oeJeyzymDu4rTN93seySBmbjSfsS3Vzr19KNtA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- jiti: '>=1.21.0'
+ '@types/node': ^18.0.0 || >=20.0.0
less: '*'
lightningcss: ^1.21.0
sass: '*'
sass-embedded: '*'
stylus: '*'
sugarss: '*'
- terser: ^5.16.0
- tsx: ^4.8.1
- yaml: ^2.4.2
+ terser: ^5.4.0
peerDependenciesMeta:
'@types/node':
optional: true
- jiti:
- optional: true
less:
optional: true
lightningcss:
@@ -22096,20 +11356,9 @@ packages:
optional: true
terser:
optional: true
- tsx:
- optional: true
- yaml:
- optional: true
- dependencies:
- '@types/node': 22.10.5
- esbuild: 0.24.2
- postcss: 8.5.3
- rollup: 4.35.0
- optionalDependencies:
- fsevents: 2.3.3
- /vite/6.0.9_jiti@2.4.2:
- resolution: {integrity: sha512-MSgUxHcaXLtnBPktkbUSoQUANApKYuxZ6DrbVENlIorbhL2dZydTLaZ01tjUoE3szeFzlFk9ANOKk0xurh4MKA==}
+ vite@6.0.13:
+ resolution: {integrity: sha512-vreFe9+wkAVt1I6gerGnUmDH1ir9gmbQ7+jtfMAk4iwSMkuQxl4/eGc26LLhCWTJf1wCgQWFxZBRsjPHKmEM+w==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -22147,15 +11396,8 @@ packages:
optional: true
yaml:
optional: true
- dependencies:
- esbuild: 0.24.2
- jiti: 2.4.2
- postcss: 8.5.3
- rollup: 4.35.0
- optionalDependencies:
- fsevents: 2.3.3
- /vite/6.1.0_4c45tymmfdin4b4i5tudvmn5ny:
+ vite@6.1.0:
resolution: {integrity: sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
@@ -22194,17 +11436,6 @@ packages:
optional: true
yaml:
optional: true
- dependencies:
- '@types/node': 22.13.10
- esbuild: 0.24.2
- less: 4.2.2
- postcss: 8.5.3
- rollup: 4.35.0
- sass: 1.85.0
- terser: 5.39.0
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
vitefu@1.0.6:
resolution: {integrity: sha512-+Rex1GlappUyNN6UfwbVZne/9cYC4+R2XDk9xkNXBKMw6HQagdX9PgZ8V2v1WUSK1wfBLp7qbI1+XSNIlB1xmA==}
@@ -22213,11 +11444,8 @@ packages:
peerDependenciesMeta:
vite:
optional: true
- dependencies:
- vite: 6.0.9
- dev: true
- /vitepress/1.3.0_lf5wzet23pep44me4gg534bzoa:
+ vitepress@1.3.0:
resolution: {integrity: sha512-Cbm2AgXcCrukUeV+/24g1ZDSvw8blamh/1uf2pz3ApFpaYb9T7mo4imWDZ6APn2uPo4bJ6sgOzvsJ4aH+oLbBA==}
hasBin: true
peerDependencies:
@@ -22430,8 +11658,8 @@ packages:
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
engines: {node: '>=18'}
- whatwg-url@14.1.1:
- resolution: {integrity: sha512-mDGf9diDad/giZ/Sm9Xi2YcyzaFpbdLpJPr+E9fSkyQ7KpQD4SdFcugkRQYzhmfI4KeV4Qpnn2sKPdo+kmsgRQ==}
+ whatwg-url@14.2.0:
+ resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==}
engines: {node: '>=18'}
whatwg-url@5.0.0:
@@ -22561,9 +11789,6 @@ packages:
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
engines: {node: '>=18'}
- yaml-ast-parser@0.0.43:
- resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
-
yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
@@ -22605,8 +11830,8 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.2.0:
- resolution: {integrity: sha512-KHBC7z61OJeaMGnF3wqNZj+GGNXOyypZviiKpQeiHirG5Ib1ImwcLBH70rbMSkKfSmUNBsdf2PwaEJtKvgmkNw==}
+ yocto-queue@1.2.1:
+ resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==}
engines: {node: '>=12.20'}
yoctocolors-cjs@2.1.2:
@@ -22646,110 +11871,110 @@ packages:
snapshots:
- '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3)':
+ '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.23.0)(algoliasearch@5.23.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3)
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.23.0)(algoliasearch@5.23.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.0)(algoliasearch@5.23.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.23.0)(algoliasearch@5.23.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.0)(algoliasearch@5.23.0)
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)':
+ '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.23.0)(algoliasearch@5.23.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)
- '@algolia/client-search': 5.21.0
- algoliasearch: 5.21.0
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.0)(algoliasearch@5.23.0)
+ '@algolia/client-search': 5.23.0
+ algoliasearch: 5.23.0
- '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)':
+ '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.23.0)(algoliasearch@5.23.0)':
dependencies:
- '@algolia/client-search': 5.21.0
- algoliasearch: 5.21.0
+ '@algolia/client-search': 5.23.0
+ algoliasearch: 5.23.0
- '@algolia/client-abtesting@5.21.0':
+ '@algolia/client-abtesting@5.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.0
+ '@algolia/requester-browser-xhr': 5.23.0
+ '@algolia/requester-fetch': 5.23.0
+ '@algolia/requester-node-http': 5.23.0
- '@algolia/client-analytics@5.21.0':
+ '@algolia/client-analytics@5.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.0
+ '@algolia/requester-browser-xhr': 5.23.0
+ '@algolia/requester-fetch': 5.23.0
+ '@algolia/requester-node-http': 5.23.0
- '@algolia/client-common@5.21.0': {}
+ '@algolia/client-common@5.23.0': {}
- '@algolia/client-insights@5.21.0':
+ '@algolia/client-insights@5.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.0
+ '@algolia/requester-browser-xhr': 5.23.0
+ '@algolia/requester-fetch': 5.23.0
+ '@algolia/requester-node-http': 5.23.0
- '@algolia/client-personalization@5.21.0':
+ '@algolia/client-personalization@5.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.0
+ '@algolia/requester-browser-xhr': 5.23.0
+ '@algolia/requester-fetch': 5.23.0
+ '@algolia/requester-node-http': 5.23.0
- '@algolia/client-query-suggestions@5.21.0':
+ '@algolia/client-query-suggestions@5.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.0
+ '@algolia/requester-browser-xhr': 5.23.0
+ '@algolia/requester-fetch': 5.23.0
+ '@algolia/requester-node-http': 5.23.0
- '@algolia/client-search@5.21.0':
+ '@algolia/client-search@5.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.0
+ '@algolia/requester-browser-xhr': 5.23.0
+ '@algolia/requester-fetch': 5.23.0
+ '@algolia/requester-node-http': 5.23.0
- '@algolia/ingestion@1.21.0':
+ '@algolia/ingestion@1.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.0
+ '@algolia/requester-browser-xhr': 5.23.0
+ '@algolia/requester-fetch': 5.23.0
+ '@algolia/requester-node-http': 5.23.0
- '@algolia/monitoring@1.21.0':
+ '@algolia/monitoring@1.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.0
+ '@algolia/requester-browser-xhr': 5.23.0
+ '@algolia/requester-fetch': 5.23.0
+ '@algolia/requester-node-http': 5.23.0
- '@algolia/recommend@5.21.0':
+ '@algolia/recommend@5.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.0
+ '@algolia/requester-browser-xhr': 5.23.0
+ '@algolia/requester-fetch': 5.23.0
+ '@algolia/requester-node-http': 5.23.0
- '@algolia/requester-browser-xhr@5.21.0':
+ '@algolia/requester-browser-xhr@5.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
+ '@algolia/client-common': 5.23.0
- '@algolia/requester-fetch@5.21.0':
+ '@algolia/requester-fetch@5.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
+ '@algolia/client-common': 5.23.0
- '@algolia/requester-node-http@5.21.0':
+ '@algolia/requester-node-http@5.23.0':
dependencies:
- '@algolia/client-common': 5.21.0
+ '@algolia/client-common': 5.23.0
'@alloc/quick-lru@5.2.0': {}
@@ -22904,7 +12129,7 @@ snapshots:
browserslist: 4.24.4
esbuild: 0.25.0
fast-glob: 3.3.3
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
+ https-proxy-agent: 7.0.6
istanbul-lib-instrument: 6.0.3
listr2: 8.2.5
magic-string: 0.30.17
@@ -22938,14 +12163,13 @@ snapshots:
- tsx
- yaml
- '@angular/cdk@19.2.2(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)':
+ '@angular/cdk@19.2.7(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)':
dependencies:
'@angular/common': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
'@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
+ parse5: 7.2.1
rxjs: 7.8.1
tslib: 2.8.1
- optionalDependencies:
- parse5: 7.2.1
'@angular/cli@19.2.0(@types/node@22.10.5)(chokidar@4.0.3)':
dependencies:
@@ -23012,9 +12236,9 @@ snapshots:
rxjs: 7.8.1
tslib: 2.8.1
- '@angular/material@19.2.2(@angular/cdk@19.2.2(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/forms@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)':
+ '@angular/material@19.2.7(@angular/cdk@19.2.7(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/forms@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)':
dependencies:
- '@angular/cdk': 19.2.2(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ '@angular/cdk': 19.2.7(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
'@angular/common': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
'@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0)
'@angular/forms': 19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
@@ -23080,16 +12304,16 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.10
- '@babel/helper-compilation-targets': 7.26.5
+ '@babel/generator': 7.27.0
+ '@babel/helper-compilation-targets': 7.27.0
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helpers': 7.26.10
- '@babel/parser': 7.26.10
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/helpers': 7.27.0
+ '@babel/parser': 7.27.0
+ '@babel/template': 7.27.0
+ '@babel/traverse': 7.27.0
+ '@babel/types': 7.27.0
convert-source-map: 2.0.0
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -23100,43 +12324,43 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.10
- '@babel/helper-compilation-targets': 7.26.5
+ '@babel/generator': 7.27.0
+ '@babel/helper-compilation-targets': 7.27.0
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helpers': 7.26.10
- '@babel/parser': 7.26.10
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/helpers': 7.27.0
+ '@babel/parser': 7.27.0
+ '@babel/template': 7.27.0
+ '@babel/traverse': 7.27.0
+ '@babel/types': 7.27.0
convert-source-map: 2.0.0
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.26.10':
+ '@babel/generator@7.26.9':
dependencies:
- '@babel/parser': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/parser': 7.27.0
+ '@babel/types': 7.27.0
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.1.0
- '@babel/generator@7.26.9':
+ '@babel/generator@7.27.0':
dependencies:
- '@babel/parser': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/parser': 7.27.0
+ '@babel/types': 7.27.0
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.1.0
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.26.10
+ '@babel/types': 7.27.0
- '@babel/helper-compilation-targets@7.26.5':
+ '@babel/helper-compilation-targets@7.27.0':
dependencies:
'@babel/compat-data': 7.26.8
'@babel/helper-validator-option': 7.25.9
@@ -23144,7 +12368,7 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.26.9(@babel/core@7.26.10)':
+ '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-annotate-as-pure': 7.25.9
@@ -23152,12 +12376,12 @@ snapshots:
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-class-features-plugin@7.26.9(@babel/core@7.26.9)':
+ '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
@@ -23165,24 +12389,24 @@ snapshots:
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.9)':
+ '@babel/helper-create-regexp-features-plugin@7.27.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.9)':
+ '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-compilation-targets': 7.27.0
'@babel/helper-plugin-utils': 7.26.5
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
lodash.debounce: 4.0.8
resolve: 1.22.10
transitivePeerDependencies:
@@ -23190,15 +12414,15 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/traverse': 7.27.0
+ '@babel/types': 7.27.0
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/traverse': 7.27.0
+ '@babel/types': 7.27.0
transitivePeerDependencies:
- supports-color
@@ -23207,7 +12431,7 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
transitivePeerDependencies:
- supports-color
@@ -23216,13 +12440,13 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.26.10
+ '@babel/types': 7.27.0
'@babel/helper-plugin-utils@7.26.5': {}
@@ -23231,7 +12455,7 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
transitivePeerDependencies:
- supports-color
@@ -23240,7 +12464,7 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
transitivePeerDependencies:
- supports-color
@@ -23249,20 +12473,20 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/traverse': 7.27.0
+ '@babel/types': 7.27.0
transitivePeerDependencies:
- supports-color
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.26.10
+ '@babel/types': 7.27.0
'@babel/helper-string-parser@7.25.9': {}
@@ -23272,26 +12496,26 @@ snapshots:
'@babel/helper-wrap-function@7.25.9':
dependencies:
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/template': 7.27.0
+ '@babel/traverse': 7.27.0
+ '@babel/types': 7.27.0
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.26.10':
+ '@babel/helpers@7.27.0':
dependencies:
- '@babel/template': 7.26.9
- '@babel/types': 7.26.10
+ '@babel/template': 7.27.0
+ '@babel/types': 7.27.0
- '@babel/parser@7.26.10':
+ '@babel/parser@7.27.0':
dependencies:
- '@babel/types': 7.26.10
+ '@babel/types': 7.27.0
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
transitivePeerDependencies:
- supports-color
@@ -23318,14 +12542,14 @@ snapshots:
dependencies:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
transitivePeerDependencies:
- supports-color
'@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.10)
+ '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.10)
transitivePeerDependencies:
@@ -23373,7 +12597,7 @@ snapshots:
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
+ '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.9)':
@@ -23386,7 +12610,7 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.9)
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
transitivePeerDependencies:
- supports-color
@@ -23404,7 +12628,7 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
@@ -23412,7 +12636,7 @@ snapshots:
'@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
+ '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
@@ -23420,7 +12644,7 @@ snapshots:
'@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
+ '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
@@ -23429,10 +12653,10 @@ snapshots:
dependencies:
'@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-compilation-targets': 7.27.0
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -23441,7 +12665,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/template': 7.26.9
+ '@babel/template': 7.27.0
'@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.9)':
dependencies:
@@ -23451,7 +12675,7 @@ snapshots:
'@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
+ '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.9)':
@@ -23462,7 +12686,7 @@ snapshots:
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
+ '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.9)':
@@ -23491,9 +12715,9 @@ snapshots:
'@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-compilation-targets': 7.27.0
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
transitivePeerDependencies:
- supports-color
@@ -23539,7 +12763,7 @@ snapshots:
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.10
+ '@babel/traverse': 7.27.0
transitivePeerDependencies:
- supports-color
@@ -23554,7 +12778,7 @@ snapshots:
'@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
+ '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.9)':
@@ -23575,7 +12799,7 @@ snapshots:
'@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-compilation-targets': 7.27.0
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.9)
@@ -23608,7 +12832,7 @@ snapshots:
'@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
+ '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
@@ -23617,7 +12841,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
+ '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
@@ -23637,7 +12861,7 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-regenerator@7.27.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
@@ -23646,7 +12870,7 @@ snapshots:
'@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
+ '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.9)':
@@ -23659,9 +12883,9 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.26.5
- babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.9)
+ babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.9)
babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.9)
- babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.9)
+ babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -23689,16 +12913,16 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-typeof-symbol@7.27.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-typescript@7.26.8(@babel/core@7.26.10)':
+ '@babel/plugin-transform-typescript@7.27.0(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.10)
+ '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
'@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10)
@@ -23713,26 +12937,26 @@ snapshots:
'@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
+ '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
+ '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
+ '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/preset-env@7.26.9(@babel/core@7.26.9)':
dependencies:
'@babel/compat-data': 7.26.8
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-compilation-targets': 7.27.0
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-option': 7.25.9
'@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.9)
@@ -23748,7 +12972,7 @@ snapshots:
'@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.9)
'@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.9)
'@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.9)
'@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.9)
'@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.9)
'@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.9)
@@ -23782,22 +13006,22 @@ snapshots:
'@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.9)
'@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.9)
'@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-regenerator': 7.27.0(@babel/core@7.26.9)
'@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.9)
'@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.9)
'@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.9)
'@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.9)
'@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.9)
'@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.9)
- '@babel/plugin-transform-typeof-symbol': 7.26.7(@babel/core@7.26.9)
+ '@babel/plugin-transform-typeof-symbol': 7.27.0(@babel/core@7.26.9)
'@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.9)
'@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.9)
'@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.9)
'@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.9)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.9)
- babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.9)
+ babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.9)
babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.9)
- babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.9)
+ babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.9)
core-js-compat: 3.41.0
semver: 6.3.1
transitivePeerDependencies:
@@ -23807,38 +13031,38 @@ snapshots:
dependencies:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/types': 7.26.10
+ '@babel/types': 7.27.0
esutils: 2.0.3
- '@babel/runtime@7.26.10':
+ '@babel/runtime@7.26.9':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/runtime@7.26.9':
+ '@babel/runtime@7.27.0':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/standalone@7.26.10': {}
+ '@babel/standalone@7.27.0': {}
- '@babel/template@7.26.9':
+ '@babel/template@7.27.0':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/parser': 7.27.0
+ '@babel/types': 7.27.0
- '@babel/traverse@7.26.10':
+ '@babel/traverse@7.27.0':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.10
- '@babel/parser': 7.26.10
- '@babel/template': 7.26.9
- '@babel/types': 7.26.10
- debug: 4.4.0(supports-color@9.4.0)
+ '@babel/generator': 7.27.0
+ '@babel/parser': 7.27.0
+ '@babel/template': 7.27.0
+ '@babel/types': 7.27.0
+ debug: 4.4.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.26.10':
+ '@babel/types@7.27.0':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
@@ -23899,7 +13123,7 @@ snapshots:
'@changesets/types': 6.1.0
'@changesets/write': 0.3.2
'@manypkg/get-packages': 1.1.3
- '@types/semver': 7.5.8
+ '@types/semver': 7.7.0
ansi-colors: 4.1.3
ci-info: 3.9.0
enquirer: 2.4.1
@@ -24004,7 +13228,7 @@ snapshots:
human-id: 1.0.2
prettier: 2.8.8
- '@cloudflare/kv-asset-handler@0.3.4':
+ '@cloudflare/kv-asset-handler@0.4.0':
dependencies:
mime: 3.0.0
@@ -24018,9 +13242,9 @@ snapshots:
'@docsearch/css@3.9.0': {}
- '@docsearch/js@3.9.0(@algolia/client-search@5.21.0)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3)':
+ '@docsearch/js@3.9.0(@algolia/client-search@5.23.0)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3)':
dependencies:
- '@docsearch/react': 3.9.0(@algolia/client-search@5.21.0)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3)
+ '@docsearch/react': 3.9.0(@algolia/client-search@5.23.0)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3)
preact: 10.26.4
transitivePeerDependencies:
- '@algolia/client-search'
@@ -24029,12 +13253,12 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.9.0(@algolia/client-search@5.21.0)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3)':
+ '@docsearch/react@3.9.0(@algolia/client-search@5.23.0)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3)
- '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)
+ '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.23.0)(algoliasearch@5.23.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.23.0)(algoliasearch@5.23.0)
'@docsearch/css': 3.9.0
- algoliasearch: 5.21.0
+ algoliasearch: 5.23.0
optionalDependencies:
'@types/react': 19.0.1
react: 19.0.0
@@ -24043,11 +13267,22 @@ snapshots:
transitivePeerDependencies:
- '@algolia/client-search'
+ '@emnapi/core@1.3.1':
+ dependencies:
+ '@emnapi/wasi-threads': 1.0.1
+ tslib: 2.8.1
+ optional: true
+
'@emnapi/runtime@1.3.1':
dependencies:
tslib: 2.8.1
optional: true
+ '@emnapi/wasi-threads@1.0.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@esbuild/aix-ppc64@0.19.12':
optional: true
@@ -24060,7 +13295,7 @@ snapshots:
'@esbuild/aix-ppc64@0.25.0':
optional: true
- '@esbuild/aix-ppc64@0.25.2':
+ '@esbuild/aix-ppc64@0.25.1':
optional: true
'@esbuild/android-arm64@0.19.12':
@@ -24075,7 +13310,7 @@ snapshots:
'@esbuild/android-arm64@0.25.0':
optional: true
- '@esbuild/android-arm64@0.25.2':
+ '@esbuild/android-arm64@0.25.1':
optional: true
'@esbuild/android-arm@0.19.12':
@@ -24090,7 +13325,7 @@ snapshots:
'@esbuild/android-arm@0.25.0':
optional: true
- '@esbuild/android-arm@0.25.2':
+ '@esbuild/android-arm@0.25.1':
optional: true
'@esbuild/android-x64@0.19.12':
@@ -24105,7 +13340,7 @@ snapshots:
'@esbuild/android-x64@0.25.0':
optional: true
- '@esbuild/android-x64@0.25.2':
+ '@esbuild/android-x64@0.25.1':
optional: true
'@esbuild/darwin-arm64@0.19.12':
@@ -24120,7 +13355,7 @@ snapshots:
'@esbuild/darwin-arm64@0.25.0':
optional: true
- '@esbuild/darwin-arm64@0.25.2':
+ '@esbuild/darwin-arm64@0.25.1':
optional: true
'@esbuild/darwin-x64@0.19.12':
@@ -24135,7 +13370,7 @@ snapshots:
'@esbuild/darwin-x64@0.25.0':
optional: true
- '@esbuild/darwin-x64@0.25.2':
+ '@esbuild/darwin-x64@0.25.1':
optional: true
'@esbuild/freebsd-arm64@0.19.12':
@@ -24150,7 +13385,7 @@ snapshots:
'@esbuild/freebsd-arm64@0.25.0':
optional: true
- '@esbuild/freebsd-arm64@0.25.2':
+ '@esbuild/freebsd-arm64@0.25.1':
optional: true
'@esbuild/freebsd-x64@0.19.12':
@@ -24165,7 +13400,7 @@ snapshots:
'@esbuild/freebsd-x64@0.25.0':
optional: true
- '@esbuild/freebsd-x64@0.25.2':
+ '@esbuild/freebsd-x64@0.25.1':
optional: true
'@esbuild/linux-arm64@0.19.12':
@@ -24180,7 +13415,7 @@ snapshots:
'@esbuild/linux-arm64@0.25.0':
optional: true
- '@esbuild/linux-arm64@0.25.2':
+ '@esbuild/linux-arm64@0.25.1':
optional: true
'@esbuild/linux-arm@0.19.12':
@@ -24195,7 +13430,7 @@ snapshots:
'@esbuild/linux-arm@0.25.0':
optional: true
- '@esbuild/linux-arm@0.25.2':
+ '@esbuild/linux-arm@0.25.1':
optional: true
'@esbuild/linux-ia32@0.19.12':
@@ -24210,7 +13445,7 @@ snapshots:
'@esbuild/linux-ia32@0.25.0':
optional: true
- '@esbuild/linux-ia32@0.25.2':
+ '@esbuild/linux-ia32@0.25.1':
optional: true
'@esbuild/linux-loong64@0.19.12':
@@ -24225,7 +13460,7 @@ snapshots:
'@esbuild/linux-loong64@0.25.0':
optional: true
- '@esbuild/linux-loong64@0.25.2':
+ '@esbuild/linux-loong64@0.25.1':
optional: true
'@esbuild/linux-mips64el@0.19.12':
@@ -24240,7 +13475,7 @@ snapshots:
'@esbuild/linux-mips64el@0.25.0':
optional: true
- '@esbuild/linux-mips64el@0.25.2':
+ '@esbuild/linux-mips64el@0.25.1':
optional: true
'@esbuild/linux-ppc64@0.19.12':
@@ -24255,7 +13490,7 @@ snapshots:
'@esbuild/linux-ppc64@0.25.0':
optional: true
- '@esbuild/linux-ppc64@0.25.2':
+ '@esbuild/linux-ppc64@0.25.1':
optional: true
'@esbuild/linux-riscv64@0.19.12':
@@ -24270,7 +13505,7 @@ snapshots:
'@esbuild/linux-riscv64@0.25.0':
optional: true
- '@esbuild/linux-riscv64@0.25.2':
+ '@esbuild/linux-riscv64@0.25.1':
optional: true
'@esbuild/linux-s390x@0.19.12':
@@ -24285,7 +13520,7 @@ snapshots:
'@esbuild/linux-s390x@0.25.0':
optional: true
- '@esbuild/linux-s390x@0.25.2':
+ '@esbuild/linux-s390x@0.25.1':
optional: true
'@esbuild/linux-x64@0.19.12':
@@ -24300,7 +13535,7 @@ snapshots:
'@esbuild/linux-x64@0.25.0':
optional: true
- '@esbuild/linux-x64@0.25.2':
+ '@esbuild/linux-x64@0.25.1':
optional: true
'@esbuild/netbsd-arm64@0.24.2':
@@ -24309,7 +13544,7 @@ snapshots:
'@esbuild/netbsd-arm64@0.25.0':
optional: true
- '@esbuild/netbsd-arm64@0.25.2':
+ '@esbuild/netbsd-arm64@0.25.1':
optional: true
'@esbuild/netbsd-x64@0.19.12':
@@ -24324,7 +13559,7 @@ snapshots:
'@esbuild/netbsd-x64@0.25.0':
optional: true
- '@esbuild/netbsd-x64@0.25.2':
+ '@esbuild/netbsd-x64@0.25.1':
optional: true
'@esbuild/openbsd-arm64@0.24.2':
@@ -24333,7 +13568,7 @@ snapshots:
'@esbuild/openbsd-arm64@0.25.0':
optional: true
- '@esbuild/openbsd-arm64@0.25.2':
+ '@esbuild/openbsd-arm64@0.25.1':
optional: true
'@esbuild/openbsd-x64@0.19.12':
@@ -24348,7 +13583,7 @@ snapshots:
'@esbuild/openbsd-x64@0.25.0':
optional: true
- '@esbuild/openbsd-x64@0.25.2':
+ '@esbuild/openbsd-x64@0.25.1':
optional: true
'@esbuild/sunos-x64@0.19.12':
@@ -24363,7 +13598,7 @@ snapshots:
'@esbuild/sunos-x64@0.25.0':
optional: true
- '@esbuild/sunos-x64@0.25.2':
+ '@esbuild/sunos-x64@0.25.1':
optional: true
'@esbuild/win32-arm64@0.19.12':
@@ -24378,7 +13613,7 @@ snapshots:
'@esbuild/win32-arm64@0.25.0':
optional: true
- '@esbuild/win32-arm64@0.25.2':
+ '@esbuild/win32-arm64@0.25.1':
optional: true
'@esbuild/win32-ia32@0.19.12':
@@ -24393,7 +13628,7 @@ snapshots:
'@esbuild/win32-ia32@0.25.0':
optional: true
- '@esbuild/win32-ia32@0.25.2':
+ '@esbuild/win32-ia32@0.25.1':
optional: true
'@esbuild/win32-x64@0.19.12':
@@ -24408,10 +13643,10 @@ snapshots:
'@esbuild/win32-x64@0.25.0':
optional: true
- '@esbuild/win32-x64@0.25.2':
+ '@esbuild/win32-x64@0.25.1':
optional: true
- '@eslint-community/eslint-utils@4.5.0(eslint@9.17.0(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.5.1(eslint@9.17.0(jiti@2.4.2))':
dependencies:
eslint: 9.17.0(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
@@ -24421,7 +13656,7 @@ snapshots:
'@eslint/config-array@0.19.2':
dependencies:
'@eslint/object-schema': 2.1.6
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -24434,10 +13669,10 @@ snapshots:
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/eslintrc@3.3.0':
+ '@eslint/eslintrc@3.3.1':
dependencies:
ajv: 6.12.6
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
espree: 10.3.0
globals: 14.0.0
ignore: 5.3.2
@@ -24463,7 +13698,7 @@ snapshots:
ajv-formats: 3.0.1(ajv@8.17.1)
fast-uri: 3.0.6
- '@fastify/error@4.0.0': {}
+ '@fastify/error@4.1.0': {}
'@fastify/fast-json-stringify-compiler@5.0.2':
dependencies:
@@ -24586,9 +13821,9 @@ snapshots:
'@img/sharp-win32-x64@0.33.5':
optional: true
- '@inquirer/checkbox@4.1.3(@types/node@22.10.5)':
+ '@inquirer/checkbox@4.1.4(@types/node@22.10.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.10.5)
+ '@inquirer/core': 10.1.9(@types/node@22.10.5)
'@inquirer/figures': 1.0.11
'@inquirer/type': 3.0.5(@types/node@22.10.5)
ansi-escapes: 4.3.2
@@ -24598,19 +13833,19 @@ snapshots:
'@inquirer/confirm@5.1.6(@types/node@22.10.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.10.5)
+ '@inquirer/core': 10.1.9(@types/node@22.10.5)
'@inquirer/type': 3.0.5(@types/node@22.10.5)
optionalDependencies:
'@types/node': 22.10.5
- '@inquirer/confirm@5.1.7(@types/node@22.10.5)':
+ '@inquirer/confirm@5.1.8(@types/node@22.10.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.10.5)
+ '@inquirer/core': 10.1.9(@types/node@22.10.5)
'@inquirer/type': 3.0.5(@types/node@22.10.5)
optionalDependencies:
'@types/node': 22.10.5
- '@inquirer/core@10.1.8(@types/node@22.10.5)':
+ '@inquirer/core@10.1.9(@types/node@22.10.5)':
dependencies:
'@inquirer/figures': 1.0.11
'@inquirer/type': 3.0.5(@types/node@22.10.5)
@@ -24623,17 +13858,17 @@ snapshots:
optionalDependencies:
'@types/node': 22.10.5
- '@inquirer/editor@4.2.8(@types/node@22.10.5)':
+ '@inquirer/editor@4.2.9(@types/node@22.10.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.10.5)
+ '@inquirer/core': 10.1.9(@types/node@22.10.5)
'@inquirer/type': 3.0.5(@types/node@22.10.5)
external-editor: 3.1.0
optionalDependencies:
'@types/node': 22.10.5
- '@inquirer/expand@4.0.10(@types/node@22.10.5)':
+ '@inquirer/expand@4.0.11(@types/node@22.10.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.10.5)
+ '@inquirer/core': 10.1.9(@types/node@22.10.5)
'@inquirer/type': 3.0.5(@types/node@22.10.5)
yoctocolors-cjs: 2.1.2
optionalDependencies:
@@ -24641,23 +13876,23 @@ snapshots:
'@inquirer/figures@1.0.11': {}
- '@inquirer/input@4.1.7(@types/node@22.10.5)':
+ '@inquirer/input@4.1.8(@types/node@22.10.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.10.5)
+ '@inquirer/core': 10.1.9(@types/node@22.10.5)
'@inquirer/type': 3.0.5(@types/node@22.10.5)
optionalDependencies:
'@types/node': 22.10.5
- '@inquirer/number@3.0.10(@types/node@22.10.5)':
+ '@inquirer/number@3.0.11(@types/node@22.10.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.10.5)
+ '@inquirer/core': 10.1.9(@types/node@22.10.5)
'@inquirer/type': 3.0.5(@types/node@22.10.5)
optionalDependencies:
'@types/node': 22.10.5
- '@inquirer/password@4.0.10(@types/node@22.10.5)':
+ '@inquirer/password@4.0.11(@types/node@22.10.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.10.5)
+ '@inquirer/core': 10.1.9(@types/node@22.10.5)
'@inquirer/type': 3.0.5(@types/node@22.10.5)
ansi-escapes: 4.3.2
optionalDependencies:
@@ -24665,39 +13900,39 @@ snapshots:
'@inquirer/prompts@7.3.2(@types/node@22.10.5)':
dependencies:
- '@inquirer/checkbox': 4.1.3(@types/node@22.10.5)
- '@inquirer/confirm': 5.1.7(@types/node@22.10.5)
- '@inquirer/editor': 4.2.8(@types/node@22.10.5)
- '@inquirer/expand': 4.0.10(@types/node@22.10.5)
- '@inquirer/input': 4.1.7(@types/node@22.10.5)
- '@inquirer/number': 3.0.10(@types/node@22.10.5)
- '@inquirer/password': 4.0.10(@types/node@22.10.5)
- '@inquirer/rawlist': 4.0.10(@types/node@22.10.5)
- '@inquirer/search': 3.0.10(@types/node@22.10.5)
- '@inquirer/select': 4.0.10(@types/node@22.10.5)
+ '@inquirer/checkbox': 4.1.4(@types/node@22.10.5)
+ '@inquirer/confirm': 5.1.8(@types/node@22.10.5)
+ '@inquirer/editor': 4.2.9(@types/node@22.10.5)
+ '@inquirer/expand': 4.0.11(@types/node@22.10.5)
+ '@inquirer/input': 4.1.8(@types/node@22.10.5)
+ '@inquirer/number': 3.0.11(@types/node@22.10.5)
+ '@inquirer/password': 4.0.11(@types/node@22.10.5)
+ '@inquirer/rawlist': 4.0.11(@types/node@22.10.5)
+ '@inquirer/search': 3.0.11(@types/node@22.10.5)
+ '@inquirer/select': 4.1.0(@types/node@22.10.5)
optionalDependencies:
'@types/node': 22.10.5
- '@inquirer/rawlist@4.0.10(@types/node@22.10.5)':
+ '@inquirer/rawlist@4.0.11(@types/node@22.10.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.10.5)
+ '@inquirer/core': 10.1.9(@types/node@22.10.5)
'@inquirer/type': 3.0.5(@types/node@22.10.5)
yoctocolors-cjs: 2.1.2
optionalDependencies:
'@types/node': 22.10.5
- '@inquirer/search@3.0.10(@types/node@22.10.5)':
+ '@inquirer/search@3.0.11(@types/node@22.10.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.10.5)
+ '@inquirer/core': 10.1.9(@types/node@22.10.5)
'@inquirer/figures': 1.0.11
'@inquirer/type': 3.0.5(@types/node@22.10.5)
yoctocolors-cjs: 2.1.2
optionalDependencies:
'@types/node': 22.10.5
- '@inquirer/select@4.0.10(@types/node@22.10.5)':
+ '@inquirer/select@4.1.0(@types/node@22.10.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.10.5)
+ '@inquirer/core': 10.1.9(@types/node@22.10.5)
'@inquirer/figures': 1.0.11
'@inquirer/type': 3.0.5(@types/node@22.10.5)
ansi-escapes: 4.3.2
@@ -24781,7 +14016,7 @@ snapshots:
'@kwsites/file-exists@1.1.1':
dependencies:
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -24814,14 +14049,14 @@ snapshots:
'@manypkg/find-root@1.1.0':
dependencies:
- '@babel/runtime': 7.26.10
+ '@babel/runtime': 7.27.0
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
'@manypkg/get-packages@1.1.3':
dependencies:
- '@babel/runtime': 7.26.10
+ '@babel/runtime': 7.27.0
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -24830,9 +14065,9 @@ snapshots:
'@mapbox/node-pre-gyp@2.0.0(encoding@0.1.13)':
dependencies:
- consola: 3.4.0
+ consola: 3.4.2
detect-libc: 2.0.3
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
+ https-proxy-agent: 7.0.6
node-fetch: 2.7.0(encoding@0.1.13)
nopt: 8.1.0
semver: 7.7.1
@@ -24927,18 +14162,20 @@ snapshots:
'@napi-rs/nice-win32-x64-msvc': 1.0.1
optional: true
- '@neoconfetti/svelte@2.0.0': {}
-
- '@netlify/functions@3.0.0':
+ '@napi-rs/wasm-runtime@0.2.7':
dependencies:
- '@netlify/serverless-functions-api': 1.30.1
+ '@emnapi/core': 1.3.1
+ '@emnapi/runtime': 1.3.1
+ '@tybys/wasm-util': 0.9.0
+ optional: true
- '@netlify/node-cookies@0.1.0': {}
+ '@neoconfetti/svelte@2.0.0': {}
- '@netlify/serverless-functions-api@1.30.1':
+ '@netlify/functions@3.0.4':
dependencies:
- '@netlify/node-cookies': 0.1.0
- urlpattern-polyfill: 8.0.2
+ '@netlify/serverless-functions-api': 1.36.0
+
+ '@netlify/serverless-functions-api@1.36.0': {}
'@next/env@15.2.4': {}
@@ -24994,7 +14231,7 @@ snapshots:
dependencies:
agent-base: 7.1.3
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
+ https-proxy-agent: 7.0.6
lru-cache: 10.4.3
socks-proxy-agent: 8.0.5
transitivePeerDependencies:
@@ -25054,7 +14291,7 @@ snapshots:
'@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
dependencies:
'@nuxt/kit': 3.15.4(magicast@0.3.5)
- '@nuxt/schema': 3.16.0
+ '@nuxt/schema': 3.16.1
execa: 7.2.0
vite: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
transitivePeerDependencies:
@@ -25064,7 +14301,7 @@ snapshots:
'@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
dependencies:
'@nuxt/kit': 3.15.4(magicast@0.3.5)
- '@nuxt/schema': 3.16.0
+ '@nuxt/schema': 3.16.1
execa: 7.2.0
vite: 6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
transitivePeerDependencies:
@@ -25073,7 +14310,7 @@ snapshots:
'@nuxt/devtools-wizard@1.7.0':
dependencies:
- consola: 3.4.0
+ consola: 3.4.2
diff: 7.0.0
execa: 7.2.0
global-directory: 4.0.1
@@ -25093,8 +14330,8 @@ snapshots:
'@vue/devtools-core': 7.6.8(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))
'@vue/devtools-kit': 7.6.8
birpc: 0.2.19
- consola: 3.4.0
- cronstrue: 2.56.0
+ consola: 3.4.2
+ cronstrue: 2.57.0
destr: 2.0.3
error-stack-parser-es: 0.1.5
execa: 7.2.0
@@ -25117,7 +14354,7 @@ snapshots:
semver: 7.7.1
simple-git: 3.27.0
sirv: 3.0.1
- tinyglobby: 0.2.12
+ tinyglobby: 0.2.10
unimport: 3.14.6(rollup@3.29.5)
vite: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
@@ -25131,17 +14368,17 @@ snapshots:
- utf-8-validate
- vue
- '@nuxt/devtools@1.7.0(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))':
+ '@nuxt/devtools@1.7.0(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
dependencies:
'@antfu/utils': 0.7.10
'@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
'@nuxt/devtools-wizard': 1.7.0
'@nuxt/kit': 3.15.4(magicast@0.3.5)
- '@vue/devtools-core': 7.6.8(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))
+ '@vue/devtools-core': 7.6.8(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
'@vue/devtools-kit': 7.6.8
birpc: 0.2.19
- consola: 3.4.0
- cronstrue: 2.56.0
+ consola: 3.4.2
+ cronstrue: 2.57.0
destr: 2.0.3
error-stack-parser-es: 0.1.5
execa: 7.2.0
@@ -25164,10 +14401,10 @@ snapshots:
semver: 7.7.1
simple-git: 3.27.0
sirv: 3.0.1
- tinyglobby: 0.2.12
- unimport: 3.14.6(rollup@4.39.0)
+ tinyglobby: 0.2.10
+ unimport: 3.14.6(rollup@4.37.0)
vite: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
+ vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
vite-plugin-vue-inspector: 5.3.1(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
which: 3.0.1
ws: 8.18.1
@@ -25178,7 +14415,7 @@ snapshots:
- utf-8-validate
- vue
- '@nuxt/devtools@1.7.0(rollup@4.39.0)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
+ '@nuxt/devtools@1.7.0(rollup@4.37.0)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
dependencies:
'@antfu/utils': 0.7.10
'@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
@@ -25187,8 +14424,8 @@ snapshots:
'@vue/devtools-core': 7.6.8(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
'@vue/devtools-kit': 7.6.8
birpc: 0.2.19
- consola: 3.4.0
- cronstrue: 2.56.0
+ consola: 3.4.2
+ cronstrue: 2.57.0
destr: 2.0.3
error-stack-parser-es: 0.1.5
execa: 7.2.0
@@ -25211,10 +14448,10 @@ snapshots:
semver: 7.7.1
simple-git: 3.27.0
sirv: 3.0.1
- tinyglobby: 0.2.12
- unimport: 3.14.6(rollup@4.39.0)
+ tinyglobby: 0.2.10
+ unimport: 3.14.6(rollup@4.37.0)
vite: 6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.39.0)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
+ vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.37.0)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
vite-plugin-vue-inspector: 5.3.1(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
which: 3.0.1
ws: 8.18.1
@@ -25229,7 +14466,7 @@ snapshots:
dependencies:
'@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@3.29.5)
c12: 2.0.1(magicast@0.3.5)
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
destr: 2.0.3
globby: 14.1.0
@@ -25252,11 +14489,11 @@ snapshots:
- rollup
- supports-color
- '@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.39.0)':
+ '@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.37.0)':
dependencies:
- '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.39.0)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.37.0)
c12: 2.0.1(magicast@0.3.5)
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
destr: 2.0.3
globby: 14.1.0
@@ -25272,7 +14509,7 @@ snapshots:
semver: 7.7.1
ufo: 1.5.4
unctx: 2.4.1
- unimport: 3.14.6(rollup@4.39.0)
+ unimport: 3.14.6(rollup@4.37.0)
untyped: 1.5.2
transitivePeerDependencies:
- magicast
@@ -25282,7 +14519,7 @@ snapshots:
'@nuxt/kit@3.15.4(magicast@0.3.5)':
dependencies:
c12: 2.0.1(magicast@0.3.5)
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
destr: 2.0.3
globby: 14.1.0
@@ -25305,15 +14542,15 @@ snapshots:
- magicast
- supports-color
- '@nuxt/module-builder@0.8.4(@nuxt/kit@3.15.4(magicast@0.3.5))(nuxi@3.22.5)(sass@1.85.0)(typescript@5.6.1-rc)':
+ '@nuxt/module-builder@0.8.4(@nuxt/kit@3.15.4(magicast@0.3.5))(nuxi@3.23.1)(sass@1.85.0)(typescript@5.6.1-rc)':
dependencies:
'@nuxt/kit': 3.15.4(magicast@0.3.5)
citty: 0.1.6
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
magic-regexp: 0.8.0
mlly: 1.7.4
- nuxi: 3.22.5
+ nuxi: 3.23.1
pathe: 1.1.2
pkg-types: 1.3.1
tsconfck: 3.1.5(typescript@5.6.1-rc)
@@ -25328,7 +14565,7 @@ snapshots:
dependencies:
c12: 2.0.1(magicast@0.3.5)
compatx: 0.1.8
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
hookable: 5.5.3
pathe: 1.1.2
@@ -25344,11 +14581,11 @@ snapshots:
- rollup
- supports-color
- '@nuxt/schema@3.14.1592(magicast@0.3.5)(rollup@4.39.0)':
+ '@nuxt/schema@3.14.1592(magicast@0.3.5)(rollup@4.37.0)':
dependencies:
c12: 2.0.1(magicast@0.3.5)
compatx: 0.1.8
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
hookable: 5.5.3
pathe: 1.1.2
@@ -25357,32 +14594,31 @@ snapshots:
std-env: 3.8.1
ufo: 1.5.4
uncrypto: 0.1.3
- unimport: 3.14.6(rollup@4.39.0)
+ unimport: 3.14.6(rollup@4.37.0)
untyped: 1.5.2
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- '@nuxt/schema@3.16.0':
+ '@nuxt/schema@3.16.1':
dependencies:
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
pathe: 2.0.3
std-env: 3.8.1
- '@nuxt/telemetry@2.6.5(magicast@0.3.5)':
+ '@nuxt/telemetry@2.6.6(magicast@0.3.5)':
dependencies:
'@nuxt/kit': 3.15.4(magicast@0.3.5)
citty: 0.1.6
- consola: 3.4.0
+ consola: 3.4.2
destr: 2.0.3
dotenv: 16.4.7
git-url-parse: 16.0.1
is-docker: 3.0.0
ofetch: 1.4.1
- package-manager-detector: 0.2.11
- parse-git-config: 3.0.0
+ package-manager-detector: 1.1.0
pathe: 2.0.3
rc9: 2.1.2
std-env: 3.8.1
@@ -25390,12 +14626,12 @@ snapshots:
- magicast
- supports-color
- '@nuxt/test-utils@3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.6(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))':
+ '@nuxt/test-utils@3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.8(encoding@0.1.13))(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))':
dependencies:
'@nuxt/kit': 3.15.4(magicast@0.3.5)
'@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@3.29.5)
c12: 1.11.2(magicast@0.3.5)
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
destr: 2.0.3
estree-walker: 3.0.3
@@ -25405,7 +14641,7 @@ snapshots:
h3: 1.15.1
local-pkg: 0.5.1
magic-string: 0.30.17
- nitropack: 2.11.6(encoding@0.1.13)(typescript@5.6.1-rc)
+ nitropack: 2.11.8(encoding@0.1.13)
node-fetch-native: 1.6.6
ofetch: 1.4.1
pathe: 1.1.2
@@ -25417,7 +14653,7 @@ snapshots:
unenv: 1.10.0
unplugin: 1.16.1
vite: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vitest-environment-nuxt: 1.0.1(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.6(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
+ vitest-environment-nuxt: 1.0.1(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.8(encoding@0.1.13))(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
vue: 3.5.13(typescript@5.6.1-rc)
vue-router: 4.5.0(vue@3.5.13(typescript@5.6.1-rc))
optionalDependencies:
@@ -25429,12 +14665,12 @@ snapshots:
- rollup
- supports-color
- '@nuxt/test-utils@3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.6(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))':
+ '@nuxt/test-utils@3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.8(encoding@0.1.13))(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3))':
dependencies:
'@nuxt/kit': 3.15.4(magicast@0.3.5)
- '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.39.0)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.37.0)
c12: 1.11.2(magicast@0.3.5)
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
destr: 2.0.3
estree-walker: 3.0.3
@@ -25444,99 +14680,39 @@ snapshots:
h3: 1.15.1
local-pkg: 0.5.1
magic-string: 0.30.17
- nitropack: 2.11.6(encoding@0.1.13)(typescript@5.6.1-rc)
+ nitropack: 2.11.8(encoding@0.1.13)
node-fetch-native: 1.6.6
ofetch: 1.4.1
pathe: 1.1.2
perfect-debounce: 1.0.0
- radix3: 1.1.2
- scule: 1.3.0
- std-env: 3.8.1
- ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 1.16.1
- vite: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vitest-environment-nuxt: 1.0.1(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.6(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
- vue: 3.5.13(typescript@5.6.1-rc)
- vue-router: 4.5.0(vue@3.5.13(typescript@5.6.1-rc))
- optionalDependencies:
- '@vue/test-utils': 2.4.6
- jsdom: 23.0.0
- vitest: 1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/vite-builder@3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vue@3.5.13(typescript@5.6.1-rc))':
- dependencies:
- '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@3.29.5)
- '@rollup/plugin-replace': 6.0.2(rollup@3.29.5)
- '@vitejs/plugin-vue': 5.2.1(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))
- '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))
- autoprefixer: 10.4.20(postcss@8.5.3)
- clear: 0.1.0
- consola: 3.4.0
- cssnano: 7.0.6(postcss@8.5.3)
- defu: 6.1.4
- esbuild: 0.24.2
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- externality: 1.0.2
- get-port-please: 3.1.2
- h3: 1.15.1
- jiti: 2.4.2
- knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
- ohash: 1.1.6
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0(rollup@3.29.5)
+ radix3: 1.1.2
+ scule: 1.3.0
std-env: 3.8.1
- strip-literal: 2.1.1
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.16.1
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-node: 2.1.9(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.6.1-rc)(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))
- vue: 3.5.13(typescript@5.6.1-rc)
- vue-bundle-renderer: 2.1.1
+ vite: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ vitest-environment-nuxt: 1.0.1(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.8(encoding@0.1.13))(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3))
+ vue: 3.5.13(typescript@5.5.3)
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.5.3))
+ optionalDependencies:
+ '@vue/test-utils': 2.4.6
+ jsdom: 23.0.0
+ vitest: 1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
transitivePeerDependencies:
- - '@biomejs/biome'
- - '@types/node'
- - eslint
- - less
- - lightningcss
- magicast
- - meow
- - optionator
- - rolldown
- rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- supports-color
- - terser
- - typescript
- - vls
- - vti
- - vue-tsc
- '@nuxt/vite-builder@3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.39.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3))':
+ '@nuxt/vite-builder@3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vue@3.5.13(typescript@5.6.1-rc))':
dependencies:
- '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.39.0)
- '@rollup/plugin-replace': 6.0.2(rollup@4.39.0)
- '@vitejs/plugin-vue': 5.2.1(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))
- '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@3.29.5)
+ '@rollup/plugin-replace': 6.0.2(rollup@3.29.5)
+ '@vitejs/plugin-vue': 5.2.1(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))
+ '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))
autoprefixer: 10.4.20(postcss@8.5.3)
clear: 0.1.0
- consola: 3.4.0
+ consola: 3.4.2
cssnano: 7.0.6(postcss@8.5.3)
defu: 6.1.4
esbuild: 0.24.2
@@ -25554,16 +14730,16 @@ snapshots:
perfect-debounce: 1.0.0
pkg-types: 1.3.1
postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0(rollup@4.39.0)
+ rollup-plugin-visualizer: 5.14.0(rollup@3.29.5)
std-env: 3.8.1
strip-literal: 2.1.1
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.16.1
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
vite-node: 2.1.9(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.5.3)(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))
- vue: 3.5.13(typescript@5.5.3)
+ vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.6.1-rc)(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))
+ vue: 3.5.13(typescript@5.6.1-rc)
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
@@ -25588,15 +14764,15 @@ snapshots:
- vti
- vue-tsc
- '@nuxt/vite-builder@3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.39.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vue@3.5.13(typescript@5.6.1-rc))':
+ '@nuxt/vite-builder@3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.37.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3))':
dependencies:
- '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.39.0)
- '@rollup/plugin-replace': 6.0.2(rollup@4.39.0)
- '@vitejs/plugin-vue': 5.2.1(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))
- '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.37.0)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.37.0)
+ '@vitejs/plugin-vue': 5.2.1(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))
+ '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))
autoprefixer: 10.4.20(postcss@8.5.3)
clear: 0.1.0
- consola: 3.4.0
+ consola: 3.4.2
cssnano: 7.0.6(postcss@8.5.3)
defu: 6.1.4
esbuild: 0.24.2
@@ -25614,16 +14790,16 @@ snapshots:
perfect-debounce: 1.0.0
pkg-types: 1.3.1
postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0(rollup@4.39.0)
+ rollup-plugin-visualizer: 5.14.0(rollup@4.37.0)
std-env: 3.8.1
strip-literal: 2.1.1
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.16.1
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
vite-node: 2.1.9(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.6.1-rc)(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))
- vue: 3.5.13(typescript@5.6.1-rc)
+ vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.5.3)(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))
+ vue: 3.5.13(typescript@5.5.3)
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
@@ -25718,7 +14894,7 @@ snapshots:
'@pkgjs/parseargs@0.11.0':
optional: true
- '@pkgr/core@0.1.1': {}
+ '@pkgr/core@0.2.0': {}
'@polka/url@1.0.0-next.28': {}
@@ -26412,36 +15588,13 @@ snapshots:
'@types/react': 19.0.1
'@types/react-dom': 19.0.1
- '@redocly/ajv@8.11.2':
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js-replace: 1.0.1
-
- '@redocly/config@0.22.1': {}
-
- '@redocly/openapi-core@1.33.1(supports-color@9.4.0)':
- dependencies:
- '@redocly/ajv': 8.11.2
- '@redocly/config': 0.22.1
- colorette: 1.4.0
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
- js-levenshtein: 1.1.6
- js-yaml: 4.1.0
- minimatch: 5.1.6
- pluralize: 8.0.0
- yaml-ast-parser: 0.0.43
- transitivePeerDependencies:
- - supports-color
-
'@rollup/plugin-alias@5.1.1(rollup@3.29.5)':
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-alias@5.1.1(rollup@4.39.0)':
+ '@rollup/plugin-alias@5.1.1(rollup@4.37.0)':
optionalDependencies:
- rollup: 4.39.0
+ rollup: 4.37.0
'@rollup/plugin-commonjs@25.0.8(rollup@3.29.5)':
dependencies:
@@ -26454,9 +15607,9 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-commonjs@28.0.3(rollup@4.39.0)':
+ '@rollup/plugin-commonjs@28.0.3(rollup@4.37.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.37.0)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.4.3(picomatch@4.0.2)
@@ -26464,15 +15617,15 @@ snapshots:
magic-string: 0.30.17
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.39.0
+ rollup: 4.37.0
- '@rollup/plugin-inject@5.0.5(rollup@4.39.0)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.37.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.37.0)
estree-walker: 2.0.2
magic-string: 0.30.17
optionalDependencies:
- rollup: 4.39.0
+ rollup: 4.37.0
'@rollup/plugin-json@6.1.0(rollup@3.29.5)':
dependencies:
@@ -26480,11 +15633,11 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-json@6.1.0(rollup@4.39.0)':
+ '@rollup/plugin-json@6.1.0(rollup@4.37.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.37.0)
optionalDependencies:
- rollup: 4.39.0
+ rollup: 4.37.0
'@rollup/plugin-node-resolve@15.3.1(rollup@3.29.5)':
dependencies:
@@ -26496,15 +15649,15 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-node-resolve@16.0.1(rollup@4.39.0)':
+ '@rollup/plugin-node-resolve@16.0.1(rollup@4.37.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.37.0)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.10
optionalDependencies:
- rollup: 4.39.0
+ rollup: 4.37.0
'@rollup/plugin-replace@5.0.7(rollup@3.29.5)':
dependencies:
@@ -26520,20 +15673,20 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-replace@6.0.2(rollup@4.39.0)':
+ '@rollup/plugin-replace@6.0.2(rollup@4.37.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.37.0)
magic-string: 0.30.17
optionalDependencies:
- rollup: 4.39.0
+ rollup: 4.37.0
- '@rollup/plugin-terser@0.4.4(rollup@4.39.0)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.37.0)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
terser: 5.39.0
optionalDependencies:
- rollup: 4.39.0
+ rollup: 4.37.0
'@rollup/pluginutils@5.1.4(rollup@3.29.5)':
dependencies:
@@ -26543,13 +15696,13 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- '@rollup/pluginutils@5.1.4(rollup@4.39.0)':
+ '@rollup/pluginutils@5.1.4(rollup@4.37.0)':
dependencies:
'@types/estree': 1.0.7
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.39.0
+ rollup: 4.37.0
'@rollup/rollup-android-arm-eabi@4.31.0':
optional: true
@@ -26557,7 +15710,7 @@ snapshots:
'@rollup/rollup-android-arm-eabi@4.34.8':
optional: true
- '@rollup/rollup-android-arm-eabi@4.39.0':
+ '@rollup/rollup-android-arm-eabi@4.37.0':
optional: true
'@rollup/rollup-android-arm64@4.31.0':
@@ -26566,7 +15719,7 @@ snapshots:
'@rollup/rollup-android-arm64@4.34.8':
optional: true
- '@rollup/rollup-android-arm64@4.39.0':
+ '@rollup/rollup-android-arm64@4.37.0':
optional: true
'@rollup/rollup-darwin-arm64@4.31.0':
@@ -26575,7 +15728,7 @@ snapshots:
'@rollup/rollup-darwin-arm64@4.34.8':
optional: true
- '@rollup/rollup-darwin-arm64@4.39.0':
+ '@rollup/rollup-darwin-arm64@4.37.0':
optional: true
'@rollup/rollup-darwin-x64@4.31.0':
@@ -26584,7 +15737,7 @@ snapshots:
'@rollup/rollup-darwin-x64@4.34.8':
optional: true
- '@rollup/rollup-darwin-x64@4.39.0':
+ '@rollup/rollup-darwin-x64@4.37.0':
optional: true
'@rollup/rollup-freebsd-arm64@4.31.0':
@@ -26593,7 +15746,7 @@ snapshots:
'@rollup/rollup-freebsd-arm64@4.34.8':
optional: true
- '@rollup/rollup-freebsd-arm64@4.39.0':
+ '@rollup/rollup-freebsd-arm64@4.37.0':
optional: true
'@rollup/rollup-freebsd-x64@4.31.0':
@@ -26602,7 +15755,7 @@ snapshots:
'@rollup/rollup-freebsd-x64@4.34.8':
optional: true
- '@rollup/rollup-freebsd-x64@4.39.0':
+ '@rollup/rollup-freebsd-x64@4.37.0':
optional: true
'@rollup/rollup-linux-arm-gnueabihf@4.31.0':
@@ -26611,7 +15764,7 @@ snapshots:
'@rollup/rollup-linux-arm-gnueabihf@4.34.8':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.39.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.37.0':
optional: true
'@rollup/rollup-linux-arm-musleabihf@4.31.0':
@@ -26620,7 +15773,7 @@ snapshots:
'@rollup/rollup-linux-arm-musleabihf@4.34.8':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.39.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.37.0':
optional: true
'@rollup/rollup-linux-arm64-gnu@4.31.0':
@@ -26629,7 +15782,7 @@ snapshots:
'@rollup/rollup-linux-arm64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.39.0':
+ '@rollup/rollup-linux-arm64-gnu@4.37.0':
optional: true
'@rollup/rollup-linux-arm64-musl@4.31.0':
@@ -26638,7 +15791,7 @@ snapshots:
'@rollup/rollup-linux-arm64-musl@4.34.8':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.39.0':
+ '@rollup/rollup-linux-arm64-musl@4.37.0':
optional: true
'@rollup/rollup-linux-loongarch64-gnu@4.31.0':
@@ -26647,7 +15800,7 @@ snapshots:
'@rollup/rollup-linux-loongarch64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.39.0':
+ '@rollup/rollup-linux-loongarch64-gnu@4.37.0':
optional: true
'@rollup/rollup-linux-powerpc64le-gnu@4.31.0':
@@ -26656,7 +15809,7 @@ snapshots:
'@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.39.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.37.0':
optional: true
'@rollup/rollup-linux-riscv64-gnu@4.31.0':
@@ -26665,10 +15818,10 @@ snapshots:
'@rollup/rollup-linux-riscv64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.39.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.37.0':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.39.0':
+ '@rollup/rollup-linux-riscv64-musl@4.37.0':
optional: true
'@rollup/rollup-linux-s390x-gnu@4.31.0':
@@ -26677,7 +15830,7 @@ snapshots:
'@rollup/rollup-linux-s390x-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.39.0':
+ '@rollup/rollup-linux-s390x-gnu@4.37.0':
optional: true
'@rollup/rollup-linux-x64-gnu@4.31.0':
@@ -26686,7 +15839,7 @@ snapshots:
'@rollup/rollup-linux-x64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.39.0':
+ '@rollup/rollup-linux-x64-gnu@4.37.0':
optional: true
'@rollup/rollup-linux-x64-musl@4.31.0':
@@ -26695,7 +15848,7 @@ snapshots:
'@rollup/rollup-linux-x64-musl@4.34.8':
optional: true
- '@rollup/rollup-linux-x64-musl@4.39.0':
+ '@rollup/rollup-linux-x64-musl@4.37.0':
optional: true
'@rollup/rollup-win32-arm64-msvc@4.31.0':
@@ -26704,7 +15857,7 @@ snapshots:
'@rollup/rollup-win32-arm64-msvc@4.34.8':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.39.0':
+ '@rollup/rollup-win32-arm64-msvc@4.37.0':
optional: true
'@rollup/rollup-win32-ia32-msvc@4.31.0':
@@ -26713,7 +15866,7 @@ snapshots:
'@rollup/rollup-win32-ia32-msvc@4.34.8':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.39.0':
+ '@rollup/rollup-win32-ia32-msvc@4.37.0':
optional: true
'@rollup/rollup-win32-x64-msvc@4.31.0':
@@ -26722,7 +15875,7 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.34.8':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.39.0':
+ '@rollup/rollup-win32-x64-msvc@4.37.0':
optional: true
'@rtsao/scc@1.1.0': {}
@@ -26739,7 +15892,7 @@ snapshots:
'@sec-ant/readable-stream@0.4.1': {}
- '@seriousme/openapi-schema-validator@2.3.1':
+ '@seriousme/openapi-schema-validator@2.4.0':
dependencies:
ajv: 8.17.1
ajv-draft-04: 1.0.0(ajv@8.17.1)
@@ -26860,7 +16013,7 @@ snapshots:
'@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)))(svelte@5.19.9)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
dependencies:
'@sveltejs/vite-plugin-svelte': 5.0.3(svelte@5.19.9)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
svelte: 5.19.9
vite: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
transitivePeerDependencies:
@@ -26869,7 +16022,7 @@ snapshots:
'@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
dependencies:
'@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)))(svelte@5.19.9)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
deepmerge: 4.3.1
kleur: 4.1.5
magic-string: 0.30.17
@@ -26960,26 +16113,31 @@ snapshots:
'@tufjs/canonical-json': 2.0.0
minimatch: 9.0.5
+ '@tybys/wasm-util@0.9.0':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/parser': 7.27.0
+ '@babel/types': 7.27.0
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.20.6
+ '@types/babel__traverse': 7.20.7
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.26.10
+ '@babel/types': 7.27.0
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/parser': 7.27.0
+ '@babel/types': 7.27.0
- '@types/babel__traverse@7.20.6':
+ '@types/babel__traverse@7.20.7':
dependencies:
- '@babel/types': 7.26.10
+ '@babel/types': 7.27.0
'@types/body-parser@1.19.5':
dependencies:
@@ -27012,11 +16170,11 @@ snapshots:
'@types/eslint-scope@3.7.7':
dependencies:
'@types/eslint': 9.6.0
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
'@types/eslint@9.6.0':
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
'@types/json-schema': 7.0.15
'@types/estree@1.0.6': {}
@@ -27109,7 +16267,7 @@ snapshots:
'@types/retry@0.12.2': {}
- '@types/semver@7.5.8': {}
+ '@types/semver@7.7.0': {}
'@types/send@0.17.4':
dependencies:
@@ -27193,7 +16351,7 @@ snapshots:
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 2.0.1(typescript@5.5.3)
+ ts-api-utils: 2.1.0(typescript@5.5.3)
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
@@ -27212,7 +16370,7 @@ snapshots:
'@typescript-eslint/types': 7.15.0
'@typescript-eslint/typescript-estree': 7.15.0(typescript@5.5.3)
'@typescript-eslint/visitor-keys': 7.15.0
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
eslint: 9.17.0(jiti@2.4.2)
optionalDependencies:
typescript: 5.5.3
@@ -27225,7 +16383,7 @@ snapshots:
'@typescript-eslint/types': 8.19.1
'@typescript-eslint/typescript-estree': 8.19.1(typescript@5.5.3)
'@typescript-eslint/visitor-keys': 8.19.1
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
eslint: 9.17.0(jiti@2.4.2)
typescript: 5.5.3
transitivePeerDependencies:
@@ -27255,7 +16413,7 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.3)
'@typescript-eslint/utils': 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
eslint: 9.17.0(jiti@2.4.2)
ts-api-utils: 1.4.3(typescript@5.5.3)
optionalDependencies:
@@ -27267,9 +16425,9 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 8.19.1(typescript@5.5.3)
'@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
eslint: 9.17.0(jiti@2.4.2)
- ts-api-utils: 2.0.1(typescript@5.5.3)
+ ts-api-utils: 2.1.0(typescript@5.5.3)
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
@@ -27286,7 +16444,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
globby: 11.1.0
is-glob: 4.0.3
semver: 7.7.1
@@ -27300,7 +16458,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 7.15.0
'@typescript-eslint/visitor-keys': 7.15.0
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
@@ -27315,7 +16473,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
@@ -27330,21 +16488,21 @@ snapshots:
dependencies:
'@typescript-eslint/types': 8.19.1
'@typescript-eslint/visitor-keys': 8.19.1
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.7.1
- ts-api-utils: 2.0.1(typescript@5.5.3)
+ ts-api-utils: 2.1.0(typescript@5.5.3)
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
'@typescript-eslint/utils@5.62.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.5.0(eslint@9.17.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.17.0(jiti@2.4.2))
'@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
+ '@types/semver': 7.7.0
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3)
@@ -27357,7 +16515,7 @@ snapshots:
'@typescript-eslint/utils@7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.5.0(eslint@9.17.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.17.0(jiti@2.4.2))
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.3)
@@ -27368,7 +16526,7 @@ snapshots:
'@typescript-eslint/utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.5.0(eslint@9.17.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.17.0(jiti@2.4.2))
'@typescript-eslint/scope-manager': 8.19.1
'@typescript-eslint/types': 8.19.1
'@typescript-eslint/typescript-estree': 8.19.1(typescript@5.5.3)
@@ -27435,10 +16593,57 @@ snapshots:
unhead: 1.11.20
vue: 3.5.13(typescript@5.6.1-rc)
- '@vercel/nft@0.29.2(encoding@0.1.13)(rollup@4.39.0)':
+ '@unrs/resolver-binding-darwin-arm64@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-darwin-x64@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-freebsd-x64@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-arm64-gnu@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-arm64-musl@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-s390x-gnu@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-x64-gnu@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-x64-musl@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-wasm32-wasi@1.3.2':
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.7
+ optional: true
+
+ '@unrs/resolver-binding-win32-arm64-msvc@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-win32-ia32-msvc@1.3.2':
+ optional: true
+
+ '@unrs/resolver-binding-win32-x64-msvc@1.3.2':
+ optional: true
+
+ '@vercel/nft@0.29.2(encoding@0.1.13)(rollup@4.37.0)':
dependencies:
'@mapbox/node-pre-gyp': 2.0.0(encoding@0.1.13)
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.37.0)
acorn: 8.14.1
acorn-import-attributes: 1.9.5(acorn@8.14.1)
async-sema: 3.1.1
@@ -27469,22 +16674,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))':
+ '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))':
dependencies:
'@babel/core': 7.26.10
- '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10)
+ '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10)
'@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.10)
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
vue: 3.5.13(typescript@5.5.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))':
+ '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))':
dependencies:
'@babel/core': 7.26.10
- '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10)
+ '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10)
'@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.10)
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
vue: 3.5.13(typescript@5.6.1-rc)
transitivePeerDependencies:
- supports-color
@@ -27492,26 +16697,21 @@ snapshots:
'@vitejs/plugin-vue-jsx@4.1.1(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
dependencies:
'@babel/core': 7.26.10
- '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10)
+ '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10)
'@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.10)
vite: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
vue: 3.5.13(typescript@5.5.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.2.1(vite@5.4.14(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))':
- dependencies:
- vite: 5.4.14(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
- vue: 3.5.13(typescript@5.5.3)
-
- '@vitejs/plugin-vue@5.2.1(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))':
+ '@vitejs/plugin-vue@5.2.1(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))':
dependencies:
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
vue: 3.5.13(typescript@5.5.3)
- '@vitejs/plugin-vue@5.2.1(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))':
+ '@vitejs/plugin-vue@5.2.1(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.6.1-rc))':
dependencies:
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
vue: 3.5.13(typescript@5.6.1-rc)
'@vitejs/plugin-vue@5.2.1(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
@@ -27523,7 +16723,7 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
@@ -27608,9 +16808,9 @@ snapshots:
'@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/template': 7.27.0
+ '@babel/traverse': 7.27.0
+ '@babel/types': 7.27.0
'@vue/babel-helper-vue-transform-on': 1.4.0
'@vue/babel-plugin-resolve-type': 1.4.0(@babel/core@7.26.10)
'@vue/shared': 3.5.13
@@ -27625,14 +16825,14 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/parser': 7.26.10
+ '@babel/parser': 7.27.0
'@vue/compiler-sfc': 3.5.13
transitivePeerDependencies:
- supports-color
'@vue/compiler-core@3.5.13':
dependencies:
- '@babel/parser': 7.26.10
+ '@babel/parser': 7.27.0
'@vue/shared': 3.5.13
entities: 4.5.0
estree-walker: 2.0.2
@@ -27645,7 +16845,7 @@ snapshots:
'@vue/compiler-sfc@3.5.13':
dependencies:
- '@babel/parser': 7.26.10
+ '@babel/parser': 7.27.0
'@vue/compiler-core': 3.5.13
'@vue/compiler-dom': 3.5.13
'@vue/compiler-ssr': 3.5.13
@@ -27671,9 +16871,21 @@ snapshots:
dependencies:
'@vue/devtools-kit': 7.7.2
+ '@vue/devtools-core@7.6.8(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
+ dependencies:
+ '@vue/devtools-kit': 7.6.8
+ '@vue/devtools-shared': 7.7.2
+ mitt: 3.0.1
+ nanoid: 5.1.5
+ pathe: 1.1.2
+ vite-hot-client: 0.2.4(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
+ vue: 3.5.13(typescript@5.5.3)
+ transitivePeerDependencies:
+ - vite
+
'@vue/devtools-core@7.6.8(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))':
dependencies:
- '@vue/devtools-kit': 7.7.2
+ '@vue/devtools-kit': 7.6.8
'@vue/devtools-shared': 7.7.2
mitt: 3.0.1
nanoid: 5.1.5
@@ -27685,7 +16897,7 @@ snapshots:
'@vue/devtools-core@7.6.8(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))':
dependencies:
- '@vue/devtools-kit': 7.7.2
+ '@vue/devtools-kit': 7.6.8
'@vue/devtools-shared': 7.7.2
mitt: 3.0.1
nanoid: 5.1.5
@@ -27700,7 +16912,7 @@ snapshots:
'@vue/devtools-kit': 7.7.2
'@vue/devtools-shared': 7.7.2
mitt: 3.0.1
- nanoid: 5.1.3
+ nanoid: 5.1.5
pathe: 2.0.3
vite-hot-client: 0.2.4(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
vue: 3.5.13(typescript@5.5.3)
@@ -27735,7 +16947,7 @@ snapshots:
dependencies:
eslint: 9.17.0(jiti@2.4.2)
eslint-config-prettier: 9.1.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-prettier: 5.2.3(@types/eslint@9.6.0)(eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2)
+ eslint-plugin-prettier: 5.2.5(@types/eslint@9.6.0)(eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2)
prettier: 3.4.2
transitivePeerDependencies:
- '@types/eslint'
@@ -27997,21 +17209,21 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- algoliasearch@5.21.0:
- dependencies:
- '@algolia/client-abtesting': 5.21.0
- '@algolia/client-analytics': 5.21.0
- '@algolia/client-common': 5.21.0
- '@algolia/client-insights': 5.21.0
- '@algolia/client-personalization': 5.21.0
- '@algolia/client-query-suggestions': 5.21.0
- '@algolia/client-search': 5.21.0
- '@algolia/ingestion': 1.21.0
- '@algolia/monitoring': 1.21.0
- '@algolia/recommend': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ algoliasearch@5.23.0:
+ dependencies:
+ '@algolia/client-abtesting': 5.23.0
+ '@algolia/client-analytics': 5.23.0
+ '@algolia/client-common': 5.23.0
+ '@algolia/client-insights': 5.23.0
+ '@algolia/client-personalization': 5.23.0
+ '@algolia/client-query-suggestions': 5.23.0
+ '@algolia/client-search': 5.23.0
+ '@algolia/ingestion': 1.23.0
+ '@algolia/monitoring': 1.23.0
+ '@algolia/recommend': 5.23.0
+ '@algolia/requester-browser-xhr': 5.23.0
+ '@algolia/requester-fetch': 5.23.0
+ '@algolia/requester-node-http': 5.23.0
alien-signals@0.4.14: {}
@@ -28109,9 +17321,10 @@ snapshots:
es-object-atoms: 1.1.1
es-shim-unscopables: 1.1.0
- array.prototype.findlastindex@1.2.5:
+ array.prototype.findlastindex@1.2.6:
dependencies:
call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
es-abstract: 1.23.9
es-errors: 1.3.0
@@ -28154,7 +17367,7 @@ snapshots:
ast-kit@1.4.2:
dependencies:
- '@babel/parser': 7.26.10
+ '@babel/parser': 7.27.0
pathe: 2.0.3
ast-types-flow@0.0.8: {}
@@ -28165,7 +17378,7 @@ snapshots:
ast-walker-scope@0.6.2:
dependencies:
- '@babel/parser': 7.26.10
+ '@babel/parser': 7.27.0
ast-kit: 1.4.2
async-function@1.0.0: {}
@@ -28181,7 +17394,7 @@ snapshots:
autoprefixer@10.4.19(postcss@8.4.41):
dependencies:
browserslist: 4.24.4
- caniuse-lite: 1.0.30001703
+ caniuse-lite: 1.0.30001707
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -28191,7 +17404,7 @@ snapshots:
autoprefixer@10.4.20(postcss@8.4.41):
dependencies:
browserslist: 4.24.4
- caniuse-lite: 1.0.30001703
+ caniuse-lite: 1.0.30001707
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -28201,7 +17414,7 @@ snapshots:
autoprefixer@10.4.20(postcss@8.5.2):
dependencies:
browserslist: 4.24.4
- caniuse-lite: 1.0.30001703
+ caniuse-lite: 1.0.30001707
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -28211,7 +17424,7 @@ snapshots:
autoprefixer@10.4.20(postcss@8.5.3):
dependencies:
browserslist: 4.24.4
- caniuse-lite: 1.0.30001703
+ caniuse-lite: 1.0.30001707
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -28224,7 +17437,7 @@ snapshots:
avvio@9.1.0:
dependencies:
- '@fastify/error': 4.0.0
+ '@fastify/error': 4.1.0
fastq: 1.19.1
axe-core@4.10.3: {}
@@ -28248,11 +17461,11 @@ snapshots:
schema-utils: 4.3.0
webpack: 5.98.0(esbuild@0.24.2)
- babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.9):
+ babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.9):
dependencies:
'@babel/compat-data': 7.26.8
'@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -28260,7 +17473,7 @@ snapshots:
babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.9):
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.9)
core-js-compat: 3.41.0
transitivePeerDependencies:
- supports-color
@@ -28268,15 +17481,15 @@ snapshots:
babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.9):
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.9)
core-js-compat: 3.41.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.9):
+ babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.26.9):
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
@@ -28387,8 +17600,8 @@ snapshots:
browserslist@4.24.4:
dependencies:
- caniuse-lite: 1.0.30001703
- electron-to-chromium: 1.5.114
+ caniuse-lite: 1.0.30001707
+ electron-to-chromium: 1.5.126
node-releases: 2.0.19
update-browserslist-db: 1.1.3(browserslist@4.24.4)
@@ -28515,13 +17728,11 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
browserslist: 4.24.4
- caniuse-lite: 1.0.30001709
+ caniuse-lite: 1.0.30001707
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001703: {}
-
- caniuse-lite@1.0.30001709: {}
+ caniuse-lite@1.0.30001707: {}
ccount@2.0.1: {}
@@ -28542,8 +17753,6 @@ snapshots:
chalk@5.4.1: {}
- change-case@5.4.4: {}
-
char-regex@1.0.2: {}
character-entities-html4@2.1.0: {}
@@ -28589,7 +17798,7 @@ snapshots:
citty@0.1.6:
dependencies:
- consola: 3.4.0
+ consola: 3.4.2
cjs-module-lexer@1.4.3: {}
@@ -28679,8 +17888,6 @@ snapshots:
colord@2.9.3: {}
- colorette@1.4.0: {}
-
colorette@2.0.20: {}
combined-stream@1.0.8:
@@ -28755,7 +17962,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- consola@3.4.0: {}
+ consola@3.4.2: {}
content-disposition@0.5.4:
dependencies:
@@ -28830,7 +18037,7 @@ snapshots:
croner@9.0.0: {}
- cronstrue@2.56.0: {}
+ cronstrue@2.57.0: {}
cross-spawn@5.1.0:
dependencies:
@@ -28958,7 +18165,7 @@ snapshots:
data-urls@5.0.0:
dependencies:
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.1
+ whatwg-url: 14.2.0
data-view-buffer@1.0.2:
dependencies:
@@ -29002,11 +18209,9 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.4.0(supports-color@9.4.0):
+ debug@4.4.0:
dependencies:
ms: 2.1.3
- optionalDependencies:
- supports-color: 9.4.0
decimal.js@10.5.0: {}
@@ -29136,7 +18341,7 @@ snapshots:
dot-prop@9.0.0:
dependencies:
- type-fest: 4.37.0
+ type-fest: 4.38.0
dotenv@16.4.7: {}
@@ -29161,7 +18366,7 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.5.114: {}
+ electron-to-chromium@1.5.126: {}
emoji-regex-xs@1.0.0: {}
@@ -29456,33 +18661,33 @@ snapshots:
'@esbuild/win32-ia32': 0.25.0
'@esbuild/win32-x64': 0.25.0
- esbuild@0.25.2:
+ esbuild@0.25.1:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.2
- '@esbuild/android-arm': 0.25.2
- '@esbuild/android-arm64': 0.25.2
- '@esbuild/android-x64': 0.25.2
- '@esbuild/darwin-arm64': 0.25.2
- '@esbuild/darwin-x64': 0.25.2
- '@esbuild/freebsd-arm64': 0.25.2
- '@esbuild/freebsd-x64': 0.25.2
- '@esbuild/linux-arm': 0.25.2
- '@esbuild/linux-arm64': 0.25.2
- '@esbuild/linux-ia32': 0.25.2
- '@esbuild/linux-loong64': 0.25.2
- '@esbuild/linux-mips64el': 0.25.2
- '@esbuild/linux-ppc64': 0.25.2
- '@esbuild/linux-riscv64': 0.25.2
- '@esbuild/linux-s390x': 0.25.2
- '@esbuild/linux-x64': 0.25.2
- '@esbuild/netbsd-arm64': 0.25.2
- '@esbuild/netbsd-x64': 0.25.2
- '@esbuild/openbsd-arm64': 0.25.2
- '@esbuild/openbsd-x64': 0.25.2
- '@esbuild/sunos-x64': 0.25.2
- '@esbuild/win32-arm64': 0.25.2
- '@esbuild/win32-ia32': 0.25.2
- '@esbuild/win32-x64': 0.25.2
+ '@esbuild/aix-ppc64': 0.25.1
+ '@esbuild/android-arm': 0.25.1
+ '@esbuild/android-arm64': 0.25.1
+ '@esbuild/android-x64': 0.25.1
+ '@esbuild/darwin-arm64': 0.25.1
+ '@esbuild/darwin-x64': 0.25.1
+ '@esbuild/freebsd-arm64': 0.25.1
+ '@esbuild/freebsd-x64': 0.25.1
+ '@esbuild/linux-arm': 0.25.1
+ '@esbuild/linux-arm64': 0.25.1
+ '@esbuild/linux-ia32': 0.25.1
+ '@esbuild/linux-loong64': 0.25.1
+ '@esbuild/linux-mips64el': 0.25.1
+ '@esbuild/linux-ppc64': 0.25.1
+ '@esbuild/linux-riscv64': 0.25.1
+ '@esbuild/linux-s390x': 0.25.1
+ '@esbuild/linux-x64': 0.25.1
+ '@esbuild/netbsd-arm64': 0.25.1
+ '@esbuild/netbsd-x64': 0.25.1
+ '@esbuild/openbsd-arm64': 0.25.1
+ '@esbuild/openbsd-x64': 0.25.1
+ '@esbuild/sunos-x64': 0.25.1
+ '@esbuild/win32-arm64': 0.25.1
+ '@esbuild/win32-ia32': 0.25.1
+ '@esbuild/win32-x64': 0.25.1
escalade@3.2.0: {}
@@ -29513,8 +18718,8 @@ snapshots:
'@typescript-eslint/parser': 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
eslint: 9.17.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.8.5(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.8.5)(eslint@9.17.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.17.0(jiti@2.4.2))
eslint-plugin-react: 7.37.4(eslint@9.17.0(jiti@2.4.2))
eslint-plugin-react-hooks: 5.2.0(eslint@9.17.0(jiti@2.4.2))
@@ -29537,44 +18742,44 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)):
+ eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
- debug: 4.4.0(supports-color@9.4.0)
- enhanced-resolve: 5.18.1
+ debug: 4.4.0
eslint: 9.17.0(jiti@2.4.2)
get-tsconfig: 4.10.0
- is-bun-module: 1.3.0
- stable-hash: 0.0.4
+ is-bun-module: 2.0.0
+ stable-hash: 0.0.5
tinyglobby: 0.2.12
+ unrs-resolver: 1.3.2
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.8.5)(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.5)(eslint@9.17.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3)
eslint: 9.17.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.8.5(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.8.5)(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
+ array.prototype.findlastindex: 1.2.6
array.prototype.flat: 1.3.3
array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
eslint: 9.17.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.5)(eslint@9.17.0(jiti@2.4.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.15.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.5.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -29611,12 +18816,12 @@ snapshots:
safe-regex-test: 1.1.0
string.prototype.includes: 2.0.1
- eslint-plugin-prettier@5.2.3(@types/eslint@9.6.0)(eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2):
+ eslint-plugin-prettier@5.2.5(@types/eslint@9.6.0)(eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2):
dependencies:
eslint: 9.17.0(jiti@2.4.2)
prettier: 3.4.2
prettier-linter-helpers: 1.0.0
- synckit: 0.9.2
+ synckit: 0.10.3
optionalDependencies:
'@types/eslint': 9.6.0
eslint-config-prettier: 9.1.0(eslint@9.17.0(jiti@2.4.2))
@@ -29646,7 +18851,7 @@ snapshots:
hasown: 2.0.2
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
- object.entries: 1.1.8
+ object.entries: 1.1.9
object.fromentries: 2.0.8
object.values: 1.2.1
prop-types: 15.8.1
@@ -29673,9 +18878,9 @@ snapshots:
eslint-plugin-svelte@2.36.0(eslint@9.17.0(jiti@2.4.2))(svelte@5.19.9)(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.5.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.5.0(eslint@9.17.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.17.0(jiti@2.4.2))
'@jridgewell/sourcemap-codec': 1.5.0
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
eslint: 9.17.0(jiti@2.4.2)
eslint-compat-utils: 0.5.1(eslint@9.17.0(jiti@2.4.2))
esutils: 2.0.3
@@ -29705,7 +18910,7 @@ snapshots:
eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.5.0(eslint@9.17.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.17.0(jiti@2.4.2))
eslint: 9.17.0(jiti@2.4.2)
globals: 13.24.0
natural-compare: 1.4.0
@@ -29740,22 +18945,22 @@ snapshots:
eslint@9.17.0(jiti@2.4.2):
dependencies:
- '@eslint-community/eslint-utils': 4.5.0(eslint@9.17.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.17.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.19.2
'@eslint/core': 0.9.1
- '@eslint/eslintrc': 3.3.0
+ '@eslint/eslintrc': 3.3.1
'@eslint/js': 9.17.0
'@eslint/plugin-kit': 0.2.7
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.2
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
'@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
escape-string-regexp: 4.0.0
eslint-scope: 8.3.0
eslint-visitor-keys: 4.2.0
@@ -29821,7 +19026,7 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
esutils@2.0.3: {}
@@ -29969,7 +19174,7 @@ snapshots:
extract-zip@2.0.1:
dependencies:
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -30028,7 +19233,7 @@ snapshots:
fastify-openapi-glue@4.8.0:
dependencies:
- '@seriousme/openapi-schema-validator': 2.3.1
+ '@seriousme/openapi-schema-validator': 2.4.0
fastify-plugin: 5.0.1
js-yaml: 4.1.0
minimist: 1.2.8
@@ -30038,12 +19243,12 @@ snapshots:
fastify@5.2.0:
dependencies:
'@fastify/ajv-compiler': 4.0.2
- '@fastify/error': 4.0.0
+ '@fastify/error': 4.1.0
'@fastify/fast-json-stringify-compiler': 5.0.2
abstract-logging: 2.0.1
avvio: 9.1.0
fast-json-stringify: 6.0.1
- find-my-way: 9.2.0
+ find-my-way: 9.3.0
light-my-request: 6.6.0
pino: 9.6.0
process-warning: 4.0.1
@@ -30119,11 +19324,11 @@ snapshots:
common-path-prefix: 3.0.0
pkg-dir: 7.0.0
- find-my-way@9.2.0:
+ find-my-way@9.3.0:
dependencies:
fast-deep-equal: 3.1.3
fast-querystring: 1.1.2
- safe-regex2: 4.0.1
+ safe-regex2: 5.0.0
find-up@4.1.0:
dependencies:
@@ -30155,7 +19360,7 @@ snapshots:
follow-redirects@1.15.9(debug@4.4.0):
optionalDependencies:
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
for-each@0.3.5:
dependencies:
@@ -30284,14 +19489,14 @@ snapshots:
dependencies:
basic-ftp: 5.0.5
data-uri-to-buffer: 6.0.2
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
giget@1.2.5:
dependencies:
citty: 0.1.6
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
node-fetch-native: 1.6.6
nypm: 0.5.4
@@ -30301,14 +19506,12 @@ snapshots:
giget@2.0.0:
dependencies:
citty: 0.1.6
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
node-fetch-native: 1.6.6
nypm: 0.6.0
pathe: 2.0.3
- git-config-path@2.0.0: {}
-
git-up@8.0.1:
dependencies:
is-ssh: 1.4.1
@@ -30539,7 +19742,7 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -30558,7 +19761,7 @@ snapshots:
http-proxy-middleware@3.0.3:
dependencies:
'@types/http-proxy': 1.17.16
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
http-proxy: 1.18.1(debug@4.4.0)
is-glob: 4.0.3
is-plain-object: 5.0.0
@@ -30576,10 +19779,10 @@ snapshots:
http-shutdown@1.2.2: {}
- https-proxy-agent@7.0.6(supports-color@9.4.0):
+ https-proxy-agent@7.0.6:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -30626,7 +19829,7 @@ snapshots:
image-size@0.5.5:
optional: true
- immutable@5.0.3: {}
+ immutable@5.1.1: {}
import-fresh@3.3.1:
dependencies:
@@ -30641,24 +19844,22 @@ snapshots:
mlly: 1.7.4
mocked-exports: 0.1.1
pathe: 2.0.3
- unplugin: 2.2.0
+ unplugin: 2.2.2
transitivePeerDependencies:
- rollup
- impound@0.2.2(rollup@4.39.0):
+ impound@0.2.2(rollup@4.37.0):
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.37.0)
mlly: 1.7.4
mocked-exports: 0.1.1
pathe: 2.0.3
- unplugin: 2.2.0
+ unplugin: 2.2.2
transitivePeerDependencies:
- rollup
imurmurhash@0.1.4: {}
- index-to-position@0.1.2: {}
-
inflight@1.0.6:
dependencies:
once: 1.4.0
@@ -30684,7 +19885,7 @@ snapshots:
dependencies:
'@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
denque: 2.1.0
lodash.defaults: 4.2.0
lodash.isarguments: 3.1.0
@@ -30736,7 +19937,7 @@ snapshots:
call-bound: 1.0.4
has-tostringtag: 1.0.2
- is-bun-module@1.3.0:
+ is-bun-module@2.0.0:
dependencies:
semver: 7.7.1
@@ -30830,7 +20031,7 @@ snapshots:
is-reference@3.0.3:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
is-regex@1.2.1:
dependencies:
@@ -30924,7 +20125,7 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
'@babel/core': 7.26.10
- '@babel/parser': 7.26.10
+ '@babel/parser': 7.27.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -30933,8 +20134,8 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.26.10
- '@babel/parser': 7.26.10
+ '@babel/core': 7.26.9
+ '@babel/parser': 7.27.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.7.1
@@ -30949,7 +20150,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
@@ -30958,7 +20159,7 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
- supports-color
@@ -31009,8 +20210,6 @@ snapshots:
js-cookie@3.0.5: {}
- js-levenshtein@1.1.6: {}
-
js-tokens@4.0.0: {}
js-tokens@9.0.1: {}
@@ -31034,9 +20233,9 @@ snapshots:
form-data: 4.0.2
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
+ https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.18
+ nwsapi: 2.2.19
parse5: 7.2.1
rrweb-cssom: 0.6.0
saxes: 6.0.0
@@ -31046,7 +20245,7 @@ snapshots:
webidl-conversions: 7.0.0
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.1
+ whatwg-url: 14.2.0
ws: 8.18.1
xml-name-validator: 5.0.0
transitivePeerDependencies:
@@ -31247,7 +20446,7 @@ snapshots:
dependencies:
chalk: 5.4.1
commander: 12.1.0
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
execa: 8.0.1
lilconfig: 3.1.3
listr2: 8.2.5
@@ -31264,7 +20463,7 @@ snapshots:
'@parcel/watcher-wasm': 2.5.1
citty: 0.1.6
clipboardy: 4.0.0
- consola: 3.4.0
+ consola: 3.4.2
crossws: 0.3.4
defu: 6.1.4
get-port-please: 3.1.2
@@ -31325,7 +20524,7 @@ snapshots:
dependencies:
mlly: 1.7.4
pkg-types: 2.1.0
- quansync: 0.2.8
+ quansync: 0.2.10
locate-character@3.0.0: {}
@@ -31375,7 +20574,7 @@ snapshots:
log4js@6.9.1:
dependencies:
date-format: 4.0.14
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
flatted: 3.3.3
rfdc: 1.4.1
streamroller: 3.1.5
@@ -31427,8 +20626,8 @@ snapshots:
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/parser': 7.27.0
+ '@babel/types': 7.27.0
source-map-js: 1.2.1
make-dir@2.1.0:
@@ -31709,184 +20908,75 @@ snapshots:
nanoid@3.3.11: {}
- nanoid@3.3.9: {}
-
- nanoid@5.1.3: {}
-
nanoid@5.1.5: {}
nanotar@0.1.1: {}
natural-compare-lite@1.4.0: {}
- natural-compare@1.4.0: {}
-
- needle@3.3.1:
- dependencies:
- iconv-lite: 0.6.3
- sax: 1.4.1
- optional: true
-
- negotiator@0.6.3: {}
-
- negotiator@0.6.4: {}
-
- negotiator@1.0.0: {}
-
- neo-async@2.6.2: {}
-
- netmask@2.0.2: {}
-
- next@15.2.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0):
- dependencies:
- '@next/env': 15.2.4
- '@swc/counter': 0.1.3
- '@swc/helpers': 0.5.15
- busboy: 1.6.0
- caniuse-lite: 1.0.30001709
- postcss: 8.4.31
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- styled-jsx: 5.1.6(react@19.0.0)
- optionalDependencies:
- '@next/swc-darwin-arm64': 15.2.4
- '@next/swc-darwin-x64': 15.2.4
- '@next/swc-linux-arm64-gnu': 15.2.4
- '@next/swc-linux-arm64-musl': 15.2.4
- '@next/swc-linux-x64-gnu': 15.2.4
- '@next/swc-linux-x64-musl': 15.2.4
- '@next/swc-win32-arm64-msvc': 15.2.4
- '@next/swc-win32-x64-msvc': 15.2.4
- sass: 1.85.0
- sharp: 0.33.5
- transitivePeerDependencies:
- - '@babel/core'
- - babel-plugin-macros
-
- nitropack@2.11.6(encoding@0.1.13)(typescript@5.5.3):
- dependencies:
- '@cloudflare/kv-asset-handler': 0.3.4
- '@netlify/functions': 3.0.0
- '@rollup/plugin-alias': 5.1.1(rollup@4.39.0)
- '@rollup/plugin-commonjs': 28.0.3(rollup@4.39.0)
- '@rollup/plugin-inject': 5.0.5(rollup@4.39.0)
- '@rollup/plugin-json': 6.1.0(rollup@4.39.0)
- '@rollup/plugin-node-resolve': 16.0.1(rollup@4.39.0)
- '@rollup/plugin-replace': 6.0.2(rollup@4.39.0)
- '@rollup/plugin-terser': 0.4.4(rollup@4.39.0)
- '@types/http-proxy': 1.17.16
- '@vercel/nft': 0.29.2(encoding@0.1.13)(rollup@4.39.0)
- archiver: 7.0.1
- c12: 3.0.2(magicast@0.3.5)
- chokidar: 4.0.3
- citty: 0.1.6
- compatx: 0.1.8
- confbox: 0.2.1
- consola: 3.4.0
- cookie-es: 2.0.0
- croner: 9.0.0
- crossws: 0.3.4
- db0: 0.3.1
- defu: 6.1.4
- destr: 2.0.3
- dot-prop: 9.0.0
- esbuild: 0.25.2
- escape-string-regexp: 5.0.0
- etag: 1.8.1
- exsolve: 1.0.4
- fs-extra: 11.3.0
- globby: 14.1.0
- gzip-size: 7.0.0
- h3: 1.15.1
- hookable: 5.5.3
- httpxy: 0.1.7
- ioredis: 5.6.0
- jiti: 2.4.2
- klona: 2.0.6
- knitwork: 1.2.0
- listhen: 1.9.0
- magic-string: 0.30.17
- magicast: 0.3.5
- mime: 4.0.6
- mlly: 1.7.4
- node-fetch-native: 1.6.6
- node-mock-http: 1.0.0
- ofetch: 1.4.1
- ohash: 2.0.11
- openapi-typescript: 7.6.1(typescript@5.5.3)
- pathe: 2.0.3
- perfect-debounce: 1.0.0
- pkg-types: 2.1.0
- pretty-bytes: 6.1.1
- radix3: 1.1.2
- rollup: 4.39.0
- rollup-plugin-visualizer: 5.14.0(rollup@4.39.0)
- scule: 1.3.0
- semver: 7.7.1
- serve-placeholder: 2.0.2
- serve-static: 1.16.2
- source-map: 0.7.4
- std-env: 3.8.1
- ufo: 1.5.4
- ultrahtml: 1.5.3
- uncrypto: 0.1.3
- unctx: 2.4.1
- unenv: 2.0.0-rc.14
- unimport: 4.1.2
- unplugin-utils: 0.2.4
- unstorage: 1.15.0(db0@0.3.1)(ioredis@5.6.0)
- untyped: 2.0.0
- unwasm: 0.3.9
- youch: 4.1.0-beta.6
- youch-core: 0.3.2
+ natural-compare@1.4.0: {}
+
+ needle@3.3.1:
+ dependencies:
+ iconv-lite: 0.6.3
+ sax: 1.4.1
+ optional: true
+
+ negotiator@0.6.3: {}
+
+ negotiator@0.6.4: {}
+
+ negotiator@1.0.0: {}
+
+ neo-async@2.6.2: {}
+
+ netmask@2.0.2: {}
+
+ next@15.2.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0):
+ dependencies:
+ '@next/env': 15.2.4
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.15
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001707
+ postcss: 8.4.31
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ styled-jsx: 5.1.6(react@19.0.0)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.2.4
+ '@next/swc-darwin-x64': 15.2.4
+ '@next/swc-linux-arm64-gnu': 15.2.4
+ '@next/swc-linux-arm64-musl': 15.2.4
+ '@next/swc-linux-x64-gnu': 15.2.4
+ '@next/swc-linux-x64-musl': 15.2.4
+ '@next/swc-win32-arm64-msvc': 15.2.4
+ '@next/swc-win32-x64-msvc': 15.2.4
+ sass: 1.85.0
+ sharp: 0.33.5
transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@electric-sql/pglite'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/kv'
- - aws4fetch
- - better-sqlite3
- - drizzle-orm
- - encoding
- - idb-keyval
- - mysql2
- - rolldown
- - sqlite3
- - supports-color
- - typescript
- - uploadthing
+ - '@babel/core'
+ - babel-plugin-macros
- nitropack@2.11.6(encoding@0.1.13)(typescript@5.6.1-rc):
- dependencies:
- '@cloudflare/kv-asset-handler': 0.3.4
- '@netlify/functions': 3.0.0
- '@rollup/plugin-alias': 5.1.1(rollup@4.39.0)
- '@rollup/plugin-commonjs': 28.0.3(rollup@4.39.0)
- '@rollup/plugin-inject': 5.0.5(rollup@4.39.0)
- '@rollup/plugin-json': 6.1.0(rollup@4.39.0)
- '@rollup/plugin-node-resolve': 16.0.1(rollup@4.39.0)
- '@rollup/plugin-replace': 6.0.2(rollup@4.39.0)
- '@rollup/plugin-terser': 0.4.4(rollup@4.39.0)
- '@types/http-proxy': 1.17.16
- '@vercel/nft': 0.29.2(encoding@0.1.13)(rollup@4.39.0)
+ nitropack@2.11.8(encoding@0.1.13):
+ dependencies:
+ '@cloudflare/kv-asset-handler': 0.4.0
+ '@netlify/functions': 3.0.4
+ '@rollup/plugin-alias': 5.1.1(rollup@4.37.0)
+ '@rollup/plugin-commonjs': 28.0.3(rollup@4.37.0)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.37.0)
+ '@rollup/plugin-json': 6.1.0(rollup@4.37.0)
+ '@rollup/plugin-node-resolve': 16.0.1(rollup@4.37.0)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.37.0)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.37.0)
+ '@vercel/nft': 0.29.2(encoding@0.1.13)(rollup@4.37.0)
archiver: 7.0.1
c12: 3.0.2(magicast@0.3.5)
chokidar: 4.0.3
citty: 0.1.6
compatx: 0.1.8
confbox: 0.2.1
- consola: 3.4.0
+ consola: 3.4.2
cookie-es: 2.0.0
croner: 9.0.0
crossws: 0.3.4
@@ -31894,11 +20984,10 @@ snapshots:
defu: 6.1.4
destr: 2.0.3
dot-prop: 9.0.0
- esbuild: 0.25.2
+ esbuild: 0.25.1
escape-string-regexp: 5.0.0
etag: 1.8.1
exsolve: 1.0.4
- fs-extra: 11.3.0
globby: 14.1.0
gzip-size: 7.0.0
h3: 1.15.1
@@ -31917,14 +21006,13 @@ snapshots:
node-mock-http: 1.0.0
ofetch: 1.4.1
ohash: 2.0.11
- openapi-typescript: 7.6.1(typescript@5.6.1-rc)
pathe: 2.0.3
perfect-debounce: 1.0.0
pkg-types: 2.1.0
pretty-bytes: 6.1.1
radix3: 1.1.2
- rollup: 4.39.0
- rollup-plugin-visualizer: 5.14.0(rollup@4.39.0)
+ rollup: 4.37.0
+ rollup-plugin-visualizer: 5.14.0(rollup@4.37.0)
scule: 1.3.0
semver: 7.7.1
serve-placeholder: 2.0.2
@@ -31935,7 +21023,7 @@ snapshots:
ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.4.1
- unenv: 2.0.0-rc.14
+ unenv: 2.0.0-rc.15
unimport: 4.1.2
unplugin-utils: 0.2.4
unstorage: 1.15.0(db0@0.3.1)(ioredis@5.6.0)
@@ -31968,7 +21056,6 @@ snapshots:
- rolldown
- sqlite3
- supports-color
- - typescript
- uploadthing
node-addon-api@6.1.0:
@@ -32109,7 +21196,7 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nuxi@3.22.5: {}
+ nuxi@3.23.1: {}
nuxt@3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
dependencies:
@@ -32117,7 +21204,7 @@ snapshots:
'@nuxt/devtools': 1.7.0(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))
'@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@3.29.5)
'@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@3.29.5)
- '@nuxt/telemetry': 2.6.5(magicast@0.3.5)
+ '@nuxt/telemetry': 2.6.6(magicast@0.3.5)
'@nuxt/vite-builder': 3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vue@3.5.13(typescript@5.6.1-rc))
'@unhead/dom': 1.11.20
'@unhead/shared': 1.11.20
@@ -32128,7 +21215,7 @@ snapshots:
c12: 2.0.1(magicast@0.3.5)
chokidar: 4.0.3
compatx: 0.1.8
- consola: 3.4.0
+ consola: 3.4.2
cookie-es: 1.2.2
defu: 6.1.4
destr: 2.0.3
@@ -32148,8 +21235,8 @@ snapshots:
magic-string: 0.30.17
mlly: 1.7.4
nanotar: 0.1.1
- nitropack: 2.11.6(encoding@0.1.13)(typescript@5.6.1-rc)
- nuxi: 3.22.5
+ nitropack: 2.11.8(encoding@0.1.13)
+ nuxi: 3.23.1
nypm: 0.3.12
ofetch: 1.4.1
ohash: 1.1.6
@@ -32231,14 +21318,14 @@ snapshots:
- vue-tsc
- xml2js
- nuxt@3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.39.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ nuxt@3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.37.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.7.0(rollup@4.39.0)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
- '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.39.0)
- '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.39.0)
- '@nuxt/telemetry': 2.6.5(magicast@0.3.5)
- '@nuxt/vite-builder': 3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.39.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3))
+ '@nuxt/devtools': 1.7.0(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.37.0)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.37.0)
+ '@nuxt/telemetry': 2.6.6(magicast@0.3.5)
+ '@nuxt/vite-builder': 3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.37.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3))
'@unhead/dom': 1.11.20
'@unhead/shared': 1.11.20
'@unhead/ssr': 1.11.20
@@ -32248,7 +21335,7 @@ snapshots:
c12: 2.0.1(magicast@0.3.5)
chokidar: 4.0.3
compatx: 0.1.8
- consola: 3.4.0
+ consola: 3.4.2
cookie-es: 1.2.2
defu: 6.1.4
destr: 2.0.3
@@ -32261,15 +21348,15 @@ snapshots:
h3: 1.15.1
hookable: 5.5.3
ignore: 6.0.2
- impound: 0.2.2(rollup@4.39.0)
+ impound: 0.2.2(rollup@4.37.0)
jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
magic-string: 0.30.17
mlly: 1.7.4
nanotar: 0.1.1
- nitropack: 2.11.6(encoding@0.1.13)(typescript@5.5.3)
- nuxi: 3.22.5
+ nitropack: 2.11.8(encoding@0.1.13)
+ nuxi: 3.23.1
nypm: 0.3.12
ofetch: 1.4.1
ohash: 1.1.6
@@ -32288,9 +21375,9 @@ snapshots:
unctx: 2.4.1
unenv: 1.10.0
unhead: 1.11.20
- unimport: 3.14.6(rollup@4.39.0)
+ unimport: 3.14.6(rollup@4.37.0)
unplugin: 1.16.1
- unplugin-vue-router: 0.10.9(rollup@4.39.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3))
+ unplugin-vue-router: 0.10.9(rollup@4.37.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3))
unstorage: 1.15.0(db0@0.3.1)(ioredis@5.6.0)
untyped: 1.5.2
vue: 3.5.13(typescript@5.5.3)
@@ -32351,24 +21438,24 @@ snapshots:
- vue-tsc
- xml2js
- nuxt@3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.39.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ nuxt@3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.37.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.7.0(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.6.1-rc))
- '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.39.0)
- '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.39.0)
- '@nuxt/telemetry': 2.6.5(magicast@0.3.5)
- '@nuxt/vite-builder': 3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.39.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.6.1-rc)(vue@3.5.13(typescript@5.6.1-rc))
+ '@nuxt/devtools': 1.7.0(rollup@4.37.0)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.37.0)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.37.0)
+ '@nuxt/telemetry': 2.6.6(magicast@0.3.5)
+ '@nuxt/vite-builder': 3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.37.0)(sass@1.85.0)(terser@5.39.0)(typescript@5.5.3)(vue@3.5.13(typescript@5.5.3))
'@unhead/dom': 1.11.20
'@unhead/shared': 1.11.20
'@unhead/ssr': 1.11.20
- '@unhead/vue': 1.11.20(vue@3.5.13(typescript@5.6.1-rc))
+ '@unhead/vue': 1.11.20(vue@3.5.13(typescript@5.5.3))
'@vue/shared': 3.5.13
acorn: 8.14.0
c12: 2.0.1(magicast@0.3.5)
chokidar: 4.0.3
compatx: 0.1.8
- consola: 3.4.0
+ consola: 3.4.2
cookie-es: 1.2.2
defu: 6.1.4
destr: 2.0.3
@@ -32381,15 +21468,15 @@ snapshots:
h3: 1.15.1
hookable: 5.5.3
ignore: 6.0.2
- impound: 0.2.2(rollup@4.39.0)
+ impound: 0.2.2(rollup@4.37.0)
jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
magic-string: 0.30.17
mlly: 1.7.4
nanotar: 0.1.1
- nitropack: 2.11.6(encoding@0.1.13)(typescript@5.6.1-rc)
- nuxi: 3.22.5
+ nitropack: 2.11.8(encoding@0.1.13)
+ nuxi: 3.23.1
nypm: 0.3.12
ofetch: 1.4.1
ohash: 1.1.6
@@ -32408,15 +21495,15 @@ snapshots:
unctx: 2.4.1
unenv: 1.10.0
unhead: 1.11.20
- unimport: 3.14.6(rollup@4.39.0)
+ unimport: 3.14.6(rollup@4.37.0)
unplugin: 1.16.1
- unplugin-vue-router: 0.10.9(rollup@4.39.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
+ unplugin-vue-router: 0.10.9(rollup@4.37.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3))
unstorage: 1.15.0(db0@0.3.1)(ioredis@5.6.0)
untyped: 1.5.2
- vue: 3.5.13(typescript@5.6.1-rc)
+ vue: 3.5.13(typescript@5.5.3)
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.5.0(vue@3.5.13(typescript@5.6.1-rc))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.5.3))
optionalDependencies:
'@parcel/watcher': 2.5.1
'@types/node': 22.10.5
@@ -32471,12 +21558,12 @@ snapshots:
- vue-tsc
- xml2js
- nwsapi@2.2.18: {}
+ nwsapi@2.2.19: {}
nypm@0.3.12:
dependencies:
citty: 0.1.6
- consola: 3.4.0
+ consola: 3.4.2
execa: 8.0.1
pathe: 1.1.2
pkg-types: 1.3.1
@@ -32485,7 +21572,7 @@ snapshots:
nypm@0.4.1:
dependencies:
citty: 0.1.6
- consola: 3.4.0
+ consola: 3.4.2
pathe: 1.1.2
pkg-types: 1.3.1
tinyexec: 0.3.2
@@ -32494,7 +21581,7 @@ snapshots:
nypm@0.5.4:
dependencies:
citty: 0.1.6
- consola: 3.4.0
+ consola: 3.4.2
pathe: 2.0.3
pkg-types: 1.3.1
tinyexec: 0.3.2
@@ -32503,7 +21590,7 @@ snapshots:
nypm@0.6.0:
dependencies:
citty: 0.1.6
- consola: 3.4.0
+ consola: 3.4.2
pathe: 2.0.3
pkg-types: 2.1.0
tinyexec: 0.3.2
@@ -32525,9 +21612,10 @@ snapshots:
has-symbols: 1.1.0
object-keys: 1.1.1
- object.entries@1.1.8:
+ object.entries@1.1.9:
dependencies:
call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
es-object-atoms: 1.1.1
@@ -32610,26 +21698,6 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- openapi-typescript@7.6.1(typescript@5.5.3):
- dependencies:
- '@redocly/openapi-core': 1.33.1(supports-color@9.4.0)
- ansi-colors: 4.1.3
- change-case: 5.4.4
- parse-json: 8.1.0
- supports-color: 9.4.0
- typescript: 5.5.3
- yargs-parser: 21.1.1
-
- openapi-typescript@7.6.1(typescript@5.6.1-rc):
- dependencies:
- '@redocly/openapi-core': 1.33.1(supports-color@9.4.0)
- ansi-colors: 4.1.3
- change-case: 5.4.4
- parse-json: 8.1.0
- supports-color: 9.4.0
- typescript: 5.6.1-rc
- yargs-parser: 21.1.1
-
optionator@0.9.4:
dependencies:
deep-is: 0.1.4
@@ -32678,11 +21746,11 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.2.0
+ yocto-queue: 1.2.1
p-limit@5.0.0:
dependencies:
- yocto-queue: 1.2.0
+ yocto-queue: 1.2.1
p-locate@4.1.0:
dependencies:
@@ -32712,10 +21780,10 @@ snapshots:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
agent-base: 7.1.3
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
get-uri: 6.0.4
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
+ https-proxy-agent: 7.0.6
pac-resolver: 7.0.1
socks-proxy-agent: 8.0.5
transitivePeerDependencies:
@@ -32730,7 +21798,9 @@ snapshots:
package-manager-detector@0.2.11:
dependencies:
- quansync: 0.2.8
+ quansync: 0.2.10
+
+ package-manager-detector@1.1.0: {}
packrup@0.1.2: {}
@@ -32760,11 +21830,6 @@ snapshots:
dependencies:
callsites: 3.1.0
- parse-git-config@3.0.0:
- dependencies:
- git-config-path: 2.0.0
- ini: 1.3.8
-
parse-json@5.2.0:
dependencies:
'@babel/code-frame': 7.26.2
@@ -32772,12 +21837,6 @@ snapshots:
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- parse-json@8.1.0:
- dependencies:
- '@babel/code-frame': 7.26.2
- index-to-position: 0.1.2
- type-fest: 4.37.0
-
parse-ms@4.0.0: {}
parse-node-version@1.0.1: {}
@@ -32894,7 +21953,7 @@ snapshots:
sonic-boom: 4.2.0
thread-stream: 3.1.0
- pirates@4.0.6: {}
+ pirates@4.0.7: {}
piscina@4.8.0:
optionalDependencies:
@@ -32916,8 +21975,6 @@ snapshots:
exsolve: 1.0.4
pathe: 2.0.3
- pluralize@8.0.0: {}
-
possible-typed-array-names@1.1.0: {}
postcss-calc@10.1.1(postcss@8.5.3):
@@ -33177,13 +22234,13 @@ snapshots:
postcss@8.4.41:
dependencies:
- nanoid: 3.3.9
+ nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
postcss@8.5.2:
dependencies:
- nanoid: 3.3.9
+ nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
@@ -33262,9 +22319,9 @@ snapshots:
proxy-agent@6.4.0:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6(supports-color@9.4.0)
+ https-proxy-agent: 7.0.6
lru-cache: 7.18.3
pac-proxy-agent: 7.2.0
proxy-from-env: 1.1.0
@@ -33296,7 +22353,7 @@ snapshots:
dependencies:
'@puppeteer/browsers': 2.2.3
chromium-bidi: 0.5.24(devtools-protocol@0.0.1299070)
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
devtools-protocol: 0.0.1299070
ws: 8.18.1
transitivePeerDependencies:
@@ -33324,7 +22381,7 @@ snapshots:
dependencies:
side-channel: 1.1.0
- quansync@0.2.8: {}
+ quansync@0.2.10: {}
querystringify@2.2.0: {}
@@ -33473,7 +22530,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.26.10
+ '@babel/runtime': 7.26.9
regex-parser@2.3.1: {}
@@ -33603,14 +22660,14 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- rollup-plugin-visualizer@5.14.0(rollup@4.39.0):
+ rollup-plugin-visualizer@5.14.0(rollup@4.37.0):
dependencies:
open: 8.4.2
picomatch: 4.0.2
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
- rollup: 4.39.0
+ rollup: 4.37.0
rollup@3.29.5:
optionalDependencies:
@@ -33666,30 +22723,30 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.34.8
fsevents: 2.3.3
- rollup@4.39.0:
+ rollup@4.37.0:
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.39.0
- '@rollup/rollup-android-arm64': 4.39.0
- '@rollup/rollup-darwin-arm64': 4.39.0
- '@rollup/rollup-darwin-x64': 4.39.0
- '@rollup/rollup-freebsd-arm64': 4.39.0
- '@rollup/rollup-freebsd-x64': 4.39.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.39.0
- '@rollup/rollup-linux-arm-musleabihf': 4.39.0
- '@rollup/rollup-linux-arm64-gnu': 4.39.0
- '@rollup/rollup-linux-arm64-musl': 4.39.0
- '@rollup/rollup-linux-loongarch64-gnu': 4.39.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.39.0
- '@rollup/rollup-linux-riscv64-gnu': 4.39.0
- '@rollup/rollup-linux-riscv64-musl': 4.39.0
- '@rollup/rollup-linux-s390x-gnu': 4.39.0
- '@rollup/rollup-linux-x64-gnu': 4.39.0
- '@rollup/rollup-linux-x64-musl': 4.39.0
- '@rollup/rollup-win32-arm64-msvc': 4.39.0
- '@rollup/rollup-win32-ia32-msvc': 4.39.0
- '@rollup/rollup-win32-x64-msvc': 4.39.0
+ '@rollup/rollup-android-arm-eabi': 4.37.0
+ '@rollup/rollup-android-arm64': 4.37.0
+ '@rollup/rollup-darwin-arm64': 4.37.0
+ '@rollup/rollup-darwin-x64': 4.37.0
+ '@rollup/rollup-freebsd-arm64': 4.37.0
+ '@rollup/rollup-freebsd-x64': 4.37.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.37.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.37.0
+ '@rollup/rollup-linux-arm64-gnu': 4.37.0
+ '@rollup/rollup-linux-arm64-musl': 4.37.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.37.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.37.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.37.0
+ '@rollup/rollup-linux-riscv64-musl': 4.37.0
+ '@rollup/rollup-linux-s390x-gnu': 4.37.0
+ '@rollup/rollup-linux-x64-gnu': 4.37.0
+ '@rollup/rollup-linux-x64-musl': 4.37.0
+ '@rollup/rollup-win32-arm64-msvc': 4.37.0
+ '@rollup/rollup-win32-ia32-msvc': 4.37.0
+ '@rollup/rollup-win32-x64-msvc': 4.37.0
fsevents: 2.3.3
rrweb-cssom@0.6.0: {}
@@ -33731,7 +22788,7 @@ snapshots:
es-errors: 1.3.0
is-regex: 1.2.1
- safe-regex2@4.0.1:
+ safe-regex2@5.0.0:
dependencies:
ret: 0.5.0
@@ -33749,7 +22806,7 @@ snapshots:
sass@1.85.0:
dependencies:
chokidar: 4.0.3
- immutable: 5.0.3
+ immutable: 5.1.1
source-map-js: 1.2.1
optionalDependencies:
'@parcel/watcher': 2.5.1
@@ -33979,7 +23036,7 @@ snapshots:
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -34058,7 +23115,7 @@ snapshots:
socks-proxy-agent@8.0.5:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.3.4
socks: 2.8.4
transitivePeerDependencies:
- supports-color
@@ -34127,7 +23184,7 @@ snapshots:
spdy-transport@3.0.0:
dependencies:
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -34138,7 +23195,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -34158,7 +23215,7 @@ snapshots:
dependencies:
minipass: 7.1.2
- stable-hash@0.0.4: {}
+ stable-hash@0.0.5: {}
stackback@0.0.2: {}
@@ -34173,7 +23230,7 @@ snapshots:
streamroller@3.1.5:
dependencies:
date-format: 4.0.14
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
fs-extra: 8.1.0
transitivePeerDependencies:
- supports-color
@@ -34312,7 +23369,7 @@ snapshots:
glob: 10.4.3
lines-and-columns: 1.2.4
mz: 2.7.0
- pirates: 4.0.6
+ pirates: 4.0.7
ts-interface-checker: 0.1.13
superjson@2.2.2:
@@ -34329,8 +23386,6 @@ snapshots:
dependencies:
has-flag: 4.0.0
- supports-color@9.4.0: {}
-
supports-hyperlinks@3.2.0:
dependencies:
has-flag: 4.0.0
@@ -34364,7 +23419,7 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@jridgewell/sourcemap-codec': 1.5.0
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
acorn: 8.14.1
acorn-typescript: 1.4.13(acorn@8.14.1)
aria-query: 5.3.2
@@ -34391,9 +23446,9 @@ snapshots:
symbol-tree@3.2.4: {}
- synckit@0.9.2:
+ synckit@0.10.3:
dependencies:
- '@pkgr/core': 0.1.1
+ '@pkgr/core': 0.2.0
tslib: 2.8.1
system-architecture@0.1.0: {}
@@ -34562,7 +23617,7 @@ snapshots:
dependencies:
punycode: 2.3.1
- tr46@5.0.0:
+ tr46@5.1.0:
dependencies:
punycode: 2.3.1
@@ -34578,7 +23633,7 @@ snapshots:
dependencies:
typescript: 5.5.3
- ts-api-utils@2.0.1(typescript@5.5.3):
+ ts-api-utils@2.1.0(typescript@5.5.3):
dependencies:
typescript: 5.5.3
@@ -34622,8 +23677,8 @@ snapshots:
bundle-require: 5.1.0(esbuild@0.24.2)
cac: 6.7.14
chokidar: 4.0.3
- consola: 3.4.0
- debug: 4.4.0(supports-color@9.4.0)
+ consola: 3.4.2
+ debug: 4.4.0
esbuild: 0.24.2
joycon: 3.1.1
picocolors: 1.1.1
@@ -34652,7 +23707,7 @@ snapshots:
tuf-js@3.0.1:
dependencies:
'@tufjs/models': 3.0.1
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
make-fetch-happen: 14.0.3
transitivePeerDependencies:
- supports-color
@@ -34694,7 +23749,7 @@ snapshots:
type-fest@0.21.3: {}
- type-fest@4.37.0: {}
+ type-fest@4.38.0: {}
type-is@1.6.18:
dependencies:
@@ -34778,7 +23833,7 @@ snapshots:
'@rollup/pluginutils': 5.1.4(rollup@3.29.5)
chalk: 5.4.1
citty: 0.1.6
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
esbuild: 0.19.12
globby: 13.2.2
@@ -34813,19 +23868,19 @@ snapshots:
acorn: 8.14.0
estree-walker: 3.0.3
magic-string: 0.30.17
- unplugin: 2.2.0
+ unplugin: 2.2.2
undici-types@6.20.0: {}
unenv@1.10.0:
dependencies:
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
mime: 3.0.0
node-fetch-native: 1.6.6
pathe: 1.1.2
- unenv@2.0.0-rc.14:
+ unenv@2.0.0-rc.15:
dependencies:
defu: 6.1.4
exsolve: 1.0.4
@@ -34874,9 +23929,9 @@ snapshots:
transitivePeerDependencies:
- rollup
- unimport@3.14.6(rollup@4.39.0):
+ unimport@3.14.6(rollup@4.37.0):
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.37.0)
acorn: 8.14.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
@@ -34907,7 +23962,7 @@ snapshots:
scule: 1.3.0
strip-literal: 3.0.0
tinyglobby: 0.2.12
- unplugin: 2.2.0
+ unplugin: 2.2.2
unplugin-utils: 0.2.4
unique-filename@4.0.0:
@@ -34956,7 +24011,7 @@ snapshots:
unplugin-vue-router@0.10.9(rollup@3.29.5)(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc)):
dependencies:
- '@babel/types': 7.26.10
+ '@babel/types': 7.27.0
'@rollup/pluginutils': 5.1.4(rollup@3.29.5)
'@vue-macros/common': 1.16.1(vue@3.5.13(typescript@5.6.1-rc))
ast-walker-scope: 0.6.2
@@ -34976,10 +24031,10 @@ snapshots:
- rollup
- vue
- unplugin-vue-router@0.10.9(rollup@4.39.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3)):
+ unplugin-vue-router@0.10.9(rollup@4.37.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3)):
dependencies:
- '@babel/types': 7.26.10
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
+ '@babel/types': 7.27.0
+ '@rollup/pluginutils': 5.1.4(rollup@4.37.0)
'@vue-macros/common': 1.16.1(vue@3.5.13(typescript@5.5.3))
ast-walker-scope: 0.6.2
chokidar: 3.6.0
@@ -34998,28 +24053,6 @@ snapshots:
- rollup
- vue
- unplugin-vue-router@0.10.9(rollup@4.39.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc)):
- dependencies:
- '@babel/types': 7.26.10
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
- '@vue-macros/common': 1.16.1(vue@3.5.13(typescript@5.6.1-rc))
- ast-walker-scope: 0.6.2
- chokidar: 3.6.0
- fast-glob: 3.3.3
- json5: 2.2.3
- local-pkg: 0.5.1
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 1.1.2
- scule: 1.3.0
- unplugin: 2.0.0-beta.1
- yaml: 2.7.0
- optionalDependencies:
- vue-router: 4.5.0(vue@3.5.13(typescript@5.6.1-rc))
- transitivePeerDependencies:
- - rollup
- - vue
-
unplugin@1.16.1:
dependencies:
acorn: 8.14.1
@@ -35030,11 +24063,29 @@ snapshots:
acorn: 8.14.1
webpack-virtual-modules: 0.6.2
- unplugin@2.2.0:
+ unplugin@2.2.2:
dependencies:
acorn: 8.14.1
webpack-virtual-modules: 0.6.2
+ unrs-resolver@1.3.2:
+ optionalDependencies:
+ '@unrs/resolver-binding-darwin-arm64': 1.3.2
+ '@unrs/resolver-binding-darwin-x64': 1.3.2
+ '@unrs/resolver-binding-freebsd-x64': 1.3.2
+ '@unrs/resolver-binding-linux-arm-gnueabihf': 1.3.2
+ '@unrs/resolver-binding-linux-arm-musleabihf': 1.3.2
+ '@unrs/resolver-binding-linux-arm64-gnu': 1.3.2
+ '@unrs/resolver-binding-linux-arm64-musl': 1.3.2
+ '@unrs/resolver-binding-linux-ppc64-gnu': 1.3.2
+ '@unrs/resolver-binding-linux-s390x-gnu': 1.3.2
+ '@unrs/resolver-binding-linux-x64-gnu': 1.3.2
+ '@unrs/resolver-binding-linux-x64-musl': 1.3.2
+ '@unrs/resolver-binding-wasm32-wasi': 1.3.2
+ '@unrs/resolver-binding-win32-arm64-msvc': 1.3.2
+ '@unrs/resolver-binding-win32-ia32-msvc': 1.3.2
+ '@unrs/resolver-binding-win32-x64-msvc': 1.3.2
+
unstorage@1.15.0(db0@0.3.1)(ioredis@5.6.0):
dependencies:
anymatch: 3.1.3
@@ -35052,14 +24103,14 @@ snapshots:
untun@0.1.3:
dependencies:
citty: 0.1.6
- consola: 3.4.0
+ consola: 3.4.2
pathe: 1.1.2
untyped@1.5.2:
dependencies:
'@babel/core': 7.26.10
- '@babel/standalone': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/standalone': 7.27.0
+ '@babel/types': 7.27.0
citty: 0.1.6
defu: 6.1.4
jiti: 2.4.2
@@ -35093,8 +24144,6 @@ snapshots:
uqr@0.1.2: {}
- uri-js-replace@1.0.1: {}
-
uri-js@4.4.1:
dependencies:
punycode: 2.3.1
@@ -35106,8 +24155,6 @@ snapshots:
urlpattern-polyfill@10.0.0: {}
- urlpattern-polyfill@8.0.2: {}
-
use-callback-ref@1.3.3(@types/react@19.0.1)(react@19.0.0):
dependencies:
react: 19.0.0
@@ -35163,10 +24210,10 @@ snapshots:
vite-node@1.6.0(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
dependencies:
cac: 6.7.14
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
pathe: 1.1.2
picocolors: 1.1.1
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -35181,10 +24228,10 @@ snapshots:
vite-node@2.1.9(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
dependencies:
cac: 6.7.14
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
es-module-lexer: 1.6.0
pathe: 1.1.2
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -35196,7 +24243,7 @@ snapshots:
- supports-color
- terser
- vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.5.3)(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)):
+ vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.5.3)(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)):
dependencies:
'@babel/code-frame': 7.26.2
ansi-escapes: 4.3.2
@@ -35208,7 +24255,7 @@ snapshots:
npm-run-path: 4.0.1
strip-ansi: 6.0.1
tiny-invariant: 1.3.3
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.12
@@ -35218,7 +24265,7 @@ snapshots:
optionator: 0.9.4
typescript: 5.5.3
- vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.6.1-rc)(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)):
+ vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.6.1-rc)(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)):
dependencies:
'@babel/code-frame': 7.26.2
ansi-escapes: 4.3.2
@@ -35230,7 +24277,7 @@ snapshots:
npm-run-path: 4.0.1
strip-ansi: 6.0.1
tiny-invariant: 1.3.3
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.12
@@ -35244,7 +24291,7 @@ snapshots:
dependencies:
'@antfu/utils': 0.7.10
'@rollup/pluginutils': 5.1.4(rollup@3.29.5)
- debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0
error-stack-parser-es: 0.1.5
fs-extra: 11.3.0
open: 10.1.0
@@ -35258,11 +24305,11 @@ snapshots:
- rollup
- supports-color
- vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
- debug: 4.4.0(supports-color@9.4.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.37.0)
+ debug: 4.4.0
error-stack-parser-es: 0.1.5
fs-extra: 11.3.0
open: 10.1.0
@@ -35276,11 +24323,11 @@ snapshots:
- rollup
- supports-color
- vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.39.0)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
+ vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.37.0)(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.4(rollup@4.39.0)
- debug: 4.4.0(supports-color@9.4.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.37.0)
+ debug: 4.4.0
error-stack-parser-es: 0.1.5
fs-extra: 11.3.0
open: 10.1.0
@@ -35294,7 +24341,7 @@ snapshots:
- rollup
- supports-color
- vite-plugin-vue-devtools@7.7.0(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3)):
+ vite-plugin-vue-devtools@7.7.0(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3)):
dependencies:
'@vue/devtools-core': 7.7.2(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.3))
'@vue/devtools-kit': 7.7.2
@@ -35302,7 +24349,7 @@ snapshots:
execa: 9.5.2
sirv: 3.0.1
vite: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
+ vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
vite-plugin-vue-inspector: 5.3.1(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
transitivePeerDependencies:
- '@nuxt/kit'
@@ -35316,7 +24363,7 @@ snapshots:
'@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.10)
'@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10)
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.10)
- '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10)
+ '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10)
'@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.10)
'@vue/compiler-dom': 3.5.13
kolorist: 1.8.0
@@ -35331,7 +24378,7 @@ snapshots:
'@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.10)
'@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10)
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.10)
- '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10)
+ '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10)
'@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.10)
'@vue/compiler-dom': 3.5.13
kolorist: 1.8.0
@@ -35340,19 +24387,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vite@5.4.14(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
- dependencies:
- esbuild: 0.21.5
- postcss: 8.5.3
- rollup: 4.31.0
- optionalDependencies:
- '@types/node': 22.10.5
- fsevents: 2.3.3
- less: 4.2.2
- sass: 1.85.0
- terser: 5.39.0
-
- vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
+ vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
dependencies:
esbuild: 0.21.5
postcss: 8.5.3
@@ -35396,14 +24431,14 @@ snapshots:
optionalDependencies:
vite: 6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
- vitepress@1.3.0(@algolia/client-search@5.21.0)(@types/node@22.10.5)(@types/react@19.0.1)(axios@1.8.2)(less@4.2.2)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0)(search-insights@2.17.3)(terser@5.39.0)(typescript@5.5.3):
+ vitepress@1.3.0(@algolia/client-search@5.23.0)(@types/node@22.10.5)(@types/react@19.0.1)(axios@1.8.2)(less@4.2.2)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0)(search-insights@2.17.3)(terser@5.39.0)(typescript@5.5.3):
dependencies:
'@docsearch/css': 3.9.0
- '@docsearch/js': 3.9.0(@algolia/client-search@5.21.0)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3)
+ '@docsearch/js': 3.9.0(@algolia/client-search@5.23.0)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3)
'@shikijs/core': 1.29.2
'@shikijs/transformers': 1.29.2
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.2.1(vite@5.4.14(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))
+ '@vitejs/plugin-vue': 5.2.1(vite@5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.5.3))
'@vue/devtools-api': 7.7.2
'@vue/shared': 3.5.13
'@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.5.3))
@@ -35412,7 +24447,7 @@ snapshots:
mark.js: 8.11.1
minisearch: 6.3.0
shiki: 1.29.2
- vite: 5.4.14(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
vue: 3.5.13(typescript@5.5.3)
optionalDependencies:
postcss: 8.5.3
@@ -35443,11 +24478,10 @@ snapshots:
- terser
- typescript
- universal-cookie
- dev: true
- vitest-environment-nuxt@1.0.1(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.6(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc)):
+ vitest-environment-nuxt@1.0.1(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.8(encoding@0.1.13))(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc)):
dependencies:
- '@nuxt/test-utils': 3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.6(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
+ '@nuxt/test-utils': 3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.8(encoding@0.1.13))(rollup@3.29.5)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
transitivePeerDependencies:
- '@cucumber/cucumber'
- '@jest/globals'
@@ -35468,9 +24502,9 @@ snapshots:
- vue
- vue-router
- vitest-environment-nuxt@1.0.1(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.6(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc)):
+ vitest-environment-nuxt@1.0.1(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.8(encoding@0.1.13))(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3)):
dependencies:
- '@nuxt/test-utils': 3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.6(encoding@0.1.13)(typescript@5.6.1-rc))(rollup@4.39.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)))(vue@3.5.13(typescript@5.6.1-rc))
+ '@nuxt/test-utils': 3.14.0(@vue/test-utils@2.4.6)(h3@1.15.1)(jsdom@23.0.0)(magicast@0.3.5)(nitropack@2.11.8(encoding@0.1.13))(rollup@4.37.0)(vite@6.0.13(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)))(vue@3.5.13(typescript@5.5.3))
transitivePeerDependencies:
- '@cucumber/cucumber'
- '@jest/globals'
@@ -35484,36 +24518,14 @@ snapshots:
- magicast
- nitropack
- playwright-core
+ - rollup
+ - supports-color
- vite
- vitest
- vue
- vue-router
- dev: true
- /vitest/1.6.0:
- resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@edge-runtime/vm': '*'
- '@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 1.6.0
- '@vitest/ui': 1.6.0
- happy-dom: '*'
- jsdom: '*'
- peerDependenciesMeta:
- '@edge-runtime/vm':
- optional: true
- '@types/node':
- optional: true
- '@vitest/browser':
- optional: true
- '@vitest/ui':
- optional: true
- happy-dom:
- optional: true
- jsdom:
- optional: true
+ vitest@1.6.0(@types/node@22.10.5)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0):
dependencies:
'@vitest/expect': 1.6.0
'@vitest/runner': 1.6.0
@@ -35532,45 +24544,10 @@ snapshots:
strip-literal: 2.1.1
tinybench: 2.9.0
tinypool: 0.8.4
- vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
+ vite: 5.4.15(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
vite-node: 1.6.0(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)
why-is-node-running: 2.3.0
- transitivePeerDependencies:
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- dev: true
-
- /vitest/1.6.0_@types+node@22.10.5:
- resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@edge-runtime/vm': '*'
- '@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 1.6.0
- '@vitest/ui': 1.6.0
- happy-dom: '*'
- jsdom: '*'
- peerDependenciesMeta:
- '@edge-runtime/vm':
- optional: true
- '@types/node':
- optional: true
- '@vitest/browser':
- optional: true
- '@vitest/ui':
- optional: true
- happy-dom:
- optional: true
- jsdom:
- optional: true
- dependencies:
+ optionalDependencies:
'@types/node': 22.10.5
jsdom: 23.0.0
transitivePeerDependencies:
@@ -35585,75 +24562,45 @@ snapshots:
void-elements@2.0.1: {}
- /void-elements/2.0.1:
- resolution: {integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /vscode-jsonrpc/6.0.0:
- resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==}
- engines: {node: '>=8.0.0 || >=10.0.0'}
+ vscode-jsonrpc@6.0.0: {}
- /vscode-languageclient/7.0.0:
- resolution: {integrity: sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==}
- engines: {vscode: ^1.52.0}
+ vscode-languageclient@7.0.0:
dependencies:
minimatch: 3.1.2
semver: 7.7.1
vscode-languageserver-protocol: 3.16.0
- /vscode-languageserver-protocol/3.16.0:
- resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==}
+ vscode-languageserver-protocol@3.16.0:
dependencies:
vscode-jsonrpc: 6.0.0
vscode-languageserver-types: 3.16.0
- /vscode-languageserver-textdocument/1.0.12:
- resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
+ vscode-languageserver-textdocument@1.0.12: {}
- /vscode-languageserver-types/3.16.0:
- resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==}
+ vscode-languageserver-types@3.16.0: {}
- /vscode-languageserver/7.0.0:
- resolution: {integrity: sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==}
- hasBin: true
+ vscode-languageserver@7.0.0:
dependencies:
vscode-languageserver-protocol: 3.16.0
vscode-uri@3.1.0: {}
- /vue-bundle-renderer/2.1.1:
- resolution: {integrity: sha512-+qALLI5cQncuetYOXp4yScwYvqh8c6SMXee3B+M7oTZxOgtESP0l4j/fXdEJoZ+EdMxkGWIj+aSEyjXkOdmd7g==}
+ vue-bundle-renderer@2.1.1:
dependencies:
ufo: 1.5.4
vue-component-type-helpers@2.2.8: {}
- /vue-demi/0.14.10_vue@3.5.13:
- resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.0.0-0 || ^2.6.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
+ vue-demi@0.14.10(vue@3.5.13(typescript@5.5.3)):
dependencies:
- vue: 3.5.13_typescript@5.5.3
+ vue: 3.5.13(typescript@5.5.3)
- /vue-devtools-stub/0.1.0:
- resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
+ vue-devtools-stub@0.1.0: {}
- /vue-eslint-parser/9.4.3_eslint@9.17.0:
- resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
- engines: {node: ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '>=6.0.0'
+ vue-eslint-parser@9.4.3(eslint@9.17.0(jiti@2.4.2)):
dependencies:
debug: 4.4.0
- eslint: 9.17.0
+ eslint: 9.17.0(jiti@2.4.2)
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
@@ -35662,21 +24609,13 @@ snapshots:
semver: 7.7.1
transitivePeerDependencies:
- supports-color
- dev: true
- /vue-router/4.5.0_vue@3.5.13:
- resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
- peerDependencies:
- vue: ^3.2.0
+ vue-router@4.5.0(vue@3.5.13(typescript@5.5.3)):
dependencies:
- '@vue/devtools-api': 6.6.4
- vue: 3.5.13_typescript@5.8.2
-
- /vue-tsc/2.2.0_typescript@5.5.3:
- resolution: {integrity: sha512-gtmM1sUuJ8aSb0KoAFmK9yMxb8TxjewmxqTJ1aKphD5Cbu0rULFY6+UQT51zW7SpUcenfPUuflKyVwyx9Qdnxg==}
- hasBin: true
- peerDependencies:
- typescript: '>=5.0.0'
+ '@vue/devtools-api': 6.6.4
+ vue: 3.5.13(typescript@5.5.3)
+
+ vue-router@4.5.0(vue@3.5.13(typescript@5.6.1-rc)):
dependencies:
'@vue/devtools-api': 6.6.4
vue: 3.5.13(typescript@5.6.1-rc)
@@ -35686,109 +24625,56 @@ snapshots:
'@volar/typescript': 2.4.12
'@vue/language-core': 2.2.0(typescript@5.5.3)
typescript: 5.5.3
- dev: true
-
- /vue/3.5.13:
- resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-sfc': 3.5.13
- '@vue/runtime-dom': 3.5.13
- '@vue/server-renderer': 3.5.13_vue@3.5.13
- '@vue/shared': 3.5.13
- /vue/3.5.13_typescript@5.5.3:
- resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ vue@3.5.13(typescript@5.5.3):
dependencies:
'@vue/compiler-dom': 3.5.13
'@vue/compiler-sfc': 3.5.13
'@vue/runtime-dom': 3.5.13
- '@vue/server-renderer': 3.5.13_vue@3.5.13
+ '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.5.3))
'@vue/shared': 3.5.13
+ optionalDependencies:
typescript: 5.5.3
- /vue/3.5.13_typescript@5.8.2:
- resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ vue@3.5.13(typescript@5.6.1-rc):
dependencies:
'@vue/compiler-dom': 3.5.13
'@vue/compiler-sfc': 3.5.13
'@vue/runtime-dom': 3.5.13
- '@vue/server-renderer': 3.5.13_vue@3.5.13
+ '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.6.1-rc))
'@vue/shared': 3.5.13
- typescript: 5.8.2
+ optionalDependencies:
+ typescript: 5.6.1-rc
- /w3c-xmlserializer/5.0.0:
- resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
- engines: {node: '>=18'}
+ w3c-xmlserializer@5.0.0:
dependencies:
xml-name-validator: 5.0.0
- dev: true
- /watchpack/2.4.2:
- resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
- engines: {node: '>=10.13.0'}
+ watchpack@2.4.2:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
- dev: true
- /wbuf/1.7.3:
- resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
+ wbuf@1.7.3:
dependencies:
minimalistic-assert: 1.0.1
- dev: true
- /wcwidth/1.0.1:
- resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+ wcwidth@1.0.1:
dependencies:
defaults: 1.0.4
- dev: true
- /weak-lru-cache/1.2.2:
- resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==}
- dev: true
+ weak-lru-cache@1.2.2:
optional: true
- /web-streams-polyfill/3.3.3:
- resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
- engines: {node: '>= 8'}
- dev: true
+ web-streams-polyfill@3.3.3: {}
- /webidl-conversions/3.0.1:
- resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+ webidl-conversions@3.0.1: {}
- /webidl-conversions/4.0.2:
- resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
- dev: true
+ webidl-conversions@4.0.2: {}
- /webidl-conversions/7.0.0:
- resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
- engines: {node: '>=12'}
- dev: true
+ webidl-conversions@7.0.0: {}
- /webpack-dev-middleware/7.4.2_webpack@5.98.0:
- resolution: {integrity: sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==}
- engines: {node: '>= 18.12.0'}
- peerDependencies:
- webpack: ^5.0.0
- peerDependenciesMeta:
- webpack:
- optional: true
+ webpack-dev-middleware@7.4.2(webpack@5.98.0(esbuild@0.25.0)):
dependencies:
colorette: 2.0.20
memfs: 4.17.0
@@ -35796,21 +24682,10 @@ snapshots:
on-finished: 2.4.1
range-parser: 1.2.1
schema-utils: 4.3.0
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
+ optionalDependencies:
+ webpack: 5.98.0(esbuild@0.24.2)
- /webpack-dev-server/5.2.0_webpack@5.98.0:
- resolution: {integrity: sha512-90SqqYXA2SK36KcT6o1bvwvZfJFcmoamqeJY7+boioffX9g9C0wjjJRGUrQIuh43pb0ttX7+ssavmj/WN2RHtA==}
- engines: {node: '>= 18.12.0'}
- hasBin: true
- peerDependencies:
- webpack: ^5.0.0
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack:
- optional: true
- webpack-cli:
- optional: true
+ webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.0)):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -35827,7 +24702,7 @@ snapshots:
connect-history-api-fallback: 2.0.0
express: 4.21.2
graceful-fs: 4.2.11
- http-proxy-middleware: 2.0.7_@types+express@4.17.21
+ http-proxy-middleware: 2.0.7(@types/express@4.17.21)
ipaddr.js: 2.2.0
launch-editor: 2.10.0
open: 10.1.0
@@ -35837,59 +24712,35 @@ snapshots:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack: 5.98.0
- webpack-dev-middleware: 7.4.2_webpack@5.98.0
+ webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.0))
ws: 8.18.1
+ optionalDependencies:
+ webpack: 5.98.0(esbuild@0.24.2)
transitivePeerDependencies:
- bufferutil
- debug
- supports-color
- utf-8-validate
- dev: true
- /webpack-merge/6.0.1:
- resolution: {integrity: sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==}
- engines: {node: '>=18.0.0'}
+ webpack-merge@6.0.1:
dependencies:
clone-deep: 4.0.1
flat: 5.0.2
wildcard: 2.0.1
- dev: true
- /webpack-sources/3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
- engines: {node: '>=10.13.0'}
- dev: true
+ webpack-sources@3.2.3: {}
- /webpack-subresource-integrity/5.1.0_webpack@5.98.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-subresource-integrity@5.1.0(webpack@5.98.0(esbuild@0.25.0)):
dependencies:
typed-assert: 1.0.9
- webpack: 5.98.0_esbuild@0.25.0
- dev: true
+ webpack: 5.98.0(esbuild@0.24.2)
- /webpack-virtual-modules/0.6.2:
- resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
+ webpack-virtual-modules@0.6.2: {}
- /webpack/5.98.0:
- resolution: {integrity: sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
+ webpack@5.98.0(esbuild@0.24.2):
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
@@ -35915,107 +24766,46 @@ snapshots:
- '@swc/core'
- esbuild
- uglify-js
- dev: true
-
- /webpack/5.98.0_esbuild@0.25.0:
- resolution: {integrity: sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- dependencies:
- '@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.6
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/wasm-edit': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
- acorn: 8.14.1
- browserslist: 4.24.4
- chrome-trace-event: 1.0.4
- enhanced-resolve: 5.18.1
- es-module-lexer: 1.6.0
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 4.3.0
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.14_dflvnw2ohzw6dukrwawcjaonya
- watchpack: 2.4.2
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
- dev: true
- /websocket-driver/0.7.4:
- resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
- engines: {node: '>=0.8.0'}
+ websocket-driver@0.7.4:
dependencies:
http-parser-js: 0.5.9
safe-buffer: 5.2.1
websocket-extensions: 0.1.4
- dev: true
- /websocket-extensions/0.1.4:
- resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
- engines: {node: '>=0.8.0'}
- dev: true
+ websocket-extensions@0.1.4: {}
- /whatwg-encoding/3.1.1:
- resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
- engines: {node: '>=18'}
+ whatwg-encoding@3.1.1:
dependencies:
iconv-lite: 0.6.3
- dev: true
- /whatwg-mimetype/4.0.0:
- resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
- engines: {node: '>=18'}
- dev: true
+ whatwg-mimetype@4.0.0: {}
- whatwg-url@14.1.1:
+ whatwg-url@14.2.0:
dependencies:
- tr46: 5.0.0
+ tr46: 5.1.0
webidl-conversions: 7.0.0
- dev: true
- /whatwg-url/5.0.0:
- resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
+ whatwg-url@5.0.0:
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
- /whatwg-url/7.1.0:
- resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
+ whatwg-url@7.1.0:
dependencies:
lodash.sortby: 4.7.0
tr46: 1.0.1
webidl-conversions: 4.0.2
- dev: true
- /which-boxed-primitive/1.1.1:
- resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
- engines: {node: '>= 0.4'}
+ which-boxed-primitive@1.1.1:
dependencies:
is-bigint: 1.1.0
is-boolean-object: 1.2.2
is-number-object: 1.1.1
is-string: 1.1.1
is-symbol: 1.1.1
- dev: true
- /which-builtin-type/1.2.1:
- resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
- engines: {node: '>= 0.4'}
+ which-builtin-type@1.2.1:
dependencies:
call-bound: 1.0.4
function.prototype.name: 1.1.8
@@ -36031,15 +24821,12 @@ snapshots:
which-collection: 1.0.2
which-typed-array: 1.1.19
- /which-collection/1.0.2:
- resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
- engines: {node: '>= 0.4'}
+ which-collection@1.0.2:
dependencies:
is-map: 2.0.3
is-set: 2.0.3
is-weakmap: 2.0.2
is-weakset: 2.0.4
- dev: true
which-typed-array@1.1.19:
dependencies:
@@ -36050,169 +24837,91 @@ snapshots:
get-proto: 1.0.1
gopd: 1.2.0
has-tostringtag: 1.0.2
- dev: true
- /which/1.3.1:
- resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
- hasBin: true
+ which@1.3.1:
dependencies:
isexe: 2.0.0
- dev: true
- /which/2.0.2:
- resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
- engines: {node: '>= 8'}
- hasBin: true
+ which@2.0.2:
dependencies:
isexe: 2.0.0
- /which/3.0.1:
- resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- hasBin: true
+ which@3.0.1:
dependencies:
isexe: 2.0.0
- /which/5.0.0:
- resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
- hasBin: true
+ which@5.0.0:
dependencies:
isexe: 3.1.1
- /why-is-node-running/2.3.0:
- resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
- engines: {node: '>=8'}
- hasBin: true
+ why-is-node-running@2.3.0:
dependencies:
siginfo: 2.0.0
stackback: 0.0.2
- dev: true
- /wildcard/2.0.1:
- resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
- dev: true
+ wildcard@2.0.1: {}
- /word-wrap/1.2.5:
- resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
- engines: {node: '>=0.10.0'}
- dev: true
+ word-wrap@1.2.5: {}
- /wordwrap/1.0.0:
- resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
- dev: false
+ wordwrap@1.0.0: {}
- /wrap-ansi/6.2.0:
- resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
- engines: {node: '>=8'}
+ wrap-ansi@6.2.0:
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- dev: true
- /wrap-ansi/7.0.0:
- resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
- engines: {node: '>=10'}
+ wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- /wrap-ansi/8.1.0:
- resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
- engines: {node: '>=12'}
+ wrap-ansi@8.1.0:
dependencies:
ansi-styles: 6.2.1
string-width: 5.1.2
strip-ansi: 7.1.0
- /wrap-ansi/9.0.0:
- resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
- engines: {node: '>=18'}
+ wrap-ansi@9.0.0:
dependencies:
ansi-styles: 6.2.1
string-width: 7.2.0
strip-ansi: 7.1.0
- dev: true
- /wrappy/1.0.2:
- resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- dev: true
+ wrappy@1.0.2: {}
- /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
- dev: true
+ ws@8.17.1: {}
ws@8.18.1: {}
- /xml-name-validator/5.0.0:
- resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
- engines: {node: '>=18'}
- dev: true
+ xml-name-validator@4.0.0: {}
- /xmlchars/2.2.0:
- resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
- dev: true
+ xml-name-validator@5.0.0: {}
- /y18n/5.0.8:
- resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
- engines: {node: '>=10'}
+ xmlchars@2.2.0: {}
- /yallist/2.1.2:
- resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
- dev: true
+ y18n@5.0.8: {}
- /yallist/3.1.1:
- resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
+ yallist@2.1.2: {}
- /yallist/4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+ yallist@3.1.1: {}
- /yallist/5.0.0:
- resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
- engines: {node: '>=18'}
+ yallist@4.0.0: {}
- /yaml-ast-parser/0.0.43:
- resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
+ yallist@5.0.0: {}
- /yaml/1.10.2:
- resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
- engines: {node: '>= 6'}
- dev: true
+ yaml@1.10.2: {}
- /yaml/2.6.1:
- resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
- engines: {node: '>= 14'}
- hasBin: true
- dev: true
+ yaml@2.6.1: {}
- /yaml/2.7.0:
- resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
- engines: {node: '>= 14'}
- hasBin: true
+ yaml@2.7.0: {}
- /yargs-parser/20.2.9:
- resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
- engines: {node: '>=10'}
- dev: true
+ yargs-parser@20.2.9: {}
- /yargs-parser/21.1.1:
- resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
- engines: {node: '>=12'}
+ yargs-parser@21.1.1: {}
- /yargs/16.2.0:
- resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
- engines: {node: '>=10'}
+ yargs@16.2.0:
dependencies:
cliui: 7.0.4
escalade: 3.2.0
@@ -36221,11 +24930,8 @@ snapshots:
string-width: 4.2.3
y18n: 5.0.8
yargs-parser: 20.2.9
- dev: true
- /yargs/17.7.2:
- resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
- engines: {node: '>=12'}
+ yargs@17.7.2:
dependencies:
cliui: 8.0.1
escalade: 3.2.0
@@ -36235,33 +24941,20 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
- /yauzl/2.10.0:
- resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
+ yauzl@2.10.0:
dependencies:
buffer-crc32: 0.2.13
fd-slicer: 1.1.0
- dev: true
- /yn/3.1.1:
- resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
- engines: {node: '>=6'}
- dev: true
+ yn@3.1.1: {}
- /yocto-queue/0.1.0:
- resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
- engines: {node: '>=10'}
- dev: true
+ yocto-queue@0.1.0: {}
- yocto-queue@1.2.0: {}
+ yocto-queue@1.2.1: {}
- /yoctocolors-cjs/2.1.2:
- resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
- engines: {node: '>=18'}
- dev: true
+ yoctocolors-cjs@2.1.2: {}
- /yoctocolors/2.1.1:
- resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
- engines: {node: '>=18'}
+ yoctocolors@2.1.1: {}
youch-core@0.3.2:
dependencies:
@@ -36277,35 +24970,16 @@ snapshots:
zhead@2.2.4: {}
- /youch/4.1.0-beta.6:
- resolution: {integrity: sha512-y1aNsEeoLXnWb6pI9TvfNPIxySyo4Un3OGxKn7rsNj8+tgSquzXEWkzfA5y6gU0fvzmQgvx3JBn/p51qQ8Xg9A==}
- engines: {node: '>=18'}
- dependencies:
- '@poppinss/dumper': 0.6.3
- '@speed-highlight/core': 1.2.7
- cookie: 1.0.2
- youch-core: 0.3.2
-
- /zhead/2.2.4:
- resolution: {integrity: sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==}
-
- /zimmerframe/1.1.2:
- resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==}
+ zimmerframe@1.1.2: {}
- /zip-stream/6.0.1:
- resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
- engines: {node: '>= 14'}
+ zip-stream@6.0.1:
dependencies:
archiver-utils: 5.0.2
compress-commons: 6.0.2
readable-stream: 4.7.0
- /zod/3.23.8:
- resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
+ zod@3.23.8: {}
- /zone.js/0.15.0:
- resolution: {integrity: sha512-9oxn0IIjbCZkJ67L+LkhYWRyAy7axphb3VgE2MBDlOqnmHMPWGYMxJxBYFueFq/JGY2GMwS0rU+UCLunEmy5UA==}
+ zone.js@0.15.0: {}
- /zwitch/2.0.4:
- resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
- dev: true
+ zwitch@2.0.4: {}