fork of hey-api/openapi-ts because I need some additional things

feat(test): add base vite(st) configs

Landon 8ded79d3 44edc400

+1
examples/openapi-ts-axios/package.json
··· 22 22 }, 23 23 "devDependencies": { 24 24 "@hey-api/openapi-ts": "workspace:*", 25 + "@config/vite-base": "workspace:*", 25 26 "@types/react": "19.0.1", 26 27 "@types/react-dom": "19.0.1", 27 28 "@typescript-eslint/eslint-plugin": "8.29.1",
+2 -2
examples/openapi-ts-axios/vite.config.ts
··· 1 + import { createViteConfig } from '@config/vite-base'; 1 2 import react from '@vitejs/plugin-react'; 2 - import { defineConfig } from 'vite'; 3 3 4 4 // https://vitejs.dev/config/ 5 - export default defineConfig({ 5 + export default createViteConfig({ 6 6 plugins: [react()], 7 7 });
+1
examples/openapi-ts-fastify/package.json
··· 15 15 }, 16 16 "devDependencies": { 17 17 "@hey-api/openapi-ts": "workspace:*", 18 + "@config/vite-base": "workspace:*", 18 19 "eslint": "9.17.0", 19 20 "prettier": "3.4.2", 20 21 "typescript": "5.8.3",
+3 -2
examples/openapi-ts-fastify/src/server.ts
··· 1 + import { readFileSync } from 'node:fs'; 2 + import { join } from 'node:path'; 3 + 1 4 import Fastify from 'fastify'; 2 5 import glue from 'fastify-openapi-glue'; 3 - import { readFileSync } from 'fs'; 4 - import { join } from 'path'; 5 6 6 7 import { serviceHandlers } from './handlers'; 7 8
+13 -9
examples/openapi-ts-fastify/vite.config.ts
··· 1 - import { defineConfig } from 'vitest/config'; 1 + import { fileURLToPath } from 'node:url'; 2 + 3 + import { createVitestConfig } from '@config/vite-base'; 2 4 3 5 // https://vitejs.dev/config/ 4 - export default defineConfig({ 5 - plugins: [], 6 - test: { 7 - environment: 'node', 8 - globals: true, 9 - include: ['test/**/*.test.ts'], 10 - watch: false, 6 + export default createVitestConfig( 7 + fileURLToPath(new URL('./', import.meta.url)), 8 + { 9 + test: { 10 + environment: 'node', 11 + globals: true, 12 + include: ['test/**/*.test.ts'], 13 + watch: false, 14 + }, 11 15 }, 12 - }); 16 + );
+1
examples/openapi-ts-fetch/package.json
··· 21 21 }, 22 22 "devDependencies": { 23 23 "@hey-api/openapi-ts": "workspace:*", 24 + "@config/vite-base": "workspace:*", 24 25 "@types/react": "19.0.1", 25 26 "@types/react-dom": "19.0.1", 26 27 "@typescript-eslint/eslint-plugin": "8.29.1",
+2 -2
examples/openapi-ts-fetch/vite.config.ts
··· 1 + import { createViteConfig } from '@config/vite-base'; 1 2 import react from '@vitejs/plugin-react'; 2 - import { defineConfig } from 'vite'; 3 3 4 4 // https://vitejs.dev/config/ 5 - export default defineConfig({ 5 + export default createViteConfig({ 6 6 plugins: [react()], 7 7 });
+1
examples/openapi-ts-sample/package.json
··· 21 21 }, 22 22 "devDependencies": { 23 23 "@hey-api/openapi-ts": "workspace:*", 24 + "@config/vite-base": "workspace:*", 24 25 "@types/react": "19.0.1", 25 26 "@types/react-dom": "19.0.1", 26 27 "@typescript-eslint/eslint-plugin": "8.29.1",
+2 -2
examples/openapi-ts-sample/vite.config.ts
··· 1 + import { createViteConfig } from '@config/vite-base'; 1 2 import react from '@vitejs/plugin-react'; 2 - import { defineConfig } from 'vite'; 3 3 4 4 // https://vitejs.dev/config/ 5 - export default defineConfig({ 5 + export default createViteConfig({ 6 6 plugins: [react()], 7 7 });
+1
examples/openapi-ts-tanstack-react-query/package.json
··· 13 13 }, 14 14 "dependencies": { 15 15 "@hey-api/client-fetch": "workspace:*", 16 + "@config/vite-base": "workspace:*", 16 17 "@radix-ui/react-form": "0.1.1", 17 18 "@radix-ui/react-icons": "1.3.2", 18 19 "@radix-ui/themes": "3.1.6",
+2 -2
examples/openapi-ts-tanstack-react-query/vite.config.ts
··· 1 + import { createViteConfig } from '@config/vite-base'; 1 2 import react from '@vitejs/plugin-react'; 2 - import { defineConfig } from 'vite'; 3 3 4 4 // https://vitejs.dev/config/ 5 - export default defineConfig({ 5 + export default createViteConfig({ 6 6 plugins: [react()], 7 7 });
+1
examples/openapi-ts-tanstack-svelte-query/package.json
··· 17 17 }, 18 18 "dependencies": { 19 19 "@hey-api/client-fetch": "workspace:*", 20 + "@config/vite-base": "workspace:*", 20 21 "@tanstack/svelte-query": "5.73.3" 21 22 }, 22 23 "devDependencies": {
+12 -11
examples/openapi-ts-tanstack-svelte-query/vite.config.ts
··· 1 + import { fileURLToPath } from 'node:url'; 2 + 3 + import { createVitestConfig } from '@config/vite-base'; 1 4 import { sveltekit } from '@sveltejs/kit/vite'; 2 - import { defineConfig } from 'vitest/config'; 3 5 4 - export default defineConfig({ 5 - // @ts-ignore 6 - plugins: [ 7 - // @ts-expect-error 8 - sveltekit(), 9 - ], 10 - test: { 11 - include: ['src/**/*.{test,spec}.{js,ts}'], 12 - }, 13 - }); 6 + export default async () => { 7 + const sveltekitPlugins = await sveltekit(); 8 + return createVitestConfig(fileURLToPath(new URL('./', import.meta.url)), { 9 + plugins: [sveltekitPlugins], 10 + test: { 11 + include: ['src/**/*.{test,spec}.{js,ts}'], 12 + }, 13 + }); 14 + };
+1
examples/openapi-ts-tanstack-vue-query/package.json
··· 24 24 }, 25 25 "devDependencies": { 26 26 "@hey-api/openapi-ts": "workspace:*", 27 + "@config/vite-base": "workspace:*", 27 28 "@rushstack/eslint-patch": "1.10.5", 28 29 "@tsconfig/node20": "20.1.4", 29 30 "@types/jsdom": "21.1.7",
+2 -2
examples/openapi-ts-tanstack-vue-query/vite.config.ts
··· 1 1 import { fileURLToPath, URL } from 'node:url' 2 2 3 + import { createViteConfig } from '@config/vite-base' 3 4 import vue from '@vitejs/plugin-vue' 4 5 import vueJsx from '@vitejs/plugin-vue-jsx' 5 - import { defineConfig } from 'vite' 6 6 import vueDevTools from 'vite-plugin-vue-devtools' 7 7 8 8 // https://vitejs.dev/config/ 9 - export default defineConfig({ 9 + export default createViteConfig({ 10 10 plugins: [vue(), vueJsx(), vueDevTools()], 11 11 resolve: { 12 12 alias: {
+4 -4
examples/openapi-ts-tanstack-vue-query/vitest.config.ts
··· 1 1 import { fileURLToPath } from 'node:url' 2 2 3 - import { configDefaults, defineConfig, mergeConfig } from 'vitest/config' 3 + import { createVitestConfig } from '@config/vite-base' 4 + import { configDefaults, mergeConfig } from 'vitest/config' 4 5 5 6 import viteConfig from './vite.config' 6 7 7 8 export default mergeConfig( 8 9 viteConfig, 9 - defineConfig({ 10 + createVitestConfig(fileURLToPath(new URL('./', import.meta.url)), { 10 11 test: { 11 12 environment: 'jsdom', 12 - exclude: [...configDefaults.exclude, 'e2e/**'], 13 - root: fileURLToPath(new URL('./', import.meta.url)) 13 + exclude: [...configDefaults.exclude, 'e2e/**'] 14 14 } 15 15 }) 16 16 )
+1
package.json
··· 50 50 "@hey-api/client-fetch": "workspace:*", 51 51 "@hey-api/client-next": "workspace:*", 52 52 "@hey-api/client-nuxt": "workspace:*", 53 + "@config/vite-base": "workspace:*", 53 54 "@types/node": "22.10.5", 54 55 "@typescript-eslint/eslint-plugin": "8.29.1", 55 56 "@vitest/coverage-v8": "3.1.1",
+1
packages/client-axios/package.json
··· 72 72 "devDependencies": { 73 73 "@hey-api/client-core": "workspace:*", 74 74 "@hey-api/openapi-ts": "workspace:*", 75 + "@config/vite-base": "workspace:*", 75 76 "axios": "1.8.2" 76 77 } 77 78 }
+6 -10
packages/client-axios/vitest.config.ts
··· 1 1 import { fileURLToPath } from 'node:url'; 2 2 3 - import { defineConfig } from 'vitest/config'; 3 + import { createVitestConfig } from '@config/vite-base'; 4 4 5 - export default defineConfig({ 6 - test: { 7 - coverage: { 8 - exclude: ['dist', 'src/**/*.d.ts'], 9 - include: ['src/**/*.ts'], 10 - provider: 'v8', 11 - }, 12 - root: fileURLToPath(new URL('./', import.meta.url)), 5 + export default createVitestConfig( 6 + fileURLToPath(new URL('./', import.meta.url)), 7 + { 8 + // Add specific configuration here if needed 13 9 }, 14 - }); 10 + );
+3
packages/client-core/package.json
··· 50 50 "test:watch": "vitest watch", 51 51 "test": "vitest run", 52 52 "typecheck": "vitest --typecheck --watch=false" 53 + }, 54 + "devDependencies": { 55 + "@config/vite-base": "workspace:*" 53 56 } 54 57 }
+6 -10
packages/client-core/vitest.config.ts
··· 1 1 import { fileURLToPath } from 'node:url'; 2 2 3 - import { defineConfig } from 'vitest/config'; 3 + import { createVitestConfig } from '@config/vite-base'; 4 4 5 - export default defineConfig({ 6 - test: { 7 - coverage: { 8 - exclude: ['dist', 'src/**/*.d.ts'], 9 - include: ['src/**/*.ts'], 10 - provider: 'v8', 11 - }, 12 - root: fileURLToPath(new URL('./', import.meta.url)), 5 + export default createVitestConfig( 6 + fileURLToPath(new URL('./', import.meta.url)), 7 + { 8 + // Add specific configuration here if needed 13 9 }, 14 - }); 10 + );
+2 -1
packages/client-custom/package.json
··· 67 67 }, 68 68 "devDependencies": { 69 69 "@hey-api/client-core": "workspace:*", 70 - "@hey-api/openapi-ts": "workspace:*" 70 + "@hey-api/openapi-ts": "workspace:*", 71 + "@config/vite-base": "workspace:*" 71 72 } 72 73 }
+6 -10
packages/client-custom/vitest.config.ts
··· 1 1 import { fileURLToPath } from 'node:url'; 2 2 3 - import { defineConfig } from 'vitest/config'; 3 + import { createVitestConfig } from '@config/vite-base'; 4 4 5 - export default defineConfig({ 6 - test: { 7 - coverage: { 8 - exclude: ['dist', 'src/**/*.d.ts'], 9 - include: ['src/**/*.ts'], 10 - provider: 'v8', 11 - }, 12 - root: fileURLToPath(new URL('./', import.meta.url)), 5 + export default createVitestConfig( 6 + fileURLToPath(new URL('./', import.meta.url)), 7 + { 8 + // Add specific configuration here if needed 13 9 }, 14 - }); 10 + );
+2 -1
packages/client-fetch/package.json
··· 70 70 }, 71 71 "devDependencies": { 72 72 "@hey-api/client-core": "workspace:*", 73 - "@hey-api/openapi-ts": "workspace:*" 73 + "@hey-api/openapi-ts": "workspace:*", 74 + "@config/vite-base": "workspace:*" 74 75 } 75 76 }
+6 -10
packages/client-fetch/vitest.config.ts
··· 1 1 import { fileURLToPath } from 'node:url'; 2 2 3 - import { defineConfig } from 'vitest/config'; 3 + import { createVitestConfig } from '@config/vite-base'; 4 4 5 - export default defineConfig({ 6 - test: { 7 - coverage: { 8 - exclude: ['dist', 'src/**/*.d.ts'], 9 - include: ['src/**/*.ts'], 10 - provider: 'v8', 11 - }, 12 - root: fileURLToPath(new URL('./', import.meta.url)), 5 + export default createVitestConfig( 6 + fileURLToPath(new URL('./', import.meta.url)), 7 + { 8 + // Add specific configuration here if needed 13 9 }, 14 - }); 10 + );
+2 -1
packages/client-next/package.json
··· 70 70 }, 71 71 "devDependencies": { 72 72 "@hey-api/client-core": "workspace:*", 73 - "@hey-api/openapi-ts": "workspace:*" 73 + "@hey-api/openapi-ts": "workspace:*", 74 + "@config/vite-base": "workspace:*" 74 75 } 75 76 }
+6 -10
packages/client-next/vitest.config.ts
··· 1 1 import { fileURLToPath } from 'node:url'; 2 2 3 - import { defineConfig } from 'vitest/config'; 3 + import { createVitestConfig } from '@config/vite-base'; 4 4 5 - export default defineConfig({ 6 - test: { 7 - coverage: { 8 - exclude: ['dist', 'src/**/*.d.ts'], 9 - include: ['src/**/*.ts'], 10 - provider: 'v8', 11 - }, 12 - root: fileURLToPath(new URL('./', import.meta.url)), 5 + export default createVitestConfig( 6 + fileURLToPath(new URL('./', import.meta.url)), 7 + { 8 + // Add specific configuration here if needed 13 9 }, 14 - }); 10 + );
+1
packages/client-nuxt/package.json
··· 68 68 "devDependencies": { 69 69 "@hey-api/client-core": "workspace:*", 70 70 "@hey-api/openapi-ts": "workspace:*", 71 + "@config/vite-base": "workspace:*", 71 72 "@nuxt/test-utils": "3.17.2", 72 73 "vite": "6.2.6", 73 74 "vitest": "3.1.1"
+55
packages/config-vite-base/README.md
··· 1 + # @config/vite-base 2 + 3 + Base configuration for Vite and Vitest. 4 + 5 + ## Installation 6 + 7 + ```bash 8 + pnpm add -D @config/vite-base 9 + ``` 10 + 11 + ## Usage 12 + 13 + To use the base configuration in your vitest.config.ts: 14 + 15 + ```ts 16 + // vitest.config.ts 17 + import { createVitestConfig } from '@config/vite-base'; 18 + 19 + export default createVitestConfig({ 20 + // Your specific configuration 21 + }); 22 + ``` 23 + 24 + To use the base configuration in your vite.config.ts: 25 + 26 + ```ts 27 + // vite.config.ts 28 + import { createViteConfig } from '@config/vite-base'; 29 + 30 + export default createViteConfig({ 31 + // Your specific configuration 32 + plugins: [react()], // Example 33 + }); 34 + ``` 35 + 36 + ## Implementation 37 + 38 + To complete the implementation of this package in the workspace: 39 + 40 + 1. Build the package: 41 + 42 + ```bash 43 + cd packages/configs/vite-base 44 + pnpm install 45 + pnpm build 46 + ``` 47 + 48 + 2. Add it as a dependency to your packages: 49 + 50 + ```bash 51 + cd <your-package> 52 + pnpm add -D @config/vite-base@workspace:* 53 + ``` 54 + 55 + 3. Update your vitest.config.ts and vite.config.ts files to use the base configurations.
+21
packages/config-vite-base/package.json
··· 1 + { 2 + "name": "@config/vite-base", 3 + "version": "0.0.1", 4 + "description": "Base configuration for Vite and Vitest", 5 + "main": "dist/index.js", 6 + "module": "dist/index.js", 7 + "types": "dist/index.d.ts", 8 + "license": "MIT", 9 + "type": "module", 10 + "scripts": { 11 + "build": "tsup" 12 + }, 13 + "dependencies": { 14 + "vite": "^6.2.6", 15 + "vitest": "^3.1.1" 16 + }, 17 + "devDependencies": { 18 + "typescript": "^5.8.3" 19 + }, 20 + "private": true 21 + }
+2
packages/config-vite-base/src/index.ts
··· 1 + export { createViteConfig } from './vite.base.config'; 2 + export { createVitestConfig } from './vitest.base.config';
+21
packages/config-vite-base/src/vite.base.config.ts
··· 1 + import type { UserConfig } from 'vite'; 2 + import { defineConfig, mergeConfig } from 'vite'; 3 + 4 + export function createViteConfig(config: UserConfig = {}) { 5 + const baseConfig = defineConfig({ 6 + build: { 7 + sourcemap: true, 8 + target: 'esnext', 9 + }, 10 + esbuild: { 11 + target: 'esnext', 12 + }, 13 + optimizeDeps: { 14 + esbuildOptions: { 15 + target: 'esnext', 16 + }, 17 + }, 18 + }); 19 + 20 + return mergeConfig(baseConfig, config); 21 + }
+33
packages/config-vite-base/src/vitest.base.config.ts
··· 1 + import { platform } from 'os'; 2 + import type { ViteUserConfig } from 'vitest/config'; 3 + import { configDefaults, defineConfig, mergeConfig } from 'vitest/config'; 4 + 5 + export function createVitestConfig( 6 + root: string, 7 + config: ViteUserConfig = {}, 8 + ): ViteUserConfig { 9 + const baseConfig = defineConfig({ 10 + plugins: [], 11 + test: { 12 + coverage: { 13 + exclude: ['bin', 'dist', 'src/**/*.d.ts'], 14 + include: ['src/**/*.ts', 'src/**/*.tsx', 'src/**/*.vue'], 15 + provider: 'v8', 16 + }, 17 + exclude: [...configDefaults.exclude], 18 + pool: platform() === 'win32' ? 'threads' : 'forks', 19 + poolOptions: { 20 + forks: { 21 + singleFork: false, 22 + }, 23 + threads: { 24 + singleThread: false, 25 + }, 26 + }, 27 + root, 28 + testTimeout: platform() === 'win32' ? 10000 : 5000, 29 + }, 30 + }); 31 + 32 + return mergeConfig(baseConfig, config); 33 + }
+21
packages/config-vite-base/tsconfig.json
··· 1 + { 2 + "compilerOptions": { 3 + "target": "ES2020", 4 + "useDefineForClassFields": true, 5 + "module": "ESNext", 6 + "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 + "skipLibCheck": true, 8 + "moduleResolution": "bundler", 9 + "allowImportingTsExtensions": true, 10 + "resolveJsonModule": true, 11 + "isolatedModules": true, 12 + "noEmit": true, 13 + "strict": true, 14 + "noUnusedLocals": true, 15 + "noUnusedParameters": true, 16 + "noFallthroughCasesInSwitch": true, 17 + "declaration": true, 18 + "types": [] 19 + }, 20 + "include": ["src"] 21 + }
+8
packages/config-vite-base/tsup.config.ts
··· 1 + import { defineConfig } from 'tsup'; 2 + 3 + export default defineConfig({ 4 + clean: true, 5 + dts: true, 6 + entry: ['src/index.ts'], 7 + format: ['esm'], 8 + });
+1
packages/nuxt/package.json
··· 65 65 }, 66 66 "devDependencies": { 67 67 "@hey-api/openapi-ts": "workspace:*", 68 + "@config/vite-base": "workspace:*", 68 69 "@nuxt/module-builder": "0.8.4", 69 70 "@nuxt/schema": "3.16.2", 70 71 "@nuxt/test-utils": "3.17.2",
+18 -6
packages/nuxt/vitest.config.ts
··· 1 1 import { fileURLToPath } from 'node:url'; 2 2 3 + import { createVitestConfig } from '@config/vite-base'; 3 4 import { defineVitestConfig } from '@nuxt/test-utils/config'; 4 5 6 + // Create a base configuration with any shared settings 7 + const baseConfig = createVitestConfig( 8 + fileURLToPath(new URL('./', import.meta.url)), 9 + { 10 + test: { 11 + coverage: { 12 + exclude: ['dist', 'src/**/*.d.ts'], 13 + include: ['src/**/*.ts'], 14 + provider: 'v8', 15 + }, 16 + }, 17 + }, 18 + ); 19 + 20 + // Use Nuxt's config with our common test settings 5 21 export default defineVitestConfig({ 22 + ...baseConfig, 6 23 test: { 7 - coverage: { 8 - exclude: ['dist', 'src/**/*.d.ts'], 9 - include: ['src/**/*.ts'], 10 - provider: 'v8', 11 - }, 24 + ...baseConfig.test, 12 25 environment: 'nuxt', 13 26 environmentOptions: { 14 27 nuxt: { 15 28 domEnvironment: 'jsdom', 16 29 }, 17 30 }, 18 - root: fileURLToPath(new URL('./', import.meta.url)), 19 31 }, 20 32 });
+1
packages/openapi-ts-tests/package.json
··· 36 36 "@hey-api/client-next": "workspace:*", 37 37 "@hey-api/client-nuxt": "workspace:*", 38 38 "@hey-api/openapi-ts": "workspace:*", 39 + "@config/vite-base": "workspace:*", 39 40 "@tanstack/angular-query-experimental": "5.73.3", 40 41 "@tanstack/react-query": "5.73.3", 41 42 "@tanstack/solid-query": "5.73.3",
+51 -41
packages/openapi-ts-tests/test/index.test.ts
··· 515 515 516 516 describe('index', () => { 517 517 it('parses v2 without issues', async () => { 518 - await createClient({ 519 - dryRun: true, 520 - input: './test/spec/v2.json', 521 - output: './generated/v2/', 522 - plugins: ['@hey-api/client-fetch'], 523 - }); 518 + await expect( 519 + createClient({ 520 + dryRun: true, 521 + input: './test/spec/v2.json', 522 + output: './generated/v2/', 523 + plugins: ['@hey-api/client-fetch'], 524 + }), 525 + ).resolves.not.toThrow(); 524 526 }); 525 527 526 528 it('parses v3 without issues', async () => { 527 - await createClient({ 528 - dryRun: true, 529 - input: './test/spec/v3.json', 530 - output: './generated/v3/', 531 - plugins: ['@hey-api/client-fetch'], 532 - }); 529 + await expect( 530 + createClient({ 531 + dryRun: true, 532 + input: './test/spec/v3.json', 533 + output: './generated/v3/', 534 + plugins: ['@hey-api/client-fetch'], 535 + }), 536 + ).resolves.not.toThrow(); 533 537 }); 534 538 535 539 it('parses v3-transforms without issues', async () => { 536 - await createClient({ 537 - dryRun: true, 538 - input: './test/spec/v3-transforms.json', 539 - output: './generated/v3/', 540 - plugins: [ 541 - '@hey-api/client-fetch', 542 - '@hey-api/schemas', 543 - '@hey-api/sdk', 544 - '@hey-api/typescript', 545 - { 546 - dates: true, 547 - name: '@hey-api/transformers', 548 - }, 549 - ], 550 - }); 540 + await expect( 541 + createClient({ 542 + dryRun: true, 543 + input: './test/spec/v3-transforms.json', 544 + output: './generated/v3/', 545 + plugins: [ 546 + '@hey-api/client-fetch', 547 + '@hey-api/schemas', 548 + '@hey-api/sdk', 549 + '@hey-api/typescript', 550 + { 551 + dates: true, 552 + name: '@hey-api/transformers', 553 + }, 554 + ], 555 + }), 556 + ).resolves.not.toThrow(); 551 557 }); 552 558 553 559 it('downloads and parses v2 without issues', async () => { 554 - await createClient({ 555 - dryRun: true, 556 - input: 557 - 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/packages/openapi-ts-tests/test/spec/v2.json', 558 - output: './generated/v2-downloaded/', 559 - plugins: ['@hey-api/client-fetch'], 560 - }); 560 + await expect( 561 + createClient({ 562 + dryRun: true, 563 + input: 564 + 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/packages/openapi-ts-tests/test/spec/v2.json', 565 + output: './generated/v2-downloaded/', 566 + plugins: ['@hey-api/client-fetch'], 567 + }), 568 + ).resolves.not.toThrow(); 561 569 }); 562 570 563 571 it('downloads and parses v3 without issues', async () => { 564 - await createClient({ 565 - dryRun: true, 566 - input: 567 - 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/packages/openapi-ts-tests/test/spec/v3.json', 568 - output: './generated/v3-downloaded/', 569 - plugins: ['@hey-api/client-fetch'], 570 - }); 572 + await expect( 573 + createClient({ 574 + dryRun: true, 575 + input: 576 + 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/packages/openapi-ts-tests/test/spec/v3.json', 577 + output: './generated/v3-downloaded/', 578 + plugins: ['@hey-api/client-fetch'], 579 + }), 580 + ).resolves.not.toThrow(); 571 581 }); 572 582 });
+11 -10
packages/openapi-ts-tests/vitest.config.e2e.ts
··· 1 1 import { fileURLToPath } from 'node:url'; 2 2 3 - import { defineConfig } from 'vitest/config'; 3 + import { createVitestConfig } from '@config/vite-base'; 4 4 5 - export default defineConfig({ 6 - plugins: [], 7 - test: { 8 - // Dont run tests in parallel. This is to ensure the test server can start up. 9 - // And that the port was not previously taken. 10 - fileParallelism: false, 11 - include: ['test/e2e/**/*.test.ts'], 12 - root: fileURLToPath(new URL('./', import.meta.url)), 5 + export default createVitestConfig( 6 + fileURLToPath(new URL('./', import.meta.url)), 7 + { 8 + test: { 9 + // Dont run tests in parallel. This is to ensure the test server can start up. 10 + // And that the port was not previously taken. 11 + fileParallelism: false, 12 + include: ['test/e2e/**/*.test.ts'], 13 + }, 13 14 }, 14 - }); 15 + );
+8 -12
packages/openapi-ts-tests/vitest.config.unit.ts
··· 1 1 import { fileURLToPath } from 'node:url'; 2 2 3 - import { configDefaults, defineConfig } from 'vitest/config'; 4 - 5 - export default defineConfig({ 6 - plugins: [], 7 - test: { 8 - coverage: { 9 - exclude: ['bin', 'dist', 'src/**/*.d.ts'], 10 - include: ['src/**/*.ts'], 11 - provider: 'v8', 3 + import { createVitestConfig } from '@config/vite-base'; 4 + import { configDefaults } from 'vitest/config'; 5 + export default createVitestConfig( 6 + fileURLToPath(new URL('./', import.meta.url)), 7 + { 8 + test: { 9 + exclude: [...configDefaults.exclude, 'test/e2e/**/*.test.ts'], 12 10 }, 13 - exclude: [...configDefaults.exclude, 'test/e2e/**/*.test.ts'], 14 - root: fileURLToPath(new URL('./', import.meta.url)), 15 11 }, 16 - }); 12 + );
+2 -1
packages/openapi-ts/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-ts", 3 - "version": "0.66.4", 3 + "version": "0.66.3", 4 4 "description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "repository": { ··· 97 97 "typescript": "^5.5.3" 98 98 }, 99 99 "devDependencies": { 100 + "@config/vite-base": "workspace:*", 100 101 "@types/cross-spawn": "6.0.6", 101 102 "@types/express": "4.17.21", 102 103 "axios": "1.8.2",
+6 -12
packages/openapi-ts/vitest.config.ts
··· 1 1 import { fileURLToPath } from 'node:url'; 2 2 3 - import { configDefaults, defineConfig } from 'vitest/config'; 3 + import { createVitestConfig } from '@config/vite-base'; 4 4 5 - export default defineConfig({ 6 - plugins: [], 7 - test: { 8 - coverage: { 9 - exclude: ['bin', 'dist', 'src/**/*.d.ts'], 10 - include: ['src/**/*.ts'], 11 - provider: 'v8', 12 - }, 13 - exclude: [...configDefaults.exclude], 14 - root: fileURLToPath(new URL('./', import.meta.url)), 5 + export default createVitestConfig( 6 + fileURLToPath(new URL('./', import.meta.url)), 7 + { 8 + // Add specific configuration here if needed 15 9 }, 16 - }); 10 + );
+1231 -1118
pnpm-lock.yaml
··· 17 17 '@changesets/cli': 18 18 specifier: 2.27.8 19 19 version: 2.27.8 20 + '@config/vite-base': 21 + specifier: workspace:* 22 + version: link:packages/config-vite-base 20 23 '@hey-api/client-axios': 21 24 specifier: workspace:* 22 25 version: link:packages/client-axios ··· 40 43 version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 41 44 '@vitest/coverage-v8': 42 45 specifier: 3.1.1 43 - version: 3.1.1(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 46 + version: 3.1.1(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)) 44 47 eslint: 45 48 specifier: 9.17.0 46 49 version: 9.17.0(jiti@2.4.2) ··· 82 85 version: 6.1.1(rollup@4.31.0)(typescript@5.8.3) 83 86 tsup: 84 87 specifier: 8.4.0 85 - version: 8.4.0(jiti@2.4.2)(postcss@8.5.3)(typescript@5.8.3)(yaml@2.7.1) 88 + version: 8.4.0(jiti@2.4.2)(postcss@8.5.3)(typescript@5.8.3)(yaml@2.7.0) 86 89 turbo: 87 90 specifier: 2.5.0 88 91 version: 2.5.0 ··· 94 97 version: 8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 95 98 vitest: 96 99 specifier: 3.1.1 97 - version: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 100 + version: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0) 98 101 99 102 docs: 100 103 dependencies: ··· 107 110 version: 0.33.5 108 111 vitepress: 109 112 specifier: 1.3.0 110 - version: 1.3.0(@algolia/client-search@5.23.2)(@types/node@22.10.5)(@types/react@19.0.1)(axios@1.8.4)(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.8.3) 113 + 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.8.3) 111 114 vue: 112 115 specifier: 3.5.13 113 116 version: 3.5.13(typescript@5.8.3) ··· 136 139 specifier: 19.0.0 137 140 version: 19.0.0(react@19.0.0) 138 141 devDependencies: 142 + '@config/vite-base': 143 + specifier: workspace:* 144 + version: link:../../packages/config-vite-base 139 145 '@hey-api/openapi-ts': 140 146 specifier: workspace:* 141 147 version: link:../../packages/openapi-ts ··· 153 159 version: 8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 154 160 '@vitejs/plugin-react': 155 161 specifier: 4.4.0-beta.1 156 - version: 4.4.0-beta.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 162 + version: 4.4.0-beta.1(vite@6.2.6(@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)) 157 163 autoprefixer: 158 164 specifier: 10.4.19 159 165 version: 10.4.19(postcss@8.4.41) ··· 180 186 version: 5.8.3 181 187 vite: 182 188 specifier: 6.2.6 183 - version: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 189 + version: 6.2.6(@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) 184 190 185 191 examples/openapi-ts-fastify: 186 192 dependencies: ··· 194 200 specifier: 4.8.0 195 201 version: 4.8.0 196 202 devDependencies: 203 + '@config/vite-base': 204 + specifier: workspace:* 205 + version: link:../../packages/config-vite-base 197 206 '@hey-api/openapi-ts': 198 207 specifier: workspace:* 199 208 version: link:../../packages/openapi-ts ··· 208 217 version: 5.8.3 209 218 vite: 210 219 specifier: 6.2.6 211 - version: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 220 + version: 6.2.6(@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) 212 221 vitest: 213 222 specifier: 3.1.1 214 - version: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 223 + version: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0) 215 224 216 225 examples/openapi-ts-fetch: 217 226 dependencies: ··· 234 243 specifier: 19.0.0 235 244 version: 19.0.0(react@19.0.0) 236 245 devDependencies: 246 + '@config/vite-base': 247 + specifier: workspace:* 248 + version: link:../../packages/config-vite-base 237 249 '@hey-api/openapi-ts': 238 250 specifier: workspace:* 239 251 version: link:../../packages/openapi-ts ··· 251 263 version: 8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 252 264 '@vitejs/plugin-react': 253 265 specifier: 4.4.0-beta.1 254 - version: 4.4.0-beta.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 266 + version: 4.4.0-beta.1(vite@6.2.6(@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)) 255 267 autoprefixer: 256 268 specifier: 10.4.19 257 269 version: 10.4.19(postcss@8.4.41) ··· 278 290 version: 5.8.3 279 291 vite: 280 292 specifier: 6.2.6 281 - version: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 293 + version: 6.2.6(@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) 282 294 283 295 examples/openapi-ts-next: 284 296 dependencies: ··· 287 299 version: link:../../packages/client-next 288 300 next: 289 301 specifier: 15.2.4 290 - version: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0) 302 + version: 15.2.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0) 291 303 react: 292 304 specifier: 19.0.0 293 305 version: 19.0.0 ··· 330 342 version: link:../../packages/nuxt 331 343 nuxt: 332 344 specifier: 3.14.1592 333 - 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.8.3)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 345 + 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.8.3)(vite@6.2.6(@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)) 334 346 vue: 335 347 specifier: 3.5.13 336 348 version: 3.5.13(typescript@5.8.3) ··· 343 355 devDependencies: 344 356 vite: 345 357 specifier: 6.2.6 346 - version: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 358 + version: 6.2.6(@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) 347 359 348 360 examples/openapi-ts-sample: 349 361 dependencies: ··· 366 378 specifier: 19.0.0 367 379 version: 19.0.0(react@19.0.0) 368 380 devDependencies: 381 + '@config/vite-base': 382 + specifier: workspace:* 383 + version: link:../../packages/config-vite-base 369 384 '@hey-api/openapi-ts': 370 385 specifier: workspace:* 371 386 version: link:../../packages/openapi-ts ··· 383 398 version: 8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 384 399 '@vitejs/plugin-react': 385 400 specifier: 4.4.0-beta.1 386 - version: 4.4.0-beta.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 401 + version: 4.4.0-beta.1(vite@6.2.6(@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)) 387 402 autoprefixer: 388 403 specifier: 10.4.19 389 404 version: 10.4.19(postcss@8.4.41) ··· 410 425 version: 5.8.3 411 426 vite: 412 427 specifier: 6.2.6 413 - version: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 428 + version: 6.2.6(@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) 414 429 415 430 examples/openapi-ts-tanstack-angular-query-experimental: 416 431 dependencies: ··· 419 434 version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)) 420 435 '@angular/cdk': 421 436 specifier: ^19.2.1 422 - version: 19.2.8(@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) 437 + 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) 423 438 '@angular/common': 424 439 specifier: ^19.2.0 425 440 version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) ··· 434 449 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) 435 450 '@angular/material': 436 451 specifier: ^19.2.1 437 - version: 19.2.8(@angular/cdk@19.2.8(@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) 452 + 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) 438 453 '@angular/platform-browser': 439 454 specifier: ^19.2.0 440 455 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)) ··· 462 477 devDependencies: 463 478 '@angular-devkit/build-angular': 464 479 specifier: ^19.2.0 465 - 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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)))(typescript@5.8.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.1))(yaml@2.7.1) 480 + 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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)))(typescript@5.8.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))(yaml@2.7.0) 466 481 '@angular/cli': 467 482 specifier: ^19.2.0 468 483 version: 19.2.0(@types/node@22.10.5)(chokidar@4.0.3) ··· 499 514 500 515 examples/openapi-ts-tanstack-react-query: 501 516 dependencies: 517 + '@config/vite-base': 518 + specifier: workspace:* 519 + version: link:../../packages/config-vite-base 502 520 '@hey-api/client-fetch': 503 521 specifier: workspace:* 504 522 version: link:../../packages/client-fetch ··· 541 559 version: 8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 542 560 '@vitejs/plugin-react': 543 561 specifier: 4.4.0-beta.1 544 - version: 4.4.0-beta.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 562 + version: 4.4.0-beta.1(vite@6.2.6(@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)) 545 563 autoprefixer: 546 564 specifier: 10.4.19 547 565 version: 10.4.19(postcss@8.4.41) ··· 568 586 version: 5.8.3 569 587 vite: 570 588 specifier: 6.2.6 571 - version: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 589 + version: 6.2.6(@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) 572 590 573 591 examples/openapi-ts-tanstack-svelte-query: 574 592 dependencies: 593 + '@config/vite-base': 594 + specifier: workspace:* 595 + version: link:../../packages/config-vite-base 575 596 '@hey-api/client-fetch': 576 597 specifier: workspace:* 577 598 version: link:../../packages/client-fetch ··· 590 611 version: 2.0.0 591 612 '@sveltejs/adapter-auto': 592 613 specifier: 4.0.0 593 - version: 4.0.0(@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)))(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))) 614 + version: 4.0.0(@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@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.2.6(@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))) 594 615 '@sveltejs/kit': 595 616 specifier: 2.17.1 596 - version: 2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)))(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 617 + version: 2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@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.2.6(@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)) 597 618 '@sveltejs/vite-plugin-svelte': 598 619 specifier: 5.0.3 599 - version: 5.0.3(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 620 + version: 5.0.3(svelte@5.19.9)(vite@6.2.6(@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)) 600 621 '@types/eslint': 601 622 specifier: 9.6.0 602 623 version: 9.6.0 ··· 632 653 version: 8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 633 654 vite: 634 655 specifier: 6.2.6 635 - version: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 656 + version: 6.2.6(@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) 636 657 vitest: 637 658 specifier: 3.1.1 638 - version: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 659 + version: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0) 639 660 640 661 examples/openapi-ts-tanstack-vue-query: 641 662 dependencies: ··· 658 679 specifier: 4.5.0 659 680 version: 4.5.0(vue@3.5.13(typescript@5.8.3)) 660 681 devDependencies: 682 + '@config/vite-base': 683 + specifier: workspace:* 684 + version: link:../../packages/config-vite-base 661 685 '@hey-api/openapi-ts': 662 686 specifier: workspace:* 663 687 version: link:../../packages/openapi-ts ··· 675 699 version: 22.10.5 676 700 '@vitejs/plugin-vue': 677 701 specifier: 5.2.1 678 - version: 5.2.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)) 702 + version: 5.2.1(vite@6.2.6(@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.8.3)) 679 703 '@vitejs/plugin-vue-jsx': 680 704 specifier: 4.1.1 681 - version: 4.1.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)) 705 + version: 4.1.1(vite@6.2.6(@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.8.3)) 682 706 '@vue/eslint-config-prettier': 683 707 specifier: 10.1.0 684 708 version: 10.1.0(@types/eslint@9.6.0)(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2) ··· 720 744 version: 5.8.3 721 745 vite: 722 746 specifier: 6.2.6 723 - version: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 747 + version: 6.2.6(@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) 724 748 vite-plugin-vue-devtools: 725 749 specifier: 7.7.0 726 - version: 7.7.0(rollup@4.39.0)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)) 750 + version: 7.7.0(rollup@4.39.0)(vite@6.2.6(@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.8.3)) 727 751 vitest: 728 752 specifier: 3.1.1 729 - version: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 753 + version: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0) 730 754 vue-tsc: 731 755 specifier: 2.2.0 732 756 version: 2.2.0(typescript@5.8.3) 733 757 734 758 packages/client-axios: 735 759 devDependencies: 760 + '@config/vite-base': 761 + specifier: workspace:* 762 + version: link:../config-vite-base 736 763 '@hey-api/client-core': 737 764 specifier: workspace:* 738 765 version: link:../client-core ··· 743 770 specifier: 1.8.2 744 771 version: 1.8.2 745 772 746 - packages/client-core: {} 773 + packages/client-core: 774 + devDependencies: 775 + '@config/vite-base': 776 + specifier: workspace:* 777 + version: link:../config-vite-base 747 778 748 779 packages/client-custom: 749 780 devDependencies: 781 + '@config/vite-base': 782 + specifier: workspace:* 783 + version: link:../config-vite-base 750 784 '@hey-api/client-core': 751 785 specifier: workspace:* 752 786 version: link:../client-core ··· 756 790 757 791 packages/client-fetch: 758 792 devDependencies: 793 + '@config/vite-base': 794 + specifier: workspace:* 795 + version: link:../config-vite-base 759 796 '@hey-api/client-core': 760 797 specifier: workspace:* 761 798 version: link:../client-core ··· 765 802 766 803 packages/client-next: 767 804 devDependencies: 805 + '@config/vite-base': 806 + specifier: workspace:* 807 + version: link:../config-vite-base 768 808 '@hey-api/client-core': 769 809 specifier: workspace:* 770 810 version: link:../client-core ··· 776 816 dependencies: 777 817 nuxt: 778 818 specifier: '>= 3.0.0 < 4' 779 - 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.8.3)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 819 + 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.8.3)(vite@6.2.6(@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)) 780 820 vue: 781 821 specifier: '>= 3.5.13 < 4' 782 822 version: 3.5.13(typescript@5.8.3) 783 823 devDependencies: 824 + '@config/vite-base': 825 + specifier: workspace:* 826 + version: link:../config-vite-base 784 827 '@hey-api/client-core': 785 828 specifier: workspace:* 786 829 version: link:../client-core ··· 789 832 version: link:../openapi-ts 790 833 '@nuxt/test-utils': 791 834 specifier: 3.17.2 792 - version: 3.17.2(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(yaml@2.7.1) 835 + version: 3.17.2(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0) 793 836 vite: 794 837 specifier: 6.2.6 795 - version: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 838 + version: 6.2.6(@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) 796 839 vitest: 797 840 specifier: 3.1.1 798 - version: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 841 + version: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0) 842 + 843 + packages/config-vite-base: 844 + dependencies: 845 + vite: 846 + specifier: ^6.2.6 847 + version: 6.2.6(@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) 848 + vitest: 849 + specifier: ^3.1.1 850 + version: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0) 851 + devDependencies: 852 + typescript: 853 + specifier: ^5.8.3 854 + version: 5.8.3 799 855 800 856 packages/nuxt: 801 857 dependencies: ··· 813 869 version: 1.7.4 814 870 nuxt: 815 871 specifier: '>= 3.0.0 < 4' 816 - 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@3.29.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 872 + 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@3.29.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vite@6.2.6(@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)) 817 873 vue: 818 874 specifier: '>= 3.5.13 < 4' 819 875 version: 3.5.13(typescript@5.8.3) 820 876 devDependencies: 877 + '@config/vite-base': 878 + specifier: workspace:* 879 + version: link:../config-vite-base 821 880 '@hey-api/openapi-ts': 822 881 specifier: workspace:* 823 882 version: link:../openapi-ts 824 883 '@nuxt/module-builder': 825 884 specifier: 0.8.4 826 - version: 0.8.4(@nuxt/kit@3.15.4(magicast@0.3.5))(nuxi@3.24.1)(sass@1.85.0)(typescript@5.8.3) 885 + version: 0.8.4(@nuxt/kit@3.15.4(magicast@0.3.5))(nuxi@3.22.5)(sass@1.85.0)(typescript@5.8.3) 827 886 '@nuxt/schema': 828 887 specifier: 3.16.2 829 888 version: 3.16.2 830 889 '@nuxt/test-utils': 831 890 specifier: 3.17.2 832 - version: 3.17.2(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(yaml@2.7.1) 891 + version: 3.17.2(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0) 833 892 vite: 834 893 specifier: 6.2.6 835 - version: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 894 + version: 6.2.6(@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) 836 895 837 896 packages/openapi-ts: 838 897 dependencies: ··· 849 908 specifier: 4.7.8 850 909 version: 4.7.8 851 910 devDependencies: 911 + '@config/vite-base': 912 + specifier: workspace:* 913 + version: link:../config-vite-base 852 914 '@types/cross-spawn': 853 915 specifier: 6.0.6 854 916 version: 6.0.6 ··· 890 952 devDependencies: 891 953 '@angular-devkit/build-angular': 892 954 specifier: 19.2.0 893 - 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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)))(typescript@5.8.3)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(yaml@2.7.1) 955 + 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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)))(typescript@5.8.3)(vite@6.2.6(@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))(yaml@2.7.0) 894 956 '@angular/animations': 895 957 specifier: 19.2.0 896 958 version: 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)) ··· 921 983 '@angular/router': 922 984 specifier: 19.2.0 923 985 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) 986 + '@config/vite-base': 987 + specifier: workspace:* 988 + version: link:../config-vite-base 924 989 '@hey-api/client-axios': 925 990 specifier: workspace:* 926 991 version: link:../client-axios ··· 986 1051 version: 3.3.2 987 1052 nuxt: 988 1053 specifier: 3.14.1592 989 - 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.8.3)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 1054 + 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.8.3)(vite@6.2.6(@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)) 990 1055 prettier: 991 1056 specifier: 3.4.2 992 1057 version: 3.4.2 ··· 1022 1087 version: 5.8.3 1023 1088 vite: 1024 1089 specifier: 6.2.6 1025 - version: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 1090 + version: 6.2.6(@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) 1026 1091 1027 1092 packages: 1028 1093 ··· 1046 1111 '@algolia/client-search': '>= 4.9.1 < 6' 1047 1112 algoliasearch: '>= 4.9.1 < 6' 1048 1113 1049 - '@algolia/client-abtesting@5.23.2': 1050 - resolution: {integrity: sha512-EudQGeYEzviwqPH8WoqP5VTQssE/PW6sEdL0zzOyKt2bWnWoUp5Rnm67sCbxYDR44JpUchbkul0PfWrSYsBPjQ==} 1114 + '@algolia/client-abtesting@5.21.0': 1115 + resolution: {integrity: sha512-I239aSmXa3pXDhp3AWGaIfesqJBNFA7drUM8SIfNxMIzvQXUnHRf4rW1o77QXLI/nIClNsb8KOLaB62gO9LnlQ==} 1051 1116 engines: {node: '>= 14.0.0'} 1052 1117 1053 - '@algolia/client-analytics@5.23.2': 1054 - resolution: {integrity: sha512-zmJrkZqWFu+ft+VRcttZZJhw5ElkhBtOArRzQOu9sRnrSSodBOdPRhAfvu8tG93Hv67wh5qQaTBwLxM58AxuMg==} 1118 + '@algolia/client-analytics@5.21.0': 1119 + resolution: {integrity: sha512-OxoUfeG9G4VE4gS7B4q65KkHzdGsQsDwxQfR5J9uKB8poSGuNlHJWsF3ABqCkc5VliAR0m8KMjsQ9o/kOpEGnQ==} 1055 1120 engines: {node: '>= 14.0.0'} 1056 1121 1057 - '@algolia/client-common@5.23.2': 1058 - resolution: {integrity: sha512-xaE6o4BMdqYBe0iB7JjX6G9/Qeqx6TSs9T4d6VJ0JHPsEyklSwIbKRiomPeYD7vzt2P4t45Io6QBhifOUP+0qg==} 1122 + '@algolia/client-common@5.21.0': 1123 + resolution: {integrity: sha512-iHLgDQFyZNe9M16vipbx6FGOA8NoMswHrfom/QlCGoyh7ntjGvfMb+J2Ss8rRsAlOWluv8h923Ku3QVaB0oWDQ==} 1059 1124 engines: {node: '>= 14.0.0'} 1060 1125 1061 - '@algolia/client-insights@5.23.2': 1062 - resolution: {integrity: sha512-F85hpMszbr5ZGt8gFdl7WOugELRF4z3R1nD9n3t7PZ/2alV7IR75UQY8/jMQDwij/lrnVaKbLeIvKKy6K7ncZw==} 1126 + '@algolia/client-insights@5.21.0': 1127 + resolution: {integrity: sha512-y7XBO9Iwb75FLDl95AYcWSLIViJTpR5SUUCyKsYhpP9DgyUqWbISqDLXc96TS9shj+H+7VsTKA9cJK8NUfVN6g==} 1063 1128 engines: {node: '>= 14.0.0'} 1064 1129 1065 - '@algolia/client-personalization@5.23.2': 1066 - resolution: {integrity: sha512-TuGaGKiQvQqFNR4c3Vdl+JBe6dkEPmRzVyIdWLrurOPEmFmVCKRxtSnLr0TVFl6de/JfDAXuchvtvLHFxv9P2A==} 1130 + '@algolia/client-personalization@5.21.0': 1131 + resolution: {integrity: sha512-6KU658lD9Tss4oCX6c/O15tNZxw7vR+WAUG95YtZzYG/KGJHTpy2uckqbMmC2cEK4a86FAq4pH5azSJ7cGMjuw==} 1067 1132 engines: {node: '>= 14.0.0'} 1068 1133 1069 - '@algolia/client-query-suggestions@5.23.2': 1070 - resolution: {integrity: sha512-fg2tZf7Sf51Icjfrea0dnfbfwlJ7kXMcRsWSJN3DZhEi/Y4mMmK9L0Cq8sby6HDzxy5T8xEWNWC3TMx5FvrJ6w==} 1134 + '@algolia/client-query-suggestions@5.21.0': 1135 + resolution: {integrity: sha512-pG6MyVh1v0X+uwrKHn3U+suHdgJ2C+gug+UGkNHfMELHMsEoWIAQhxMBOFg7hCnWBFjQnuq6qhM3X9X5QO3d9Q==} 1071 1136 engines: {node: '>= 14.0.0'} 1072 1137 1073 - '@algolia/client-search@5.23.2': 1074 - resolution: {integrity: sha512-XiTjt0qgsJk9OqvDpMwTgUaPAYNSQcMILRfSYiorgiyc71yYM7Lq1vRSVxhB0m51mrViWj4rIR6kSiJRXebqvQ==} 1138 + '@algolia/client-search@5.21.0': 1139 + resolution: {integrity: sha512-nZfgJH4njBK98tFCmCW1VX/ExH4bNOl9DSboxeXGgvhoL0fG1+4DDr/mrLe21OggVCQqHwXBMh6fFInvBeyhiQ==} 1075 1140 engines: {node: '>= 14.0.0'} 1076 1141 1077 - '@algolia/ingestion@1.23.2': 1078 - resolution: {integrity: sha512-7ClIghvUFZTomBipD8Kor9Z5llcAM3lHUBG3VFOvUsOxOJcaMMONlBXyoFDfI1na+u14lVaGehY2oIEfY1eB0w==} 1142 + '@algolia/ingestion@1.21.0': 1143 + resolution: {integrity: sha512-k6MZxLbZphGN5uRri9J/krQQBjUrqNcScPh985XXEFXbSCRvOPKVtjjLdVjGVHXXPOQgKrIZHxIdRNbHS+wVuA==} 1079 1144 engines: {node: '>= 14.0.0'} 1080 1145 1081 - '@algolia/monitoring@1.23.2': 1082 - resolution: {integrity: sha512-kF7KKd0iIIlaD70flFS+8+DNxRvIzrG9A22iWG5LDX225Kl6pITroq+qIUweqqyyoqJBYuIXKZGDGtnahEwQxw==} 1146 + '@algolia/monitoring@1.21.0': 1147 + resolution: {integrity: sha512-FiW5nnmyHvaGdorqLClw3PM6keXexAMiwbwJ9xzQr4LcNefLG3ln82NafRPgJO/z0dETAOKjds5aSmEFMiITHQ==} 1083 1148 engines: {node: '>= 14.0.0'} 1084 1149 1085 - '@algolia/recommend@5.23.2': 1086 - resolution: {integrity: sha512-nAgS2O5ww8J4fgW6GAiybAdr0uH7MV74srPdx51cPJRpQBEge4WnYBaOWx1/a53qI0xwNtQudnEyBGUzsSYaAw==} 1150 + '@algolia/recommend@5.21.0': 1151 + resolution: {integrity: sha512-+JXavbbliaLmah5QNgc/TDW/+r0ALa+rGhg5Y7+pF6GpNnzO0L+nlUaDNE8QbiJfz54F9BkwFUnJJeRJAuzTFw==} 1087 1152 engines: {node: '>= 14.0.0'} 1088 1153 1089 - '@algolia/requester-browser-xhr@5.23.2': 1090 - resolution: {integrity: sha512-yw6IzgQcwr4cZuoQCEoQui9G0rhVRGCyhPhW+gmrXe6oVr4qB50FV6mWGLA170+iqGVjPn/DVuOhExjBzcViTQ==} 1154 + '@algolia/requester-browser-xhr@5.21.0': 1155 + resolution: {integrity: sha512-Iw+Yj5hOmo/iixHS94vEAQ3zi5GPpJywhfxn1el/zWo4AvPIte/+1h9Ywgw/+3M7YBj4jgAkScxjxQCxzLBsjA==} 1091 1156 engines: {node: '>= 14.0.0'} 1092 1157 1093 - '@algolia/requester-fetch@5.23.2': 1094 - resolution: {integrity: sha512-8rmSybTwIqmGx3P0qkOEUkkyeIewglaKq6yUnxnVkBJbd4USfIZsw9cME1YUEHeZI7aOhTQg9QteUHSKXclF5A==} 1158 + '@algolia/requester-fetch@5.21.0': 1159 + resolution: {integrity: sha512-Z00SRLlIFj3SjYVfsd9Yd3kB3dUwQFAkQG18NunWP7cix2ezXpJqA+xAoEf9vc4QZHdxU3Gm8gHAtRiM2iVaTQ==} 1095 1160 engines: {node: '>= 14.0.0'} 1096 1161 1097 - '@algolia/requester-node-http@5.23.2': 1098 - resolution: {integrity: sha512-IHpUiW3d3oVE5tCYqQN7X71/EbXI7f8WxU85eWW1UYEWEknqW3csdGctyIW7+qMHFfxeDymI1Wln/gGHHIXLIw==} 1162 + '@algolia/requester-node-http@5.21.0': 1163 + resolution: {integrity: sha512-WqU0VumUILrIeVYCTGZlyyZoC/tbvhiyPxfGRRO1cSjxN558bnJLlR2BvS0SJ5b75dRNK7HDvtXo2QoP9eLfiA==} 1099 1164 engines: {node: '>= 14.0.0'} 1100 1165 1101 1166 '@alloc/quick-lru@5.2.0': ··· 1219 1284 tailwindcss: 1220 1285 optional: true 1221 1286 1222 - '@angular/cdk@19.2.8': 1223 - resolution: {integrity: sha512-ZZqWVYFF80TdjWkk2sc9Pn2luhiYeC78VH3Yjeln4wXMsTGDsvKPBcuOxSxxpJ31saaVBehDjBUuXMqGRj8KuA==} 1287 + '@angular/cdk@19.2.2': 1288 + resolution: {integrity: sha512-YLiydMiTSf7s/LKaLgNeWawspulqdo/47zcjs1sEkHOcmyN1yR2Q0zQdgSbtsvuNikaR4NMNgTybNTDnULl64A==} 1224 1289 peerDependencies: 1225 1290 '@angular/common': ^19.0.0 || ^20.0.0 1226 1291 '@angular/core': ^19.0.0 || ^20.0.0 ··· 1271 1336 '@angular/platform-browser': 19.2.0 1272 1337 rxjs: ^6.5.3 || ^7.4.0 1273 1338 1274 - '@angular/material@19.2.8': 1275 - resolution: {integrity: sha512-5h2eB7188dvkiP2RBrO+VMWzXp3fgreywYbWk6jVYeD3uPUWvmaMH866+QRjdg0cAYeopWJWcWj1aSEZGPuvTg==} 1339 + '@angular/material@19.2.2': 1340 + resolution: {integrity: sha512-ChaxmiQkdtYJZCuTzh/LuOofg3/TLKDM/NtmlPrOA8GCEGX5oHQiu9NgJmdwi8LmGJL0lvFS1ftfVSjBTgHlxA==} 1276 1341 peerDependencies: 1277 - '@angular/cdk': 19.2.8 1342 + '@angular/cdk': 19.2.2 1278 1343 '@angular/common': ^19.0.0 || ^20.0.0 1279 1344 '@angular/core': ^19.0.0 || ^20.0.0 1280 1345 '@angular/forms': ^19.0.0 || ^20.0.0 ··· 1338 1403 resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==} 1339 1404 engines: {node: '>=6.9.0'} 1340 1405 1341 - '@babel/generator@7.26.9': 1342 - resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==} 1406 + '@babel/generator@7.26.10': 1407 + resolution: {integrity: sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==} 1343 1408 engines: {node: '>=6.9.0'} 1344 1409 1345 - '@babel/generator@7.27.0': 1346 - resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==} 1410 + '@babel/generator@7.26.9': 1411 + resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==} 1347 1412 engines: {node: '>=6.9.0'} 1348 1413 1349 1414 '@babel/helper-annotate-as-pure@7.25.9': 1350 1415 resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} 1351 1416 engines: {node: '>=6.9.0'} 1352 1417 1353 - '@babel/helper-compilation-targets@7.27.0': 1354 - resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==} 1418 + '@babel/helper-compilation-targets@7.26.5': 1419 + resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==} 1355 1420 engines: {node: '>=6.9.0'} 1356 1421 1357 - '@babel/helper-create-class-features-plugin@7.27.0': 1358 - resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==} 1422 + '@babel/helper-create-class-features-plugin@7.26.9': 1423 + resolution: {integrity: sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==} 1359 1424 engines: {node: '>=6.9.0'} 1360 1425 peerDependencies: 1361 1426 '@babel/core': ^7.0.0 1362 1427 1363 - '@babel/helper-create-regexp-features-plugin@7.27.0': 1364 - resolution: {integrity: sha512-fO8l08T76v48BhpNRW/nQ0MxfnSdoSKUJBMjubOAYffsVuGG5qOfMq7N6Es7UJvi7Y8goXXo07EfcHZXDPuELQ==} 1428 + '@babel/helper-create-regexp-features-plugin@7.26.3': 1429 + resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==} 1365 1430 engines: {node: '>=6.9.0'} 1366 1431 peerDependencies: 1367 1432 '@babel/core': ^7.0.0 1368 1433 1369 - '@babel/helper-define-polyfill-provider@0.6.4': 1370 - resolution: {integrity: sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==} 1434 + '@babel/helper-define-polyfill-provider@0.6.3': 1435 + resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==} 1371 1436 peerDependencies: 1372 1437 '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 1373 1438 ··· 1429 1494 resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} 1430 1495 engines: {node: '>=6.9.0'} 1431 1496 1432 - '@babel/helpers@7.27.0': 1433 - resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==} 1497 + '@babel/helpers@7.26.10': 1498 + resolution: {integrity: sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==} 1434 1499 engines: {node: '>=6.9.0'} 1435 1500 1436 - '@babel/parser@7.27.0': 1437 - resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==} 1501 + '@babel/parser@7.26.10': 1502 + resolution: {integrity: sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==} 1438 1503 engines: {node: '>=6.0.0'} 1439 1504 hasBin: true 1440 1505 ··· 1545 1610 peerDependencies: 1546 1611 '@babel/core': ^7.0.0-0 1547 1612 1548 - '@babel/plugin-transform-block-scoping@7.27.0': 1549 - resolution: {integrity: sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==} 1613 + '@babel/plugin-transform-block-scoping@7.25.9': 1614 + resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==} 1550 1615 engines: {node: '>=6.9.0'} 1551 1616 peerDependencies: 1552 1617 '@babel/core': ^7.0.0-0 ··· 1761 1826 peerDependencies: 1762 1827 '@babel/core': ^7.0.0-0 1763 1828 1764 - '@babel/plugin-transform-regenerator@7.27.0': 1765 - resolution: {integrity: sha512-LX/vCajUJQDqE7Aum/ELUMZAY19+cDpghxrnyt5I1tV6X5PyC86AOoWXWFYFeIvauyeSA6/ktn4tQVn/3ZifsA==} 1829 + '@babel/plugin-transform-regenerator@7.25.9': 1830 + resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==} 1766 1831 engines: {node: '>=6.9.0'} 1767 1832 peerDependencies: 1768 1833 '@babel/core': ^7.0.0-0 ··· 1809 1874 peerDependencies: 1810 1875 '@babel/core': ^7.0.0-0 1811 1876 1812 - '@babel/plugin-transform-typeof-symbol@7.27.0': 1813 - resolution: {integrity: sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w==} 1877 + '@babel/plugin-transform-typeof-symbol@7.26.7': 1878 + resolution: {integrity: sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==} 1814 1879 engines: {node: '>=6.9.0'} 1815 1880 peerDependencies: 1816 1881 '@babel/core': ^7.0.0-0 1817 1882 1818 - '@babel/plugin-transform-typescript@7.27.0': 1819 - resolution: {integrity: sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==} 1883 + '@babel/plugin-transform-typescript@7.26.8': 1884 + resolution: {integrity: sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==} 1820 1885 engines: {node: '>=6.9.0'} 1821 1886 peerDependencies: 1822 1887 '@babel/core': ^7.0.0-0 ··· 1856 1921 peerDependencies: 1857 1922 '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 1858 1923 1924 + '@babel/runtime@7.26.10': 1925 + resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==} 1926 + engines: {node: '>=6.9.0'} 1927 + 1859 1928 '@babel/runtime@7.26.9': 1860 1929 resolution: {integrity: sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==} 1861 1930 engines: {node: '>=6.9.0'} 1862 1931 1863 - '@babel/runtime@7.27.0': 1864 - resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==} 1932 + '@babel/standalone@7.26.10': 1933 + resolution: {integrity: sha512-AYXK0hLWfEaK9WAePJqs30qro09a8w7X3YZzjukqtLXreE7xBZYdi5EMrP87T4UrVqmQ9tIX6L6SeTu5LDh3zw==} 1865 1934 engines: {node: '>=6.9.0'} 1866 1935 1867 - '@babel/standalone@7.27.0': 1868 - resolution: {integrity: sha512-UxFDpi+BuSz6Q1X73P3ZSM1CB7Nbbqys+7COi/tdouRuaqRsJ6GAzUyxTswbqItHSItVY3frQdd+paBHHGEk9g==} 1869 - engines: {node: '>=6.9.0'} 1870 - 1871 - '@babel/template@7.27.0': 1872 - resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==} 1936 + '@babel/template@7.26.9': 1937 + resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==} 1873 1938 engines: {node: '>=6.9.0'} 1874 1939 1875 - '@babel/traverse@7.27.0': 1876 - resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==} 1940 + '@babel/traverse@7.26.10': 1941 + resolution: {integrity: sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==} 1877 1942 engines: {node: '>=6.9.0'} 1878 1943 1879 - '@babel/types@7.27.0': 1880 - resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==} 1944 + '@babel/types@7.26.10': 1945 + resolution: {integrity: sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==} 1881 1946 engines: {node: '>=6.9.0'} 1882 1947 1883 1948 '@bcoe/v8-coverage@1.0.2': ··· 1948 2013 '@changesets/write@0.3.2': 1949 2014 resolution: {integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==} 1950 2015 1951 - '@cloudflare/kv-asset-handler@0.4.0': 1952 - resolution: {integrity: sha512-+tv3z+SPp+gqTIcImN9o0hqE9xyfQjI1XD9pL6NuKjua9B1y7mNYv0S9cP+QEbA4ppVgGZEmKOvHX5G5Ei1CVA==} 1953 - engines: {node: '>=18.0.0'} 2016 + '@cloudflare/kv-asset-handler@0.3.4': 2017 + resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==} 2018 + engines: {node: '>=16.13'} 1954 2019 1955 2020 '@colors/colors@1.5.0': 1956 2021 resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} ··· 1987 2052 search-insights: 1988 2053 optional: true 1989 2054 1990 - '@emnapi/core@1.4.0': 1991 - resolution: {integrity: sha512-H+N/FqT07NmLmt6OFFtDfwe8PNygprzBikrEMyQfgqSmT0vzE515Pz7R8izwB9q/zsH/MA64AKoul3sA6/CzVg==} 1992 - 1993 - '@emnapi/runtime@1.4.0': 1994 - resolution: {integrity: sha512-64WYIf4UYcdLnbKn/umDlNjQDSS8AgZrI/R9+x5ilkUVFxXcA1Ebl+gQLc/6mERA4407Xof0R7wEyEuj091CVw==} 1995 - 1996 - '@emnapi/wasi-threads@1.0.1': 1997 - resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==} 2055 + '@emnapi/runtime@1.3.1': 2056 + resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} 1998 2057 1999 2058 '@esbuild/aix-ppc64@0.19.12': 2000 2059 resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} ··· 2722 2781 cpu: [x64] 2723 2782 os: [win32] 2724 2783 2725 - '@eslint-community/eslint-utils@4.5.1': 2726 - resolution: {integrity: sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==} 2784 + '@eslint-community/eslint-utils@4.5.0': 2785 + resolution: {integrity: sha512-RoV8Xs9eNwiDvhv7M+xcL4PWyRyIXRY/FLp3buU4h1EYfdF7unWUy3dOjPqb3C7rMUewIcqwW850PgS8h1o1yg==} 2727 2786 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2728 2787 peerDependencies: 2729 2788 eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 ··· 2736 2795 resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==} 2737 2796 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2738 2797 2739 - '@eslint/core@0.13.0': 2740 - resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==} 2798 + '@eslint/core@0.12.0': 2799 + resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==} 2741 2800 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2742 2801 2743 2802 '@eslint/core@0.9.1': 2744 2803 resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==} 2745 2804 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2746 2805 2747 - '@eslint/eslintrc@3.3.1': 2748 - resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} 2806 + '@eslint/eslintrc@3.3.0': 2807 + resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==} 2749 2808 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2750 2809 2751 2810 '@eslint/js@9.17.0': ··· 2756 2815 resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} 2757 2816 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2758 2817 2759 - '@eslint/plugin-kit@0.2.8': 2760 - resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==} 2818 + '@eslint/plugin-kit@0.2.7': 2819 + resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==} 2761 2820 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2762 2821 2763 2822 '@fastify/ajv-compiler@4.0.2': 2764 2823 resolution: {integrity: sha512-Rkiu/8wIjpsf46Rr+Fitd3HRP+VsxUFDDeag0hs9L0ksfnwx2g7SPQQTFL0E8Qv+rfXzQOxBJnjUB9ITUDjfWQ==} 2765 2824 2766 - '@fastify/error@4.1.0': 2767 - resolution: {integrity: sha512-KeFcciOr1eo/YvIXHP65S94jfEEqn1RxTRBT1aJaHxY5FK0/GDXYozsQMMWlZoHgi8i0s+YtrLsgj/JkUUjSkQ==} 2825 + '@fastify/error@4.0.0': 2826 + resolution: {integrity: sha512-OO/SA8As24JtT1usTUTKgGH7uLvhfwZPwlptRi2Dp5P4KKmJI3gvsZ8MIHnNwDs4sLf/aai5LzTyl66xr7qMxA==} 2768 2827 2769 2828 '@fastify/fast-json-stringify-compiler@5.0.2': 2770 2829 resolution: {integrity: sha512-YdR7gqlLg1xZAQa+SX4sMNzQHY5pC54fu9oC5aYSUqBhyn6fkLkrdtKlpVdCNPlwuUuXA1PjFTEmvMF6ZVXVGw==} ··· 2919 2978 cpu: [x64] 2920 2979 os: [win32] 2921 2980 2922 - '@inquirer/checkbox@4.1.5': 2923 - resolution: {integrity: sha512-swPczVU+at65xa5uPfNP9u3qx/alNwiaykiI/ExpsmMSQW55trmZcwhYWzw/7fj+n6Q8z1eENvR7vFfq9oPSAQ==} 2981 + '@inquirer/checkbox@4.1.3': 2982 + resolution: {integrity: sha512-KU1MGwf24iABJjGESxhyj+/rlQYSRoCfcuHDEHXfZ1DENmbuSRfyrUb+LLjHoee5TNOFKwaFxDXc5/zRwJUPMQ==} 2924 2983 engines: {node: '>=18'} 2925 2984 peerDependencies: 2926 2985 '@types/node': '>=18' ··· 2937 2996 '@types/node': 2938 2997 optional: true 2939 2998 2940 - '@inquirer/confirm@5.1.9': 2941 - resolution: {integrity: sha512-NgQCnHqFTjF7Ys2fsqK2WtnA8X1kHyInyG+nMIuHowVTIgIuS10T4AznI/PvbqSpJqjCUqNBlKGh1v3bwLFL4w==} 2999 + '@inquirer/confirm@5.1.7': 3000 + resolution: {integrity: sha512-Xrfbrw9eSiHb+GsesO8TQIeHSMTP0xyvTCeeYevgZ4sKW+iz9w/47bgfG9b0niQm+xaLY2EWPBINUPldLwvYiw==} 2942 3001 engines: {node: '>=18'} 2943 3002 peerDependencies: 2944 3003 '@types/node': '>=18' ··· 2946 3005 '@types/node': 2947 3006 optional: true 2948 3007 2949 - '@inquirer/core@10.1.10': 2950 - resolution: {integrity: sha512-roDaKeY1PYY0aCqhRmXihrHjoSW2A00pV3Ke5fTpMCkzcGF64R8e0lw3dK+eLEHwS4vB5RnW1wuQmvzoRul8Mw==} 3008 + '@inquirer/core@10.1.8': 3009 + resolution: {integrity: sha512-HpAqR8y715zPpM9e/9Q+N88bnGwqqL8ePgZ0SMv/s3673JLMv3bIkoivGmjPqXlEgisUksSXibweQccUwEx4qQ==} 2951 3010 engines: {node: '>=18'} 2952 3011 peerDependencies: 2953 3012 '@types/node': '>=18' ··· 2955 3014 '@types/node': 2956 3015 optional: true 2957 3016 2958 - '@inquirer/editor@4.2.10': 2959 - resolution: {integrity: sha512-5GVWJ+qeI6BzR6TIInLP9SXhWCEcvgFQYmcRG6d6RIlhFjM5TyG18paTGBgRYyEouvCmzeco47x9zX9tQEofkw==} 3017 + '@inquirer/editor@4.2.8': 3018 + resolution: {integrity: sha512-UkGKbMFlQw5k4ZLjDwEi5z8NIVlP/3DAlLHta0o0pSsdpPThNmPtUL8mvGCHUaQtR+QrxR9yRYNWgKMsHkfIUA==} 2960 3019 engines: {node: '>=18'} 2961 3020 peerDependencies: 2962 3021 '@types/node': '>=18' ··· 2964 3023 '@types/node': 2965 3024 optional: true 2966 3025 2967 - '@inquirer/expand@4.0.12': 2968 - resolution: {integrity: sha512-jV8QoZE1fC0vPe6TnsOfig+qwu7Iza1pkXoUJ3SroRagrt2hxiL+RbM432YAihNR7m7XnU0HWl/WQ35RIGmXHw==} 3026 + '@inquirer/expand@4.0.10': 3027 + resolution: {integrity: sha512-leyBouGJ77ggv51Jb/OJmLGGnU2HYc13MZ2iiPNLwe2VgFgZPVqsrRWSa1RAHKyazjOyvSNKLD1B2K7A/iWi1g==} 2969 3028 engines: {node: '>=18'} 2970 3029 peerDependencies: 2971 3030 '@types/node': '>=18' ··· 2977 3036 resolution: {integrity: sha512-eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw==} 2978 3037 engines: {node: '>=18'} 2979 3038 2980 - '@inquirer/input@4.1.9': 2981 - resolution: {integrity: sha512-mshNG24Ij5KqsQtOZMgj5TwEjIf+F2HOESk6bjMwGWgcH5UBe8UoljwzNFHqdMbGYbgAf6v2wU/X9CAdKJzgOA==} 3039 + '@inquirer/input@4.1.7': 3040 + resolution: {integrity: sha512-rCQAipJNA14UTH84df/z4jDJ9LZ54H6zzuCAi7WZ0qVqx3CSqLjfXAMd5cpISIxbiHVJCPRB81gZksq6CZsqDg==} 2982 3041 engines: {node: '>=18'} 2983 3042 peerDependencies: 2984 3043 '@types/node': '>=18' ··· 2986 3045 '@types/node': 2987 3046 optional: true 2988 3047 2989 - '@inquirer/number@3.0.12': 2990 - resolution: {integrity: sha512-7HRFHxbPCA4e4jMxTQglHJwP+v/kpFsCf2szzfBHy98Wlc3L08HL76UDiA87TOdX5fwj2HMOLWqRWv9Pnn+Z5Q==} 3048 + '@inquirer/number@3.0.10': 3049 + resolution: {integrity: sha512-GLsdnxzNefjCJUmWyjaAuNklHgDpCTL4RMllAVhVvAzBwRW9g38eZ5tWgzo1lirtSDTpsh593hqXVhxvdrjfwA==} 2991 3050 engines: {node: '>=18'} 2992 3051 peerDependencies: 2993 3052 '@types/node': '>=18' ··· 2995 3054 '@types/node': 2996 3055 optional: true 2997 3056 2998 - '@inquirer/password@4.0.12': 2999 - resolution: {integrity: sha512-FlOB0zvuELPEbnBYiPaOdJIaDzb2PmJ7ghi/SVwIHDDSQ2K4opGBkF+5kXOg6ucrtSUQdLhVVY5tycH0j0l+0g==} 3057 + '@inquirer/password@4.0.10': 3058 + resolution: {integrity: sha512-JC538ujqeYKkFqLoWZ0ILBteIUO2yajBMVEUZSxjl9x6fiEQtM+I5Rca7M2D8edMDbyHLnXifGH1hJZdh8V5rA==} 3000 3059 engines: {node: '>=18'} 3001 3060 peerDependencies: 3002 3061 '@types/node': '>=18' ··· 3013 3072 '@types/node': 3014 3073 optional: true 3015 3074 3016 - '@inquirer/rawlist@4.0.12': 3017 - resolution: {integrity: sha512-wNPJZy8Oc7RyGISPxp9/MpTOqX8lr0r+lCCWm7hQra+MDtYRgINv1hxw7R+vKP71Bu/3LszabxOodfV/uTfsaA==} 3075 + '@inquirer/rawlist@4.0.10': 3076 + resolution: {integrity: sha512-vOQbQkmhaCsF2bUmjoyRSZJBz77UnIF/F3ZS2LMgwbgyaG2WgwKHh0WKNj0APDB72WDbZijhW5nObQbk+TnbcA==} 3018 3077 engines: {node: '>=18'} 3019 3078 peerDependencies: 3020 3079 '@types/node': '>=18' ··· 3022 3081 '@types/node': 3023 3082 optional: true 3024 3083 3025 - '@inquirer/search@3.0.12': 3026 - resolution: {integrity: sha512-H/kDJA3kNlnNIjB8YsaXoQI0Qccgf0Na14K1h8ExWhNmUg2E941dyFPrZeugihEa9AZNW5NdsD/NcvUME83OPQ==} 3084 + '@inquirer/search@3.0.10': 3085 + resolution: {integrity: sha512-EAVKAz6P1LajZOdoL+R+XC3HJYSU261fbJzO4fCkJJ7UPFcm+nP+gzC+DDZWsb2WK9PQvKsnaKiNKsY8B6dBWQ==} 3027 3086 engines: {node: '>=18'} 3028 3087 peerDependencies: 3029 3088 '@types/node': '>=18' ··· 3031 3090 '@types/node': 3032 3091 optional: true 3033 3092 3034 - '@inquirer/select@4.1.1': 3035 - resolution: {integrity: sha512-IUXzzTKVdiVNMA+2yUvPxWsSgOG4kfX93jOM4Zb5FgujeInotv5SPIJVeXQ+fO4xu7tW8VowFhdG5JRmmCyQ1Q==} 3093 + '@inquirer/select@4.0.10': 3094 + resolution: {integrity: sha512-Tg8S9nESnCfISu5tCZSuXpXq0wHuDVimj7xyHstABgR34zcJnLdq/VbjB2mdZvNAMAehYBnNzSjxB06UE8LLAA==} 3036 3095 engines: {node: '>=18'} 3037 3096 peerDependencies: 3038 3097 '@types/node': '>=18' ··· 3044 3103 resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==} 3045 3104 engines: {node: '>=18'} 3046 3105 3047 - '@inquirer/type@3.0.6': 3048 - resolution: {integrity: sha512-/mKVCtVpyBu3IDarv0G+59KC4stsD5mDsGpYh+GKs1NZT88Jh52+cuoA1AtLk2Q0r/quNl+1cSUyLRHBFeD0XA==} 3106 + '@inquirer/type@3.0.5': 3107 + resolution: {integrity: sha512-ZJpeIYYueOz/i/ONzrfof8g89kNdO2hjGuvULROo3O8rlB2CRtSseE5KeirnyE4t/thAn/EwvS/vuQeJCn+NZg==} 3049 3108 engines: {node: '>=18'} 3050 3109 peerDependencies: 3051 3110 '@types/node': '>=18' ··· 3302 3361 resolution: {integrity: sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ==} 3303 3362 engines: {node: '>= 10'} 3304 3363 3305 - '@napi-rs/wasm-runtime@0.2.8': 3306 - resolution: {integrity: sha512-OBlgKdX7gin7OIq4fadsjpg+cp2ZphvAIKucHsNfTdJiqdOmOEwQd/bHi0VwNrcw5xpBJyUw6cK/QilCqy1BSg==} 3307 - 3308 3364 '@neoconfetti/svelte@2.0.0': 3309 3365 resolution: {integrity: sha512-n/Uu7/XmHc8w0uBci0QWBjgbRzLhfWsH8yPJ5pMaseIvzSwabXvB30nb3JjzEYNBp9uGt4eCeY7LUmxAjnJV8A==} 3310 3366 3311 - '@netlify/functions@3.0.4': 3312 - resolution: {integrity: sha512-Ox8+ABI+nsLK+c4/oC5dpquXuEIjzfTlJrdQKgQijCsDQoje7inXFAtKDLvvaGvuvE+PVpMLwQcIUL6P9Ob1hQ==} 3367 + '@netlify/functions@3.0.0': 3368 + resolution: {integrity: sha512-XXf9mNw4+fkxUzukDpJtzc32bl1+YlXZwEhc5ZgMcTbJPLpgRLDs5WWSPJ4eY/Mv1ZFvtxmMwmfgoQYVt68Qog==} 3313 3369 engines: {node: '>=18.0.0'} 3314 3370 3315 - '@netlify/serverless-functions-api@1.36.0': 3316 - resolution: {integrity: sha512-z6okREyK8in0486a22Oro0k+YsuyEjDXJt46FpgeOgXqKJ9ElM8QPll0iuLBkpbH33ENiNbIPLd1cuClRQnhiw==} 3371 + '@netlify/node-cookies@0.1.0': 3372 + resolution: {integrity: sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==} 3373 + engines: {node: ^14.16.0 || >=16.0.0} 3374 + 3375 + '@netlify/serverless-functions-api@1.30.1': 3376 + resolution: {integrity: sha512-JkbaWFeydQdeDHz1mAy4rw+E3bl9YtbCgkntfTxq+IlNX/aIMv2/b1kZnQZcil4/sPoZGL831Dq6E374qRpU1A==} 3317 3377 engines: {node: '>=18.0.0'} 3318 3378 3319 3379 '@next/env@15.2.4': ··· 3476 3536 resolution: {integrity: sha512-2HZPM372kuI/uw9VU/hOoYuzv803oZAtyoEKC5dQCQTKAQ293AjypF3WljMXUSReFS/hcbBSgGzYUPHr3Qo+pg==} 3477 3537 engines: {node: ^14.18.0 || >=16.10.0} 3478 3538 3479 - '@nuxt/telemetry@2.6.6': 3480 - resolution: {integrity: sha512-Zh4HJLjzvm3Cq9w6sfzIFyH9ozK5ePYVfCUzzUQNiZojFsI2k1QkSBrVI9BGc6ArKXj/O6rkI6w7qQ+ouL8Cag==} 3539 + '@nuxt/telemetry@2.6.5': 3540 + resolution: {integrity: sha512-lwMp9OHML/m0mjh7P5iz9PxINnk5smGkGebh88Wh8PjvnRooY1TBsbyq7mlSrNibpwD1BkwqhV5IAZOXWHLxMQ==} 3481 3541 engines: {node: '>=18.12.0'} 3482 3542 hasBin: true 3483 3543 ··· 3526 3586 '@one-ini/wasm@0.1.1': 3527 3587 resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} 3528 3588 3529 - '@opentelemetry/api@1.9.0': 3530 - resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} 3531 - engines: {node: '>=8.0.0'} 3532 - 3533 3589 '@parcel/watcher-android-arm64@2.5.1': 3534 3590 resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} 3535 3591 engines: {node: '>= 10.0.0'} ··· 3622 3678 resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 3623 3679 engines: {node: '>=14'} 3624 3680 3625 - '@pkgr/core@0.2.0': 3626 - resolution: {integrity: sha512-vsJDAkYR6qCPu+ioGScGiMYR7LvZYIXh/dlQeviqoTWNCVfKTLYD/LkNWH4Mxsv2a5vpIRc77FN5DnmK1eBggQ==} 3681 + '@pkgr/core@0.1.1': 3682 + resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} 3627 3683 engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 3628 3684 3629 3685 '@polka/url@1.0.0-next.28': ··· 4256 4312 '@types/react-dom': 4257 4313 optional: true 4258 4314 4315 + '@redocly/ajv@8.11.2': 4316 + resolution: {integrity: sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==} 4317 + 4318 + '@redocly/config@0.22.1': 4319 + resolution: {integrity: sha512-1CqQfiG456v9ZgYBG9xRQHnpXjt8WoSnDwdkX6gxktuK69v2037hTAR1eh0DGIqpZ1p4k82cGH8yTNwt7/pI9g==} 4320 + 4321 + '@redocly/openapi-core@1.33.1': 4322 + resolution: {integrity: sha512-tL3v8FVwdcCAcruOZV77uxH2ZFtnY3DRPG+rgmlm9hsu5uoatofVSJIJHUroz54KJ8ryeo28wQHhOr8iReGGEQ==} 4323 + engines: {node: '>=18.17.0', npm: '>=9.5.0'} 4324 + 4259 4325 '@rollup/plugin-alias@5.1.1': 4260 4326 resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} 4261 4327 engines: {node: '>=14.0.0'} ··· 4658 4724 '@sec-ant/readable-stream@0.4.1': 4659 4725 resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==} 4660 4726 4661 - '@seriousme/openapi-schema-validator@2.4.0': 4662 - resolution: {integrity: sha512-2PWq2QbDMu+CANpBLZ2Uch9PgTIiftLpiLH4lcaykjV463f4Vt9eD61EeaVI++D0HII4JKnptX46391pII1XZA==} 4727 + '@seriousme/openapi-schema-validator@2.3.1': 4728 + resolution: {integrity: sha512-szUXBZJUhq+Yw+vUro2QeltSIoZvMDQi3MLqJhIKcRcRYyFt9B6dyjMD1RVf3nFvNAHkWqa48NJA46ti2P8smA==} 4663 4729 hasBin: true 4664 4730 4665 4731 '@shikijs/core@1.29.2': ··· 4852 4918 resolution: {integrity: sha512-UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA==} 4853 4919 engines: {node: ^18.17.0 || >=20.5.0} 4854 4920 4855 - '@tybys/wasm-util@0.9.0': 4856 - resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} 4857 - 4858 4921 '@types/babel__core@7.20.5': 4859 4922 resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 4860 4923 4861 - '@types/babel__generator@7.27.0': 4862 - resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} 4924 + '@types/babel__generator@7.6.8': 4925 + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} 4863 4926 4864 4927 '@types/babel__template@7.4.4': 4865 4928 resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 4866 4929 4867 - '@types/babel__traverse@7.20.7': 4868 - resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==} 4930 + '@types/babel__traverse@7.20.6': 4931 + resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} 4869 4932 4870 4933 '@types/body-parser@1.19.5': 4871 4934 resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} ··· 4975 5038 '@types/retry@0.12.2': 4976 5039 resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==} 4977 5040 4978 - '@types/semver@7.7.0': 4979 - resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==} 5041 + '@types/semver@7.5.8': 5042 + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} 4980 5043 4981 5044 '@types/send@0.17.4': 4982 5045 resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} ··· 4999 5062 '@types/web-bluetooth@0.0.20': 5000 5063 resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} 5001 5064 5002 - '@types/ws@8.18.1': 5003 - resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} 5065 + '@types/ws@8.18.0': 5066 + resolution: {integrity: sha512-8svvI3hMyvN0kKCJMvTJP/x6Y/EoQbepff882wL+Sn5QsXb3etnamgrJq4isrBxSJj5L2AuXcI0+bgkoAXGUJw==} 5004 5067 5005 5068 '@types/yauzl@2.10.3': 5006 5069 resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} ··· 5105 5168 peerDependencies: 5106 5169 vue: '>=2.7 || >=3' 5107 5170 5108 - '@unrs/resolver-binding-darwin-arm64@1.3.3': 5109 - resolution: {integrity: sha512-EpRILdWr3/xDa/7MoyfO7JuBIJqpBMphtu4+80BK1bRfFcniVT74h3Z7q1+WOc92FuIAYatB1vn9TJR67sORGw==} 5110 - cpu: [arm64] 5111 - os: [darwin] 5112 - 5113 - '@unrs/resolver-binding-darwin-x64@1.3.3': 5114 - resolution: {integrity: sha512-ntj/g7lPyqwinMJWZ+DKHBse8HhVxswGTmNgFKJtdgGub3M3zp5BSZ3bvMP+kBT6dnYJLSVlDqdwOq1P8i0+/g==} 5115 - cpu: [x64] 5116 - os: [darwin] 5117 - 5118 - '@unrs/resolver-binding-freebsd-x64@1.3.3': 5119 - resolution: {integrity: sha512-l6BT8f2CU821EW7U8hSUK8XPq4bmyTlt9Mn4ERrfjJNoCw0/JoHAh9amZZtV3cwC3bwwIat+GUnrcHTG9+qixw==} 5120 - cpu: [x64] 5121 - os: [freebsd] 5122 - 5123 - '@unrs/resolver-binding-linux-arm-gnueabihf@1.3.3': 5124 - resolution: {integrity: sha512-8ScEc5a4y7oE2BonRvzJ+2GSkBaYWyh0/Ko4Q25e/ix6ANpJNhwEPZvCR6GVRmsQAYMIfQvYLdM6YEN+qRjnAQ==} 5125 - cpu: [arm] 5126 - os: [linux] 5127 - 5128 - '@unrs/resolver-binding-linux-arm-musleabihf@1.3.3': 5129 - resolution: {integrity: sha512-8qQ6l1VTzLNd3xb2IEXISOKwMGXDCzY/UNy/7SovFW2Sp0K3YbL7Ao7R18v6SQkLqQlhhqSBIFRk+u6+qu5R5A==} 5130 - cpu: [arm] 5131 - os: [linux] 5132 - 5133 - '@unrs/resolver-binding-linux-arm64-gnu@1.3.3': 5134 - resolution: {integrity: sha512-v81R2wjqcWXJlQY23byqYHt9221h4anQ6wwN64oMD/WAE+FmxPHFZee5bhRkNVtzqO/q7wki33VFWlhiADwUeQ==} 5135 - cpu: [arm64] 5136 - os: [linux] 5137 - 5138 - '@unrs/resolver-binding-linux-arm64-musl@1.3.3': 5139 - resolution: {integrity: sha512-cAOx/j0u5coMg4oct/BwMzvWJdVciVauUvsd+GQB/1FZYKQZmqPy0EjJzJGbVzFc6gbnfEcSqvQE6gvbGf2N8Q==} 5140 - cpu: [arm64] 5141 - os: [linux] 5142 - 5143 - '@unrs/resolver-binding-linux-ppc64-gnu@1.3.3': 5144 - resolution: {integrity: sha512-mq2blqwErgDJD4gtFDlTX/HZ7lNP8YCHYFij2gkXPtMzrXxPW1hOtxL6xg4NWxvnj4bppppb0W3s/buvM55yfg==} 5145 - cpu: [ppc64] 5146 - os: [linux] 5147 - 5148 - '@unrs/resolver-binding-linux-s390x-gnu@1.3.3': 5149 - resolution: {integrity: sha512-u0VRzfFYysarYHnztj2k2xr+eu9rmgoTUUgCCIT37Nr+j0A05Xk2c3RY8Mh5+DhCl2aYibihnaAEJHeR0UOFIQ==} 5150 - cpu: [s390x] 5151 - os: [linux] 5152 - 5153 - '@unrs/resolver-binding-linux-x64-gnu@1.3.3': 5154 - resolution: {integrity: sha512-OrVo5ZsG29kBF0Ug95a2KidS16PqAMmQNozM6InbquOfW/udouk063e25JVLqIBhHLB2WyBnixOQ19tmeC/hIg==} 5155 - cpu: [x64] 5156 - os: [linux] 5157 - 5158 - '@unrs/resolver-binding-linux-x64-musl@1.3.3': 5159 - resolution: {integrity: sha512-PYnmrwZ4HMp9SkrOhqPghY/aoL+Rtd4CQbr93GlrRTjK6kDzfMfgz3UH3jt6elrQAfupa1qyr1uXzeVmoEAxUA==} 5160 - cpu: [x64] 5161 - os: [linux] 5162 - 5163 - '@unrs/resolver-binding-wasm32-wasi@1.3.3': 5164 - resolution: {integrity: sha512-81AnQY6fShmktQw4hWDUIilsKSdvr/acdJ5azAreu2IWNlaJOKphJSsUVWE+yCk6kBMoQyG9ZHCb/krb5K0PEA==} 5165 - engines: {node: '>=14.0.0'} 5166 - cpu: [wasm32] 5167 - 5168 - '@unrs/resolver-binding-win32-arm64-msvc@1.3.3': 5169 - resolution: {integrity: sha512-X/42BMNw7cW6xrB9syuP5RusRnWGoq+IqvJO8IDpp/BZg64J1uuIW6qA/1Cl13Y4LyLXbJVYbYNSKwR/FiHEng==} 5170 - cpu: [arm64] 5171 - os: [win32] 5172 - 5173 - '@unrs/resolver-binding-win32-ia32-msvc@1.3.3': 5174 - resolution: {integrity: sha512-EGNnNGQxMU5aTN7js3ETYvuw882zcO+dsVjs+DwO2j/fRVKth87C8e2GzxW1L3+iWAXMyJhvFBKRavk9Og1Z6A==} 5175 - cpu: [ia32] 5176 - os: [win32] 5177 - 5178 - '@unrs/resolver-binding-win32-x64-msvc@1.3.3': 5179 - resolution: {integrity: sha512-GraLbYqOJcmW1qY3osB+2YIiD62nVf2/bVLHZmrb4t/YSUwE03l7TwcDJl08T/Tm3SVhepX8RQkpzWbag/Sb4w==} 5180 - cpu: [x64] 5181 - os: [win32] 5182 - 5183 5171 '@vercel/nft@0.29.2': 5184 5172 resolution: {integrity: sha512-A/Si4mrTkQqJ6EXJKv5EYCDQ3NL6nJXxG8VGXePsaiQigsomHYQC9xSpX8qGk7AEZk4b1ssbYIqJ0ISQQ7bfcA==} 5185 5173 engines: {node: '>=18'} ··· 5579 5567 ajv@8.17.1: 5580 5568 resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} 5581 5569 5582 - algoliasearch@5.23.2: 5583 - resolution: {integrity: sha512-IhKP22Czzg8Y9HaF6aIb5aAHK2HBj4VAzLLnKEPUnxqDwxpryH9sXbm0NkeY7Cby9GlF81wF+AG/VulKDFBphg==} 5570 + algoliasearch@5.21.0: 5571 + resolution: {integrity: sha512-hexLq2lSO1K5SW9j21Ubc+q9Ptx7dyRTY7se19U8lhIlVMLCNXWCyQ6C22p9ez8ccX0v7QVmwkl2l1CnuGoO2Q==} 5584 5572 engines: {node: '>= 14.0.0'} 5585 5573 5586 5574 alien-signals@0.4.14: ··· 5673 5661 resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 5674 5662 engines: {node: '>= 0.4'} 5675 5663 5676 - array.prototype.findlastindex@1.2.6: 5677 - resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} 5664 + array.prototype.findlastindex@1.2.5: 5665 + resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 5678 5666 engines: {node: '>= 0.4'} 5679 5667 5680 5668 array.prototype.flat@1.3.3: ··· 5757 5745 axios@1.8.2: 5758 5746 resolution: {integrity: sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==} 5759 5747 5760 - axios@1.8.4: 5761 - resolution: {integrity: sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==} 5762 - 5763 5748 axobject-query@4.1.0: 5764 5749 resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 5765 5750 engines: {node: '>= 0.4'} ··· 5774 5759 '@babel/core': ^7.12.0 5775 5760 webpack: '>=5' 5776 5761 5777 - babel-plugin-polyfill-corejs2@0.4.13: 5778 - resolution: {integrity: sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==} 5762 + babel-plugin-polyfill-corejs2@0.4.12: 5763 + resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==} 5779 5764 peerDependencies: 5780 5765 '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 5781 5766 ··· 5789 5774 peerDependencies: 5790 5775 '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 5791 5776 5792 - babel-plugin-polyfill-regenerator@0.6.4: 5793 - resolution: {integrity: sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==} 5777 + babel-plugin-polyfill-regenerator@0.6.3: 5778 + resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==} 5794 5779 peerDependencies: 5795 5780 '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 5796 5781 ··· 5925 5910 magicast: 5926 5911 optional: true 5927 5912 5928 - c12@3.0.3: 5929 - resolution: {integrity: sha512-uC3MacKBb0Z15o5QWCHvHWj5Zv34pGQj9P+iXKSpTuSGFS0KKhUWf4t9AJ+gWjYOdmWCPEGpEzm8sS0iqbpo1w==} 5913 + c12@3.0.2: 5914 + resolution: {integrity: sha512-6Tzk1/TNeI3WBPpK0j/Ss4+gPj3PUJYbWl/MWDJBThFvwNGNkXtd7Cz8BJtD4aRwoGHtzQD0SnxamgUiBH0/Nw==} 5930 5915 peerDependencies: 5931 5916 magicast: ^0.3.5 5932 5917 peerDependenciesMeta: ··· 5964 5949 caniuse-api@3.0.0: 5965 5950 resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} 5966 5951 5967 - caniuse-lite@1.0.30001712: 5968 - resolution: {integrity: sha512-MBqPpGYYdQ7/hfKiet9SCI+nmN5/hp4ZzveOJubl5DTAMa5oggjAuoi0Z4onBpKPFI2ePGnQuQIzF3VxDjDJig==} 5952 + caniuse-lite@1.0.30001703: 5953 + resolution: {integrity: sha512-kRlAGTRWgPsOj7oARC9m1okJEXdL/8fekFVcxA8Hl7GH4r/sN4OJn/i6Flde373T50KS7Y37oFbMwlE8+F42kQ==} 5954 + 5955 + caniuse-lite@1.0.30001709: 5956 + resolution: {integrity: sha512-NgL3vUTnDrPCZ3zTahp4fsugQ4dc7EKTSzwQDPEel6DMoMnfH2jhry9n2Zm8onbSR+f/QtKHFOA+iAQu4kbtWA==} 5969 5957 5970 5958 ccount@2.0.1: 5971 5959 resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} ··· 5982 5970 resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} 5983 5971 engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 5984 5972 5973 + change-case@5.4.4: 5974 + resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} 5975 + 5985 5976 char-regex@1.0.2: 5986 5977 resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} 5987 5978 engines: {node: '>=10'} ··· 6116 6107 colord@2.9.3: 6117 6108 resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} 6118 6109 6110 + colorette@1.4.0: 6111 + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} 6112 + 6119 6113 colorette@2.0.20: 6120 6114 resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} 6121 6115 ··· 6180 6174 confbox@0.1.8: 6181 6175 resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 6182 6176 6183 - confbox@0.2.2: 6184 - resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} 6177 + confbox@0.2.1: 6178 + resolution: {integrity: sha512-hkT3yDPFbs95mNCy1+7qNKC6Pro+/ibzYxtM2iqEigpf0sVw+bg4Zh9/snjsBcf990vfIsg5+1U7VyiyBb3etg==} 6185 6179 6186 6180 config-chain@1.1.13: 6187 6181 resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} ··· 6194 6188 resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} 6195 6189 engines: {node: '>= 0.10.0'} 6196 6190 6191 + consola@3.4.0: 6192 + resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==} 6193 + engines: {node: ^14.18.0 || >=16.10.0} 6194 + 6197 6195 consola@3.4.2: 6198 6196 resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} 6199 6197 engines: {node: ^14.18.0 || >=16.10.0} ··· 6285 6283 resolution: {integrity: sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==} 6286 6284 engines: {node: '>=18.0'} 6287 6285 6288 - cronstrue@2.58.0: 6289 - resolution: {integrity: sha512-5P3esL5URj/u1h7N1zYl33V9XHNh15DQVGQITdIq7kAY78rP9tMYxXgi8kCXGoFqbyXFMMQRvzthHTYxUtp9Fw==} 6286 + cronstrue@2.56.0: 6287 + resolution: {integrity: sha512-/YC3b4D/E/S8ToQ7f676A2fqoC3vVpXKjJ4SMsP0jYsvRYJdZ6h9+Fq/Y7FoFDEUFCqLTca+G2qTV227lyyFZg==} 6290 6288 hasBin: true 6291 6289 6292 6290 cross-spawn@5.1.0: ··· 6544 6542 resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 6545 6543 engines: {node: '>=6'} 6546 6544 6547 - destr@2.0.5: 6548 - resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} 6545 + destr@2.0.3: 6546 + resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} 6549 6547 6550 6548 destroy@1.2.0: 6551 6549 resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} ··· 6654 6652 ee-first@1.1.1: 6655 6653 resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 6656 6654 6657 - electron-to-chromium@1.5.132: 6658 - resolution: {integrity: sha512-QgX9EBvWGmvSRa74zqfnG7+Eno0Ak0vftBll0Pt2/z5b3bEGYL6OUXLgKPtvx73dn3dvwrlyVkjPKRRlhLYTEg==} 6655 + electron-to-chromium@1.5.114: 6656 + resolution: {integrity: sha512-DFptFef3iktoKlFQK/afbo274/XNWD00Am0xa7M8FZUepHlHT8PEuiNBoRfFHbH1okqN58AlhbJ4QTkcnXorjA==} 6659 6657 6660 6658 emoji-regex-xs@1.0.0: 6661 6659 resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==} ··· 6850 6848 eslint-import-resolver-node@0.3.9: 6851 6849 resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 6852 6850 6853 - eslint-import-resolver-typescript@3.10.0: 6854 - resolution: {integrity: sha512-aV3/dVsT0/H9BtpNwbaqvl+0xGMRGzncLyhm793NFGvbwGGvzyAykqWZ8oZlZuGwuHkwJjhWJkG1cM3ynvd2pQ==} 6851 + eslint-import-resolver-typescript@3.8.5: 6852 + resolution: {integrity: sha512-0ZRnzOqKc7TRm85w6REOUkVLHevN6nWd/xZsmKhSD/dcDktoxQaQAg59e5EK/QEsGFf7o5JSpE6qTwCEz0WjTw==} 6855 6853 engines: {node: ^14.18.0 || >=16.0.0} 6856 6854 peerDependencies: 6857 6855 eslint: '*' ··· 6900 6898 peerDependencies: 6901 6899 eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 6902 6900 6903 - eslint-plugin-prettier@5.2.6: 6904 - resolution: {integrity: sha512-mUcf7QG2Tjk7H055Jk0lGBjbgDnfrvqjhXh9t2xLMSCjZVcw9Rb1V6sVNXO0th3jgeO7zllWPTNRil3JW94TnQ==} 6901 + eslint-plugin-prettier@5.2.3: 6902 + resolution: {integrity: sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==} 6905 6903 engines: {node: ^14.18.0 || >=16.0.0} 6906 6904 peerDependencies: 6907 6905 '@types/eslint': '>=8.0.0' 6908 6906 eslint: '>=8.0.0' 6909 - eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0' 6907 + eslint-config-prettier: '*' 6910 6908 prettier: '>=3.0.0' 6911 6909 peerDependenciesMeta: 6912 6910 '@types/eslint': ··· 6925 6923 peerDependencies: 6926 6924 eslint: '>=7' 6927 6925 6928 - eslint-plugin-react@7.37.5: 6929 - resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==} 6926 + eslint-plugin-react@7.37.4: 6927 + resolution: {integrity: sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==} 6930 6928 engines: {node: '>=4'} 6931 6929 peerDependencies: 6932 6930 eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 ··· 7028 7026 resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 7029 7027 engines: {node: '>=0.10'} 7030 7028 7031 - esrap@1.4.6: 7032 - resolution: {integrity: sha512-F/D2mADJ9SHY3IwksD4DAXjTt7qt7GWUf3/8RhCNWmC/67tyb55dpimHmy7EplakFaflV0R/PC+fdSPqrRHAQw==} 7029 + esrap@1.4.5: 7030 + resolution: {integrity: sha512-CjNMjkBWWZeHn+VX+gS8YvFwJ5+NDhg8aWZBSFJPR8qQduDNjbJodA2WcwCm7uQa5Rjqj+nZvVmceg1RbHFB9g==} 7033 7031 7034 7032 esrecurse@4.3.0: 7035 7033 resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} ··· 7394 7392 resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==} 7395 7393 hasBin: true 7396 7394 7397 - git-up@8.1.0: 7398 - resolution: {integrity: sha512-cT2f5ERrhFDMPS5wLHURcjRiacC8HonX0zIAWBTwHv1fS6HheP902l6pefOX/H9lNmvCHDwomw0VeN7nhg5bxg==} 7395 + git-config-path@2.0.0: 7396 + resolution: {integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==} 7397 + engines: {node: '>=4'} 7398 + 7399 + git-up@8.0.1: 7400 + resolution: {integrity: sha512-2XFu1uNZMSjkyetaF+8rqn6P0XqpMq/C+2ycjI6YwrIKcszZ5/WR4UubxjN0lILOKqLkLaHDaCr2B6fP1cke6g==} 7399 7401 7400 7402 git-url-parse@16.0.1: 7401 7403 resolution: {integrity: sha512-mcD36GrhAzX5JVOsIO52qNpgRyFzYWRbU1VSRFCvJt1IJvqfvH427wWw/CFqkWvjVPtdG5VTx4MKUeC5GeFPDQ==} ··· 7616 7618 resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} 7617 7619 engines: {node: '>=16.17.0'} 7618 7620 7619 - human-signals@8.0.1: 7620 - resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==} 7621 + human-signals@8.0.0: 7622 + resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==} 7621 7623 engines: {node: '>=18.18.0'} 7622 7624 7623 7625 husky@9.1.7: ··· 7670 7672 engines: {node: '>=0.10.0'} 7671 7673 hasBin: true 7672 7674 7673 - immutable@5.1.1: 7674 - resolution: {integrity: sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==} 7675 + immutable@5.0.3: 7676 + resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==} 7675 7677 7676 7678 import-fresh@3.3.1: 7677 7679 resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} ··· 7686 7688 imurmurhash@0.1.4: 7687 7689 resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 7688 7690 engines: {node: '>=0.8.19'} 7691 + 7692 + index-to-position@0.1.2: 7693 + resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==} 7694 + engines: {node: '>=18'} 7689 7695 7690 7696 inflight@1.0.6: 7691 7697 resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} ··· 7757 7763 resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} 7758 7764 engines: {node: '>= 0.4'} 7759 7765 7760 - is-bun-module@2.0.0: 7761 - resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==} 7766 + is-bun-module@1.3.0: 7767 + resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} 7762 7768 7763 7769 is-callable@1.2.7: 7764 7770 resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} ··· 8047 8053 js-cookie@3.0.5: 8048 8054 resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} 8049 8055 engines: {node: '>=14'} 8056 + 8057 + js-levenshtein@1.1.6: 8058 + resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==} 8059 + engines: {node: '>=0.10.0'} 8050 8060 8051 8061 js-tokens@4.0.0: 8052 8062 resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} ··· 8499 8509 engines: {node: '>=10.0.0'} 8500 8510 hasBin: true 8501 8511 8502 - mime@4.0.7: 8503 - resolution: {integrity: sha512-2OfDPL+e03E0LrXaGYOtTFIYhiuzep94NSsuhrNULq+stylcJedcHdzHtz0atMUuGwJfFYs0YL5xeC/Ca2x0eQ==} 8512 + mime@4.0.6: 8513 + resolution: {integrity: sha512-4rGt7rvQHBbaSOF9POGkk1ocRP16Md1x36Xma8sz8h8/vfCUI2OtEIeCqe4Ofes853x4xDoPiFLIT47J5fI/7A==} 8504 8514 engines: {node: '>=16'} 8505 8515 hasBin: true 8506 8516 ··· 8582 8592 resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} 8583 8593 engines: {node: '>= 8'} 8584 8594 8585 - minizlib@3.0.2: 8586 - resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==} 8595 + minizlib@3.0.1: 8596 + resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==} 8587 8597 engines: {node: '>= 18'} 8588 8598 8589 8599 mitt@3.0.1: ··· 8671 8681 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 8672 8682 hasBin: true 8673 8683 8684 + nanoid@3.3.9: 8685 + resolution: {integrity: sha512-SppoicMGpZvbF1l3z4x7No3OlIjP7QJvC9XR7AhZr1kL133KHnKPztkKDc+Ir4aJ/1VhTySrtKhrsycmrMQfvg==} 8686 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 8687 + hasBin: true 8688 + 8689 + nanoid@5.1.3: 8690 + resolution: {integrity: sha512-zAbEOEr7u2CbxwoMRlz/pNSpRP0FdAU4pRaYunCdEezWohXFs+a0Xw7RfkKaezMsmSM1vttcLthJtwRnVtOfHQ==} 8691 + engines: {node: ^18 || >=20} 8692 + hasBin: true 8693 + 8674 8694 nanoid@5.1.5: 8675 8695 resolution: {integrity: sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==} 8676 8696 engines: {node: ^18 || >=20} ··· 8730 8750 sass: 8731 8751 optional: true 8732 8752 8733 - nitropack@2.11.8: 8734 - resolution: {integrity: sha512-ummTu4R8Lhd1nO3nWrW7eeiHA2ey3ntbWFKkYakm4rcbvT6meWp+oykyrYBNFQKhobQl9CydmUWlCyztYXFPJw==} 8753 + nitropack@2.11.6: 8754 + resolution: {integrity: sha512-iaLzOKYxsNL8G6h9cMFTC/hAN4RfhZsrFzFFzemr6Vfn57MooYEz6KLeUoRyTposlAeEWTVejz8naYOORIrnDg==} 8735 8755 engines: {node: ^16.11.0 || >=17.0.0} 8736 8756 hasBin: true 8737 8757 peerDependencies: ··· 8782 8802 resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} 8783 8803 hasBin: true 8784 8804 8785 - node-gyp@11.2.0: 8786 - resolution: {integrity: sha512-T0S1zqskVUSxcsSTkAsLc7xCycrRYmtDHadDinzocrThjyQCn5kMlEBSj6H4qDbgsIOSLmmlRIeb0lZXj+UArA==} 8805 + node-gyp@11.1.0: 8806 + resolution: {integrity: sha512-/+7TuHKnBpnMvUQnsYEb0JOozDZqarQbfNuSGLXIjhStMT0fbw7IdSqWgopOP5xhRZE+lsbIvAHcekddruPZgQ==} 8787 8807 engines: {node: ^18.17.0 || >=20.5.0} 8788 8808 hasBin: true 8789 8809 ··· 8863 8883 nth-check@2.1.1: 8864 8884 resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 8865 8885 8866 - nuxi@3.24.1: 8867 - resolution: {integrity: sha512-78r93j0+03YxMLeCWNAqPRKO/6pGHIpmRrnrwR+ff0nRJ785uddqMzLfGDMAXVG7OtSnBNm0vHkSGsUZID7bkw==} 8886 + nuxi@3.22.5: 8887 + resolution: {integrity: sha512-fYEA7FDWQAVxGclBA/HHD+I4OurKuGBgxr/IGI6a78vjIg91AIhOPAzVcEkMtCSb0RWOnju3U1XO4ENnHMCq5Q==} 8868 8888 engines: {node: ^16.10.0 || >=18.0.0} 8869 8889 hasBin: true 8870 8890 ··· 8881 8901 '@types/node': 8882 8902 optional: true 8883 8903 8884 - nwsapi@2.2.20: 8885 - resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==} 8904 + nwsapi@2.2.18: 8905 + resolution: {integrity: sha512-p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA==} 8886 8906 8887 8907 nypm@0.3.12: 8888 8908 resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==} ··· 8924 8944 resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} 8925 8945 engines: {node: '>= 0.4'} 8926 8946 8927 - object.entries@1.1.9: 8928 - resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==} 8947 + object.entries@1.1.8: 8948 + resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 8929 8949 engines: {node: '>= 0.4'} 8930 8950 8931 8951 object.fromentries@2.0.8: ··· 8994 9014 resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} 8995 9015 engines: {node: '>=12'} 8996 9016 9017 + openapi-typescript@7.6.1: 9018 + resolution: {integrity: sha512-F7RXEeo/heF3O9lOXo2bNjCOtfp7u+D6W3a3VNEH2xE6v+fxLtn5nq0uvUcA1F5aT+CMhNeC5Uqtg5tlXFX/ag==} 9019 + hasBin: true 9020 + peerDependencies: 9021 + typescript: ^5.x 9022 + 8997 9023 optionator@0.9.4: 8998 9024 resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 8999 9025 engines: {node: '>= 0.8.0'} ··· 9074 9100 package-manager-detector@0.2.11: 9075 9101 resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==} 9076 9102 9077 - package-manager-detector@1.1.0: 9078 - resolution: {integrity: sha512-Y8f9qUlBzW8qauJjd/eu6jlpJZsuPJm2ZAV0cDVd420o4EdpH5RPdoCv+60/TdJflGatr4sDfpAL6ArWZbM5tA==} 9079 - 9080 9103 packrup@0.1.2: 9081 9104 resolution: {integrity: sha512-ZcKU7zrr5GlonoS9cxxrb5HVswGnyj6jQvwFBa6p5VFw7G71VAHcUKL5wyZSU/ECtPM/9gacWxy2KFQKt1gMNA==} 9082 9105 ··· 9089 9112 resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 9090 9113 engines: {node: '>=6'} 9091 9114 9115 + parse-git-config@3.0.0: 9116 + resolution: {integrity: sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==} 9117 + engines: {node: '>=8'} 9118 + 9092 9119 parse-json@5.2.0: 9093 9120 resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 9094 9121 engines: {node: '>=8'} 9122 + 9123 + parse-json@8.1.0: 9124 + resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==} 9125 + engines: {node: '>=18'} 9095 9126 9096 9127 parse-ms@4.0.0: 9097 9128 resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} ··· 9233 9264 resolution: {integrity: sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==} 9234 9265 hasBin: true 9235 9266 9236 - pirates@4.0.7: 9237 - resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} 9267 + pirates@4.0.6: 9268 + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 9238 9269 engines: {node: '>= 6'} 9239 9270 9240 9271 piscina@4.8.0: ··· 9249 9280 9250 9281 pkg-types@2.1.0: 9251 9282 resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==} 9283 + 9284 + pluralize@8.0.0: 9285 + resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} 9286 + engines: {node: '>=4'} 9252 9287 9253 9288 possible-typed-array-names@1.1.0: 9254 9289 resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} ··· 9675 9710 resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} 9676 9711 engines: {node: '>=0.6'} 9677 9712 9678 - quansync@0.2.10: 9679 - resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==} 9713 + quansync@0.2.8: 9714 + resolution: {integrity: sha512-4+saucphJMazjt7iOM27mbFCk+D9dd/zmgMDCzRZ8MEoBfYp7lAvoN38et/phRQF6wOPMy/OROBGgoWeSKyluA==} 9680 9715 9681 9716 querystringify@2.2.0: 9682 9717 resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} ··· 9920 9955 deprecated: Rimraf versions prior to v4 are no longer supported 9921 9956 hasBin: true 9922 9957 9958 + rimraf@5.0.10: 9959 + resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} 9960 + hasBin: true 9961 + 9923 9962 rollup-plugin-dts@6.1.1: 9924 9963 resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==} 9925 9964 engines: {node: '>=16'} ··· 10332 10371 resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==} 10333 10372 engines: {node: ^18.17.0 || >=20.5.0} 10334 10373 10335 - stable-hash@0.0.5: 10336 - resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==} 10374 + stable-hash@0.0.4: 10375 + resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} 10337 10376 10338 10377 stackback@0.0.2: 10339 10378 resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} ··· 10349 10388 resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 10350 10389 engines: {node: '>= 0.8'} 10351 10390 10352 - std-env@3.9.0: 10353 - resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} 10391 + std-env@3.8.1: 10392 + resolution: {integrity: sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==} 10354 10393 10355 10394 streamroller@3.1.5: 10356 10395 resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==} ··· 10481 10520 resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} 10482 10521 engines: {node: '>=10'} 10483 10522 10523 + supports-color@9.4.0: 10524 + resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} 10525 + engines: {node: '>=12'} 10526 + 10484 10527 supports-hyperlinks@3.2.0: 10485 10528 resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==} 10486 10529 engines: {node: '>=14.18'} ··· 10522 10565 symbol-tree@3.2.4: 10523 10566 resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} 10524 10567 10525 - synckit@0.11.2: 10526 - resolution: {integrity: sha512-1IUffI8zZ8qUMB3NUJIjk0RpLroG/8NkQDAWH1NbB2iJ0/5pn3M8rxfNzMz4GH9OnYaGYn31LEDSXJp/qIlxgA==} 10568 + synckit@0.9.2: 10569 + resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} 10527 10570 engines: {node: ^14.18.0 || >=16.0.0} 10528 10571 10529 10572 system-architecture@0.1.0: ··· 10673 10716 tr46@1.0.1: 10674 10717 resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} 10675 10718 10676 - tr46@5.1.0: 10677 - resolution: {integrity: sha512-IUWnUK7ADYR5Sl1fZlO1INDUhVhatWl7BtJWsIhwJ0UAK7ilzzIa8uIqOO/aYVWHZPJkKbEL+362wrzoeRF7bw==} 10719 + tr46@5.0.0: 10720 + resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==} 10678 10721 engines: {node: '>=18'} 10679 10722 10680 10723 tree-dump@1.0.2: ··· 10690 10733 trim-lines@3.0.1: 10691 10734 resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 10692 10735 10693 - ts-api-utils@2.1.0: 10694 - resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} 10736 + ts-api-utils@2.0.1: 10737 + resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==} 10695 10738 engines: {node: '>=18.12'} 10696 10739 peerDependencies: 10697 10740 typescript: '>=4.8.4' ··· 10807 10850 resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} 10808 10851 engines: {node: '>=10'} 10809 10852 10810 - type-fest@4.39.1: 10811 - resolution: {integrity: sha512-uW9qzd66uyHYxwyVBYiwS4Oi0qZyUqwjU+Oevr6ZogYiXt99EOYtwvzMSLw1c3lYo2HzJsep/NB23iEVEgjG/w==} 10853 + type-fest@4.37.0: 10854 + resolution: {integrity: sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==} 10812 10855 engines: {node: '>=16'} 10813 10856 10814 10857 type-is@1.6.18: ··· 10866 10909 engines: {node: '>=0.8.0'} 10867 10910 hasBin: true 10868 10911 10869 - ultrahtml@1.6.0: 10870 - resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} 10912 + ultrahtml@1.5.3: 10913 + resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==} 10871 10914 10872 10915 unbox-primitive@1.1.0: 10873 10916 resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} ··· 10897 10940 unenv@1.10.0: 10898 10941 resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==} 10899 10942 10900 - unenv@2.0.0-rc.15: 10901 - resolution: {integrity: sha512-J/rEIZU8w6FOfLNz/hNKsnY+fFHWnu9MH4yRbSZF3xbbGHovcetXPs7sD+9p8L6CeNC//I9bhRYAOsBt2u7/OA==} 10943 + unenv@2.0.0-rc.14: 10944 + resolution: {integrity: sha512-od496pShMen7nOy5VmVJCnq8rptd45vh6Nx/r2iPbrba6pa6p+tS2ywuIHRZ/OBvSbQZB0kWvpO9XBNVFXHD3Q==} 10902 10945 10903 10946 unhead@1.11.20: 10904 10947 resolution: {integrity: sha512-3AsNQC0pjwlLqEYHLjtichGWankK8yqmocReITecmpB1H0aOabeESueyy+8X1gyJx4ftZVwo9hqQ4O3fPWffCA==} ··· 10930 10973 unimport@3.14.6: 10931 10974 resolution: {integrity: sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g==} 10932 10975 10933 - unimport@4.1.3: 10934 - resolution: {integrity: sha512-H+IVJ7rAkE3b+oC8rSJ2FsPaVsweeMC8eKZc+C6Mz7+hxDF45AnrY/tVCNRBvzMwWNcJEV67WdAVcal27iMjOw==} 10976 + unimport@4.1.2: 10977 + resolution: {integrity: sha512-oVUL7PSlyVV3QRhsdcyYEMaDX8HJyS/CnUonEJTYA3//bWO+o/4gG8F7auGWWWkrrxBQBYOO8DKe+C53ktpRXw==} 10978 + engines: {node: '>=18.12.0'} 10979 + 10980 + unimport@4.2.0: 10981 + resolution: {integrity: sha512-mYVtA0nmzrysnYnyb3ALMbByJ+Maosee2+WyE0puXl+Xm2bUwPorPaaeZt0ETfuroPOtG8jj1g/qeFZ6buFnag==} 10935 10982 engines: {node: '>=18.12.0'} 10936 10983 10937 10984 unique-filename@4.0.0: ··· 10993 11040 resolution: {integrity: sha512-2qzQo5LN2DmUZXkWDHvGKLF5BP0WN+KthD6aPnPJ8plRBIjv4lh5O07eYcSxgO2znNw9s4MNhEO1sB+JDllDbQ==} 10994 11041 engines: {node: '>=18.12.0'} 10995 11042 10996 - unplugin@2.2.2: 10997 - resolution: {integrity: sha512-Qp+iiD+qCRnUek+nDoYvtWX7tfnYyXsrOnJ452FRTgOyKmTM7TUJ3l+PLPJOOWPTUyKISKp4isC5JJPSXUjGgw==} 11043 + unplugin@2.2.0: 11044 + resolution: {integrity: sha512-m1ekpSwuOT5hxkJeZGRxO7gXbXT3gF26NjQ7GdVHoLoF8/nopLcd/QfPigpCy7i51oFHiRJg/CyHhj4vs2+KGw==} 10998 11045 engines: {node: '>=18.12.0'} 10999 11046 11000 - unrs-resolver@1.3.3: 11001 - resolution: {integrity: sha512-PFLAGQzYlyjniXdbmQ3dnGMZJXX5yrl2YS4DLRfR3BhgUsE1zpRIrccp9XMOGRfIHpdFvCn/nr5N1KMVda4x3A==} 11047 + unplugin@2.3.2: 11048 + resolution: {integrity: sha512-3n7YA46rROb3zSj8fFxtxC/PqoyvYQ0llwz9wtUPUutr9ig09C8gGo5CWCwHrUzlqC1LLR43kxp5vEIyH1ac1w==} 11049 + engines: {node: '>=18.12.0'} 11002 11050 11003 11051 unstorage@1.15.0: 11004 11052 resolution: {integrity: sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==} ··· 11083 11131 uqr@0.1.2: 11084 11132 resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==} 11085 11133 11134 + uri-js-replace@1.0.1: 11135 + resolution: {integrity: sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==} 11136 + 11086 11137 uri-js@4.4.1: 11087 11138 resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 11088 11139 ··· 11091 11142 11092 11143 urlpattern-polyfill@10.0.0: 11093 11144 resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==} 11145 + 11146 + urlpattern-polyfill@8.0.2: 11147 + resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==} 11094 11148 11095 11149 use-callback-ref@1.3.3: 11096 11150 resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==} ··· 11217 11271 peerDependencies: 11218 11272 vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 11219 11273 11220 - vite@5.4.17: 11221 - resolution: {integrity: sha512-5+VqZryDj4wgCs55o9Lp+p8GE78TLVg0lasCH5xFZ4jacZjtqZa6JUw9/p0WeAojaOfncSM6v77InkFPGnvPvg==} 11274 + vite@5.4.14: 11275 + resolution: {integrity: sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==} 11276 + engines: {node: ^18.0.0 || >=20.0.0} 11277 + hasBin: true 11278 + peerDependencies: 11279 + '@types/node': ^18.0.0 || >=20.0.0 11280 + less: '*' 11281 + lightningcss: ^1.21.0 11282 + sass: '*' 11283 + sass-embedded: '*' 11284 + stylus: '*' 11285 + sugarss: '*' 11286 + terser: ^5.4.0 11287 + peerDependenciesMeta: 11288 + '@types/node': 11289 + optional: true 11290 + less: 11291 + optional: true 11292 + lightningcss: 11293 + optional: true 11294 + sass: 11295 + optional: true 11296 + sass-embedded: 11297 + optional: true 11298 + stylus: 11299 + optional: true 11300 + sugarss: 11301 + optional: true 11302 + terser: 11303 + optional: true 11304 + 11305 + vite@5.4.16: 11306 + resolution: {integrity: sha512-Y5gnfp4NemVfgOTDQAunSD4346fal44L9mszGGY/e+qxsRT5y1sMlS/8tiQ8AFAp+MFgYNSINdfEchJiPm41vQ==} 11222 11307 engines: {node: ^18.0.0 || >=20.0.0} 11223 11308 hasBin: true 11224 11309 peerDependencies: ··· 11552 11637 resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} 11553 11638 engines: {node: '>=18'} 11554 11639 11555 - whatwg-url@14.2.0: 11556 - resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==} 11640 + whatwg-url@14.1.1: 11641 + resolution: {integrity: sha512-mDGf9diDad/giZ/Sm9Xi2YcyzaFpbdLpJPr+E9fSkyQ7KpQD4SdFcugkRQYzhmfI4KeV4Qpnn2sKPdo+kmsgRQ==} 11557 11642 engines: {node: '>=18'} 11558 11643 11559 11644 whatwg-url@5.0.0: ··· 11683 11768 resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} 11684 11769 engines: {node: '>=18'} 11685 11770 11771 + yaml-ast-parser@0.0.43: 11772 + resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==} 11773 + 11686 11774 yaml@1.10.2: 11687 11775 resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 11688 11776 engines: {node: '>= 6'} ··· 11692 11780 engines: {node: '>= 14'} 11693 11781 hasBin: true 11694 11782 11695 - yaml@2.7.1: 11696 - resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==} 11783 + yaml@2.7.0: 11784 + resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==} 11697 11785 engines: {node: '>= 14'} 11698 11786 hasBin: true 11699 11787 ··· 11724 11812 resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 11725 11813 engines: {node: '>=10'} 11726 11814 11727 - yocto-queue@1.2.1: 11728 - resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==} 11815 + yocto-queue@1.2.0: 11816 + resolution: {integrity: sha512-KHBC7z61OJeaMGnF3wqNZj+GGNXOyypZviiKpQeiHirG5Ib1ImwcLBH70rbMSkKfSmUNBsdf2PwaEJtKvgmkNw==} 11729 11817 engines: {node: '>=12.20'} 11730 11818 11731 11819 yoctocolors-cjs@2.1.2: ··· 11765 11853 11766 11854 snapshots: 11767 11855 11768 - '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.23.2)(algoliasearch@5.23.2)(search-insights@2.17.3)': 11856 + '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3)': 11769 11857 dependencies: 11770 - '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.23.2)(algoliasearch@5.23.2)(search-insights@2.17.3) 11771 - '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.2)(algoliasearch@5.23.2) 11858 + '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3) 11859 + '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0) 11772 11860 transitivePeerDependencies: 11773 11861 - '@algolia/client-search' 11774 11862 - algoliasearch 11775 11863 - search-insights 11776 11864 11777 - '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.23.2)(algoliasearch@5.23.2)(search-insights@2.17.3)': 11865 + '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3)': 11778 11866 dependencies: 11779 - '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.2)(algoliasearch@5.23.2) 11867 + '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0) 11780 11868 search-insights: 2.17.3 11781 11869 transitivePeerDependencies: 11782 11870 - '@algolia/client-search' 11783 11871 - algoliasearch 11784 11872 11785 - '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.23.2)(algoliasearch@5.23.2)': 11873 + '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)': 11786 11874 dependencies: 11787 - '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.2)(algoliasearch@5.23.2) 11788 - '@algolia/client-search': 5.23.2 11789 - algoliasearch: 5.23.2 11875 + '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0) 11876 + '@algolia/client-search': 5.21.0 11877 + algoliasearch: 5.21.0 11790 11878 11791 - '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.23.2)(algoliasearch@5.23.2)': 11879 + '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)': 11792 11880 dependencies: 11793 - '@algolia/client-search': 5.23.2 11794 - algoliasearch: 5.23.2 11881 + '@algolia/client-search': 5.21.0 11882 + algoliasearch: 5.21.0 11795 11883 11796 - '@algolia/client-abtesting@5.23.2': 11884 + '@algolia/client-abtesting@5.21.0': 11797 11885 dependencies: 11798 - '@algolia/client-common': 5.23.2 11799 - '@algolia/requester-browser-xhr': 5.23.2 11800 - '@algolia/requester-fetch': 5.23.2 11801 - '@algolia/requester-node-http': 5.23.2 11886 + '@algolia/client-common': 5.21.0 11887 + '@algolia/requester-browser-xhr': 5.21.0 11888 + '@algolia/requester-fetch': 5.21.0 11889 + '@algolia/requester-node-http': 5.21.0 11802 11890 11803 - '@algolia/client-analytics@5.23.2': 11891 + '@algolia/client-analytics@5.21.0': 11804 11892 dependencies: 11805 - '@algolia/client-common': 5.23.2 11806 - '@algolia/requester-browser-xhr': 5.23.2 11807 - '@algolia/requester-fetch': 5.23.2 11808 - '@algolia/requester-node-http': 5.23.2 11893 + '@algolia/client-common': 5.21.0 11894 + '@algolia/requester-browser-xhr': 5.21.0 11895 + '@algolia/requester-fetch': 5.21.0 11896 + '@algolia/requester-node-http': 5.21.0 11809 11897 11810 - '@algolia/client-common@5.23.2': {} 11898 + '@algolia/client-common@5.21.0': {} 11811 11899 11812 - '@algolia/client-insights@5.23.2': 11900 + '@algolia/client-insights@5.21.0': 11813 11901 dependencies: 11814 - '@algolia/client-common': 5.23.2 11815 - '@algolia/requester-browser-xhr': 5.23.2 11816 - '@algolia/requester-fetch': 5.23.2 11817 - '@algolia/requester-node-http': 5.23.2 11902 + '@algolia/client-common': 5.21.0 11903 + '@algolia/requester-browser-xhr': 5.21.0 11904 + '@algolia/requester-fetch': 5.21.0 11905 + '@algolia/requester-node-http': 5.21.0 11818 11906 11819 - '@algolia/client-personalization@5.23.2': 11907 + '@algolia/client-personalization@5.21.0': 11820 11908 dependencies: 11821 - '@algolia/client-common': 5.23.2 11822 - '@algolia/requester-browser-xhr': 5.23.2 11823 - '@algolia/requester-fetch': 5.23.2 11824 - '@algolia/requester-node-http': 5.23.2 11909 + '@algolia/client-common': 5.21.0 11910 + '@algolia/requester-browser-xhr': 5.21.0 11911 + '@algolia/requester-fetch': 5.21.0 11912 + '@algolia/requester-node-http': 5.21.0 11825 11913 11826 - '@algolia/client-query-suggestions@5.23.2': 11914 + '@algolia/client-query-suggestions@5.21.0': 11827 11915 dependencies: 11828 - '@algolia/client-common': 5.23.2 11829 - '@algolia/requester-browser-xhr': 5.23.2 11830 - '@algolia/requester-fetch': 5.23.2 11831 - '@algolia/requester-node-http': 5.23.2 11916 + '@algolia/client-common': 5.21.0 11917 + '@algolia/requester-browser-xhr': 5.21.0 11918 + '@algolia/requester-fetch': 5.21.0 11919 + '@algolia/requester-node-http': 5.21.0 11832 11920 11833 - '@algolia/client-search@5.23.2': 11921 + '@algolia/client-search@5.21.0': 11834 11922 dependencies: 11835 - '@algolia/client-common': 5.23.2 11836 - '@algolia/requester-browser-xhr': 5.23.2 11837 - '@algolia/requester-fetch': 5.23.2 11838 - '@algolia/requester-node-http': 5.23.2 11923 + '@algolia/client-common': 5.21.0 11924 + '@algolia/requester-browser-xhr': 5.21.0 11925 + '@algolia/requester-fetch': 5.21.0 11926 + '@algolia/requester-node-http': 5.21.0 11839 11927 11840 - '@algolia/ingestion@1.23.2': 11928 + '@algolia/ingestion@1.21.0': 11841 11929 dependencies: 11842 - '@algolia/client-common': 5.23.2 11843 - '@algolia/requester-browser-xhr': 5.23.2 11844 - '@algolia/requester-fetch': 5.23.2 11845 - '@algolia/requester-node-http': 5.23.2 11930 + '@algolia/client-common': 5.21.0 11931 + '@algolia/requester-browser-xhr': 5.21.0 11932 + '@algolia/requester-fetch': 5.21.0 11933 + '@algolia/requester-node-http': 5.21.0 11846 11934 11847 - '@algolia/monitoring@1.23.2': 11935 + '@algolia/monitoring@1.21.0': 11848 11936 dependencies: 11849 - '@algolia/client-common': 5.23.2 11850 - '@algolia/requester-browser-xhr': 5.23.2 11851 - '@algolia/requester-fetch': 5.23.2 11852 - '@algolia/requester-node-http': 5.23.2 11937 + '@algolia/client-common': 5.21.0 11938 + '@algolia/requester-browser-xhr': 5.21.0 11939 + '@algolia/requester-fetch': 5.21.0 11940 + '@algolia/requester-node-http': 5.21.0 11853 11941 11854 - '@algolia/recommend@5.23.2': 11942 + '@algolia/recommend@5.21.0': 11855 11943 dependencies: 11856 - '@algolia/client-common': 5.23.2 11857 - '@algolia/requester-browser-xhr': 5.23.2 11858 - '@algolia/requester-fetch': 5.23.2 11859 - '@algolia/requester-node-http': 5.23.2 11944 + '@algolia/client-common': 5.21.0 11945 + '@algolia/requester-browser-xhr': 5.21.0 11946 + '@algolia/requester-fetch': 5.21.0 11947 + '@algolia/requester-node-http': 5.21.0 11860 11948 11861 - '@algolia/requester-browser-xhr@5.23.2': 11949 + '@algolia/requester-browser-xhr@5.21.0': 11862 11950 dependencies: 11863 - '@algolia/client-common': 5.23.2 11951 + '@algolia/client-common': 5.21.0 11864 11952 11865 - '@algolia/requester-fetch@5.23.2': 11953 + '@algolia/requester-fetch@5.21.0': 11866 11954 dependencies: 11867 - '@algolia/client-common': 5.23.2 11955 + '@algolia/client-common': 5.21.0 11868 11956 11869 - '@algolia/requester-node-http@5.23.2': 11957 + '@algolia/requester-node-http@5.21.0': 11870 11958 dependencies: 11871 - '@algolia/client-common': 5.23.2 11959 + '@algolia/client-common': 5.21.0 11872 11960 11873 11961 '@alloc/quick-lru@5.2.0': {} 11874 11962 ··· 11886 11974 transitivePeerDependencies: 11887 11975 - chokidar 11888 11976 11889 - '@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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)))(typescript@5.8.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.1))(yaml@2.7.1)': 11977 + '@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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)))(typescript@5.8.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))(yaml@2.7.0)': 11890 11978 dependencies: 11891 11979 '@ampproject/remapping': 2.3.0 11892 11980 '@angular-devkit/architect': 0.1902.0(chokidar@4.0.3) 11893 11981 '@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)) 11894 11982 '@angular-devkit/core': 19.2.0(chokidar@4.0.3) 11895 - '@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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(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.10.5)(typescript@5.8.3)))(terser@5.39.0)(typescript@5.8.3)(yaml@2.7.1) 11983 + '@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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(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.10.5)(typescript@5.8.3)))(terser@5.39.0)(typescript@5.8.3)(yaml@2.7.0) 11896 11984 '@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.8.3) 11897 11985 '@babel/core': 7.26.9 11898 11986 '@babel/generator': 7.26.9 ··· 11905 11993 '@babel/runtime': 7.26.9 11906 11994 '@discoveryjs/json-ext': 0.6.3 11907 11995 '@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.8.3))(typescript@5.8.3)(webpack@5.98.0(esbuild@0.25.0)) 11908 - '@vitejs/plugin-basic-ssl': 1.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.1)) 11996 + '@vitejs/plugin-basic-ssl': 1.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)) 11909 11997 ansi-colors: 4.1.3 11910 11998 autoprefixer: 10.4.20(postcss@8.5.2) 11911 11999 babel-loader: 9.2.1(@babel/core@7.26.9)(webpack@5.98.0(esbuild@0.25.0)) ··· 11972 12060 - webpack-cli 11973 12061 - yaml 11974 12062 11975 - '@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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)))(typescript@5.8.3)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(yaml@2.7.1)': 12063 + '@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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)))(typescript@5.8.3)(vite@6.2.6(@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))(yaml@2.7.0)': 11976 12064 dependencies: 11977 12065 '@ampproject/remapping': 2.3.0 11978 12066 '@angular-devkit/architect': 0.1902.0(chokidar@4.0.3) 11979 12067 '@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)) 11980 12068 '@angular-devkit/core': 19.2.0(chokidar@4.0.3) 11981 - '@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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(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.10.5)(typescript@5.8.3)))(terser@5.39.0)(typescript@5.8.3)(yaml@2.7.1) 12069 + '@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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(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.10.5)(typescript@5.8.3)))(terser@5.39.0)(typescript@5.8.3)(yaml@2.7.0) 11982 12070 '@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.8.3) 11983 12071 '@babel/core': 7.26.9 11984 12072 '@babel/generator': 7.26.9 ··· 11991 12079 '@babel/runtime': 7.26.9 11992 12080 '@discoveryjs/json-ext': 0.6.3 11993 12081 '@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.8.3))(typescript@5.8.3)(webpack@5.98.0(esbuild@0.25.0)) 11994 - '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 12082 + '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.6(@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)) 11995 12083 ansi-colors: 4.1.3 11996 12084 autoprefixer: 10.4.20(postcss@8.5.2) 11997 12085 babel-loader: 9.2.1(@babel/core@7.26.9)(webpack@5.98.0(esbuild@0.25.0)) ··· 12093 12181 '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0) 12094 12182 tslib: 2.8.1 12095 12183 12096 - '@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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(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.10.5)(typescript@5.8.3)))(terser@5.39.0)(typescript@5.8.3)(yaml@2.7.1)': 12184 + '@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.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.5)(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.10.5)(typescript@5.8.3)))(terser@5.39.0)(typescript@5.8.3)(yaml@2.7.0)': 12097 12185 dependencies: 12098 12186 '@ampproject/remapping': 2.3.0 12099 12187 '@angular-devkit/architect': 0.1902.0(chokidar@4.0.3) ··· 12104 12192 '@babel/helper-split-export-declaration': 7.24.7 12105 12193 '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.9) 12106 12194 '@inquirer/confirm': 5.1.6(@types/node@22.10.5) 12107 - '@vitejs/plugin-basic-ssl': 1.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.1)) 12195 + '@vitejs/plugin-basic-ssl': 1.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)) 12108 12196 beasties: 0.2.0 12109 12197 browserslist: 4.24.4 12110 12198 esbuild: 0.25.0 12111 12199 fast-glob: 3.3.3 12112 - https-proxy-agent: 7.0.6 12200 + https-proxy-agent: 7.0.6(supports-color@9.4.0) 12113 12201 istanbul-lib-instrument: 6.0.3 12114 12202 listr2: 8.2.5 12115 12203 magic-string: 0.30.17 ··· 12122 12210 semver: 7.7.1 12123 12211 source-map-support: 0.5.21 12124 12212 typescript: 5.8.3 12125 - 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.1) 12213 + 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) 12126 12214 watchpack: 2.4.2 12127 12215 optionalDependencies: 12128 12216 karma: 6.4.4 ··· 12143 12231 - tsx 12144 12232 - yaml 12145 12233 12146 - '@angular/cdk@19.2.8(@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)': 12234 + '@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)': 12147 12235 dependencies: 12148 12236 '@angular/common': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) 12149 12237 '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0) 12150 - parse5: 7.2.1 12151 12238 rxjs: 7.8.1 12152 12239 tslib: 2.8.1 12240 + optionalDependencies: 12241 + parse5: 7.2.1 12153 12242 12154 12243 '@angular/cli@19.2.0(@types/node@22.10.5)(chokidar@4.0.3)': 12155 12244 dependencies: ··· 12216 12305 rxjs: 7.8.1 12217 12306 tslib: 2.8.1 12218 12307 12219 - '@angular/material@19.2.8(@angular/cdk@19.2.8(@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)': 12308 + '@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)': 12220 12309 dependencies: 12221 - '@angular/cdk': 19.2.8(@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) 12310 + '@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) 12222 12311 '@angular/common': 19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) 12223 12312 '@angular/core': 19.2.0(rxjs@7.8.1)(zone.js@0.15.0) 12224 12313 '@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) ··· 12285 12374 dependencies: 12286 12375 '@ampproject/remapping': 2.3.0 12287 12376 '@babel/code-frame': 7.26.2 12288 - '@babel/generator': 7.27.0 12289 - '@babel/helper-compilation-targets': 7.27.0 12377 + '@babel/generator': 7.26.10 12378 + '@babel/helper-compilation-targets': 7.26.5 12290 12379 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) 12291 - '@babel/helpers': 7.27.0 12292 - '@babel/parser': 7.27.0 12293 - '@babel/template': 7.27.0 12294 - '@babel/traverse': 7.27.0 12295 - '@babel/types': 7.27.0 12380 + '@babel/helpers': 7.26.10 12381 + '@babel/parser': 7.26.10 12382 + '@babel/template': 7.26.9 12383 + '@babel/traverse': 7.26.10 12384 + '@babel/types': 7.26.10 12296 12385 convert-source-map: 2.0.0 12297 - debug: 4.4.0 12386 + debug: 4.4.0(supports-color@9.4.0) 12298 12387 gensync: 1.0.0-beta.2 12299 12388 json5: 2.2.3 12300 12389 semver: 6.3.1 ··· 12305 12394 dependencies: 12306 12395 '@ampproject/remapping': 2.3.0 12307 12396 '@babel/code-frame': 7.26.2 12308 - '@babel/generator': 7.26.9 12309 - '@babel/helper-compilation-targets': 7.27.0 12397 + '@babel/generator': 7.26.10 12398 + '@babel/helper-compilation-targets': 7.26.5 12310 12399 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9) 12311 - '@babel/helpers': 7.27.0 12312 - '@babel/parser': 7.27.0 12313 - '@babel/template': 7.27.0 12314 - '@babel/traverse': 7.27.0 12315 - '@babel/types': 7.27.0 12400 + '@babel/helpers': 7.26.10 12401 + '@babel/parser': 7.26.10 12402 + '@babel/template': 7.26.9 12403 + '@babel/traverse': 7.26.10 12404 + '@babel/types': 7.26.10 12316 12405 convert-source-map: 2.0.0 12317 - debug: 4.4.0 12406 + debug: 4.4.0(supports-color@9.4.0) 12318 12407 gensync: 1.0.0-beta.2 12319 12408 json5: 2.2.3 12320 12409 semver: 6.3.1 12321 12410 transitivePeerDependencies: 12322 12411 - supports-color 12323 12412 12324 - '@babel/generator@7.26.9': 12413 + '@babel/generator@7.26.10': 12325 12414 dependencies: 12326 - '@babel/parser': 7.27.0 12327 - '@babel/types': 7.27.0 12415 + '@babel/parser': 7.26.10 12416 + '@babel/types': 7.26.10 12328 12417 '@jridgewell/gen-mapping': 0.3.8 12329 12418 '@jridgewell/trace-mapping': 0.3.25 12330 12419 jsesc: 3.1.0 12331 12420 12332 - '@babel/generator@7.27.0': 12421 + '@babel/generator@7.26.9': 12333 12422 dependencies: 12334 - '@babel/parser': 7.27.0 12335 - '@babel/types': 7.27.0 12423 + '@babel/parser': 7.26.10 12424 + '@babel/types': 7.26.10 12336 12425 '@jridgewell/gen-mapping': 0.3.8 12337 12426 '@jridgewell/trace-mapping': 0.3.25 12338 12427 jsesc: 3.1.0 12339 12428 12340 12429 '@babel/helper-annotate-as-pure@7.25.9': 12341 12430 dependencies: 12342 - '@babel/types': 7.27.0 12431 + '@babel/types': 7.26.10 12343 12432 12344 - '@babel/helper-compilation-targets@7.27.0': 12433 + '@babel/helper-compilation-targets@7.26.5': 12345 12434 dependencies: 12346 12435 '@babel/compat-data': 7.26.8 12347 12436 '@babel/helper-validator-option': 7.25.9 ··· 12349 12438 lru-cache: 5.1.1 12350 12439 semver: 6.3.1 12351 12440 12352 - '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10)': 12441 + '@babel/helper-create-class-features-plugin@7.26.9(@babel/core@7.26.10)': 12353 12442 dependencies: 12354 12443 '@babel/core': 7.26.10 12355 12444 '@babel/helper-annotate-as-pure': 7.25.9 ··· 12357 12446 '@babel/helper-optimise-call-expression': 7.25.9 12358 12447 '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10) 12359 12448 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 12360 - '@babel/traverse': 7.27.0 12449 + '@babel/traverse': 7.26.10 12361 12450 semver: 6.3.1 12362 12451 transitivePeerDependencies: 12363 12452 - supports-color 12364 12453 12365 - '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.9)': 12454 + '@babel/helper-create-class-features-plugin@7.26.9(@babel/core@7.26.9)': 12366 12455 dependencies: 12367 12456 '@babel/core': 7.26.9 12368 12457 '@babel/helper-annotate-as-pure': 7.25.9 ··· 12370 12459 '@babel/helper-optimise-call-expression': 7.25.9 12371 12460 '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9) 12372 12461 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 12373 - '@babel/traverse': 7.27.0 12462 + '@babel/traverse': 7.26.10 12374 12463 semver: 6.3.1 12375 12464 transitivePeerDependencies: 12376 12465 - supports-color 12377 12466 12378 - '@babel/helper-create-regexp-features-plugin@7.27.0(@babel/core@7.26.9)': 12467 + '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.9)': 12379 12468 dependencies: 12380 12469 '@babel/core': 7.26.9 12381 12470 '@babel/helper-annotate-as-pure': 7.25.9 12382 12471 regexpu-core: 6.2.0 12383 12472 semver: 6.3.1 12384 12473 12385 - '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.26.9)': 12474 + '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.9)': 12386 12475 dependencies: 12387 12476 '@babel/core': 7.26.9 12388 - '@babel/helper-compilation-targets': 7.27.0 12477 + '@babel/helper-compilation-targets': 7.26.5 12389 12478 '@babel/helper-plugin-utils': 7.26.5 12390 - debug: 4.4.0 12479 + debug: 4.4.0(supports-color@9.4.0) 12391 12480 lodash.debounce: 4.0.8 12392 12481 resolve: 1.22.10 12393 12482 transitivePeerDependencies: ··· 12395 12484 12396 12485 '@babel/helper-member-expression-to-functions@7.25.9': 12397 12486 dependencies: 12398 - '@babel/traverse': 7.27.0 12399 - '@babel/types': 7.27.0 12487 + '@babel/traverse': 7.26.10 12488 + '@babel/types': 7.26.10 12400 12489 transitivePeerDependencies: 12401 12490 - supports-color 12402 12491 12403 12492 '@babel/helper-module-imports@7.25.9': 12404 12493 dependencies: 12405 - '@babel/traverse': 7.27.0 12406 - '@babel/types': 7.27.0 12494 + '@babel/traverse': 7.26.10 12495 + '@babel/types': 7.26.10 12407 12496 transitivePeerDependencies: 12408 12497 - supports-color 12409 12498 ··· 12412 12501 '@babel/core': 7.26.10 12413 12502 '@babel/helper-module-imports': 7.25.9 12414 12503 '@babel/helper-validator-identifier': 7.25.9 12415 - '@babel/traverse': 7.27.0 12504 + '@babel/traverse': 7.26.10 12416 12505 transitivePeerDependencies: 12417 12506 - supports-color 12418 12507 ··· 12421 12510 '@babel/core': 7.26.9 12422 12511 '@babel/helper-module-imports': 7.25.9 12423 12512 '@babel/helper-validator-identifier': 7.25.9 12424 - '@babel/traverse': 7.27.0 12513 + '@babel/traverse': 7.26.10 12425 12514 transitivePeerDependencies: 12426 12515 - supports-color 12427 12516 12428 12517 '@babel/helper-optimise-call-expression@7.25.9': 12429 12518 dependencies: 12430 - '@babel/types': 7.27.0 12519 + '@babel/types': 7.26.10 12431 12520 12432 12521 '@babel/helper-plugin-utils@7.26.5': {} 12433 12522 ··· 12436 12525 '@babel/core': 7.26.9 12437 12526 '@babel/helper-annotate-as-pure': 7.25.9 12438 12527 '@babel/helper-wrap-function': 7.25.9 12439 - '@babel/traverse': 7.27.0 12528 + '@babel/traverse': 7.26.10 12440 12529 transitivePeerDependencies: 12441 12530 - supports-color 12442 12531 ··· 12445 12534 '@babel/core': 7.26.10 12446 12535 '@babel/helper-member-expression-to-functions': 7.25.9 12447 12536 '@babel/helper-optimise-call-expression': 7.25.9 12448 - '@babel/traverse': 7.27.0 12537 + '@babel/traverse': 7.26.10 12449 12538 transitivePeerDependencies: 12450 12539 - supports-color 12451 12540 ··· 12454 12543 '@babel/core': 7.26.9 12455 12544 '@babel/helper-member-expression-to-functions': 7.25.9 12456 12545 '@babel/helper-optimise-call-expression': 7.25.9 12457 - '@babel/traverse': 7.27.0 12546 + '@babel/traverse': 7.26.10 12458 12547 transitivePeerDependencies: 12459 12548 - supports-color 12460 12549 12461 12550 '@babel/helper-skip-transparent-expression-wrappers@7.25.9': 12462 12551 dependencies: 12463 - '@babel/traverse': 7.27.0 12464 - '@babel/types': 7.27.0 12552 + '@babel/traverse': 7.26.10 12553 + '@babel/types': 7.26.10 12465 12554 transitivePeerDependencies: 12466 12555 - supports-color 12467 12556 12468 12557 '@babel/helper-split-export-declaration@7.24.7': 12469 12558 dependencies: 12470 - '@babel/types': 7.27.0 12559 + '@babel/types': 7.26.10 12471 12560 12472 12561 '@babel/helper-string-parser@7.25.9': {} 12473 12562 ··· 12477 12566 12478 12567 '@babel/helper-wrap-function@7.25.9': 12479 12568 dependencies: 12480 - '@babel/template': 7.27.0 12481 - '@babel/traverse': 7.27.0 12482 - '@babel/types': 7.27.0 12569 + '@babel/template': 7.26.9 12570 + '@babel/traverse': 7.26.10 12571 + '@babel/types': 7.26.10 12483 12572 transitivePeerDependencies: 12484 12573 - supports-color 12485 12574 12486 - '@babel/helpers@7.27.0': 12575 + '@babel/helpers@7.26.10': 12487 12576 dependencies: 12488 - '@babel/template': 7.27.0 12489 - '@babel/types': 7.27.0 12577 + '@babel/template': 7.26.9 12578 + '@babel/types': 7.26.10 12490 12579 12491 - '@babel/parser@7.27.0': 12580 + '@babel/parser@7.26.10': 12492 12581 dependencies: 12493 - '@babel/types': 7.27.0 12582 + '@babel/types': 7.26.10 12494 12583 12495 12584 '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.9)': 12496 12585 dependencies: 12497 12586 '@babel/core': 7.26.9 12498 12587 '@babel/helper-plugin-utils': 7.26.5 12499 - '@babel/traverse': 7.27.0 12588 + '@babel/traverse': 7.26.10 12500 12589 transitivePeerDependencies: 12501 12590 - supports-color 12502 12591 ··· 12523 12612 dependencies: 12524 12613 '@babel/core': 7.26.9 12525 12614 '@babel/helper-plugin-utils': 7.26.5 12526 - '@babel/traverse': 7.27.0 12615 + '@babel/traverse': 7.26.10 12527 12616 transitivePeerDependencies: 12528 12617 - supports-color 12529 12618 12530 12619 '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.10)': 12531 12620 dependencies: 12532 12621 '@babel/core': 7.26.10 12533 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) 12622 + '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.10) 12534 12623 '@babel/helper-plugin-utils': 7.26.5 12535 12624 '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.10) 12536 12625 transitivePeerDependencies: ··· 12578 12667 '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.9)': 12579 12668 dependencies: 12580 12669 '@babel/core': 7.26.9 12581 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9) 12670 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) 12582 12671 '@babel/helper-plugin-utils': 7.26.5 12583 12672 12584 12673 '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.9)': ··· 12591 12680 '@babel/core': 7.26.9 12592 12681 '@babel/helper-plugin-utils': 7.26.5 12593 12682 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.9) 12594 - '@babel/traverse': 7.27.0 12683 + '@babel/traverse': 7.26.10 12595 12684 transitivePeerDependencies: 12596 12685 - supports-color 12597 12686 ··· 12609 12698 '@babel/core': 7.26.9 12610 12699 '@babel/helper-plugin-utils': 7.26.5 12611 12700 12612 - '@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.26.9)': 12701 + '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.9)': 12613 12702 dependencies: 12614 12703 '@babel/core': 7.26.9 12615 12704 '@babel/helper-plugin-utils': 7.26.5 ··· 12617 12706 '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.9)': 12618 12707 dependencies: 12619 12708 '@babel/core': 7.26.9 12620 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.9) 12709 + '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) 12621 12710 '@babel/helper-plugin-utils': 7.26.5 12622 12711 transitivePeerDependencies: 12623 12712 - supports-color ··· 12625 12714 '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.9)': 12626 12715 dependencies: 12627 12716 '@babel/core': 7.26.9 12628 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.9) 12717 + '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) 12629 12718 '@babel/helper-plugin-utils': 7.26.5 12630 12719 transitivePeerDependencies: 12631 12720 - supports-color ··· 12634 12723 dependencies: 12635 12724 '@babel/core': 7.26.9 12636 12725 '@babel/helper-annotate-as-pure': 7.25.9 12637 - '@babel/helper-compilation-targets': 7.27.0 12726 + '@babel/helper-compilation-targets': 7.26.5 12638 12727 '@babel/helper-plugin-utils': 7.26.5 12639 12728 '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9) 12640 - '@babel/traverse': 7.27.0 12729 + '@babel/traverse': 7.26.10 12641 12730 globals: 11.12.0 12642 12731 transitivePeerDependencies: 12643 12732 - supports-color ··· 12646 12735 dependencies: 12647 12736 '@babel/core': 7.26.9 12648 12737 '@babel/helper-plugin-utils': 7.26.5 12649 - '@babel/template': 7.27.0 12738 + '@babel/template': 7.26.9 12650 12739 12651 12740 '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.9)': 12652 12741 dependencies: ··· 12656 12745 '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.9)': 12657 12746 dependencies: 12658 12747 '@babel/core': 7.26.9 12659 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9) 12748 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) 12660 12749 '@babel/helper-plugin-utils': 7.26.5 12661 12750 12662 12751 '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.9)': ··· 12667 12756 '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.9)': 12668 12757 dependencies: 12669 12758 '@babel/core': 7.26.9 12670 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9) 12759 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) 12671 12760 '@babel/helper-plugin-utils': 7.26.5 12672 12761 12673 12762 '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.9)': ··· 12696 12785 '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.9)': 12697 12786 dependencies: 12698 12787 '@babel/core': 7.26.9 12699 - '@babel/helper-compilation-targets': 7.27.0 12788 + '@babel/helper-compilation-targets': 7.26.5 12700 12789 '@babel/helper-plugin-utils': 7.26.5 12701 - '@babel/traverse': 7.27.0 12790 + '@babel/traverse': 7.26.10 12702 12791 transitivePeerDependencies: 12703 12792 - supports-color 12704 12793 ··· 12744 12833 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9) 12745 12834 '@babel/helper-plugin-utils': 7.26.5 12746 12835 '@babel/helper-validator-identifier': 7.25.9 12747 - '@babel/traverse': 7.27.0 12836 + '@babel/traverse': 7.26.10 12748 12837 transitivePeerDependencies: 12749 12838 - supports-color 12750 12839 ··· 12759 12848 '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.9)': 12760 12849 dependencies: 12761 12850 '@babel/core': 7.26.9 12762 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9) 12851 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) 12763 12852 '@babel/helper-plugin-utils': 7.26.5 12764 12853 12765 12854 '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.9)': ··· 12780 12869 '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.9)': 12781 12870 dependencies: 12782 12871 '@babel/core': 7.26.9 12783 - '@babel/helper-compilation-targets': 7.27.0 12872 + '@babel/helper-compilation-targets': 7.26.5 12784 12873 '@babel/helper-plugin-utils': 7.26.5 12785 12874 '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.9) 12786 12875 ··· 12813 12902 '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.9)': 12814 12903 dependencies: 12815 12904 '@babel/core': 7.26.9 12816 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.9) 12905 + '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) 12817 12906 '@babel/helper-plugin-utils': 7.26.5 12818 12907 transitivePeerDependencies: 12819 12908 - supports-color ··· 12822 12911 dependencies: 12823 12912 '@babel/core': 7.26.9 12824 12913 '@babel/helper-annotate-as-pure': 7.25.9 12825 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.9) 12914 + '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9) 12826 12915 '@babel/helper-plugin-utils': 7.26.5 12827 12916 transitivePeerDependencies: 12828 12917 - supports-color ··· 12842 12931 '@babel/core': 7.26.10 12843 12932 '@babel/helper-plugin-utils': 7.26.5 12844 12933 12845 - '@babel/plugin-transform-regenerator@7.27.0(@babel/core@7.26.9)': 12934 + '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.9)': 12846 12935 dependencies: 12847 12936 '@babel/core': 7.26.9 12848 12937 '@babel/helper-plugin-utils': 7.26.5 ··· 12851 12940 '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.9)': 12852 12941 dependencies: 12853 12942 '@babel/core': 7.26.9 12854 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9) 12943 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) 12855 12944 '@babel/helper-plugin-utils': 7.26.5 12856 12945 12857 12946 '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.9)': ··· 12864 12953 '@babel/core': 7.26.9 12865 12954 '@babel/helper-module-imports': 7.25.9 12866 12955 '@babel/helper-plugin-utils': 7.26.5 12867 - babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.9) 12956 + babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.9) 12868 12957 babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.9) 12869 - babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.9) 12958 + babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.9) 12870 12959 semver: 6.3.1 12871 12960 transitivePeerDependencies: 12872 12961 - supports-color ··· 12894 12983 '@babel/core': 7.26.9 12895 12984 '@babel/helper-plugin-utils': 7.26.5 12896 12985 12897 - '@babel/plugin-transform-typeof-symbol@7.27.0(@babel/core@7.26.9)': 12986 + '@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.26.9)': 12898 12987 dependencies: 12899 12988 '@babel/core': 7.26.9 12900 12989 '@babel/helper-plugin-utils': 7.26.5 12901 12990 12902 - '@babel/plugin-transform-typescript@7.27.0(@babel/core@7.26.10)': 12991 + '@babel/plugin-transform-typescript@7.26.8(@babel/core@7.26.10)': 12903 12992 dependencies: 12904 12993 '@babel/core': 7.26.10 12905 12994 '@babel/helper-annotate-as-pure': 7.25.9 12906 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) 12995 + '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.10) 12907 12996 '@babel/helper-plugin-utils': 7.26.5 12908 12997 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 12909 12998 '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10) ··· 12918 13007 '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.9)': 12919 13008 dependencies: 12920 13009 '@babel/core': 7.26.9 12921 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9) 13010 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) 12922 13011 '@babel/helper-plugin-utils': 7.26.5 12923 13012 12924 13013 '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.9)': 12925 13014 dependencies: 12926 13015 '@babel/core': 7.26.9 12927 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9) 13016 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) 12928 13017 '@babel/helper-plugin-utils': 7.26.5 12929 13018 12930 13019 '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.9)': 12931 13020 dependencies: 12932 13021 '@babel/core': 7.26.9 12933 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.9) 13022 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9) 12934 13023 '@babel/helper-plugin-utils': 7.26.5 12935 13024 12936 13025 '@babel/preset-env@7.26.9(@babel/core@7.26.9)': 12937 13026 dependencies: 12938 13027 '@babel/compat-data': 7.26.8 12939 13028 '@babel/core': 7.26.9 12940 - '@babel/helper-compilation-targets': 7.27.0 13029 + '@babel/helper-compilation-targets': 7.26.5 12941 13030 '@babel/helper-plugin-utils': 7.26.5 12942 13031 '@babel/helper-validator-option': 7.25.9 12943 13032 '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.9) ··· 12953 13042 '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.9) 12954 13043 '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.9) 12955 13044 '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.9) 12956 - '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.9) 13045 + '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.9) 12957 13046 '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.9) 12958 13047 '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.9) 12959 13048 '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.9) ··· 12987 13076 '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.9) 12988 13077 '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.9) 12989 13078 '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.9) 12990 - '@babel/plugin-transform-regenerator': 7.27.0(@babel/core@7.26.9) 13079 + '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.9) 12991 13080 '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.9) 12992 13081 '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.9) 12993 13082 '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.9) 12994 13083 '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.9) 12995 13084 '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.9) 12996 13085 '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.9) 12997 - '@babel/plugin-transform-typeof-symbol': 7.27.0(@babel/core@7.26.9) 13086 + '@babel/plugin-transform-typeof-symbol': 7.26.7(@babel/core@7.26.9) 12998 13087 '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.9) 12999 13088 '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.9) 13000 13089 '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.9) 13001 13090 '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.9) 13002 13091 '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.9) 13003 - babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.9) 13092 + babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.9) 13004 13093 babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.9) 13005 - babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.9) 13094 + babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.9) 13006 13095 core-js-compat: 3.41.0 13007 13096 semver: 6.3.1 13008 13097 transitivePeerDependencies: ··· 13012 13101 dependencies: 13013 13102 '@babel/core': 7.26.9 13014 13103 '@babel/helper-plugin-utils': 7.26.5 13015 - '@babel/types': 7.27.0 13104 + '@babel/types': 7.26.10 13016 13105 esutils: 2.0.3 13017 13106 13018 - '@babel/runtime@7.26.9': 13107 + '@babel/runtime@7.26.10': 13019 13108 dependencies: 13020 13109 regenerator-runtime: 0.14.1 13021 13110 13022 - '@babel/runtime@7.27.0': 13111 + '@babel/runtime@7.26.9': 13023 13112 dependencies: 13024 13113 regenerator-runtime: 0.14.1 13025 13114 13026 - '@babel/standalone@7.27.0': {} 13115 + '@babel/standalone@7.26.10': {} 13027 13116 13028 - '@babel/template@7.27.0': 13117 + '@babel/template@7.26.9': 13029 13118 dependencies: 13030 13119 '@babel/code-frame': 7.26.2 13031 - '@babel/parser': 7.27.0 13032 - '@babel/types': 7.27.0 13120 + '@babel/parser': 7.26.10 13121 + '@babel/types': 7.26.10 13033 13122 13034 - '@babel/traverse@7.27.0': 13123 + '@babel/traverse@7.26.10': 13035 13124 dependencies: 13036 13125 '@babel/code-frame': 7.26.2 13037 - '@babel/generator': 7.27.0 13038 - '@babel/parser': 7.27.0 13039 - '@babel/template': 7.27.0 13040 - '@babel/types': 7.27.0 13041 - debug: 4.4.0 13126 + '@babel/generator': 7.26.10 13127 + '@babel/parser': 7.26.10 13128 + '@babel/template': 7.26.9 13129 + '@babel/types': 7.26.10 13130 + debug: 4.4.0(supports-color@9.4.0) 13042 13131 globals: 11.12.0 13043 13132 transitivePeerDependencies: 13044 13133 - supports-color 13045 13134 13046 - '@babel/types@7.27.0': 13135 + '@babel/types@7.26.10': 13047 13136 dependencies: 13048 13137 '@babel/helper-string-parser': 7.25.9 13049 13138 '@babel/helper-validator-identifier': 7.25.9 ··· 13106 13195 '@changesets/types': 6.1.0 13107 13196 '@changesets/write': 0.3.2 13108 13197 '@manypkg/get-packages': 1.1.3 13109 - '@types/semver': 7.7.0 13198 + '@types/semver': 7.5.8 13110 13199 ansi-colors: 4.1.3 13111 13200 ci-info: 3.9.0 13112 13201 enquirer: 2.4.1 ··· 13211 13300 human-id: 1.0.2 13212 13301 prettier: 2.8.8 13213 13302 13214 - '@cloudflare/kv-asset-handler@0.4.0': 13303 + '@cloudflare/kv-asset-handler@0.3.4': 13215 13304 dependencies: 13216 13305 mime: 3.0.0 13217 13306 ··· 13225 13314 13226 13315 '@docsearch/css@3.9.0': {} 13227 13316 13228 - '@docsearch/js@3.9.0(@algolia/client-search@5.23.2)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3)': 13317 + '@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)': 13229 13318 dependencies: 13230 - '@docsearch/react': 3.9.0(@algolia/client-search@5.23.2)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3) 13319 + '@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) 13231 13320 preact: 10.26.4 13232 13321 transitivePeerDependencies: 13233 13322 - '@algolia/client-search' ··· 13236 13325 - react-dom 13237 13326 - search-insights 13238 13327 13239 - '@docsearch/react@3.9.0(@algolia/client-search@5.23.2)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3)': 13328 + '@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)': 13240 13329 dependencies: 13241 - '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.23.2)(algoliasearch@5.23.2)(search-insights@2.17.3) 13242 - '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.23.2)(algoliasearch@5.23.2) 13330 + '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3) 13331 + '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0) 13243 13332 '@docsearch/css': 3.9.0 13244 - algoliasearch: 5.23.2 13333 + algoliasearch: 5.21.0 13245 13334 optionalDependencies: 13246 13335 '@types/react': 19.0.1 13247 13336 react: 19.0.0 ··· 13250 13339 transitivePeerDependencies: 13251 13340 - '@algolia/client-search' 13252 13341 13253 - '@emnapi/core@1.4.0': 13254 - dependencies: 13255 - '@emnapi/wasi-threads': 1.0.1 13256 - tslib: 2.8.1 13257 - optional: true 13258 - 13259 - '@emnapi/runtime@1.4.0': 13260 - dependencies: 13261 - tslib: 2.8.1 13262 - optional: true 13263 - 13264 - '@emnapi/wasi-threads@1.0.1': 13342 + '@emnapi/runtime@1.3.1': 13265 13343 dependencies: 13266 13344 tslib: 2.8.1 13267 13345 optional: true ··· 13629 13707 '@esbuild/win32-x64@0.25.2': 13630 13708 optional: true 13631 13709 13632 - '@eslint-community/eslint-utils@4.5.1(eslint@9.17.0(jiti@2.4.2))': 13710 + '@eslint-community/eslint-utils@4.5.0(eslint@9.17.0(jiti@2.4.2))': 13633 13711 dependencies: 13634 13712 eslint: 9.17.0(jiti@2.4.2) 13635 13713 eslint-visitor-keys: 3.4.3 ··· 13639 13717 '@eslint/config-array@0.19.2': 13640 13718 dependencies: 13641 13719 '@eslint/object-schema': 2.1.6 13642 - debug: 4.4.0 13720 + debug: 4.4.0(supports-color@9.4.0) 13643 13721 minimatch: 3.1.2 13644 13722 transitivePeerDependencies: 13645 13723 - supports-color 13646 13724 13647 - '@eslint/core@0.13.0': 13725 + '@eslint/core@0.12.0': 13648 13726 dependencies: 13649 13727 '@types/json-schema': 7.0.15 13650 13728 ··· 13652 13730 dependencies: 13653 13731 '@types/json-schema': 7.0.15 13654 13732 13655 - '@eslint/eslintrc@3.3.1': 13733 + '@eslint/eslintrc@3.3.0': 13656 13734 dependencies: 13657 13735 ajv: 6.12.6 13658 - debug: 4.4.0 13736 + debug: 4.4.0(supports-color@9.4.0) 13659 13737 espree: 10.3.0 13660 13738 globals: 14.0.0 13661 13739 ignore: 5.3.2 ··· 13670 13748 13671 13749 '@eslint/object-schema@2.1.6': {} 13672 13750 13673 - '@eslint/plugin-kit@0.2.8': 13751 + '@eslint/plugin-kit@0.2.7': 13674 13752 dependencies: 13675 - '@eslint/core': 0.13.0 13753 + '@eslint/core': 0.12.0 13676 13754 levn: 0.4.1 13677 13755 13678 13756 '@fastify/ajv-compiler@4.0.2': ··· 13681 13759 ajv-formats: 3.0.1(ajv@8.17.1) 13682 13760 fast-uri: 3.0.6 13683 13761 13684 - '@fastify/error@4.1.0': {} 13762 + '@fastify/error@4.0.0': {} 13685 13763 13686 13764 '@fastify/fast-json-stringify-compiler@5.0.2': 13687 13765 dependencies: ··· 13795 13873 13796 13874 '@img/sharp-wasm32@0.33.5': 13797 13875 dependencies: 13798 - '@emnapi/runtime': 1.4.0 13876 + '@emnapi/runtime': 1.3.1 13799 13877 optional: true 13800 13878 13801 13879 '@img/sharp-win32-ia32@0.33.5': ··· 13804 13882 '@img/sharp-win32-x64@0.33.5': 13805 13883 optional: true 13806 13884 13807 - '@inquirer/checkbox@4.1.5(@types/node@22.10.5)': 13885 + '@inquirer/checkbox@4.1.3(@types/node@22.10.5)': 13808 13886 dependencies: 13809 - '@inquirer/core': 10.1.10(@types/node@22.10.5) 13887 + '@inquirer/core': 10.1.8(@types/node@22.10.5) 13810 13888 '@inquirer/figures': 1.0.11 13811 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13889 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13812 13890 ansi-escapes: 4.3.2 13813 13891 yoctocolors-cjs: 2.1.2 13814 13892 optionalDependencies: ··· 13816 13894 13817 13895 '@inquirer/confirm@5.1.6(@types/node@22.10.5)': 13818 13896 dependencies: 13819 - '@inquirer/core': 10.1.10(@types/node@22.10.5) 13820 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13897 + '@inquirer/core': 10.1.8(@types/node@22.10.5) 13898 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13821 13899 optionalDependencies: 13822 13900 '@types/node': 22.10.5 13823 13901 13824 - '@inquirer/confirm@5.1.9(@types/node@22.10.5)': 13902 + '@inquirer/confirm@5.1.7(@types/node@22.10.5)': 13825 13903 dependencies: 13826 - '@inquirer/core': 10.1.10(@types/node@22.10.5) 13827 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13904 + '@inquirer/core': 10.1.8(@types/node@22.10.5) 13905 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13828 13906 optionalDependencies: 13829 13907 '@types/node': 22.10.5 13830 13908 13831 - '@inquirer/core@10.1.10(@types/node@22.10.5)': 13909 + '@inquirer/core@10.1.8(@types/node@22.10.5)': 13832 13910 dependencies: 13833 13911 '@inquirer/figures': 1.0.11 13834 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13912 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13835 13913 ansi-escapes: 4.3.2 13836 13914 cli-width: 4.1.0 13837 13915 mute-stream: 2.0.0 ··· 13841 13919 optionalDependencies: 13842 13920 '@types/node': 22.10.5 13843 13921 13844 - '@inquirer/editor@4.2.10(@types/node@22.10.5)': 13922 + '@inquirer/editor@4.2.8(@types/node@22.10.5)': 13845 13923 dependencies: 13846 - '@inquirer/core': 10.1.10(@types/node@22.10.5) 13847 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13924 + '@inquirer/core': 10.1.8(@types/node@22.10.5) 13925 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13848 13926 external-editor: 3.1.0 13849 13927 optionalDependencies: 13850 13928 '@types/node': 22.10.5 13851 13929 13852 - '@inquirer/expand@4.0.12(@types/node@22.10.5)': 13930 + '@inquirer/expand@4.0.10(@types/node@22.10.5)': 13853 13931 dependencies: 13854 - '@inquirer/core': 10.1.10(@types/node@22.10.5) 13855 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13932 + '@inquirer/core': 10.1.8(@types/node@22.10.5) 13933 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13856 13934 yoctocolors-cjs: 2.1.2 13857 13935 optionalDependencies: 13858 13936 '@types/node': 22.10.5 13859 13937 13860 13938 '@inquirer/figures@1.0.11': {} 13861 13939 13862 - '@inquirer/input@4.1.9(@types/node@22.10.5)': 13940 + '@inquirer/input@4.1.7(@types/node@22.10.5)': 13863 13941 dependencies: 13864 - '@inquirer/core': 10.1.10(@types/node@22.10.5) 13865 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13942 + '@inquirer/core': 10.1.8(@types/node@22.10.5) 13943 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13866 13944 optionalDependencies: 13867 13945 '@types/node': 22.10.5 13868 13946 13869 - '@inquirer/number@3.0.12(@types/node@22.10.5)': 13947 + '@inquirer/number@3.0.10(@types/node@22.10.5)': 13870 13948 dependencies: 13871 - '@inquirer/core': 10.1.10(@types/node@22.10.5) 13872 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13949 + '@inquirer/core': 10.1.8(@types/node@22.10.5) 13950 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13873 13951 optionalDependencies: 13874 13952 '@types/node': 22.10.5 13875 13953 13876 - '@inquirer/password@4.0.12(@types/node@22.10.5)': 13954 + '@inquirer/password@4.0.10(@types/node@22.10.5)': 13877 13955 dependencies: 13878 - '@inquirer/core': 10.1.10(@types/node@22.10.5) 13879 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13956 + '@inquirer/core': 10.1.8(@types/node@22.10.5) 13957 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13880 13958 ansi-escapes: 4.3.2 13881 13959 optionalDependencies: 13882 13960 '@types/node': 22.10.5 13883 13961 13884 13962 '@inquirer/prompts@7.3.2(@types/node@22.10.5)': 13885 13963 dependencies: 13886 - '@inquirer/checkbox': 4.1.5(@types/node@22.10.5) 13887 - '@inquirer/confirm': 5.1.9(@types/node@22.10.5) 13888 - '@inquirer/editor': 4.2.10(@types/node@22.10.5) 13889 - '@inquirer/expand': 4.0.12(@types/node@22.10.5) 13890 - '@inquirer/input': 4.1.9(@types/node@22.10.5) 13891 - '@inquirer/number': 3.0.12(@types/node@22.10.5) 13892 - '@inquirer/password': 4.0.12(@types/node@22.10.5) 13893 - '@inquirer/rawlist': 4.0.12(@types/node@22.10.5) 13894 - '@inquirer/search': 3.0.12(@types/node@22.10.5) 13895 - '@inquirer/select': 4.1.1(@types/node@22.10.5) 13964 + '@inquirer/checkbox': 4.1.3(@types/node@22.10.5) 13965 + '@inquirer/confirm': 5.1.7(@types/node@22.10.5) 13966 + '@inquirer/editor': 4.2.8(@types/node@22.10.5) 13967 + '@inquirer/expand': 4.0.10(@types/node@22.10.5) 13968 + '@inquirer/input': 4.1.7(@types/node@22.10.5) 13969 + '@inquirer/number': 3.0.10(@types/node@22.10.5) 13970 + '@inquirer/password': 4.0.10(@types/node@22.10.5) 13971 + '@inquirer/rawlist': 4.0.10(@types/node@22.10.5) 13972 + '@inquirer/search': 3.0.10(@types/node@22.10.5) 13973 + '@inquirer/select': 4.0.10(@types/node@22.10.5) 13896 13974 optionalDependencies: 13897 13975 '@types/node': 22.10.5 13898 13976 13899 - '@inquirer/rawlist@4.0.12(@types/node@22.10.5)': 13977 + '@inquirer/rawlist@4.0.10(@types/node@22.10.5)': 13900 13978 dependencies: 13901 - '@inquirer/core': 10.1.10(@types/node@22.10.5) 13902 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13979 + '@inquirer/core': 10.1.8(@types/node@22.10.5) 13980 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13903 13981 yoctocolors-cjs: 2.1.2 13904 13982 optionalDependencies: 13905 13983 '@types/node': 22.10.5 13906 13984 13907 - '@inquirer/search@3.0.12(@types/node@22.10.5)': 13985 + '@inquirer/search@3.0.10(@types/node@22.10.5)': 13908 13986 dependencies: 13909 - '@inquirer/core': 10.1.10(@types/node@22.10.5) 13987 + '@inquirer/core': 10.1.8(@types/node@22.10.5) 13910 13988 '@inquirer/figures': 1.0.11 13911 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13989 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13912 13990 yoctocolors-cjs: 2.1.2 13913 13991 optionalDependencies: 13914 13992 '@types/node': 22.10.5 13915 13993 13916 - '@inquirer/select@4.1.1(@types/node@22.10.5)': 13994 + '@inquirer/select@4.0.10(@types/node@22.10.5)': 13917 13995 dependencies: 13918 - '@inquirer/core': 10.1.10(@types/node@22.10.5) 13996 + '@inquirer/core': 10.1.8(@types/node@22.10.5) 13919 13997 '@inquirer/figures': 1.0.11 13920 - '@inquirer/type': 3.0.6(@types/node@22.10.5) 13998 + '@inquirer/type': 3.0.5(@types/node@22.10.5) 13921 13999 ansi-escapes: 4.3.2 13922 14000 yoctocolors-cjs: 2.1.2 13923 14001 optionalDependencies: ··· 13927 14005 dependencies: 13928 14006 mute-stream: 1.0.0 13929 14007 13930 - '@inquirer/type@3.0.6(@types/node@22.10.5)': 14008 + '@inquirer/type@3.0.5(@types/node@22.10.5)': 13931 14009 optionalDependencies: 13932 14010 '@types/node': 22.10.5 13933 14011 ··· 13995 14073 13996 14074 '@kwsites/file-exists@1.1.1': 13997 14075 dependencies: 13998 - debug: 4.4.0 14076 + debug: 4.4.0(supports-color@9.4.0) 13999 14077 transitivePeerDependencies: 14000 14078 - supports-color 14001 14079 ··· 14032 14110 14033 14111 '@manypkg/find-root@1.1.0': 14034 14112 dependencies: 14035 - '@babel/runtime': 7.27.0 14113 + '@babel/runtime': 7.26.10 14036 14114 '@types/node': 12.20.55 14037 14115 find-up: 4.1.0 14038 14116 fs-extra: 8.1.0 14039 14117 14040 14118 '@manypkg/get-packages@1.1.3': 14041 14119 dependencies: 14042 - '@babel/runtime': 7.27.0 14120 + '@babel/runtime': 7.26.10 14043 14121 '@changesets/types': 4.1.0 14044 14122 '@manypkg/find-root': 1.1.0 14045 14123 fs-extra: 8.1.0 ··· 14048 14126 14049 14127 '@mapbox/node-pre-gyp@2.0.0(encoding@0.1.13)': 14050 14128 dependencies: 14051 - consola: 3.4.2 14129 + consola: 3.4.0 14052 14130 detect-libc: 2.0.3 14053 - https-proxy-agent: 7.0.6 14131 + https-proxy-agent: 7.0.6(supports-color@9.4.0) 14054 14132 node-fetch: 2.7.0(encoding@0.1.13) 14055 14133 nopt: 8.1.0 14056 14134 semver: 7.7.1 ··· 14145 14223 '@napi-rs/nice-win32-x64-msvc': 1.0.1 14146 14224 optional: true 14147 14225 14148 - '@napi-rs/wasm-runtime@0.2.8': 14149 - dependencies: 14150 - '@emnapi/core': 1.4.0 14151 - '@emnapi/runtime': 1.4.0 14152 - '@tybys/wasm-util': 0.9.0 14153 - optional: true 14154 - 14155 14226 '@neoconfetti/svelte@2.0.0': {} 14156 14227 14157 - '@netlify/functions@3.0.4': 14228 + '@netlify/functions@3.0.0': 14158 14229 dependencies: 14159 - '@netlify/serverless-functions-api': 1.36.0 14230 + '@netlify/serverless-functions-api': 1.30.1 14160 14231 14161 - '@netlify/serverless-functions-api@1.36.0': {} 14232 + '@netlify/node-cookies@0.1.0': {} 14233 + 14234 + '@netlify/serverless-functions-api@1.30.1': 14235 + dependencies: 14236 + '@netlify/node-cookies': 0.1.0 14237 + urlpattern-polyfill: 8.0.2 14162 14238 14163 14239 '@next/env@15.2.4': {} 14164 14240 ··· 14214 14290 dependencies: 14215 14291 agent-base: 7.1.3 14216 14292 http-proxy-agent: 7.0.2 14217 - https-proxy-agent: 7.0.6 14293 + https-proxy-agent: 7.0.6(supports-color@9.4.0) 14218 14294 lru-cache: 10.4.3 14219 14295 socks-proxy-agent: 8.0.5 14220 14296 transitivePeerDependencies: ··· 14263 14339 '@npmcli/node-gyp': 4.0.0 14264 14340 '@npmcli/package-json': 6.1.1 14265 14341 '@npmcli/promise-spawn': 8.0.2 14266 - node-gyp: 11.2.0 14342 + node-gyp: 11.1.0 14267 14343 proc-log: 5.0.0 14268 14344 which: 5.0.0 14269 14345 transitivePeerDependencies: ··· 14271 14347 14272 14348 '@nuxt/devalue@2.0.2': {} 14273 14349 14274 - '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))': 14350 + '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(vite@6.2.6(@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))': 14275 14351 dependencies: 14276 14352 '@nuxt/kit': 3.15.4(magicast@0.3.5) 14277 14353 '@nuxt/schema': 3.16.2 14278 14354 execa: 7.2.0 14279 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 14355 + vite: 6.2.6(@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) 14280 14356 transitivePeerDependencies: 14281 14357 - magicast 14282 14358 - supports-color 14283 14359 14284 14360 '@nuxt/devtools-wizard@1.7.0': 14285 14361 dependencies: 14286 - consola: 3.4.2 14362 + consola: 3.4.0 14287 14363 diff: 7.0.0 14288 14364 execa: 7.2.0 14289 14365 global-directory: 4.0.1 ··· 14294 14370 rc9: 2.1.2 14295 14371 semver: 7.7.1 14296 14372 14297 - '@nuxt/devtools@1.7.0(rollup@3.29.5)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))': 14373 + '@nuxt/devtools@1.7.0(rollup@3.29.5)(vite@6.2.6(@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.8.3))': 14298 14374 dependencies: 14299 14375 '@antfu/utils': 0.7.10 14300 - '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 14376 + '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.2.6(@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)) 14301 14377 '@nuxt/devtools-wizard': 1.7.0 14302 14378 '@nuxt/kit': 3.15.4(magicast@0.3.5) 14303 - '@vue/devtools-core': 7.6.8(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)) 14379 + '@vue/devtools-core': 7.6.8(vite@6.2.6(@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.8.3)) 14304 14380 '@vue/devtools-kit': 7.6.8 14305 14381 birpc: 0.2.19 14306 - consola: 3.4.2 14307 - cronstrue: 2.58.0 14308 - destr: 2.0.5 14382 + consola: 3.4.0 14383 + cronstrue: 2.56.0 14384 + destr: 2.0.3 14309 14385 error-stack-parser-es: 0.1.5 14310 14386 execa: 7.2.0 14311 14387 fast-npm-meta: 0.2.2 ··· 14327 14403 semver: 7.7.1 14328 14404 simple-git: 3.27.0 14329 14405 sirv: 3.0.1 14330 - tinyglobby: 0.2.10 14406 + tinyglobby: 0.2.12 14331 14407 unimport: 3.14.6(rollup@3.29.5) 14332 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 14333 - vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@3.29.5)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 14334 - vite-plugin-vue-inspector: 5.3.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 14408 + vite: 6.2.6(@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) 14409 + vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@3.29.5)(vite@6.2.6(@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)) 14410 + vite-plugin-vue-inspector: 5.3.1(vite@6.2.6(@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)) 14335 14411 which: 3.0.1 14336 14412 ws: 8.18.1 14337 14413 transitivePeerDependencies: ··· 14341 14417 - utf-8-validate 14342 14418 - vue 14343 14419 14344 - '@nuxt/devtools@1.7.0(rollup@4.39.0)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))': 14420 + '@nuxt/devtools@1.7.0(rollup@4.39.0)(vite@6.2.6(@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.8.3))': 14345 14421 dependencies: 14346 14422 '@antfu/utils': 0.7.10 14347 - '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 14423 + '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.2.6(@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)) 14348 14424 '@nuxt/devtools-wizard': 1.7.0 14349 14425 '@nuxt/kit': 3.15.4(magicast@0.3.5) 14350 - '@vue/devtools-core': 7.6.8(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)) 14426 + '@vue/devtools-core': 7.6.8(vite@6.2.6(@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.8.3)) 14351 14427 '@vue/devtools-kit': 7.6.8 14352 14428 birpc: 0.2.19 14353 - consola: 3.4.2 14354 - cronstrue: 2.58.0 14355 - destr: 2.0.5 14429 + consola: 3.4.0 14430 + cronstrue: 2.56.0 14431 + destr: 2.0.3 14356 14432 error-stack-parser-es: 0.1.5 14357 14433 execa: 7.2.0 14358 14434 fast-npm-meta: 0.2.2 ··· 14374 14450 semver: 7.7.1 14375 14451 simple-git: 3.27.0 14376 14452 sirv: 3.0.1 14377 - tinyglobby: 0.2.10 14453 + tinyglobby: 0.2.12 14378 14454 unimport: 3.14.6(rollup@4.39.0) 14379 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 14380 - vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.39.0)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 14381 - vite-plugin-vue-inspector: 5.3.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 14455 + vite: 6.2.6(@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) 14456 + vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.39.0)(vite@6.2.6(@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)) 14457 + vite-plugin-vue-inspector: 5.3.1(vite@6.2.6(@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)) 14382 14458 which: 3.0.1 14383 14459 ws: 8.18.1 14384 14460 transitivePeerDependencies: ··· 14392 14468 dependencies: 14393 14469 '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@3.29.5) 14394 14470 c12: 2.0.1(magicast@0.3.5) 14395 - consola: 3.4.2 14471 + consola: 3.4.0 14396 14472 defu: 6.1.4 14397 - destr: 2.0.5 14473 + destr: 2.0.3 14398 14474 globby: 14.1.0 14399 14475 hash-sum: 2.0.0 14400 14476 ignore: 6.0.2 ··· 14419 14495 dependencies: 14420 14496 '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.39.0) 14421 14497 c12: 2.0.1(magicast@0.3.5) 14422 - consola: 3.4.2 14498 + consola: 3.4.0 14423 14499 defu: 6.1.4 14424 - destr: 2.0.5 14500 + destr: 2.0.3 14425 14501 globby: 14.1.0 14426 14502 hash-sum: 2.0.0 14427 14503 ignore: 6.0.2 ··· 14445 14521 '@nuxt/kit@3.15.4(magicast@0.3.5)': 14446 14522 dependencies: 14447 14523 c12: 2.0.1(magicast@0.3.5) 14448 - consola: 3.4.2 14524 + consola: 3.4.0 14449 14525 defu: 6.1.4 14450 - destr: 2.0.5 14526 + destr: 2.0.3 14451 14527 globby: 14.1.0 14452 14528 ignore: 7.0.3 14453 14529 jiti: 2.4.2 ··· 14459 14535 pkg-types: 1.3.1 14460 14536 scule: 1.3.0 14461 14537 semver: 7.7.1 14462 - std-env: 3.9.0 14538 + std-env: 3.8.1 14463 14539 ufo: 1.5.4 14464 14540 unctx: 2.4.1 14465 - unimport: 4.1.3 14541 + unimport: 4.1.2 14466 14542 untyped: 1.5.2 14467 14543 transitivePeerDependencies: 14468 14544 - magicast ··· 14470 14546 14471 14547 '@nuxt/kit@3.16.2(magicast@0.3.5)': 14472 14548 dependencies: 14473 - c12: 3.0.3(magicast@0.3.5) 14549 + c12: 3.0.2(magicast@0.3.5) 14474 14550 consola: 3.4.2 14475 14551 defu: 6.1.4 14476 - destr: 2.0.5 14552 + destr: 2.0.3 14477 14553 errx: 0.1.0 14478 14554 exsolve: 1.0.4 14479 14555 globby: 14.1.0 ··· 14487 14563 pkg-types: 2.1.0 14488 14564 scule: 1.3.0 14489 14565 semver: 7.7.1 14490 - std-env: 3.9.0 14566 + std-env: 3.8.1 14491 14567 ufo: 1.5.4 14492 14568 unctx: 2.4.1 14493 - unimport: 4.1.3 14569 + unimport: 4.2.0 14494 14570 untyped: 2.0.0 14495 14571 transitivePeerDependencies: 14496 14572 - magicast 14497 14573 14498 - '@nuxt/module-builder@0.8.4(@nuxt/kit@3.15.4(magicast@0.3.5))(nuxi@3.24.1)(sass@1.85.0)(typescript@5.8.3)': 14574 + '@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.8.3)': 14499 14575 dependencies: 14500 14576 '@nuxt/kit': 3.15.4(magicast@0.3.5) 14501 14577 citty: 0.1.6 14502 - consola: 3.4.2 14578 + consola: 3.4.0 14503 14579 defu: 6.1.4 14504 14580 magic-regexp: 0.8.0 14505 14581 mlly: 1.7.4 14506 - nuxi: 3.24.1 14582 + nuxi: 3.22.5 14507 14583 pathe: 1.1.2 14508 14584 pkg-types: 1.3.1 14509 14585 tsconfck: 3.1.5(typescript@5.8.3) ··· 14518 14594 dependencies: 14519 14595 c12: 2.0.1(magicast@0.3.5) 14520 14596 compatx: 0.1.8 14521 - consola: 3.4.2 14597 + consola: 3.4.0 14522 14598 defu: 6.1.4 14523 14599 hookable: 5.5.3 14524 14600 pathe: 1.1.2 14525 14601 pkg-types: 1.3.1 14526 14602 scule: 1.3.0 14527 - std-env: 3.9.0 14603 + std-env: 3.8.1 14528 14604 ufo: 1.5.4 14529 14605 uncrypto: 0.1.3 14530 14606 unimport: 3.14.6(rollup@3.29.5) ··· 14538 14614 dependencies: 14539 14615 c12: 2.0.1(magicast@0.3.5) 14540 14616 compatx: 0.1.8 14541 - consola: 3.4.2 14617 + consola: 3.4.0 14542 14618 defu: 6.1.4 14543 14619 hookable: 5.5.3 14544 14620 pathe: 1.1.2 14545 14621 pkg-types: 1.3.1 14546 14622 scule: 1.3.0 14547 - std-env: 3.9.0 14623 + std-env: 3.8.1 14548 14624 ufo: 1.5.4 14549 14625 uncrypto: 0.1.3 14550 14626 unimport: 3.14.6(rollup@4.39.0) ··· 14559 14635 consola: 3.4.2 14560 14636 defu: 6.1.4 14561 14637 pathe: 2.0.3 14562 - std-env: 3.9.0 14638 + std-env: 3.8.1 14563 14639 14564 - '@nuxt/telemetry@2.6.6(magicast@0.3.5)': 14640 + '@nuxt/telemetry@2.6.5(magicast@0.3.5)': 14565 14641 dependencies: 14566 14642 '@nuxt/kit': 3.15.4(magicast@0.3.5) 14567 14643 citty: 0.1.6 14568 - consola: 3.4.2 14569 - destr: 2.0.5 14644 + consola: 3.4.0 14645 + destr: 2.0.3 14570 14646 dotenv: 16.4.7 14571 14647 git-url-parse: 16.0.1 14572 14648 is-docker: 3.0.0 14573 14649 ofetch: 1.4.1 14574 - package-manager-detector: 1.1.0 14650 + package-manager-detector: 0.2.11 14651 + parse-git-config: 3.0.0 14575 14652 pathe: 2.0.3 14576 14653 rc9: 2.1.2 14577 - std-env: 3.9.0 14654 + std-env: 3.8.1 14578 14655 transitivePeerDependencies: 14579 14656 - magicast 14580 14657 - supports-color 14581 14658 14582 - '@nuxt/test-utils@3.17.2(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(yaml@2.7.1)': 14659 + '@nuxt/test-utils@3.17.2(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0)': 14583 14660 dependencies: 14584 14661 '@nuxt/kit': 3.16.2(magicast@0.3.5) 14585 14662 '@nuxt/schema': 3.16.2 14586 - c12: 3.0.3(magicast@0.3.5) 14587 - consola: 3.4.2 14663 + c12: 3.0.2(magicast@0.3.5) 14664 + consola: 3.4.0 14588 14665 defu: 6.1.4 14589 - destr: 2.0.5 14666 + destr: 2.0.3 14590 14667 estree-walker: 3.0.3 14591 14668 fake-indexeddb: 6.0.0 14592 14669 get-port-please: 3.1.2 ··· 14600 14677 perfect-debounce: 1.0.0 14601 14678 radix3: 1.1.2 14602 14679 scule: 1.3.0 14603 - std-env: 3.9.0 14680 + std-env: 3.8.1 14604 14681 tinyexec: 0.3.2 14605 14682 ufo: 1.5.4 14606 - unplugin: 2.2.2 14607 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 14608 - vitest-environment-nuxt: 1.0.1(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(yaml@2.7.1) 14683 + unplugin: 2.2.0 14684 + vite: 6.2.6(@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) 14685 + vitest-environment-nuxt: 1.0.1(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0) 14609 14686 vue: 3.5.13(typescript@5.8.3) 14610 14687 optionalDependencies: 14611 14688 '@vue/test-utils': 2.4.6 14612 14689 jsdom: 23.0.0 14613 - vitest: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 14690 + vitest: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0) 14614 14691 transitivePeerDependencies: 14615 14692 - '@types/node' 14616 14693 - jiti ··· 14630 14707 dependencies: 14631 14708 '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@3.29.5) 14632 14709 '@rollup/plugin-replace': 6.0.2(rollup@3.29.5) 14633 - '@vitejs/plugin-vue': 5.2.1(vite@5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3)) 14634 - '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3)) 14710 + '@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.8.3)) 14711 + '@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.8.3)) 14635 14712 autoprefixer: 10.4.20(postcss@8.5.3) 14636 14713 clear: 0.1.0 14637 - consola: 3.4.2 14714 + consola: 3.4.0 14638 14715 cssnano: 7.0.6(postcss@8.5.3) 14639 14716 defu: 6.1.4 14640 14717 esbuild: 0.24.2 ··· 14653 14730 pkg-types: 1.3.1 14654 14731 postcss: 8.5.3 14655 14732 rollup-plugin-visualizer: 5.14.0(rollup@3.29.5) 14656 - std-env: 3.9.0 14733 + std-env: 3.8.1 14657 14734 strip-literal: 2.1.1 14658 14735 ufo: 1.5.4 14659 14736 unenv: 1.10.0 14660 14737 unplugin: 1.16.1 14661 - vite: 5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 14738 + vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 14662 14739 vite-node: 2.1.9(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 14663 - vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.8.3)(vite@5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)) 14740 + vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.8.3)(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)) 14664 14741 vue: 3.5.13(typescript@5.8.3) 14665 14742 vue-bundle-renderer: 2.1.1 14666 14743 transitivePeerDependencies: ··· 14690 14767 dependencies: 14691 14768 '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.39.0) 14692 14769 '@rollup/plugin-replace': 6.0.2(rollup@4.39.0) 14693 - '@vitejs/plugin-vue': 5.2.1(vite@5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3)) 14694 - '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3)) 14770 + '@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.8.3)) 14771 + '@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.8.3)) 14695 14772 autoprefixer: 10.4.20(postcss@8.5.3) 14696 14773 clear: 0.1.0 14697 - consola: 3.4.2 14774 + consola: 3.4.0 14698 14775 cssnano: 7.0.6(postcss@8.5.3) 14699 14776 defu: 6.1.4 14700 14777 esbuild: 0.24.2 ··· 14713 14790 pkg-types: 1.3.1 14714 14791 postcss: 8.5.3 14715 14792 rollup-plugin-visualizer: 5.14.0(rollup@4.39.0) 14716 - std-env: 3.9.0 14793 + std-env: 3.8.1 14717 14794 strip-literal: 2.1.1 14718 14795 ufo: 1.5.4 14719 14796 unenv: 1.10.0 14720 14797 unplugin: 1.16.1 14721 - vite: 5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 14798 + vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 14722 14799 vite-node: 2.1.9(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 14723 - vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.8.3)(vite@5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)) 14800 + vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.8.3)(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)) 14724 14801 vue: 3.5.13(typescript@5.8.3) 14725 14802 vue-bundle-renderer: 2.1.1 14726 14803 transitivePeerDependencies: ··· 14747 14824 - vue-tsc 14748 14825 14749 14826 '@one-ini/wasm@0.1.1': {} 14750 - 14751 - '@opentelemetry/api@1.9.0': 14752 - optional: true 14753 14827 14754 14828 '@parcel/watcher-android-arm64@2.5.1': 14755 14829 optional: true ··· 14819 14893 '@pkgjs/parseargs@0.11.0': 14820 14894 optional: true 14821 14895 14822 - '@pkgr/core@0.2.0': {} 14896 + '@pkgr/core@0.1.1': {} 14823 14897 14824 14898 '@polka/url@1.0.0-next.28': {} 14825 14899 ··· 15513 15587 '@types/react': 19.0.1 15514 15588 '@types/react-dom': 19.0.1 15515 15589 15590 + '@redocly/ajv@8.11.2': 15591 + dependencies: 15592 + fast-deep-equal: 3.1.3 15593 + json-schema-traverse: 1.0.0 15594 + require-from-string: 2.0.2 15595 + uri-js-replace: 1.0.1 15596 + 15597 + '@redocly/config@0.22.1': {} 15598 + 15599 + '@redocly/openapi-core@1.33.1(supports-color@9.4.0)': 15600 + dependencies: 15601 + '@redocly/ajv': 8.11.2 15602 + '@redocly/config': 0.22.1 15603 + colorette: 1.4.0 15604 + https-proxy-agent: 7.0.6(supports-color@9.4.0) 15605 + js-levenshtein: 1.1.6 15606 + js-yaml: 4.1.0 15607 + minimatch: 5.1.6 15608 + pluralize: 8.0.0 15609 + yaml-ast-parser: 0.0.43 15610 + transitivePeerDependencies: 15611 + - supports-color 15612 + 15516 15613 '@rollup/plugin-alias@5.1.1(rollup@3.29.5)': 15517 15614 optionalDependencies: 15518 15615 rollup: 3.29.5 ··· 15817 15914 15818 15915 '@sec-ant/readable-stream@0.4.1': {} 15819 15916 15820 - '@seriousme/openapi-schema-validator@2.4.0': 15917 + '@seriousme/openapi-schema-validator@2.3.1': 15821 15918 dependencies: 15822 15919 ajv: 8.17.1 15823 15920 ajv-draft-04: 1.0.0(ajv@8.17.1) ··· 15911 16008 15912 16009 '@stackblitz/sdk@1.11.0': {} 15913 16010 15914 - '@sveltejs/adapter-auto@4.0.0(@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)))(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)))': 16011 + '@sveltejs/adapter-auto@4.0.0(@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@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.2.6(@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)))': 15915 16012 dependencies: 15916 - '@sveltejs/kit': 2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)))(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 16013 + '@sveltejs/kit': 2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@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.2.6(@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)) 15917 16014 import-meta-resolve: 4.1.0 15918 16015 15919 - '@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)))(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))': 16016 + '@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@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.2.6(@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))': 15920 16017 dependencies: 15921 - '@sveltejs/vite-plugin-svelte': 5.0.3(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 16018 + '@sveltejs/vite-plugin-svelte': 5.0.3(svelte@5.19.9)(vite@6.2.6(@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)) 15922 16019 '@types/cookie': 0.6.0 15923 16020 cookie: 0.6.0 15924 16021 devalue: 5.1.1 ··· 15931 16028 set-cookie-parser: 2.7.1 15932 16029 sirv: 3.0.1 15933 16030 svelte: 5.19.9 15934 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 16031 + vite: 6.2.6(@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) 15935 16032 15936 - '@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)))(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))': 16033 + '@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@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.2.6(@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))': 15937 16034 dependencies: 15938 - '@sveltejs/vite-plugin-svelte': 5.0.3(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 15939 - debug: 4.4.0 16035 + '@sveltejs/vite-plugin-svelte': 5.0.3(svelte@5.19.9)(vite@6.2.6(@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)) 16036 + debug: 4.4.0(supports-color@9.4.0) 15940 16037 svelte: 5.19.9 15941 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 16038 + vite: 6.2.6(@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) 15942 16039 transitivePeerDependencies: 15943 16040 - supports-color 15944 16041 15945 - '@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))': 16042 + '@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@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))': 15946 16043 dependencies: 15947 - '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)))(svelte@5.19.9)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 15948 - debug: 4.4.0 16044 + '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@6.2.6(@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.2.6(@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)) 16045 + debug: 4.4.0(supports-color@9.4.0) 15949 16046 deepmerge: 4.3.1 15950 16047 kleur: 4.1.5 15951 16048 magic-string: 0.30.17 15952 16049 svelte: 5.19.9 15953 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 15954 - vitefu: 1.0.6(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 16050 + vite: 6.2.6(@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) 16051 + vitefu: 1.0.6(vite@6.2.6(@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)) 15955 16052 transitivePeerDependencies: 15956 16053 - supports-color 15957 16054 ··· 16032 16129 '@tufjs/canonical-json': 2.0.0 16033 16130 minimatch: 9.0.5 16034 16131 16035 - '@tybys/wasm-util@0.9.0': 16036 - dependencies: 16037 - tslib: 2.8.1 16038 - optional: true 16039 - 16040 16132 '@types/babel__core@7.20.5': 16041 16133 dependencies: 16042 - '@babel/parser': 7.27.0 16043 - '@babel/types': 7.27.0 16044 - '@types/babel__generator': 7.27.0 16134 + '@babel/parser': 7.26.10 16135 + '@babel/types': 7.26.10 16136 + '@types/babel__generator': 7.6.8 16045 16137 '@types/babel__template': 7.4.4 16046 - '@types/babel__traverse': 7.20.7 16138 + '@types/babel__traverse': 7.20.6 16047 16139 16048 - '@types/babel__generator@7.27.0': 16140 + '@types/babel__generator@7.6.8': 16049 16141 dependencies: 16050 - '@babel/types': 7.27.0 16142 + '@babel/types': 7.26.10 16051 16143 16052 16144 '@types/babel__template@7.4.4': 16053 16145 dependencies: 16054 - '@babel/parser': 7.27.0 16055 - '@babel/types': 7.27.0 16146 + '@babel/parser': 7.26.10 16147 + '@babel/types': 7.26.10 16056 16148 16057 - '@types/babel__traverse@7.20.7': 16149 + '@types/babel__traverse@7.20.6': 16058 16150 dependencies: 16059 - '@babel/types': 7.27.0 16151 + '@babel/types': 7.26.10 16060 16152 16061 16153 '@types/body-parser@1.19.5': 16062 16154 dependencies: ··· 16089 16181 '@types/eslint-scope@3.7.7': 16090 16182 dependencies: 16091 16183 '@types/eslint': 9.6.0 16092 - '@types/estree': 1.0.7 16184 + '@types/estree': 1.0.6 16093 16185 16094 16186 '@types/eslint@9.6.0': 16095 16187 dependencies: 16096 - '@types/estree': 1.0.7 16188 + '@types/estree': 1.0.6 16097 16189 '@types/json-schema': 7.0.15 16098 16190 16099 16191 '@types/estree@1.0.6': {} ··· 16186 16278 16187 16279 '@types/retry@0.12.2': {} 16188 16280 16189 - '@types/semver@7.7.0': {} 16281 + '@types/semver@7.5.8': {} 16190 16282 16191 16283 '@types/send@0.17.4': 16192 16284 dependencies: ··· 16213 16305 16214 16306 '@types/web-bluetooth@0.0.20': {} 16215 16307 16216 - '@types/ws@8.18.1': 16308 + '@types/ws@8.18.0': 16217 16309 dependencies: 16218 16310 '@types/node': 22.10.5 16219 16311 ··· 16234 16326 graphemer: 1.4.0 16235 16327 ignore: 5.3.2 16236 16328 natural-compare: 1.4.0 16237 - ts-api-utils: 2.1.0(typescript@5.8.3) 16329 + ts-api-utils: 2.0.1(typescript@5.8.3) 16238 16330 typescript: 5.8.3 16239 16331 transitivePeerDependencies: 16240 16332 - supports-color ··· 16253 16345 '@typescript-eslint/types': 8.29.1 16254 16346 '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.8.3) 16255 16347 '@typescript-eslint/visitor-keys': 8.29.1 16256 - debug: 4.4.0 16348 + debug: 4.4.0(supports-color@9.4.0) 16257 16349 eslint: 9.17.0(jiti@2.4.2) 16258 16350 typescript: 5.8.3 16259 16351 transitivePeerDependencies: ··· 16273 16365 dependencies: 16274 16366 '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.8.3) 16275 16367 '@typescript-eslint/utils': 8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 16276 - debug: 4.4.0 16368 + debug: 4.4.0(supports-color@9.4.0) 16277 16369 eslint: 9.17.0(jiti@2.4.2) 16278 - ts-api-utils: 2.1.0(typescript@5.8.3) 16370 + ts-api-utils: 2.0.1(typescript@5.8.3) 16279 16371 typescript: 5.8.3 16280 16372 transitivePeerDependencies: 16281 16373 - supports-color ··· 16288 16380 dependencies: 16289 16381 '@typescript-eslint/types': 5.62.0 16290 16382 '@typescript-eslint/visitor-keys': 5.62.0 16291 - debug: 4.4.0 16383 + debug: 4.4.0(supports-color@9.4.0) 16292 16384 globby: 11.1.0 16293 16385 is-glob: 4.0.3 16294 16386 semver: 7.7.1 ··· 16302 16394 dependencies: 16303 16395 '@typescript-eslint/types': 8.29.1 16304 16396 '@typescript-eslint/visitor-keys': 8.29.1 16305 - debug: 4.4.0 16397 + debug: 4.4.0(supports-color@9.4.0) 16306 16398 fast-glob: 3.3.3 16307 16399 is-glob: 4.0.3 16308 16400 minimatch: 9.0.5 16309 16401 semver: 7.7.1 16310 - ts-api-utils: 2.1.0(typescript@5.8.3) 16402 + ts-api-utils: 2.0.1(typescript@5.8.3) 16311 16403 typescript: 5.8.3 16312 16404 transitivePeerDependencies: 16313 16405 - supports-color 16314 16406 16315 16407 '@typescript-eslint/utils@5.62.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3)': 16316 16408 dependencies: 16317 - '@eslint-community/eslint-utils': 4.5.1(eslint@9.17.0(jiti@2.4.2)) 16409 + '@eslint-community/eslint-utils': 4.5.0(eslint@9.17.0(jiti@2.4.2)) 16318 16410 '@types/json-schema': 7.0.15 16319 - '@types/semver': 7.7.0 16411 + '@types/semver': 7.5.8 16320 16412 '@typescript-eslint/scope-manager': 5.62.0 16321 16413 '@typescript-eslint/types': 5.62.0 16322 16414 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.8.3) ··· 16329 16421 16330 16422 '@typescript-eslint/utils@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3)': 16331 16423 dependencies: 16332 - '@eslint-community/eslint-utils': 4.5.1(eslint@9.17.0(jiti@2.4.2)) 16424 + '@eslint-community/eslint-utils': 4.5.0(eslint@9.17.0(jiti@2.4.2)) 16333 16425 '@typescript-eslint/scope-manager': 8.29.1 16334 16426 '@typescript-eslint/types': 8.29.1 16335 16427 '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.8.3) ··· 16378 16470 unhead: 1.11.20 16379 16471 vue: 3.5.13(typescript@5.8.3) 16380 16472 16381 - '@unrs/resolver-binding-darwin-arm64@1.3.3': 16382 - optional: true 16383 - 16384 - '@unrs/resolver-binding-darwin-x64@1.3.3': 16385 - optional: true 16386 - 16387 - '@unrs/resolver-binding-freebsd-x64@1.3.3': 16388 - optional: true 16389 - 16390 - '@unrs/resolver-binding-linux-arm-gnueabihf@1.3.3': 16391 - optional: true 16392 - 16393 - '@unrs/resolver-binding-linux-arm-musleabihf@1.3.3': 16394 - optional: true 16395 - 16396 - '@unrs/resolver-binding-linux-arm64-gnu@1.3.3': 16397 - optional: true 16398 - 16399 - '@unrs/resolver-binding-linux-arm64-musl@1.3.3': 16400 - optional: true 16401 - 16402 - '@unrs/resolver-binding-linux-ppc64-gnu@1.3.3': 16403 - optional: true 16404 - 16405 - '@unrs/resolver-binding-linux-s390x-gnu@1.3.3': 16406 - optional: true 16407 - 16408 - '@unrs/resolver-binding-linux-x64-gnu@1.3.3': 16409 - optional: true 16410 - 16411 - '@unrs/resolver-binding-linux-x64-musl@1.3.3': 16412 - optional: true 16413 - 16414 - '@unrs/resolver-binding-wasm32-wasi@1.3.3': 16415 - dependencies: 16416 - '@napi-rs/wasm-runtime': 0.2.8 16417 - optional: true 16418 - 16419 - '@unrs/resolver-binding-win32-arm64-msvc@1.3.3': 16420 - optional: true 16421 - 16422 - '@unrs/resolver-binding-win32-ia32-msvc@1.3.3': 16423 - optional: true 16424 - 16425 - '@unrs/resolver-binding-win32-x64-msvc@1.3.3': 16426 - optional: true 16427 - 16428 16473 '@vercel/nft@0.29.2(encoding@0.1.13)(rollup@4.39.0)': 16429 16474 dependencies: 16430 16475 '@mapbox/node-pre-gyp': 2.0.0(encoding@0.1.13) 16431 16476 '@rollup/pluginutils': 5.1.4(rollup@4.39.0) 16432 - acorn: 8.14.0 16433 - acorn-import-attributes: 1.9.5(acorn@8.14.0) 16477 + acorn: 8.14.1 16478 + acorn-import-attributes: 1.9.5(acorn@8.14.1) 16434 16479 async-sema: 3.1.1 16435 16480 bindings: 1.5.0 16436 16481 estree-walker: 2.0.2 ··· 16444 16489 - rollup 16445 16490 - supports-color 16446 16491 16447 - '@vitejs/plugin-basic-ssl@1.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.1))': 16492 + '@vitejs/plugin-basic-ssl@1.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))': 16448 16493 dependencies: 16449 - 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.1) 16494 + 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) 16450 16495 16451 - '@vitejs/plugin-basic-ssl@1.2.0(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))': 16496 + '@vitejs/plugin-basic-ssl@1.2.0(vite@6.2.6(@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))': 16452 16497 dependencies: 16453 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 16498 + vite: 6.2.6(@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) 16454 16499 16455 - '@vitejs/plugin-react@4.4.0-beta.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))': 16500 + '@vitejs/plugin-react@4.4.0-beta.1(vite@6.2.6(@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))': 16456 16501 dependencies: 16457 16502 '@babel/core': 7.26.10 16458 16503 '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10) 16459 16504 '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10) 16460 16505 '@types/babel__core': 7.20.5 16461 16506 react-refresh: 0.14.2 16462 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 16507 + vite: 6.2.6(@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) 16463 16508 transitivePeerDependencies: 16464 16509 - supports-color 16465 16510 16466 - '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3))': 16511 + '@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.8.3))': 16467 16512 dependencies: 16468 16513 '@babel/core': 7.26.10 16469 - '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10) 16514 + '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10) 16470 16515 '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.10) 16471 - vite: 5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 16516 + vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 16472 16517 vue: 3.5.13(typescript@5.8.3) 16473 16518 transitivePeerDependencies: 16474 16519 - supports-color 16475 16520 16476 - '@vitejs/plugin-vue-jsx@4.1.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))': 16521 + '@vitejs/plugin-vue-jsx@4.1.1(vite@6.2.6(@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.8.3))': 16477 16522 dependencies: 16478 16523 '@babel/core': 7.26.10 16479 - '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10) 16524 + '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10) 16480 16525 '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.10) 16481 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 16526 + vite: 6.2.6(@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) 16482 16527 vue: 3.5.13(typescript@5.8.3) 16483 16528 transitivePeerDependencies: 16484 16529 - supports-color 16485 16530 16486 - '@vitejs/plugin-vue@5.2.1(vite@5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3))': 16531 + '@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.8.3))': 16487 16532 dependencies: 16488 - vite: 5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 16533 + vite: 5.4.14(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 16489 16534 vue: 3.5.13(typescript@5.8.3) 16490 16535 16491 - '@vitejs/plugin-vue@5.2.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))': 16536 + '@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.8.3))': 16537 + dependencies: 16538 + vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 16539 + vue: 3.5.13(typescript@5.8.3) 16540 + 16541 + '@vitejs/plugin-vue@5.2.1(vite@6.2.6(@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.8.3))': 16492 16542 dependencies: 16493 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 16543 + vite: 6.2.6(@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) 16494 16544 vue: 3.5.13(typescript@5.8.3) 16495 16545 16496 - '@vitest/coverage-v8@3.1.1(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))': 16546 + '@vitest/coverage-v8@3.1.1(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))': 16497 16547 dependencies: 16498 16548 '@ampproject/remapping': 2.3.0 16499 16549 '@bcoe/v8-coverage': 1.0.2 16500 - debug: 4.4.0 16550 + debug: 4.4.0(supports-color@9.4.0) 16501 16551 istanbul-lib-coverage: 3.2.2 16502 16552 istanbul-lib-report: 3.0.1 16503 16553 istanbul-lib-source-maps: 5.0.6 16504 16554 istanbul-reports: 3.1.7 16505 16555 magic-string: 0.30.17 16506 16556 magicast: 0.3.5 16507 - std-env: 3.9.0 16557 + std-env: 3.8.1 16508 16558 test-exclude: 7.0.1 16509 16559 tinyrainbow: 2.0.0 16510 - vitest: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 16560 + vitest: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0) 16511 16561 transitivePeerDependencies: 16512 16562 - supports-color 16513 16563 ··· 16518 16568 chai: 5.2.0 16519 16569 tinyrainbow: 2.0.0 16520 16570 16521 - '@vitest/mocker@3.1.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))': 16571 + '@vitest/mocker@3.1.1(vite@6.2.6(@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))': 16522 16572 dependencies: 16523 16573 '@vitest/spy': 3.1.1 16524 16574 estree-walker: 3.0.3 16525 16575 magic-string: 0.30.17 16526 16576 optionalDependencies: 16527 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 16577 + vite: 6.2.6(@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) 16528 16578 16529 16579 '@vitest/pretty-format@3.1.1': 16530 16580 dependencies: ··· 16581 16631 '@babel/helper-module-imports': 7.25.9 16582 16632 '@babel/helper-plugin-utils': 7.26.5 16583 16633 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10) 16584 - '@babel/template': 7.27.0 16585 - '@babel/traverse': 7.27.0 16586 - '@babel/types': 7.27.0 16634 + '@babel/template': 7.26.9 16635 + '@babel/traverse': 7.26.10 16636 + '@babel/types': 7.26.10 16587 16637 '@vue/babel-helper-vue-transform-on': 1.4.0 16588 16638 '@vue/babel-plugin-resolve-type': 1.4.0(@babel/core@7.26.10) 16589 16639 '@vue/shared': 3.5.13 ··· 16598 16648 '@babel/core': 7.26.10 16599 16649 '@babel/helper-module-imports': 7.25.9 16600 16650 '@babel/helper-plugin-utils': 7.26.5 16601 - '@babel/parser': 7.27.0 16651 + '@babel/parser': 7.26.10 16602 16652 '@vue/compiler-sfc': 3.5.13 16603 16653 transitivePeerDependencies: 16604 16654 - supports-color 16605 16655 16606 16656 '@vue/compiler-core@3.5.13': 16607 16657 dependencies: 16608 - '@babel/parser': 7.27.0 16658 + '@babel/parser': 7.26.10 16609 16659 '@vue/shared': 3.5.13 16610 16660 entities: 4.5.0 16611 16661 estree-walker: 2.0.2 ··· 16618 16668 16619 16669 '@vue/compiler-sfc@3.5.13': 16620 16670 dependencies: 16621 - '@babel/parser': 7.27.0 16671 + '@babel/parser': 7.26.10 16622 16672 '@vue/compiler-core': 3.5.13 16623 16673 '@vue/compiler-dom': 3.5.13 16624 16674 '@vue/compiler-ssr': 3.5.13 ··· 16644 16694 dependencies: 16645 16695 '@vue/devtools-kit': 7.7.2 16646 16696 16647 - '@vue/devtools-core@7.6.8(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))': 16697 + '@vue/devtools-core@7.6.8(vite@6.2.6(@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.8.3))': 16648 16698 dependencies: 16649 - '@vue/devtools-kit': 7.6.8 16699 + '@vue/devtools-kit': 7.7.2 16650 16700 '@vue/devtools-shared': 7.7.2 16651 16701 mitt: 3.0.1 16652 16702 nanoid: 5.1.5 16653 16703 pathe: 1.1.2 16654 - vite-hot-client: 0.2.4(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 16704 + vite-hot-client: 0.2.4(vite@6.2.6(@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)) 16655 16705 vue: 3.5.13(typescript@5.8.3) 16656 16706 transitivePeerDependencies: 16657 16707 - vite 16658 16708 16659 - '@vue/devtools-core@7.7.2(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))': 16709 + '@vue/devtools-core@7.7.2(vite@6.2.6(@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.8.3))': 16660 16710 dependencies: 16661 16711 '@vue/devtools-kit': 7.7.2 16662 16712 '@vue/devtools-shared': 7.7.2 16663 16713 mitt: 3.0.1 16664 - nanoid: 5.1.5 16714 + nanoid: 5.1.3 16665 16715 pathe: 2.0.3 16666 - vite-hot-client: 0.2.4(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 16716 + vite-hot-client: 0.2.4(vite@6.2.6(@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)) 16667 16717 vue: 3.5.13(typescript@5.8.3) 16668 16718 transitivePeerDependencies: 16669 16719 - vite ··· 16696 16746 dependencies: 16697 16747 eslint: 9.17.0(jiti@2.4.2) 16698 16748 eslint-config-prettier: 9.1.0(eslint@9.17.0(jiti@2.4.2)) 16699 - eslint-plugin-prettier: 5.2.6(@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) 16749 + 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) 16700 16750 prettier: 3.4.2 16701 16751 transitivePeerDependencies: 16702 16752 - '@types/eslint' ··· 16770 16820 - '@vue/composition-api' 16771 16821 - vue 16772 16822 16773 - '@vueuse/integrations@10.11.1(axios@1.8.4)(focus-trap@7.6.4)(vue@3.5.13(typescript@5.8.3))': 16823 + '@vueuse/integrations@10.11.1(axios@1.8.2)(focus-trap@7.6.4)(vue@3.5.13(typescript@5.8.3))': 16774 16824 dependencies: 16775 16825 '@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.8.3)) 16776 16826 '@vueuse/shared': 10.11.1(vue@3.5.13(typescript@5.8.3)) 16777 16827 vue-demi: 0.14.10(vue@3.5.13(typescript@5.8.3)) 16778 16828 optionalDependencies: 16779 - axios: 1.8.4 16829 + axios: 1.8.2 16780 16830 focus-trap: 7.6.4 16781 16831 transitivePeerDependencies: 16782 16832 - '@vue/composition-api' ··· 16888 16938 mime-types: 2.1.35 16889 16939 negotiator: 0.6.3 16890 16940 16891 - acorn-import-attributes@1.9.5(acorn@8.14.0): 16941 + acorn-import-attributes@1.9.5(acorn@8.14.1): 16892 16942 dependencies: 16893 - acorn: 8.14.0 16943 + acorn: 8.14.1 16894 16944 16895 16945 acorn-jsx@5.3.2(acorn@7.4.1): 16896 16946 dependencies: ··· 16952 17002 json-schema-traverse: 1.0.0 16953 17003 require-from-string: 2.0.2 16954 17004 16955 - algoliasearch@5.23.2: 17005 + algoliasearch@5.21.0: 16956 17006 dependencies: 16957 - '@algolia/client-abtesting': 5.23.2 16958 - '@algolia/client-analytics': 5.23.2 16959 - '@algolia/client-common': 5.23.2 16960 - '@algolia/client-insights': 5.23.2 16961 - '@algolia/client-personalization': 5.23.2 16962 - '@algolia/client-query-suggestions': 5.23.2 16963 - '@algolia/client-search': 5.23.2 16964 - '@algolia/ingestion': 1.23.2 16965 - '@algolia/monitoring': 1.23.2 16966 - '@algolia/recommend': 5.23.2 16967 - '@algolia/requester-browser-xhr': 5.23.2 16968 - '@algolia/requester-fetch': 5.23.2 16969 - '@algolia/requester-node-http': 5.23.2 17007 + '@algolia/client-abtesting': 5.21.0 17008 + '@algolia/client-analytics': 5.21.0 17009 + '@algolia/client-common': 5.21.0 17010 + '@algolia/client-insights': 5.21.0 17011 + '@algolia/client-personalization': 5.21.0 17012 + '@algolia/client-query-suggestions': 5.21.0 17013 + '@algolia/client-search': 5.21.0 17014 + '@algolia/ingestion': 1.21.0 17015 + '@algolia/monitoring': 1.21.0 17016 + '@algolia/recommend': 5.21.0 17017 + '@algolia/requester-browser-xhr': 5.21.0 17018 + '@algolia/requester-fetch': 5.21.0 17019 + '@algolia/requester-node-http': 5.21.0 16970 17020 16971 17021 alien-signals@0.4.14: {} 16972 17022 ··· 17062 17112 es-object-atoms: 1.1.1 17063 17113 es-shim-unscopables: 1.1.0 17064 17114 17065 - array.prototype.findlastindex@1.2.6: 17115 + array.prototype.findlastindex@1.2.5: 17066 17116 dependencies: 17067 17117 call-bind: 1.0.8 17068 - call-bound: 1.0.4 17069 17118 define-properties: 1.2.1 17070 17119 es-abstract: 1.23.9 17071 17120 es-errors: 1.3.0 ··· 17108 17157 17109 17158 ast-kit@1.4.2: 17110 17159 dependencies: 17111 - '@babel/parser': 7.27.0 17160 + '@babel/parser': 7.26.10 17112 17161 pathe: 2.0.3 17113 17162 17114 17163 ast-types-flow@0.0.8: {} ··· 17119 17168 17120 17169 ast-walker-scope@0.6.2: 17121 17170 dependencies: 17122 - '@babel/parser': 7.27.0 17171 + '@babel/parser': 7.26.10 17123 17172 ast-kit: 1.4.2 17124 17173 17125 17174 async-function@1.0.0: {} ··· 17135 17184 autoprefixer@10.4.19(postcss@8.4.41): 17136 17185 dependencies: 17137 17186 browserslist: 4.24.4 17138 - caniuse-lite: 1.0.30001712 17187 + caniuse-lite: 1.0.30001703 17139 17188 fraction.js: 4.3.7 17140 17189 normalize-range: 0.1.2 17141 17190 picocolors: 1.1.1 ··· 17145 17194 autoprefixer@10.4.20(postcss@8.4.41): 17146 17195 dependencies: 17147 17196 browserslist: 4.24.4 17148 - caniuse-lite: 1.0.30001712 17197 + caniuse-lite: 1.0.30001703 17149 17198 fraction.js: 4.3.7 17150 17199 normalize-range: 0.1.2 17151 17200 picocolors: 1.1.1 ··· 17155 17204 autoprefixer@10.4.20(postcss@8.5.2): 17156 17205 dependencies: 17157 17206 browserslist: 4.24.4 17158 - caniuse-lite: 1.0.30001712 17207 + caniuse-lite: 1.0.30001703 17159 17208 fraction.js: 4.3.7 17160 17209 normalize-range: 0.1.2 17161 17210 picocolors: 1.1.1 ··· 17165 17214 autoprefixer@10.4.20(postcss@8.5.3): 17166 17215 dependencies: 17167 17216 browserslist: 4.24.4 17168 - caniuse-lite: 1.0.30001712 17217 + caniuse-lite: 1.0.30001703 17169 17218 fraction.js: 4.3.7 17170 17219 normalize-range: 0.1.2 17171 17220 picocolors: 1.1.1 ··· 17178 17227 17179 17228 avvio@9.1.0: 17180 17229 dependencies: 17181 - '@fastify/error': 4.1.0 17230 + '@fastify/error': 4.0.0 17182 17231 fastq: 1.19.1 17183 17232 17184 17233 axe-core@4.10.3: {} ··· 17191 17240 transitivePeerDependencies: 17192 17241 - debug 17193 17242 17194 - axios@1.8.4: 17195 - dependencies: 17196 - follow-redirects: 1.15.9(debug@4.4.0) 17197 - form-data: 4.0.2 17198 - proxy-from-env: 1.1.0 17199 - transitivePeerDependencies: 17200 - - debug 17201 - optional: true 17202 - 17203 17243 axobject-query@4.1.0: {} 17204 17244 17205 17245 b4a@1.6.7: {} ··· 17211 17251 schema-utils: 4.3.0 17212 17252 webpack: 5.98.0(esbuild@0.25.2) 17213 17253 17214 - babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.9): 17254 + babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.9): 17215 17255 dependencies: 17216 17256 '@babel/compat-data': 7.26.8 17217 17257 '@babel/core': 7.26.9 17218 - '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.9) 17258 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9) 17219 17259 semver: 6.3.1 17220 17260 transitivePeerDependencies: 17221 17261 - supports-color ··· 17223 17263 babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.9): 17224 17264 dependencies: 17225 17265 '@babel/core': 7.26.9 17226 - '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.9) 17266 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9) 17227 17267 core-js-compat: 3.41.0 17228 17268 transitivePeerDependencies: 17229 17269 - supports-color ··· 17231 17271 babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.9): 17232 17272 dependencies: 17233 17273 '@babel/core': 7.26.9 17234 - '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.9) 17274 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9) 17235 17275 core-js-compat: 3.41.0 17236 17276 transitivePeerDependencies: 17237 17277 - supports-color 17238 17278 17239 - babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.26.9): 17279 + babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.9): 17240 17280 dependencies: 17241 17281 '@babel/core': 7.26.9 17242 - '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.9) 17282 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9) 17243 17283 transitivePeerDependencies: 17244 17284 - supports-color 17245 17285 ··· 17288 17328 domhandler: 5.0.3 17289 17329 htmlparser2: 9.1.0 17290 17330 picocolors: 1.1.1 17291 - postcss: 8.5.2 17331 + postcss: 8.5.3 17292 17332 postcss-media-query-parser: 0.2.3 17293 17333 17294 17334 better-path-resolve@1.0.0: ··· 17350 17390 17351 17391 browserslist@4.24.4: 17352 17392 dependencies: 17353 - caniuse-lite: 1.0.30001712 17354 - electron-to-chromium: 1.5.132 17393 + caniuse-lite: 1.0.30001703 17394 + electron-to-chromium: 1.5.114 17355 17395 node-releases: 2.0.19 17356 17396 update-browserslist-db: 1.1.3(browserslist@4.24.4) 17357 17397 ··· 17403 17443 optionalDependencies: 17404 17444 magicast: 0.3.5 17405 17445 17406 - c12@3.0.3(magicast@0.3.5): 17446 + c12@3.0.2(magicast@0.3.5): 17407 17447 dependencies: 17408 17448 chokidar: 4.0.3 17409 - confbox: 0.2.2 17449 + confbox: 0.1.8 17410 17450 defu: 6.1.4 17411 17451 dotenv: 16.4.7 17412 17452 exsolve: 1.0.4 ··· 17461 17501 caniuse-api@3.0.0: 17462 17502 dependencies: 17463 17503 browserslist: 4.24.4 17464 - caniuse-lite: 1.0.30001712 17504 + caniuse-lite: 1.0.30001709 17465 17505 lodash.memoize: 4.1.2 17466 17506 lodash.uniq: 4.5.0 17467 17507 17468 - caniuse-lite@1.0.30001712: {} 17508 + caniuse-lite@1.0.30001703: {} 17509 + 17510 + caniuse-lite@1.0.30001709: {} 17469 17511 17470 17512 ccount@2.0.1: {} 17471 17513 ··· 17483 17525 supports-color: 7.2.0 17484 17526 17485 17527 chalk@5.4.1: {} 17528 + 17529 + change-case@5.4.4: {} 17486 17530 17487 17531 char-regex@1.0.2: {} 17488 17532 ··· 17527 17571 17528 17572 citty@0.1.6: 17529 17573 dependencies: 17530 - consola: 3.4.2 17574 + consola: 3.4.0 17531 17575 17532 17576 cjs-module-lexer@1.4.3: {} 17533 17577 ··· 17617 17661 17618 17662 colord@2.9.3: {} 17619 17663 17664 + colorette@1.4.0: {} 17665 + 17620 17666 colorette@2.0.20: {} 17621 17667 17622 17668 combined-stream@1.0.8: ··· 17673 17719 17674 17720 confbox@0.1.8: {} 17675 17721 17676 - confbox@0.2.2: {} 17722 + confbox@0.2.1: {} 17677 17723 17678 17724 config-chain@1.1.13: 17679 17725 dependencies: ··· 17691 17737 transitivePeerDependencies: 17692 17738 - supports-color 17693 17739 17740 + consola@3.4.0: {} 17741 + 17694 17742 consola@3.4.2: {} 17695 17743 17696 17744 content-disposition@0.5.4: ··· 17766 17814 17767 17815 croner@9.0.0: {} 17768 17816 17769 - cronstrue@2.58.0: {} 17817 + cronstrue@2.56.0: {} 17770 17818 17771 17819 cross-spawn@5.1.0: 17772 17820 dependencies: ··· 17894 17942 data-urls@5.0.0: 17895 17943 dependencies: 17896 17944 whatwg-mimetype: 4.0.0 17897 - whatwg-url: 14.2.0 17945 + whatwg-url: 14.1.1 17898 17946 17899 17947 data-view-buffer@1.0.2: 17900 17948 dependencies: ··· 17938 17986 dependencies: 17939 17987 ms: 2.1.3 17940 17988 17941 - debug@4.4.0: 17989 + debug@4.4.0(supports-color@9.4.0): 17942 17990 dependencies: 17943 17991 ms: 2.1.3 17992 + optionalDependencies: 17993 + supports-color: 9.4.0 17944 17994 17945 17995 decimal.js@10.5.0: {} 17946 17996 ··· 17995 18045 17996 18046 dequal@2.0.3: {} 17997 18047 17998 - destr@2.0.5: {} 18048 + destr@2.0.3: {} 17999 18049 18000 18050 destroy@1.2.0: {} 18001 18051 ··· 18066 18116 18067 18117 dot-prop@9.0.0: 18068 18118 dependencies: 18069 - type-fest: 4.39.1 18119 + type-fest: 4.37.0 18070 18120 18071 18121 dotenv@16.4.7: {} 18072 18122 ··· 18091 18141 18092 18142 ee-first@1.1.1: {} 18093 18143 18094 - electron-to-chromium@1.5.132: {} 18144 + electron-to-chromium@1.5.114: {} 18095 18145 18096 18146 emoji-regex-xs@1.0.0: {} 18097 18147 ··· 18443 18493 '@typescript-eslint/parser': 8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 18444 18494 eslint: 9.17.0(jiti@2.4.2) 18445 18495 eslint-import-resolver-node: 0.3.9 18446 - eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)) 18447 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.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)) 18496 + eslint-import-resolver-typescript: 3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)) 18497 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.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)) 18448 18498 eslint-plugin-jsx-a11y: 6.10.2(eslint@9.17.0(jiti@2.4.2)) 18449 - eslint-plugin-react: 7.37.5(eslint@9.17.0(jiti@2.4.2)) 18499 + eslint-plugin-react: 7.37.4(eslint@9.17.0(jiti@2.4.2)) 18450 18500 eslint-plugin-react-hooks: 5.2.0(eslint@9.17.0(jiti@2.4.2)) 18451 18501 optionalDependencies: 18452 18502 typescript: 5.8.3 ··· 18467 18517 transitivePeerDependencies: 18468 18518 - supports-color 18469 18519 18470 - eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)): 18520 + eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)): 18471 18521 dependencies: 18472 18522 '@nolyfill/is-core-module': 1.0.39 18473 - debug: 4.4.0 18523 + debug: 4.4.0(supports-color@9.4.0) 18524 + enhanced-resolve: 5.18.1 18474 18525 eslint: 9.17.0(jiti@2.4.2) 18475 18526 get-tsconfig: 4.10.0 18476 - is-bun-module: 2.0.0 18477 - stable-hash: 0.0.5 18527 + is-bun-module: 1.3.0 18528 + stable-hash: 0.0.4 18478 18529 tinyglobby: 0.2.12 18479 - unrs-resolver: 1.3.3 18480 18530 optionalDependencies: 18481 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.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)) 18531 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.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)) 18482 18532 transitivePeerDependencies: 18483 18533 - supports-color 18484 18534 18485 - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.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)): 18535 + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.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)): 18486 18536 dependencies: 18487 18537 debug: 3.2.7 18488 18538 optionalDependencies: 18489 18539 '@typescript-eslint/parser': 8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 18490 18540 eslint: 9.17.0(jiti@2.4.2) 18491 18541 eslint-import-resolver-node: 0.3.9 18492 - eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)) 18542 + eslint-import-resolver-typescript: 3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)) 18493 18543 transitivePeerDependencies: 18494 18544 - supports-color 18495 18545 18496 - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.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)): 18546 + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.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)): 18497 18547 dependencies: 18498 18548 '@rtsao/scc': 1.1.0 18499 18549 array-includes: 3.1.8 18500 - array.prototype.findlastindex: 1.2.6 18550 + array.prototype.findlastindex: 1.2.5 18501 18551 array.prototype.flat: 1.3.3 18502 18552 array.prototype.flatmap: 1.3.3 18503 18553 debug: 3.2.7 18504 18554 doctrine: 2.1.0 18505 18555 eslint: 9.17.0(jiti@2.4.2) 18506 18556 eslint-import-resolver-node: 0.3.9 18507 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.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)) 18557 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.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)) 18508 18558 hasown: 2.0.2 18509 18559 is-core-module: 2.16.1 18510 18560 is-glob: 4.0.3 ··· 18541 18591 safe-regex-test: 1.1.0 18542 18592 string.prototype.includes: 2.0.1 18543 18593 18544 - eslint-plugin-prettier@5.2.6(@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): 18594 + 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): 18545 18595 dependencies: 18546 18596 eslint: 9.17.0(jiti@2.4.2) 18547 18597 prettier: 3.4.2 18548 18598 prettier-linter-helpers: 1.0.0 18549 - synckit: 0.11.2 18599 + synckit: 0.9.2 18550 18600 optionalDependencies: 18551 18601 '@types/eslint': 9.6.0 18552 18602 eslint-config-prettier: 9.1.0(eslint@9.17.0(jiti@2.4.2)) ··· 18559 18609 dependencies: 18560 18610 eslint: 9.17.0(jiti@2.4.2) 18561 18611 18562 - eslint-plugin-react@7.37.5(eslint@9.17.0(jiti@2.4.2)): 18612 + eslint-plugin-react@7.37.4(eslint@9.17.0(jiti@2.4.2)): 18563 18613 dependencies: 18564 18614 array-includes: 3.1.8 18565 18615 array.prototype.findlast: 1.2.5 ··· 18572 18622 hasown: 2.0.2 18573 18623 jsx-ast-utils: 3.3.5 18574 18624 minimatch: 3.1.2 18575 - object.entries: 1.1.9 18625 + object.entries: 1.1.8 18576 18626 object.fromentries: 2.0.8 18577 18627 object.values: 1.2.1 18578 18628 prop-types: 15.8.1 ··· 18599 18649 18600 18650 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.8.3)): 18601 18651 dependencies: 18602 - '@eslint-community/eslint-utils': 4.5.1(eslint@9.17.0(jiti@2.4.2)) 18652 + '@eslint-community/eslint-utils': 4.5.0(eslint@9.17.0(jiti@2.4.2)) 18603 18653 '@jridgewell/sourcemap-codec': 1.5.0 18604 - debug: 4.4.0 18654 + debug: 4.4.0(supports-color@9.4.0) 18605 18655 eslint: 9.17.0(jiti@2.4.2) 18606 18656 eslint-compat-utils: 0.5.1(eslint@9.17.0(jiti@2.4.2)) 18607 18657 esutils: 2.0.3 ··· 18631 18681 18632 18682 eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.4.2)): 18633 18683 dependencies: 18634 - '@eslint-community/eslint-utils': 4.5.1(eslint@9.17.0(jiti@2.4.2)) 18684 + '@eslint-community/eslint-utils': 4.5.0(eslint@9.17.0(jiti@2.4.2)) 18635 18685 eslint: 9.17.0(jiti@2.4.2) 18636 18686 globals: 13.24.0 18637 18687 natural-compare: 1.4.0 ··· 18666 18716 18667 18717 eslint@9.17.0(jiti@2.4.2): 18668 18718 dependencies: 18669 - '@eslint-community/eslint-utils': 4.5.1(eslint@9.17.0(jiti@2.4.2)) 18719 + '@eslint-community/eslint-utils': 4.5.0(eslint@9.17.0(jiti@2.4.2)) 18670 18720 '@eslint-community/regexpp': 4.12.1 18671 18721 '@eslint/config-array': 0.19.2 18672 18722 '@eslint/core': 0.9.1 18673 - '@eslint/eslintrc': 3.3.1 18723 + '@eslint/eslintrc': 3.3.0 18674 18724 '@eslint/js': 9.17.0 18675 - '@eslint/plugin-kit': 0.2.8 18725 + '@eslint/plugin-kit': 0.2.7 18676 18726 '@humanfs/node': 0.16.6 18677 18727 '@humanwhocodes/module-importer': 1.0.1 18678 18728 '@humanwhocodes/retry': 0.4.2 18679 - '@types/estree': 1.0.7 18729 + '@types/estree': 1.0.6 18680 18730 '@types/json-schema': 7.0.15 18681 18731 ajv: 6.12.6 18682 18732 chalk: 4.1.2 18683 18733 cross-spawn: 7.0.6 18684 - debug: 4.4.0 18734 + debug: 4.4.0(supports-color@9.4.0) 18685 18735 escape-string-regexp: 4.0.0 18686 18736 eslint-scope: 8.3.0 18687 18737 eslint-visitor-keys: 4.2.0 ··· 18731 18781 dependencies: 18732 18782 estraverse: 5.3.0 18733 18783 18734 - esrap@1.4.6: 18784 + esrap@1.4.5: 18735 18785 dependencies: 18736 18786 '@jridgewell/sourcemap-codec': 1.5.0 18737 18787 ··· 18747 18797 18748 18798 estree-walker@3.0.3: 18749 18799 dependencies: 18750 - '@types/estree': 1.0.7 18800 + '@types/estree': 1.0.6 18751 18801 18752 18802 esutils@2.0.3: {} 18753 18803 ··· 18791 18841 cross-spawn: 7.0.5 18792 18842 figures: 6.1.0 18793 18843 get-stream: 9.0.1 18794 - human-signals: 8.0.1 18844 + human-signals: 8.0.0 18795 18845 is-plain-obj: 4.1.0 18796 18846 is-stream: 4.0.1 18797 18847 npm-run-path: 6.0.0 ··· 18897 18947 18898 18948 extract-zip@2.0.1: 18899 18949 dependencies: 18900 - debug: 4.4.0 18950 + debug: 4.4.0(supports-color@9.4.0) 18901 18951 get-stream: 5.2.0 18902 18952 yauzl: 2.10.0 18903 18953 optionalDependencies: ··· 18956 19006 18957 19007 fastify-openapi-glue@4.8.0: 18958 19008 dependencies: 18959 - '@seriousme/openapi-schema-validator': 2.4.0 19009 + '@seriousme/openapi-schema-validator': 2.3.1 18960 19010 fastify-plugin: 5.0.1 18961 19011 js-yaml: 4.1.0 18962 19012 minimist: 1.2.8 ··· 18966 19016 fastify@5.2.0: 18967 19017 dependencies: 18968 19018 '@fastify/ajv-compiler': 4.0.2 18969 - '@fastify/error': 4.1.0 19019 + '@fastify/error': 4.0.0 18970 19020 '@fastify/fast-json-stringify-compiler': 5.0.2 18971 19021 abstract-logging: 2.0.1 18972 19022 avvio: 9.1.0 ··· 19083 19133 19084 19134 follow-redirects@1.15.9(debug@4.4.0): 19085 19135 optionalDependencies: 19086 - debug: 4.4.0 19136 + debug: 4.4.0(supports-color@9.4.0) 19087 19137 19088 19138 for-each@0.3.5: 19089 19139 dependencies: ··· 19210 19260 dependencies: 19211 19261 basic-ftp: 5.0.5 19212 19262 data-uri-to-buffer: 6.0.2 19213 - debug: 4.4.0 19263 + debug: 4.4.0(supports-color@9.4.0) 19214 19264 transitivePeerDependencies: 19215 19265 - supports-color 19216 19266 19217 19267 giget@1.2.5: 19218 19268 dependencies: 19219 19269 citty: 0.1.6 19220 - consola: 3.4.2 19270 + consola: 3.4.0 19221 19271 defu: 6.1.4 19222 19272 node-fetch-native: 1.6.6 19223 19273 nypm: 0.5.4 ··· 19227 19277 giget@2.0.0: 19228 19278 dependencies: 19229 19279 citty: 0.1.6 19230 - consola: 3.4.2 19280 + consola: 3.4.0 19231 19281 defu: 6.1.4 19232 19282 node-fetch-native: 1.6.6 19233 19283 nypm: 0.6.0 19234 19284 pathe: 2.0.3 19235 19285 19236 - git-up@8.1.0: 19286 + git-config-path@2.0.0: {} 19287 + 19288 + git-up@8.0.1: 19237 19289 dependencies: 19238 19290 is-ssh: 1.4.1 19239 19291 parse-url: 9.2.0 19240 19292 19241 19293 git-url-parse@16.0.1: 19242 19294 dependencies: 19243 - git-up: 8.1.0 19295 + git-up: 8.0.1 19244 19296 19245 19297 glob-parent@5.1.2: 19246 19298 dependencies: ··· 19347 19399 cookie-es: 1.2.2 19348 19400 crossws: 0.3.4 19349 19401 defu: 6.1.4 19350 - destr: 2.0.5 19402 + destr: 2.0.3 19351 19403 iron-webcrypto: 1.2.1 19352 19404 node-mock-http: 1.0.0 19353 19405 radix3: 1.1.2 ··· 19463 19515 http-proxy-agent@7.0.2: 19464 19516 dependencies: 19465 19517 agent-base: 7.1.3 19466 - debug: 4.4.0 19518 + debug: 4.4.0(supports-color@9.4.0) 19467 19519 transitivePeerDependencies: 19468 19520 - supports-color 19469 19521 ··· 19482 19534 http-proxy-middleware@3.0.3: 19483 19535 dependencies: 19484 19536 '@types/http-proxy': 1.17.16 19485 - debug: 4.4.0 19537 + debug: 4.4.0(supports-color@9.4.0) 19486 19538 http-proxy: 1.18.1(debug@4.4.0) 19487 19539 is-glob: 4.0.3 19488 19540 is-plain-object: 5.0.0 ··· 19500 19552 19501 19553 http-shutdown@1.2.2: {} 19502 19554 19503 - https-proxy-agent@7.0.6: 19555 + https-proxy-agent@7.0.6(supports-color@9.4.0): 19504 19556 dependencies: 19505 19557 agent-base: 7.1.3 19506 - debug: 4.4.0 19558 + debug: 4.4.0(supports-color@9.4.0) 19507 19559 transitivePeerDependencies: 19508 19560 - supports-color 19509 19561 ··· 19515 19567 19516 19568 human-signals@5.0.0: {} 19517 19569 19518 - human-signals@8.0.1: {} 19570 + human-signals@8.0.0: {} 19519 19571 19520 19572 husky@9.1.7: {} 19521 19573 ··· 19550 19602 image-size@0.5.5: 19551 19603 optional: true 19552 19604 19553 - immutable@5.1.1: {} 19605 + immutable@5.0.3: {} 19554 19606 19555 19607 import-fresh@3.3.1: 19556 19608 dependencies: ··· 19565 19617 mlly: 1.7.4 19566 19618 mocked-exports: 0.1.1 19567 19619 pathe: 2.0.3 19568 - unplugin: 2.2.2 19620 + unplugin: 2.2.0 19569 19621 transitivePeerDependencies: 19570 19622 - rollup 19571 19623 ··· 19575 19627 mlly: 1.7.4 19576 19628 mocked-exports: 0.1.1 19577 19629 pathe: 2.0.3 19578 - unplugin: 2.2.2 19630 + unplugin: 2.2.0 19579 19631 transitivePeerDependencies: 19580 19632 - rollup 19581 19633 19582 19634 imurmurhash@0.1.4: {} 19635 + 19636 + index-to-position@0.1.2: {} 19583 19637 19584 19638 inflight@1.0.6: 19585 19639 dependencies: ··· 19606 19660 dependencies: 19607 19661 '@ioredis/commands': 1.2.0 19608 19662 cluster-key-slot: 1.1.2 19609 - debug: 4.4.0 19663 + debug: 4.4.0(supports-color@9.4.0) 19610 19664 denque: 2.1.0 19611 19665 lodash.defaults: 4.2.0 19612 19666 lodash.isarguments: 3.1.0 ··· 19658 19712 call-bound: 1.0.4 19659 19713 has-tostringtag: 1.0.2 19660 19714 19661 - is-bun-module@2.0.0: 19715 + is-bun-module@1.3.0: 19662 19716 dependencies: 19663 19717 semver: 7.7.1 19664 19718 ··· 19752 19806 19753 19807 is-reference@3.0.3: 19754 19808 dependencies: 19755 - '@types/estree': 1.0.7 19809 + '@types/estree': 1.0.6 19756 19810 19757 19811 is-regex@1.2.1: 19758 19812 dependencies: ··· 19846 19900 istanbul-lib-instrument@5.2.1: 19847 19901 dependencies: 19848 19902 '@babel/core': 7.26.10 19849 - '@babel/parser': 7.27.0 19903 + '@babel/parser': 7.26.10 19850 19904 '@istanbuljs/schema': 0.1.3 19851 19905 istanbul-lib-coverage: 3.2.2 19852 19906 semver: 6.3.1 ··· 19855 19909 19856 19910 istanbul-lib-instrument@6.0.3: 19857 19911 dependencies: 19858 - '@babel/core': 7.26.9 19859 - '@babel/parser': 7.27.0 19912 + '@babel/core': 7.26.10 19913 + '@babel/parser': 7.26.10 19860 19914 '@istanbuljs/schema': 0.1.3 19861 19915 istanbul-lib-coverage: 3.2.2 19862 19916 semver: 7.7.1 ··· 19871 19925 19872 19926 istanbul-lib-source-maps@4.0.1: 19873 19927 dependencies: 19874 - debug: 4.4.0 19928 + debug: 4.4.0(supports-color@9.4.0) 19875 19929 istanbul-lib-coverage: 3.2.2 19876 19930 source-map: 0.6.1 19877 19931 transitivePeerDependencies: ··· 19880 19934 istanbul-lib-source-maps@5.0.6: 19881 19935 dependencies: 19882 19936 '@jridgewell/trace-mapping': 0.3.25 19883 - debug: 4.4.0 19937 + debug: 4.4.0(supports-color@9.4.0) 19884 19938 istanbul-lib-coverage: 3.2.2 19885 19939 transitivePeerDependencies: 19886 19940 - supports-color ··· 19931 19985 19932 19986 js-cookie@3.0.5: {} 19933 19987 19988 + js-levenshtein@1.1.6: {} 19989 + 19934 19990 js-tokens@4.0.0: {} 19935 19991 19936 19992 js-tokens@9.0.1: {} ··· 19954 20010 form-data: 4.0.2 19955 20011 html-encoding-sniffer: 4.0.0 19956 20012 http-proxy-agent: 7.0.2 19957 - https-proxy-agent: 7.0.6 20013 + https-proxy-agent: 7.0.6(supports-color@9.4.0) 19958 20014 is-potential-custom-element-name: 1.0.1 19959 - nwsapi: 2.2.20 20015 + nwsapi: 2.2.18 19960 20016 parse5: 7.2.1 19961 20017 rrweb-cssom: 0.6.0 19962 20018 saxes: 6.0.0 ··· 19966 20022 webidl-conversions: 7.0.0 19967 20023 whatwg-encoding: 3.1.1 19968 20024 whatwg-mimetype: 4.0.0 19969 - whatwg-url: 14.2.0 20025 + whatwg-url: 14.1.1 19970 20026 ws: 8.18.1 19971 20027 xml-name-validator: 5.0.0 19972 20028 transitivePeerDependencies: ··· 20167 20223 dependencies: 20168 20224 chalk: 5.4.1 20169 20225 commander: 12.1.0 20170 - debug: 4.4.0 20226 + debug: 4.4.0(supports-color@9.4.0) 20171 20227 execa: 8.0.1 20172 20228 lilconfig: 3.1.3 20173 20229 listr2: 8.2.5 ··· 20184 20240 '@parcel/watcher-wasm': 2.5.1 20185 20241 citty: 0.1.6 20186 20242 clipboardy: 4.0.0 20187 - consola: 3.4.2 20243 + consola: 3.4.0 20188 20244 crossws: 0.3.4 20189 20245 defu: 6.1.4 20190 20246 get-port-please: 3.1.2 ··· 20194 20250 mlly: 1.7.4 20195 20251 node-forge: 1.3.1 20196 20252 pathe: 1.1.2 20197 - std-env: 3.9.0 20253 + std-env: 3.8.1 20198 20254 ufo: 1.5.4 20199 20255 untun: 0.1.3 20200 20256 uqr: 0.1.2 ··· 20245 20301 dependencies: 20246 20302 mlly: 1.7.4 20247 20303 pkg-types: 2.1.0 20248 - quansync: 0.2.10 20304 + quansync: 0.2.8 20249 20305 20250 20306 locate-character@3.0.0: {} 20251 20307 ··· 20295 20351 log4js@6.9.1: 20296 20352 dependencies: 20297 20353 date-format: 4.0.14 20298 - debug: 4.4.0 20354 + debug: 4.4.0(supports-color@9.4.0) 20299 20355 flatted: 3.3.3 20300 20356 rfdc: 1.4.1 20301 20357 streamroller: 3.1.5 ··· 20345 20401 20346 20402 magicast@0.3.5: 20347 20403 dependencies: 20348 - '@babel/parser': 7.27.0 20349 - '@babel/types': 7.27.0 20404 + '@babel/parser': 7.26.10 20405 + '@babel/types': 7.26.10 20350 20406 source-map-js: 1.2.1 20351 20407 20352 20408 make-dir@2.1.0: ··· 20465 20521 20466 20522 mime@3.0.0: {} 20467 20523 20468 - mime@4.0.7: {} 20524 + mime@4.0.6: {} 20469 20525 20470 20526 mimic-fn@2.1.0: {} 20471 20527 ··· 20507 20563 dependencies: 20508 20564 minipass: 7.1.2 20509 20565 minipass-sized: 1.0.3 20510 - minizlib: 3.0.2 20566 + minizlib: 3.0.1 20511 20567 optionalDependencies: 20512 20568 encoding: 0.1.13 20513 20569 ··· 20538 20594 minipass: 3.3.6 20539 20595 yallist: 4.0.0 20540 20596 20541 - minizlib@3.0.2: 20597 + minizlib@3.0.1: 20542 20598 dependencies: 20543 20599 minipass: 7.1.2 20600 + rimraf: 5.0.10 20544 20601 20545 20602 mitt@3.0.1: {} 20546 20603 ··· 20626 20683 20627 20684 nanoid@3.3.11: {} 20628 20685 20686 + nanoid@3.3.9: {} 20687 + 20688 + nanoid@5.1.3: {} 20689 + 20629 20690 nanoid@5.1.5: {} 20630 20691 20631 20692 nanotar@0.1.1: {} ··· 20650 20711 20651 20712 netmask@2.0.2: {} 20652 20713 20653 - next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0): 20714 + next@15.2.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.85.0): 20654 20715 dependencies: 20655 20716 '@next/env': 15.2.4 20656 20717 '@swc/counter': 0.1.3 20657 20718 '@swc/helpers': 0.5.15 20658 20719 busboy: 1.6.0 20659 - caniuse-lite: 1.0.30001712 20720 + caniuse-lite: 1.0.30001709 20660 20721 postcss: 8.4.31 20661 20722 react: 19.0.0 20662 20723 react-dom: 19.0.0(react@19.0.0) ··· 20670 20731 '@next/swc-linux-x64-musl': 15.2.4 20671 20732 '@next/swc-win32-arm64-msvc': 15.2.4 20672 20733 '@next/swc-win32-x64-msvc': 15.2.4 20673 - '@opentelemetry/api': 1.9.0 20674 20734 sass: 1.85.0 20675 20735 sharp: 0.33.5 20676 20736 transitivePeerDependencies: 20677 20737 - '@babel/core' 20678 20738 - babel-plugin-macros 20679 20739 20680 - nitropack@2.11.8(encoding@0.1.13): 20740 + nitropack@2.11.6(encoding@0.1.13)(typescript@5.8.3): 20681 20741 dependencies: 20682 - '@cloudflare/kv-asset-handler': 0.4.0 20683 - '@netlify/functions': 3.0.4 20742 + '@cloudflare/kv-asset-handler': 0.3.4 20743 + '@netlify/functions': 3.0.0 20684 20744 '@rollup/plugin-alias': 5.1.1(rollup@4.39.0) 20685 20745 '@rollup/plugin-commonjs': 28.0.3(rollup@4.39.0) 20686 20746 '@rollup/plugin-inject': 5.0.5(rollup@4.39.0) ··· 20688 20748 '@rollup/plugin-node-resolve': 16.0.1(rollup@4.39.0) 20689 20749 '@rollup/plugin-replace': 6.0.2(rollup@4.39.0) 20690 20750 '@rollup/plugin-terser': 0.4.4(rollup@4.39.0) 20751 + '@types/http-proxy': 1.17.16 20691 20752 '@vercel/nft': 0.29.2(encoding@0.1.13)(rollup@4.39.0) 20692 20753 archiver: 7.0.1 20693 - c12: 3.0.3(magicast@0.3.5) 20754 + c12: 3.0.2(magicast@0.3.5) 20694 20755 chokidar: 4.0.3 20695 20756 citty: 0.1.6 20696 20757 compatx: 0.1.8 20697 - confbox: 0.2.2 20698 - consola: 3.4.2 20758 + confbox: 0.2.1 20759 + consola: 3.4.0 20699 20760 cookie-es: 2.0.0 20700 20761 croner: 9.0.0 20701 20762 crossws: 0.3.4 20702 20763 db0: 0.3.1 20703 20764 defu: 6.1.4 20704 - destr: 2.0.5 20765 + destr: 2.0.3 20705 20766 dot-prop: 9.0.0 20706 20767 esbuild: 0.25.2 20707 20768 escape-string-regexp: 5.0.0 20708 20769 etag: 1.8.1 20709 20770 exsolve: 1.0.4 20771 + fs-extra: 11.3.0 20710 20772 globby: 14.1.0 20711 20773 gzip-size: 7.0.0 20712 20774 h3: 1.15.1 ··· 20719 20781 listhen: 1.9.0 20720 20782 magic-string: 0.30.17 20721 20783 magicast: 0.3.5 20722 - mime: 4.0.7 20784 + mime: 4.0.6 20723 20785 mlly: 1.7.4 20724 20786 node-fetch-native: 1.6.6 20725 20787 node-mock-http: 1.0.0 20726 20788 ofetch: 1.4.1 20727 20789 ohash: 2.0.11 20790 + openapi-typescript: 7.6.1(typescript@5.8.3) 20728 20791 pathe: 2.0.3 20729 20792 perfect-debounce: 1.0.0 20730 20793 pkg-types: 2.1.0 ··· 20737 20800 serve-placeholder: 2.0.2 20738 20801 serve-static: 1.16.2 20739 20802 source-map: 0.7.4 20740 - std-env: 3.9.0 20803 + std-env: 3.8.1 20741 20804 ufo: 1.5.4 20742 - ultrahtml: 1.6.0 20805 + ultrahtml: 1.5.3 20743 20806 uncrypto: 0.1.3 20744 20807 unctx: 2.4.1 20745 - unenv: 2.0.0-rc.15 20746 - unimport: 4.1.3 20808 + unenv: 2.0.0-rc.14 20809 + unimport: 4.1.2 20747 20810 unplugin-utils: 0.2.4 20748 20811 unstorage: 1.15.0(db0@0.3.1)(ioredis@5.6.0) 20749 20812 untyped: 2.0.0 ··· 20775 20838 - rolldown 20776 20839 - sqlite3 20777 20840 - supports-color 20841 + - typescript 20778 20842 - uploadthing 20779 20843 20780 20844 node-addon-api@6.1.0: ··· 20814 20878 20815 20879 node-gyp-build@4.8.4: {} 20816 20880 20817 - node-gyp@11.2.0: 20881 + node-gyp@11.1.0: 20818 20882 dependencies: 20819 20883 env-paths: 2.2.1 20820 20884 exponential-backoff: 3.1.2 20885 + glob: 10.4.3 20821 20886 graceful-fs: 4.2.11 20822 20887 make-fetch-happen: 14.0.3 20823 20888 nopt: 8.1.0 20824 20889 proc-log: 5.0.0 20825 20890 semver: 7.7.1 20826 20891 tar: 7.4.3 20827 - tinyglobby: 0.2.12 20828 20892 which: 5.0.0 20829 20893 transitivePeerDependencies: 20830 20894 - supports-color ··· 20882 20946 make-fetch-happen: 14.0.3 20883 20947 minipass: 7.1.2 20884 20948 minipass-fetch: 4.0.1 20885 - minizlib: 3.0.2 20949 + minizlib: 3.0.1 20886 20950 npm-package-arg: 12.0.2 20887 20951 proc-log: 5.0.0 20888 20952 transitivePeerDependencies: ··· 20915 20979 dependencies: 20916 20980 boolbase: 1.0.0 20917 20981 20918 - nuxi@3.24.1: {} 20982 + nuxi@3.22.5: {} 20919 20983 20920 - 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.8.3)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)): 20984 + 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.8.3)(vite@6.2.6(@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)): 20921 20985 dependencies: 20922 20986 '@nuxt/devalue': 2.0.2 20923 - '@nuxt/devtools': 1.7.0(rollup@3.29.5)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)) 20987 + '@nuxt/devtools': 1.7.0(rollup@3.29.5)(vite@6.2.6(@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.8.3)) 20924 20988 '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@3.29.5) 20925 20989 '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@3.29.5) 20926 - '@nuxt/telemetry': 2.6.6(magicast@0.3.5) 20990 + '@nuxt/telemetry': 2.6.5(magicast@0.3.5) 20927 20991 '@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.8.3)(vue@3.5.13(typescript@5.8.3)) 20928 20992 '@unhead/dom': 1.11.20 20929 20993 '@unhead/shared': 1.11.20 ··· 20934 20998 c12: 2.0.1(magicast@0.3.5) 20935 20999 chokidar: 4.0.3 20936 21000 compatx: 0.1.8 20937 - consola: 3.4.2 21001 + consola: 3.4.0 20938 21002 cookie-es: 1.2.2 20939 21003 defu: 6.1.4 20940 - destr: 2.0.5 21004 + destr: 2.0.3 20941 21005 devalue: 5.1.1 20942 21006 errx: 0.1.0 20943 21007 esbuild: 0.24.2 ··· 20954 21018 magic-string: 0.30.17 20955 21019 mlly: 1.7.4 20956 21020 nanotar: 0.1.1 20957 - nitropack: 2.11.8(encoding@0.1.13) 20958 - nuxi: 3.24.1 21021 + nitropack: 2.11.6(encoding@0.1.13)(typescript@5.8.3) 21022 + nuxi: 3.22.5 20959 21023 nypm: 0.3.12 20960 21024 ofetch: 1.4.1 20961 21025 ohash: 1.1.6 ··· 20965 21029 radix3: 1.1.2 20966 21030 scule: 1.3.0 20967 21031 semver: 7.7.1 20968 - std-env: 3.9.0 21032 + std-env: 3.8.1 20969 21033 strip-literal: 2.1.1 20970 21034 tinyglobby: 0.2.10 20971 21035 ufo: 1.5.4 20972 - ultrahtml: 1.6.0 21036 + ultrahtml: 1.5.3 20973 21037 uncrypto: 0.1.3 20974 21038 unctx: 2.4.1 20975 21039 unenv: 1.10.0 ··· 21037 21101 - vue-tsc 21038 21102 - xml2js 21039 21103 21040 - 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.8.3)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)): 21104 + 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.8.3)(vite@6.2.6(@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)): 21041 21105 dependencies: 21042 21106 '@nuxt/devalue': 2.0.2 21043 - '@nuxt/devtools': 1.7.0(rollup@4.39.0)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)) 21107 + '@nuxt/devtools': 1.7.0(rollup@4.39.0)(vite@6.2.6(@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.8.3)) 21044 21108 '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.39.0) 21045 21109 '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.39.0) 21046 - '@nuxt/telemetry': 2.6.6(magicast@0.3.5) 21110 + '@nuxt/telemetry': 2.6.5(magicast@0.3.5) 21047 21111 '@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.8.3)(vue@3.5.13(typescript@5.8.3)) 21048 21112 '@unhead/dom': 1.11.20 21049 21113 '@unhead/shared': 1.11.20 ··· 21054 21118 c12: 2.0.1(magicast@0.3.5) 21055 21119 chokidar: 4.0.3 21056 21120 compatx: 0.1.8 21057 - consola: 3.4.2 21121 + consola: 3.4.0 21058 21122 cookie-es: 1.2.2 21059 21123 defu: 6.1.4 21060 - destr: 2.0.5 21124 + destr: 2.0.3 21061 21125 devalue: 5.1.1 21062 21126 errx: 0.1.0 21063 21127 esbuild: 0.24.2 ··· 21074 21138 magic-string: 0.30.17 21075 21139 mlly: 1.7.4 21076 21140 nanotar: 0.1.1 21077 - nitropack: 2.11.8(encoding@0.1.13) 21078 - nuxi: 3.24.1 21141 + nitropack: 2.11.6(encoding@0.1.13)(typescript@5.8.3) 21142 + nuxi: 3.22.5 21079 21143 nypm: 0.3.12 21080 21144 ofetch: 1.4.1 21081 21145 ohash: 1.1.6 ··· 21085 21149 radix3: 1.1.2 21086 21150 scule: 1.3.0 21087 21151 semver: 7.7.1 21088 - std-env: 3.9.0 21152 + std-env: 3.8.1 21089 21153 strip-literal: 2.1.1 21090 21154 tinyglobby: 0.2.10 21091 21155 ufo: 1.5.4 21092 - ultrahtml: 1.6.0 21156 + ultrahtml: 1.5.3 21093 21157 uncrypto: 0.1.3 21094 21158 unctx: 2.4.1 21095 21159 unenv: 1.10.0 ··· 21157 21221 - vue-tsc 21158 21222 - xml2js 21159 21223 21160 - nwsapi@2.2.20: {} 21224 + nwsapi@2.2.18: {} 21161 21225 21162 21226 nypm@0.3.12: 21163 21227 dependencies: 21164 21228 citty: 0.1.6 21165 - consola: 3.4.2 21229 + consola: 3.4.0 21166 21230 execa: 8.0.1 21167 21231 pathe: 1.1.2 21168 21232 pkg-types: 1.3.1 ··· 21171 21235 nypm@0.4.1: 21172 21236 dependencies: 21173 21237 citty: 0.1.6 21174 - consola: 3.4.2 21238 + consola: 3.4.0 21175 21239 pathe: 1.1.2 21176 21240 pkg-types: 1.3.1 21177 21241 tinyexec: 0.3.2 ··· 21180 21244 nypm@0.5.4: 21181 21245 dependencies: 21182 21246 citty: 0.1.6 21183 - consola: 3.4.2 21247 + consola: 3.4.0 21184 21248 pathe: 2.0.3 21185 21249 pkg-types: 1.3.1 21186 21250 tinyexec: 0.3.2 ··· 21189 21253 nypm@0.6.0: 21190 21254 dependencies: 21191 21255 citty: 0.1.6 21192 - consola: 3.4.2 21256 + consola: 3.4.0 21193 21257 pathe: 2.0.3 21194 21258 pkg-types: 2.1.0 21195 21259 tinyexec: 0.3.2 ··· 21211 21275 has-symbols: 1.1.0 21212 21276 object-keys: 1.1.1 21213 21277 21214 - object.entries@1.1.9: 21278 + object.entries@1.1.8: 21215 21279 dependencies: 21216 21280 call-bind: 1.0.8 21217 - call-bound: 1.0.4 21218 21281 define-properties: 1.2.1 21219 21282 es-object-atoms: 1.1.1 21220 21283 ··· 21242 21305 21243 21306 ofetch@1.4.1: 21244 21307 dependencies: 21245 - destr: 2.0.5 21308 + destr: 2.0.3 21246 21309 node-fetch-native: 1.6.6 21247 21310 ufo: 1.5.4 21248 21311 ··· 21297 21360 is-docker: 2.2.1 21298 21361 is-wsl: 2.2.0 21299 21362 21363 + openapi-typescript@7.6.1(typescript@5.8.3): 21364 + dependencies: 21365 + '@redocly/openapi-core': 1.33.1(supports-color@9.4.0) 21366 + ansi-colors: 4.1.3 21367 + change-case: 5.4.4 21368 + parse-json: 8.1.0 21369 + supports-color: 9.4.0 21370 + typescript: 5.8.3 21371 + yargs-parser: 21.1.1 21372 + 21300 21373 optionator@0.9.4: 21301 21374 dependencies: 21302 21375 deep-is: 0.1.4 ··· 21345 21418 21346 21419 p-limit@4.0.0: 21347 21420 dependencies: 21348 - yocto-queue: 1.2.1 21421 + yocto-queue: 1.2.0 21349 21422 21350 21423 p-locate@4.1.0: 21351 21424 dependencies: ··· 21375 21448 dependencies: 21376 21449 '@tootallnate/quickjs-emscripten': 0.23.0 21377 21450 agent-base: 7.1.3 21378 - debug: 4.4.0 21451 + debug: 4.4.0(supports-color@9.4.0) 21379 21452 get-uri: 6.0.4 21380 21453 http-proxy-agent: 7.0.2 21381 - https-proxy-agent: 7.0.6 21454 + https-proxy-agent: 7.0.6(supports-color@9.4.0) 21382 21455 pac-resolver: 7.0.1 21383 21456 socks-proxy-agent: 8.0.5 21384 21457 transitivePeerDependencies: ··· 21393 21466 21394 21467 package-manager-detector@0.2.11: 21395 21468 dependencies: 21396 - quansync: 0.2.10 21397 - 21398 - package-manager-detector@1.1.0: {} 21469 + quansync: 0.2.8 21399 21470 21400 21471 packrup@0.1.2: {} 21401 21472 ··· 21425 21496 dependencies: 21426 21497 callsites: 3.1.0 21427 21498 21499 + parse-git-config@3.0.0: 21500 + dependencies: 21501 + git-config-path: 2.0.0 21502 + ini: 1.3.8 21503 + 21428 21504 parse-json@5.2.0: 21429 21505 dependencies: 21430 21506 '@babel/code-frame': 7.26.2 ··· 21432 21508 json-parse-even-better-errors: 2.3.1 21433 21509 lines-and-columns: 1.2.4 21434 21510 21511 + parse-json@8.1.0: 21512 + dependencies: 21513 + '@babel/code-frame': 7.26.2 21514 + index-to-position: 0.1.2 21515 + type-fest: 4.37.0 21516 + 21435 21517 parse-ms@4.0.0: {} 21436 21518 21437 21519 parse-node-version@1.0.1: {} ··· 21548 21630 sonic-boom: 4.2.0 21549 21631 thread-stream: 3.1.0 21550 21632 21551 - pirates@4.0.7: {} 21633 + pirates@4.0.6: {} 21552 21634 21553 21635 piscina@4.8.0: 21554 21636 optionalDependencies: ··· 21566 21648 21567 21649 pkg-types@2.1.0: 21568 21650 dependencies: 21569 - confbox: 0.2.2 21651 + confbox: 0.2.1 21570 21652 exsolve: 1.0.4 21571 21653 pathe: 2.0.3 21654 + 21655 + pluralize@8.0.0: {} 21572 21656 21573 21657 possible-typed-array-names@1.1.0: {} 21574 21658 ··· 21632 21716 postcss-load-config@4.0.2(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)): 21633 21717 dependencies: 21634 21718 lilconfig: 3.1.3 21635 - yaml: 2.7.1 21719 + yaml: 2.7.0 21636 21720 optionalDependencies: 21637 21721 postcss: 8.4.41 21638 21722 ts-node: 10.9.2(@types/node@22.10.5)(typescript@5.8.3) 21639 21723 21640 - postcss-load-config@6.0.1(jiti@2.4.2)(postcss@8.5.3)(yaml@2.7.1): 21724 + postcss-load-config@6.0.1(jiti@2.4.2)(postcss@8.5.3)(yaml@2.7.0): 21641 21725 dependencies: 21642 21726 lilconfig: 3.1.3 21643 21727 optionalDependencies: 21644 21728 jiti: 2.4.2 21645 21729 postcss: 8.5.3 21646 - yaml: 2.7.1 21730 + yaml: 2.7.0 21647 21731 21648 21732 postcss-loader@8.1.1(postcss@8.5.2)(typescript@5.8.3)(webpack@5.98.0(esbuild@0.25.0)): 21649 21733 dependencies: ··· 21829 21913 21830 21914 postcss@8.4.41: 21831 21915 dependencies: 21832 - nanoid: 3.3.11 21916 + nanoid: 3.3.9 21833 21917 picocolors: 1.1.1 21834 21918 source-map-js: 1.2.1 21835 21919 21836 21920 postcss@8.5.2: 21837 21921 dependencies: 21838 - nanoid: 3.3.11 21922 + nanoid: 3.3.9 21839 21923 picocolors: 1.1.1 21840 21924 source-map-js: 1.2.1 21841 21925 ··· 21908 21992 proxy-agent@6.4.0: 21909 21993 dependencies: 21910 21994 agent-base: 7.1.3 21911 - debug: 4.4.0 21995 + debug: 4.4.0(supports-color@9.4.0) 21912 21996 http-proxy-agent: 7.0.2 21913 - https-proxy-agent: 7.0.6 21997 + https-proxy-agent: 7.0.6(supports-color@9.4.0) 21914 21998 lru-cache: 7.18.3 21915 21999 pac-proxy-agent: 7.2.0 21916 22000 proxy-from-env: 1.1.0 ··· 21942 22026 dependencies: 21943 22027 '@puppeteer/browsers': 2.2.3 21944 22028 chromium-bidi: 0.5.24(devtools-protocol@0.0.1299070) 21945 - debug: 4.4.0 22029 + debug: 4.4.0(supports-color@9.4.0) 21946 22030 devtools-protocol: 0.0.1299070 21947 22031 ws: 8.18.1 21948 22032 transitivePeerDependencies: ··· 21970 22054 dependencies: 21971 22055 side-channel: 1.1.0 21972 22056 21973 - quansync@0.2.10: {} 22057 + quansync@0.2.8: {} 21974 22058 21975 22059 querystringify@2.2.0: {} 21976 22060 ··· 21996 22080 rc9@2.1.2: 21997 22081 dependencies: 21998 22082 defu: 6.1.4 21999 - destr: 2.0.5 22083 + destr: 2.0.3 22000 22084 22001 22085 react-dom@19.0.0(react@19.0.0): 22002 22086 dependencies: ··· 22117 22201 22118 22202 regenerator-transform@0.15.2: 22119 22203 dependencies: 22120 - '@babel/runtime': 7.26.9 22204 + '@babel/runtime': 7.26.10 22121 22205 22122 22206 regex-parser@2.3.1: {} 22123 22207 ··· 22217 22301 rimraf@3.0.2: 22218 22302 dependencies: 22219 22303 glob: 7.2.3 22304 + 22305 + rimraf@5.0.10: 22306 + dependencies: 22307 + glob: 10.4.3 22220 22308 22221 22309 rollup-plugin-dts@6.1.1(rollup@3.29.5)(typescript@5.8.3): 22222 22310 dependencies: ··· 22389 22477 sass@1.85.0: 22390 22478 dependencies: 22391 22479 chokidar: 4.0.3 22392 - immutable: 5.1.1 22480 + immutable: 5.0.3 22393 22481 source-map-js: 1.2.1 22394 22482 optionalDependencies: 22395 22483 '@parcel/watcher': 2.5.1 ··· 22619 22707 dependencies: 22620 22708 '@kwsites/file-exists': 1.1.1 22621 22709 '@kwsites/promise-deferred': 1.1.1 22622 - debug: 4.4.0 22710 + debug: 4.4.0(supports-color@9.4.0) 22623 22711 transitivePeerDependencies: 22624 22712 - supports-color 22625 22713 ··· 22698 22786 socks-proxy-agent@8.0.5: 22699 22787 dependencies: 22700 22788 agent-base: 7.1.3 22701 - debug: 4.4.0 22789 + debug: 4.4.0(supports-color@9.4.0) 22702 22790 socks: 2.8.4 22703 22791 transitivePeerDependencies: 22704 22792 - supports-color ··· 22767 22855 22768 22856 spdy-transport@3.0.0: 22769 22857 dependencies: 22770 - debug: 4.4.0 22858 + debug: 4.4.0(supports-color@9.4.0) 22771 22859 detect-node: 2.1.0 22772 22860 hpack.js: 2.1.6 22773 22861 obuf: 1.1.2 ··· 22778 22866 22779 22867 spdy@4.0.2: 22780 22868 dependencies: 22781 - debug: 4.4.0 22869 + debug: 4.4.0(supports-color@9.4.0) 22782 22870 handle-thing: 2.0.1 22783 22871 http-deceiver: 1.2.7 22784 22872 select-hose: 2.0.0 ··· 22798 22886 dependencies: 22799 22887 minipass: 7.1.2 22800 22888 22801 - stable-hash@0.0.5: {} 22889 + stable-hash@0.0.4: {} 22802 22890 22803 22891 stackback@0.0.2: {} 22804 22892 ··· 22808 22896 22809 22897 statuses@2.0.1: {} 22810 22898 22811 - std-env@3.9.0: {} 22899 + std-env@3.8.1: {} 22812 22900 22813 22901 streamroller@3.1.5: 22814 22902 dependencies: 22815 22903 date-format: 4.0.14 22816 - debug: 4.4.0 22904 + debug: 4.4.0(supports-color@9.4.0) 22817 22905 fs-extra: 8.1.0 22818 22906 transitivePeerDependencies: 22819 22907 - supports-color ··· 22952 23040 glob: 10.4.3 22953 23041 lines-and-columns: 1.2.4 22954 23042 mz: 2.7.0 22955 - pirates: 4.0.7 23043 + pirates: 4.0.6 22956 23044 ts-interface-checker: 0.1.13 22957 23045 22958 23046 superjson@2.2.2: ··· 22968 23056 supports-color@8.1.1: 22969 23057 dependencies: 22970 23058 has-flag: 4.0.0 23059 + 23060 + supports-color@9.4.0: {} 22971 23061 22972 23062 supports-hyperlinks@3.2.0: 22973 23063 dependencies: ··· 23002 23092 dependencies: 23003 23093 '@ampproject/remapping': 2.3.0 23004 23094 '@jridgewell/sourcemap-codec': 1.5.0 23005 - '@types/estree': 1.0.7 23095 + '@types/estree': 1.0.6 23006 23096 acorn: 8.14.1 23007 23097 acorn-typescript: 1.4.13(acorn@8.14.1) 23008 23098 aria-query: 5.3.2 23009 23099 axobject-query: 4.1.0 23010 23100 clsx: 2.1.1 23011 23101 esm-env: 1.2.2 23012 - esrap: 1.4.6 23102 + esrap: 1.4.5 23013 23103 is-reference: 3.0.3 23014 23104 locate-character: 3.0.0 23015 23105 magic-string: 0.30.17 ··· 23029 23119 23030 23120 symbol-tree@3.2.4: {} 23031 23121 23032 - synckit@0.11.2: 23122 + synckit@0.9.2: 23033 23123 dependencies: 23034 - '@pkgr/core': 0.2.0 23124 + '@pkgr/core': 0.1.1 23035 23125 tslib: 2.8.1 23036 23126 23037 23127 system-architecture@0.1.0: {} ··· 23097 23187 '@isaacs/fs-minipass': 4.0.1 23098 23188 chownr: 3.0.0 23099 23189 minipass: 7.1.2 23100 - minizlib: 3.0.2 23190 + minizlib: 3.0.1 23101 23191 mkdirp: 3.0.1 23102 23192 yallist: 5.0.0 23103 23193 ··· 23202 23292 dependencies: 23203 23293 punycode: 2.3.1 23204 23294 23205 - tr46@5.1.0: 23295 + tr46@5.0.0: 23206 23296 dependencies: 23207 23297 punycode: 2.3.1 23208 23298 ··· 23214 23304 23215 23305 trim-lines@3.0.1: {} 23216 23306 23217 - ts-api-utils@2.1.0(typescript@5.8.3): 23307 + ts-api-utils@2.0.1(typescript@5.8.3): 23218 23308 dependencies: 23219 23309 typescript: 5.8.3 23220 23310 ··· 23253 23343 23254 23344 tslib@2.8.1: {} 23255 23345 23256 - tsup@8.4.0(jiti@2.4.2)(postcss@8.5.3)(typescript@5.8.3)(yaml@2.7.1): 23346 + tsup@8.4.0(jiti@2.4.2)(postcss@8.5.3)(typescript@5.8.3)(yaml@2.7.0): 23257 23347 dependencies: 23258 23348 bundle-require: 5.1.0(esbuild@0.25.2) 23259 23349 cac: 6.7.14 23260 23350 chokidar: 4.0.3 23261 - consola: 3.4.2 23262 - debug: 4.4.0 23351 + consola: 3.4.0 23352 + debug: 4.4.0(supports-color@9.4.0) 23263 23353 esbuild: 0.25.2 23264 23354 joycon: 3.1.1 23265 23355 picocolors: 1.1.1 23266 - postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.3)(yaml@2.7.1) 23356 + postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.3)(yaml@2.7.0) 23267 23357 resolve-from: 5.0.0 23268 23358 rollup: 4.39.0 23269 23359 source-map: 0.8.0-beta.0 ··· 23288 23378 tuf-js@3.0.1: 23289 23379 dependencies: 23290 23380 '@tufjs/models': 3.0.1 23291 - debug: 4.4.0 23381 + debug: 4.4.0(supports-color@9.4.0) 23292 23382 make-fetch-happen: 14.0.3 23293 23383 transitivePeerDependencies: 23294 23384 - supports-color ··· 23328 23418 23329 23419 type-fest@0.21.3: {} 23330 23420 23331 - type-fest@4.39.1: {} 23421 + type-fest@4.37.0: {} 23332 23422 23333 23423 type-is@1.6.18: 23334 23424 dependencies: ··· 23393 23483 uglify-js@3.19.3: 23394 23484 optional: true 23395 23485 23396 - ultrahtml@1.6.0: {} 23486 + ultrahtml@1.5.3: {} 23397 23487 23398 23488 unbox-primitive@1.1.0: 23399 23489 dependencies: ··· 23412 23502 '@rollup/pluginutils': 5.1.4(rollup@3.29.5) 23413 23503 chalk: 5.4.1 23414 23504 citty: 0.1.6 23415 - consola: 3.4.2 23505 + consola: 3.4.0 23416 23506 defu: 6.1.4 23417 23507 esbuild: 0.19.12 23418 23508 globby: 13.2.2 ··· 23447 23537 acorn: 8.14.0 23448 23538 estree-walker: 3.0.3 23449 23539 magic-string: 0.30.17 23450 - unplugin: 2.2.2 23540 + unplugin: 2.2.0 23451 23541 23452 23542 undici-types@6.20.0: {} 23453 23543 23454 23544 unenv@1.10.0: 23455 23545 dependencies: 23456 - consola: 3.4.2 23546 + consola: 3.4.0 23457 23547 defu: 6.1.4 23458 23548 mime: 3.0.0 23459 23549 node-fetch-native: 1.6.6 23460 23550 pathe: 1.1.2 23461 23551 23462 - unenv@2.0.0-rc.15: 23552 + unenv@2.0.0-rc.14: 23463 23553 dependencies: 23464 23554 defu: 6.1.4 23465 23555 exsolve: 1.0.4 ··· 23527 23617 transitivePeerDependencies: 23528 23618 - rollup 23529 23619 23530 - unimport@4.1.3: 23620 + unimport@4.1.2: 23621 + dependencies: 23622 + acorn: 8.14.1 23623 + escape-string-regexp: 5.0.0 23624 + estree-walker: 3.0.3 23625 + local-pkg: 1.1.1 23626 + magic-string: 0.30.17 23627 + mlly: 1.7.4 23628 + pathe: 2.0.3 23629 + picomatch: 4.0.2 23630 + pkg-types: 1.3.1 23631 + scule: 1.3.0 23632 + strip-literal: 3.0.0 23633 + tinyglobby: 0.2.12 23634 + unplugin: 2.2.0 23635 + unplugin-utils: 0.2.4 23636 + 23637 + unimport@4.2.0: 23531 23638 dependencies: 23532 23639 acorn: 8.14.1 23533 23640 escape-string-regexp: 5.0.0 ··· 23541 23648 scule: 1.3.0 23542 23649 strip-literal: 3.0.0 23543 23650 tinyglobby: 0.2.12 23544 - unplugin: 2.2.2 23651 + unplugin: 2.3.2 23545 23652 unplugin-utils: 0.2.4 23546 23653 23547 23654 unique-filename@4.0.0: ··· 23590 23697 23591 23698 unplugin-vue-router@0.10.9(rollup@3.29.5)(vue-router@4.5.0(vue@3.5.13(typescript@5.8.3)))(vue@3.5.13(typescript@5.8.3)): 23592 23699 dependencies: 23593 - '@babel/types': 7.27.0 23700 + '@babel/types': 7.26.10 23594 23701 '@rollup/pluginutils': 5.1.4(rollup@3.29.5) 23595 23702 '@vue-macros/common': 1.16.1(vue@3.5.13(typescript@5.8.3)) 23596 23703 ast-walker-scope: 0.6.2 ··· 23603 23710 pathe: 1.1.2 23604 23711 scule: 1.3.0 23605 23712 unplugin: 2.0.0-beta.1 23606 - yaml: 2.7.1 23713 + yaml: 2.7.0 23607 23714 optionalDependencies: 23608 23715 vue-router: 4.5.0(vue@3.5.13(typescript@5.8.3)) 23609 23716 transitivePeerDependencies: ··· 23612 23719 23613 23720 unplugin-vue-router@0.10.9(rollup@4.39.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.8.3)))(vue@3.5.13(typescript@5.8.3)): 23614 23721 dependencies: 23615 - '@babel/types': 7.27.0 23722 + '@babel/types': 7.26.10 23616 23723 '@rollup/pluginutils': 5.1.4(rollup@4.39.0) 23617 23724 '@vue-macros/common': 1.16.1(vue@3.5.13(typescript@5.8.3)) 23618 23725 ast-walker-scope: 0.6.2 ··· 23625 23732 pathe: 1.1.2 23626 23733 scule: 1.3.0 23627 23734 unplugin: 2.0.0-beta.1 23628 - yaml: 2.7.1 23735 + yaml: 2.7.0 23629 23736 optionalDependencies: 23630 23737 vue-router: 4.5.0(vue@3.5.13(typescript@5.8.3)) 23631 23738 transitivePeerDependencies: ··· 23634 23741 23635 23742 unplugin@1.16.1: 23636 23743 dependencies: 23637 - acorn: 8.14.0 23744 + acorn: 8.14.1 23638 23745 webpack-virtual-modules: 0.6.2 23639 23746 23640 23747 unplugin@2.0.0-beta.1: 23641 23748 dependencies: 23642 - acorn: 8.14.0 23749 + acorn: 8.14.1 23643 23750 webpack-virtual-modules: 0.6.2 23644 23751 23645 - unplugin@2.2.2: 23752 + unplugin@2.2.0: 23646 23753 dependencies: 23647 23754 acorn: 8.14.1 23648 23755 webpack-virtual-modules: 0.6.2 23649 23756 23650 - unrs-resolver@1.3.3: 23651 - optionalDependencies: 23652 - '@unrs/resolver-binding-darwin-arm64': 1.3.3 23653 - '@unrs/resolver-binding-darwin-x64': 1.3.3 23654 - '@unrs/resolver-binding-freebsd-x64': 1.3.3 23655 - '@unrs/resolver-binding-linux-arm-gnueabihf': 1.3.3 23656 - '@unrs/resolver-binding-linux-arm-musleabihf': 1.3.3 23657 - '@unrs/resolver-binding-linux-arm64-gnu': 1.3.3 23658 - '@unrs/resolver-binding-linux-arm64-musl': 1.3.3 23659 - '@unrs/resolver-binding-linux-ppc64-gnu': 1.3.3 23660 - '@unrs/resolver-binding-linux-s390x-gnu': 1.3.3 23661 - '@unrs/resolver-binding-linux-x64-gnu': 1.3.3 23662 - '@unrs/resolver-binding-linux-x64-musl': 1.3.3 23663 - '@unrs/resolver-binding-wasm32-wasi': 1.3.3 23664 - '@unrs/resolver-binding-win32-arm64-msvc': 1.3.3 23665 - '@unrs/resolver-binding-win32-ia32-msvc': 1.3.3 23666 - '@unrs/resolver-binding-win32-x64-msvc': 1.3.3 23757 + unplugin@2.3.2: 23758 + dependencies: 23759 + acorn: 8.14.1 23760 + picomatch: 4.0.2 23761 + webpack-virtual-modules: 0.6.2 23667 23762 23668 23763 unstorage@1.15.0(db0@0.3.1)(ioredis@5.6.0): 23669 23764 dependencies: 23670 23765 anymatch: 3.1.3 23671 23766 chokidar: 4.0.3 23672 - destr: 2.0.5 23767 + destr: 2.0.3 23673 23768 h3: 1.15.1 23674 23769 lru-cache: 10.4.3 23675 23770 node-fetch-native: 1.6.6 ··· 23682 23777 untun@0.1.3: 23683 23778 dependencies: 23684 23779 citty: 0.1.6 23685 - consola: 3.4.2 23780 + consola: 3.4.0 23686 23781 pathe: 1.1.2 23687 23782 23688 23783 untyped@1.5.2: 23689 23784 dependencies: 23690 23785 '@babel/core': 7.26.10 23691 - '@babel/standalone': 7.27.0 23692 - '@babel/types': 7.27.0 23786 + '@babel/standalone': 7.26.10 23787 + '@babel/types': 7.26.10 23693 23788 citty: 0.1.6 23694 23789 defu: 6.1.4 23695 23790 jiti: 2.4.2 ··· 23722 23817 picocolors: 1.1.1 23723 23818 23724 23819 uqr@0.1.2: {} 23820 + 23821 + uri-js-replace@1.0.1: {} 23725 23822 23726 23823 uri-js@4.4.1: 23727 23824 dependencies: ··· 23734 23831 23735 23832 urlpattern-polyfill@10.0.0: {} 23736 23833 23834 + urlpattern-polyfill@8.0.2: {} 23835 + 23737 23836 use-callback-ref@1.3.3(@types/react@19.0.1)(react@19.0.0): 23738 23837 dependencies: 23739 23838 react: 19.0.0 ··· 23778 23877 '@types/unist': 3.0.3 23779 23878 vfile-message: 4.0.2 23780 23879 23781 - vite-hot-client@0.2.4(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)): 23880 + vite-hot-client@0.2.4(vite@6.2.6(@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)): 23782 23881 dependencies: 23783 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 23882 + vite: 6.2.6(@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) 23784 23883 23785 23884 vite-node@2.1.9(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0): 23786 23885 dependencies: 23787 23886 cac: 6.7.14 23788 - debug: 4.4.0 23887 + debug: 4.4.0(supports-color@9.4.0) 23789 23888 es-module-lexer: 1.6.0 23790 23889 pathe: 1.1.2 23791 - vite: 5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 23890 + vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 23792 23891 transitivePeerDependencies: 23793 23892 - '@types/node' 23794 23893 - less ··· 23800 23899 - supports-color 23801 23900 - terser 23802 23901 23803 - vite-node@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1): 23902 + vite-node@3.1.1(@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): 23804 23903 dependencies: 23805 23904 cac: 6.7.14 23806 - debug: 4.4.0 23905 + debug: 4.4.0(supports-color@9.4.0) 23807 23906 es-module-lexer: 1.6.0 23808 23907 pathe: 2.0.3 23809 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 23908 + vite: 6.2.6(@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) 23810 23909 transitivePeerDependencies: 23811 23910 - '@types/node' 23812 23911 - jiti ··· 23821 23920 - tsx 23822 23921 - yaml 23823 23922 23824 - vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.8.3)(vite@5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)): 23923 + vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.8.3)(vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)): 23825 23924 dependencies: 23826 23925 '@babel/code-frame': 7.26.2 23827 23926 ansi-escapes: 4.3.2 ··· 23833 23932 npm-run-path: 4.0.1 23834 23933 strip-ansi: 6.0.1 23835 23934 tiny-invariant: 1.3.3 23836 - vite: 5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 23935 + vite: 5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 23837 23936 vscode-languageclient: 7.0.0 23838 23937 vscode-languageserver: 7.0.0 23839 23938 vscode-languageserver-textdocument: 1.0.12 ··· 23843 23942 optionator: 0.9.4 23844 23943 typescript: 5.8.3 23845 23944 23846 - vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@3.29.5)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)): 23945 + vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@3.29.5)(vite@6.2.6(@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)): 23847 23946 dependencies: 23848 23947 '@antfu/utils': 0.7.10 23849 23948 '@rollup/pluginutils': 5.1.4(rollup@3.29.5) 23850 - debug: 4.4.0 23949 + debug: 4.4.0(supports-color@9.4.0) 23851 23950 error-stack-parser-es: 0.1.5 23852 23951 fs-extra: 11.3.0 23853 23952 open: 10.1.0 23854 23953 perfect-debounce: 1.0.0 23855 23954 picocolors: 1.1.1 23856 23955 sirv: 3.0.1 23857 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 23956 + vite: 6.2.6(@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) 23858 23957 optionalDependencies: 23859 23958 '@nuxt/kit': 3.15.4(magicast@0.3.5) 23860 23959 transitivePeerDependencies: 23861 23960 - rollup 23862 23961 - supports-color 23863 23962 23864 - vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.39.0)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)): 23963 + vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.39.0)(vite@6.2.6(@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)): 23865 23964 dependencies: 23866 23965 '@antfu/utils': 0.7.10 23867 23966 '@rollup/pluginutils': 5.1.4(rollup@4.39.0) 23868 - debug: 4.4.0 23967 + debug: 4.4.0(supports-color@9.4.0) 23869 23968 error-stack-parser-es: 0.1.5 23870 23969 fs-extra: 11.3.0 23871 23970 open: 10.1.0 23872 23971 perfect-debounce: 1.0.0 23873 23972 picocolors: 1.1.1 23874 23973 sirv: 3.0.1 23875 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 23974 + vite: 6.2.6(@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) 23876 23975 optionalDependencies: 23877 23976 '@nuxt/kit': 3.15.4(magicast@0.3.5) 23878 23977 transitivePeerDependencies: 23879 23978 - rollup 23880 23979 - supports-color 23881 23980 23882 - vite-plugin-vue-devtools@7.7.0(rollup@4.39.0)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)): 23981 + vite-plugin-vue-devtools@7.7.0(rollup@4.39.0)(vite@6.2.6(@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.8.3)): 23883 23982 dependencies: 23884 - '@vue/devtools-core': 7.7.2(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)) 23983 + '@vue/devtools-core': 7.7.2(vite@6.2.6(@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.8.3)) 23885 23984 '@vue/devtools-kit': 7.7.2 23886 23985 '@vue/devtools-shared': 7.7.2 23887 23986 execa: 9.5.2 23888 23987 sirv: 3.0.1 23889 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 23890 - vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.39.0)(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 23891 - vite-plugin-vue-inspector: 5.3.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 23988 + vite: 6.2.6(@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) 23989 + vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.39.0)(vite@6.2.6(@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)) 23990 + vite-plugin-vue-inspector: 5.3.1(vite@6.2.6(@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)) 23892 23991 transitivePeerDependencies: 23893 23992 - '@nuxt/kit' 23894 23993 - rollup 23895 23994 - supports-color 23896 23995 - vue 23897 23996 23898 - vite-plugin-vue-inspector@5.3.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)): 23997 + vite-plugin-vue-inspector@5.3.1(vite@6.2.6(@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)): 23899 23998 dependencies: 23900 23999 '@babel/core': 7.26.10 23901 24000 '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.10) 23902 24001 '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) 23903 24002 '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.10) 23904 - '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10) 24003 + '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10) 23905 24004 '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.10) 23906 24005 '@vue/compiler-dom': 3.5.13 23907 24006 kolorist: 1.8.0 23908 24007 magic-string: 0.30.17 23909 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 24008 + vite: 6.2.6(@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) 23910 24009 transitivePeerDependencies: 23911 24010 - supports-color 23912 24011 23913 - vite@5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0): 24012 + vite@5.4.14(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0): 24013 + dependencies: 24014 + esbuild: 0.21.5 24015 + postcss: 8.5.3 24016 + rollup: 4.31.0 24017 + optionalDependencies: 24018 + '@types/node': 22.10.5 24019 + fsevents: 2.3.3 24020 + less: 4.2.2 24021 + sass: 1.85.0 24022 + terser: 5.39.0 24023 + 24024 + vite@5.4.16(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0): 23914 24025 dependencies: 23915 24026 esbuild: 0.21.5 23916 24027 postcss: 8.5.3 ··· 23922 24033 sass: 1.85.0 23923 24034 terser: 5.39.0 23924 24035 23925 - 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.1): 24036 + 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): 23926 24037 dependencies: 23927 24038 esbuild: 0.24.2 23928 - postcss: 8.5.2 24039 + postcss: 8.5.3 23929 24040 rollup: 4.31.0 23930 24041 optionalDependencies: 23931 24042 '@types/node': 22.10.5 ··· 23934 24045 less: 4.2.2 23935 24046 sass: 1.85.0 23936 24047 terser: 5.39.0 23937 - yaml: 2.7.1 24048 + yaml: 2.7.0 23938 24049 23939 - vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1): 24050 + vite@6.2.6(@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): 23940 24051 dependencies: 23941 24052 esbuild: 0.25.2 23942 24053 postcss: 8.5.3 ··· 23948 24059 less: 4.2.2 23949 24060 sass: 1.85.0 23950 24061 terser: 5.39.0 23951 - yaml: 2.7.1 24062 + yaml: 2.7.0 23952 24063 23953 - vitefu@1.0.6(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)): 24064 + vitefu@1.0.6(vite@6.2.6(@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)): 23954 24065 optionalDependencies: 23955 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 24066 + vite: 6.2.6(@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) 23956 24067 23957 - vitepress@1.3.0(@algolia/client-search@5.23.2)(@types/node@22.10.5)(@types/react@19.0.1)(axios@1.8.4)(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.8.3): 24068 + 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.8.3): 23958 24069 dependencies: 23959 24070 '@docsearch/css': 3.9.0 23960 - '@docsearch/js': 3.9.0(@algolia/client-search@5.23.2)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(search-insights@2.17.3) 24071 + '@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) 23961 24072 '@shikijs/core': 1.29.2 23962 24073 '@shikijs/transformers': 1.29.2 23963 24074 '@types/markdown-it': 14.1.2 23964 - '@vitejs/plugin-vue': 5.2.1(vite@5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3)) 24075 + '@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.8.3)) 23965 24076 '@vue/devtools-api': 7.7.2 23966 24077 '@vue/shared': 3.5.13 23967 24078 '@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.8.3)) 23968 - '@vueuse/integrations': 10.11.1(axios@1.8.4)(focus-trap@7.6.4)(vue@3.5.13(typescript@5.8.3)) 24079 + '@vueuse/integrations': 10.11.1(axios@1.8.2)(focus-trap@7.6.4)(vue@3.5.13(typescript@5.8.3)) 23969 24080 focus-trap: 7.6.4 23970 24081 mark.js: 8.11.1 23971 24082 minisearch: 6.3.0 23972 24083 shiki: 1.29.2 23973 - vite: 5.4.17(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 24084 + vite: 5.4.14(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 23974 24085 vue: 3.5.13(typescript@5.8.3) 23975 24086 optionalDependencies: 23976 24087 postcss: 8.5.3 ··· 24002 24113 - typescript 24003 24114 - universal-cookie 24004 24115 24005 - vitest-environment-nuxt@1.0.1(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(yaml@2.7.1): 24116 + vitest-environment-nuxt@1.0.1(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0): 24006 24117 dependencies: 24007 - '@nuxt/test-utils': 3.17.2(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1))(yaml@2.7.1) 24118 + '@nuxt/test-utils': 3.17.2(@types/node@22.10.5)(@vue/test-utils@2.4.6)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(magicast@0.3.5)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0) 24008 24119 transitivePeerDependencies: 24009 24120 - '@cucumber/cucumber' 24010 24121 - '@jest/globals' ··· 24030 24141 - vitest 24031 24142 - yaml 24032 24143 24033 - vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1): 24144 + vitest@3.1.1(@types/node@22.10.5)(jiti@2.4.2)(jsdom@23.0.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0): 24034 24145 dependencies: 24035 24146 '@vitest/expect': 3.1.1 24036 - '@vitest/mocker': 3.1.1(vite@6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1)) 24147 + '@vitest/mocker': 3.1.1(vite@6.2.6(@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)) 24037 24148 '@vitest/pretty-format': 3.1.1 24038 24149 '@vitest/runner': 3.1.1 24039 24150 '@vitest/snapshot': 3.1.1 24040 24151 '@vitest/spy': 3.1.1 24041 24152 '@vitest/utils': 3.1.1 24042 24153 chai: 5.2.0 24043 - debug: 4.4.0 24154 + debug: 4.4.0(supports-color@9.4.0) 24044 24155 expect-type: 1.2.1 24045 24156 magic-string: 0.30.17 24046 24157 pathe: 2.0.3 24047 - std-env: 3.9.0 24158 + std-env: 3.8.1 24048 24159 tinybench: 2.9.0 24049 24160 tinyexec: 0.3.2 24050 24161 tinypool: 1.0.2 24051 24162 tinyrainbow: 2.0.0 24052 - vite: 6.2.6(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 24053 - vite-node: 3.1.1(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.1) 24163 + vite: 6.2.6(@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) 24164 + vite-node: 3.1.1(@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) 24054 24165 why-is-node-running: 2.3.0 24055 24166 optionalDependencies: 24056 24167 '@types/node': 22.10.5 ··· 24108 24219 24109 24220 vue-eslint-parser@9.4.3(eslint@9.17.0(jiti@2.4.2)): 24110 24221 dependencies: 24111 - debug: 4.4.0 24222 + debug: 4.4.0(supports-color@9.4.0) 24112 24223 eslint: 9.17.0(jiti@2.4.2) 24113 24224 eslint-scope: 7.2.2 24114 24225 eslint-visitor-keys: 3.4.3 ··· 24187 24298 '@types/serve-index': 1.9.4 24188 24299 '@types/serve-static': 1.15.7 24189 24300 '@types/sockjs': 0.3.36 24190 - '@types/ws': 8.18.1 24301 + '@types/ws': 8.18.0 24191 24302 ansi-html-community: 0.0.8 24192 24303 bonjour-service: 1.3.0 24193 24304 chokidar: 3.6.0 ··· 24234 24345 webpack@5.98.0(esbuild@0.25.2): 24235 24346 dependencies: 24236 24347 '@types/eslint-scope': 3.7.7 24237 - '@types/estree': 1.0.7 24348 + '@types/estree': 1.0.6 24238 24349 '@webassemblyjs/ast': 1.14.1 24239 24350 '@webassemblyjs/wasm-edit': 1.14.1 24240 24351 '@webassemblyjs/wasm-parser': 1.14.1 ··· 24275 24386 24276 24387 whatwg-mimetype@4.0.0: {} 24277 24388 24278 - whatwg-url@14.2.0: 24389 + whatwg-url@14.1.1: 24279 24390 dependencies: 24280 - tr46: 5.1.0 24391 + tr46: 5.0.0 24281 24392 webidl-conversions: 7.0.0 24282 24393 24283 24394 whatwg-url@5.0.0: ··· 24405 24516 24406 24517 yallist@5.0.0: {} 24407 24518 24519 + yaml-ast-parser@0.0.43: {} 24520 + 24408 24521 yaml@1.10.2: {} 24409 24522 24410 24523 yaml@2.6.1: {} 24411 24524 24412 - yaml@2.7.1: {} 24525 + yaml@2.7.0: {} 24413 24526 24414 24527 yargs-parser@20.2.9: {} 24415 24528 ··· 24444 24557 24445 24558 yocto-queue@0.1.0: {} 24446 24559 24447 - yocto-queue@1.2.1: {} 24560 + yocto-queue@1.2.0: {} 24448 24561 24449 24562 yoctocolors-cjs@2.1.2: {} 24450 24563