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

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

Landon 8ded79d3 44edc400

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