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

Configure Feed

Select the types of activity you want to include in your feed.

test: clean up

Lubos d9a2f2ab edd0702c

+1059 -1291
+1 -1
dev/openapi-python.config.ts
··· 21 21 output: { 22 22 path: path.resolve(__dirname, 'gen', 'python'), 23 23 }, 24 - plugins: getPreset(), 24 + plugins: [...getPreset()], 25 25 }, 26 26 ]);
+1 -1
dev/openapi-ts.config.ts
··· 21 21 output: { 22 22 path: path.resolve(__dirname, 'gen', 'typescript'), 23 23 }, 24 - plugins: getPreset(), 24 + plugins: [...getPreset()], 25 25 }, 26 26 ]);
+2
dev/package.json
··· 12 12 "@hey-api/codegen-core": "workspace:*", 13 13 "@hey-api/openapi-python": "workspace:*", 14 14 "@hey-api/openapi-ts": "workspace:*", 15 + "@msw/source": "0.6.1", 15 16 "@opencode-ai/sdk": "1.2.27", 16 17 "@orpc/contract": "1.13.9", 17 18 "@pinia/colada": "0.19.1", ··· 22 23 "@tanstack/svelte-query": "5.90.2", 23 24 "@tanstack/vue-query": "5.92.9", 24 25 "arktype": "2.2.0", 26 + "msw": "2.12.14", 25 27 "nuxt": "3.21.0", 26 28 "swr": "2.4.1", 27 29 "tsx": "4.21.0",
+5
docs/data/people.ts
··· 18 18 name: 'Josh Hemphill', 19 19 }; 20 20 21 + export const malcolmKee: Person = { 22 + github: 'https://github.com/malcolm-kee', 23 + name: 'Malcolm Kee', 24 + }; 25 + 21 26 export const maxScopp: Person = { 22 27 github: 'https://github.com/max-scopp', 23 28 name: 'Max Scopp',
+1 -1
docs/openapi-ts/migrating.md
··· 155 155 ...getPetByIdQuery({ 156 156 path: { petId: petId.value as number }, 157 157 }), 158 - enabled: () => petId.value != null, 158 + enabled: () => petId.value !== null, 159 159 })); 160 160 ``` 161 161
+2 -1
eslint.config.js
··· 58 58 '**/dist/', 59 59 '**/node_modules/', 60 60 'temp/', 61 - 'dev/.gen/', 61 + 'dev/gen/', 62 + 'dev/playground.ts', 62 63 'examples/openapi-ts-nestjs/src/client/**/*.ts', 63 64 'examples/openapi-ts-openai/src/client/**/*.ts', 64 65 '**/test/generated/',
+1 -1
examples/openapi-ts-angular-common/package.json
··· 38 38 "@types/node": "24.10.10", 39 39 "@typescript-eslint/eslint-plugin": "8.29.1", 40 40 "@typescript-eslint/parser": "8.29.1", 41 - "eslint": "9.17.0", 41 + "eslint": "9.39.2", 42 42 "jasmine-core": "5.6.0", 43 43 "karma": "6.4.4", 44 44 "karma-chrome-launcher": "3.2.0",
+1 -1
examples/openapi-ts-angular/package.json
··· 38 38 "@types/node": "24.10.10", 39 39 "@typescript-eslint/eslint-plugin": "8.29.1", 40 40 "@typescript-eslint/parser": "8.29.1", 41 - "eslint": "9.17.0", 41 + "eslint": "9.39.2", 42 42 "jasmine-core": "5.6.0", 43 43 "karma": "6.4.4", 44 44 "karma-chrome-launcher": "3.2.0",
+2 -2
examples/openapi-ts-axios/package.json
··· 27 27 "@typescript-eslint/parser": "8.29.1", 28 28 "@vitejs/plugin-react": "4.4.0-beta.1", 29 29 "autoprefixer": "10.4.19", 30 - "eslint": "9.17.0", 30 + "eslint": "9.39.2", 31 31 "eslint-plugin-react-hooks": "5.2.0", 32 32 "eslint-plugin-react-refresh": "0.4.7", 33 - "oxfmt": "0.27.0", 33 + "oxfmt": "0.41.0", 34 34 "postcss": "8.4.41", 35 35 "tailwindcss": "3.4.9", 36 36 "typescript": "5.9.3",
+3 -3
examples/openapi-ts-fastify/package.json
··· 14 14 }, 15 15 "devDependencies": { 16 16 "@hey-api/openapi-ts": "workspace:*", 17 - "eslint": "9.17.0", 18 - "oxfmt": "0.27.0", 17 + "eslint": "9.39.2", 18 + "oxfmt": "0.41.0", 19 19 "typescript": "5.9.3", 20 20 "vite": "7.3.1", 21 - "vitest": "4.0.18" 21 + "vitest": "4.1.0" 22 22 } 23 23 }
+5 -3
examples/openapi-ts-fetch/package.json
··· 26 26 "@typescript-eslint/parser": "8.29.1", 27 27 "@vitejs/plugin-react": "4.4.0-beta.1", 28 28 "autoprefixer": "10.4.19", 29 - "eslint": "9.17.0", 29 + "eslint": "9.39.2", 30 30 "eslint-plugin-react-hooks": "5.2.0", 31 31 "eslint-plugin-react-refresh": "0.4.7", 32 - "oxfmt": "0.27.0", 32 + "msw": "2.12.14", 33 + "oxfmt": "0.41.0", 33 34 "postcss": "8.4.41", 34 35 "tailwindcss": "3.4.9", 35 36 "typescript": "5.9.3", 36 - "vite": "7.3.1" 37 + "vite": "7.3.1", 38 + "vitest": "4.1.0" 37 39 } 38 40 }
+2 -2
examples/openapi-ts-ky/package.json
··· 27 27 "@typescript-eslint/parser": "8.29.1", 28 28 "@vitejs/plugin-react": "4.4.0-beta.1", 29 29 "autoprefixer": "10.4.19", 30 - "eslint": "9.17.0", 30 + "eslint": "9.39.2", 31 31 "eslint-plugin-react-hooks": "5.2.0", 32 32 "eslint-plugin-react-refresh": "0.4.7", 33 - "oxfmt": "0.27.0", 33 + "oxfmt": "0.41.0", 34 34 "postcss": "8.4.41", 35 35 "tailwindcss": "3.4.9", 36 36 "typescript": "5.9.3",
+14 -14
examples/openapi-ts-nestjs/package.json
··· 10 10 "typecheck": "tsc --noEmit" 11 11 }, 12 12 "dependencies": { 13 - "@nestjs/common": "^11.0.1", 14 - "@nestjs/core": "^11.0.1", 15 - "@nestjs/platform-express": "^11.0.1", 16 - "reflect-metadata": "^0.2.2", 17 - "rxjs": "^7.8.1" 13 + "@nestjs/common": "11.0.1", 14 + "@nestjs/core": "11.0.1", 15 + "@nestjs/platform-express": "11.0.1", 16 + "reflect-metadata": "0.2.2", 17 + "rxjs": "7.8.2" 18 18 }, 19 19 "devDependencies": { 20 20 "@hey-api/openapi-ts": "workspace:*", 21 - "@nestjs/testing": "^11.0.1", 22 - "@swc-node/register": "^1.10.10", 23 - "@swc/core": "^1.11.29", 24 - "eslint": "^9.18.0", 25 - "oxfmt": "^0.27.0", 26 - "typescript": "^5.9.3", 27 - "unplugin-swc": "^1.5.5", 28 - "vite": "^7.3.1", 29 - "vitest": "^4.0.18" 21 + "@nestjs/testing": "11.0.1", 22 + "@swc-node/register": "1.10.10", 23 + "@swc/core": "1.11.29", 24 + "eslint": "9.39.2", 25 + "oxfmt": "0.41.0", 26 + "typescript": "5.9.3", 27 + "unplugin-swc": "1.5.5", 28 + "vite": "7.3.1", 29 + "vitest": "4.1.0" 30 30 } 31 31 }
+1 -1
examples/openapi-ts-next/package.json
··· 19 19 "@types/node": "24.10.10", 20 20 "@types/react": "19.0.1", 21 21 "@types/react-dom": "19.0.1", 22 - "eslint": "9.17.0", 22 + "eslint": "9.39.2", 23 23 "eslint-config-next": "15.1.6", 24 24 "postcss": "8.4.41", 25 25 "tailwindcss": "3.4.9",
+3 -3
examples/openapi-ts-ofetch/package.json
··· 27 27 "@vue/test-utils": "2.4.6", 28 28 "@vue/tsconfig": "0.8.1", 29 29 "autoprefixer": "10.4.20", 30 - "eslint": "9.17.0", 30 + "eslint": "9.39.2", 31 31 "eslint-plugin-vue": "9.32.0", 32 32 "jsdom": "28.0.0", 33 33 "npm-run-all2": "6.2.0", 34 - "oxfmt": "0.27.0", 34 + "oxfmt": "0.41.0", 35 35 "postcss": "8.4.41", 36 36 "tailwindcss": "3.4.9", 37 37 "typescript": "5.9.3", 38 38 "vite": "7.3.1", 39 39 "vite-plugin-vue-devtools": "8.0.2", 40 - "vitest": "4.0.18", 40 + "vitest": "4.1.0", 41 41 "vue-tsc": "3.2.4" 42 42 } 43 43 }
+2 -2
examples/openapi-ts-openai/package.json
··· 27 27 "@typescript-eslint/parser": "8.29.1", 28 28 "@vitejs/plugin-react": "4.4.0-beta.1", 29 29 "autoprefixer": "10.4.19", 30 - "eslint": "9.17.0", 30 + "eslint": "9.39.2", 31 31 "eslint-plugin-react-hooks": "5.2.0", 32 32 "eslint-plugin-react-refresh": "0.4.7", 33 - "oxfmt": "0.27.0", 33 + "oxfmt": "0.41.0", 34 34 "postcss": "8.4.41", 35 35 "tailwindcss": "3.4.9", 36 36 "typescript": "5.9.3",
+3 -3
examples/openapi-ts-pinia-colada/package.json
··· 33 33 "@vue/test-utils": "2.4.6", 34 34 "@vue/tsconfig": "0.8.1", 35 35 "autoprefixer": "10.4.20", 36 - "eslint": "9.17.0", 36 + "eslint": "9.39.2", 37 37 "eslint-plugin-vue": "9.32.0", 38 38 "jsdom": "28.0.0", 39 39 "npm-run-all2": "6.2.0", 40 - "oxfmt": "0.27.0", 40 + "oxfmt": "0.41.0", 41 41 "postcss": "8.4.41", 42 42 "tailwindcss": "3.4.9", 43 43 "typescript": "5.9.3", 44 44 "vite": "7.3.1", 45 45 "vite-plugin-vue-devtools": "8.0.2", 46 - "vitest": "4.0.18", 46 + "vitest": "4.1.0", 47 47 "vue-tsc": "3.2.4" 48 48 } 49 49 }
+2 -2
examples/openapi-ts-tanstack-react-query/package.json
··· 28 28 "@typescript-eslint/parser": "8.29.1", 29 29 "@vitejs/plugin-react": "4.4.0-beta.1", 30 30 "autoprefixer": "10.4.19", 31 - "eslint": "9.17.0", 31 + "eslint": "9.39.2", 32 32 "eslint-plugin-react-hooks": "5.2.0", 33 33 "eslint-plugin-react-refresh": "0.4.7", 34 - "oxfmt": "0.27.0", 34 + "oxfmt": "0.41.0", 35 35 "postcss": "8.4.41", 36 36 "tailwindcss": "3.4.9", 37 37 "typescript": "5.9.3",
+3 -3
examples/openapi-ts-tanstack-svelte-query/package.json
··· 26 26 "@sveltejs/kit": "2.17.1", 27 27 "@sveltejs/vite-plugin-svelte": "5.0.3", 28 28 "@types/eslint": "9.6.0", 29 - "eslint": "9.17.0", 29 + "eslint": "9.39.2", 30 30 "eslint-plugin-svelte": "2.36.0", 31 31 "globals": "15.14.0", 32 - "oxfmt": "0.27.0", 32 + "oxfmt": "0.41.0", 33 33 "svelte": "5.19.9", 34 34 "svelte-check": "4.1.4", 35 35 "typescript": "5.9.3", 36 36 "typescript-eslint": "8.29.1", 37 37 "vite": "7.3.1", 38 - "vitest": "4.0.18" 38 + "vitest": "4.1.0" 39 39 } 40 40 }
+9
examples/openapi-ts-tanstack-svelte-query/vite.config.mjs
··· 1 + import { sveltekit } from '@sveltejs/kit/vite'; 2 + import { defineConfig } from 'vitest/config'; 3 + 4 + export default defineConfig({ 5 + plugins: [sveltekit()], 6 + test: { 7 + include: ['src/**/*.{test,spec}.{js,ts}'], 8 + }, 9 + });
-12
examples/openapi-ts-tanstack-svelte-query/vite.config.ts
··· 1 - import { sveltekit } from '@sveltejs/kit/vite'; 2 - import { defineProject } from 'vitest/config'; 3 - 4 - export default async () => { 5 - const sveltekitPlugins = await sveltekit(); 6 - return defineProject({ 7 - plugins: [sveltekitPlugins], 8 - test: { 9 - include: ['src/**/*.{test,spec}.{js,ts}'], 10 - }, 11 - }); 12 - };
+3 -3
examples/openapi-ts-tanstack-vue-query/package.json
··· 33 33 "@vue/test-utils": "2.4.6", 34 34 "@vue/tsconfig": "0.8.1", 35 35 "autoprefixer": "10.4.20", 36 - "eslint": "9.17.0", 36 + "eslint": "9.39.2", 37 37 "eslint-plugin-vue": "9.32.0", 38 38 "jsdom": "28.0.0", 39 39 "npm-run-all2": "6.2.0", 40 - "oxfmt": "0.27.0", 40 + "oxfmt": "0.41.0", 41 41 "postcss": "8.4.41", 42 42 "tailwindcss": "3.4.9", 43 43 "typescript": "5.9.3", 44 44 "vite": "7.3.1", 45 45 "vite-plugin-vue-devtools": "8.0.2", 46 - "vitest": "4.0.18", 46 + "vitest": "4.1.0", 47 47 "vue-tsc": "3.2.4" 48 48 } 49 49 }
+1 -1
packages/codegen-core/package.json
··· 53 53 "color-support": "1.1.3" 54 54 }, 55 55 "devDependencies": { 56 - "eslint": "9.39.1", 56 + "eslint": "9.39.2", 57 57 "typescript": "5.9.3" 58 58 }, 59 59 "engines": {
+1 -1
packages/openapi-python/package.json
··· 70 70 "commander": "14.0.3" 71 71 }, 72 72 "devDependencies": { 73 - "eslint": "9.39.1", 73 + "eslint": "9.39.2", 74 74 "typescript": "5.9.3", 75 75 "yaml": "2.8.2" 76 76 },
+1 -1
packages/openapi-ts-tests/main/package.json
··· 33 33 "arktype": "2.1.29", 34 34 "axios": "1.13.4", 35 35 "cross-spawn": "7.0.6", 36 - "eslint": "9.39.1", 36 + "eslint": "9.39.2", 37 37 "fastify": "5.7.4", 38 38 "ky": "1.14.3", 39 39 "node-fetch": "3.3.2",
-4
packages/openapi-ts-tests/orpc/v1/.gitignore
··· 1 1 .DS_Store 2 2 .idea 3 - .tmp 4 3 logs 5 4 node_modules 6 - 7 - .env 8 5 coverage 9 - dist
+2 -2
packages/openapi-ts-tests/orpc/v1/test/3.0.x.test.ts
··· 5 5 6 6 import { getFilePaths } from '../../../utils'; 7 7 import { snapshotsDir, tmpDir } from './constants'; 8 - import { createOrpcConfig } from './utils'; 8 + import { createConfigFactory } from './utils'; 9 9 10 10 const version = '3.0.x'; 11 11 12 12 const outputDir = path.join(tmpDir, version); 13 13 14 14 describe(`OpenAPI ${version}`, () => { 15 - const createConfig = createOrpcConfig({ openApiVersion: version, outputDir }); 15 + const createConfig = createConfigFactory({ openApiVersion: version, outputDir }); 16 16 17 17 const scenarios = [ 18 18 {
+2 -2
packages/openapi-ts-tests/orpc/v1/test/3.1.x.test.ts
··· 5 5 6 6 import { getFilePaths } from '../../../utils'; 7 7 import { snapshotsDir, tmpDir } from './constants'; 8 - import { createOrpcConfig } from './utils'; 8 + import { createConfigFactory } from './utils'; 9 9 10 10 const version = '3.1.x'; 11 11 12 12 const outputDir = path.join(tmpDir, version); 13 13 14 14 describe(`OpenAPI ${version}`, () => { 15 - const createConfig = createOrpcConfig({ openApiVersion: version, outputDir }); 15 + const createConfig = createConfigFactory({ openApiVersion: version, outputDir }); 16 16 17 17 const scenarios = [ 18 18 {
+9 -3
packages/openapi-ts-tests/orpc/v1/test/utils.ts
··· 4 4 5 5 import { getSpecsPath } from '../../../utils'; 6 6 7 - export const createOrpcConfig = 8 - ({ openApiVersion, outputDir }: { openApiVersion: string; outputDir: string }) => 9 - (userConfig: UserConfig) => { 7 + export function createConfigFactory({ 8 + openApiVersion, 9 + outputDir, 10 + }: { 11 + openApiVersion: string; 12 + outputDir: string; 13 + }) { 14 + return (userConfig: UserConfig) => { 10 15 const input = userConfig.input instanceof Array ? userConfig.input[0]! : userConfig.input; 11 16 const inputPath = path.join( 12 17 getSpecsPath(), ··· 29 34 output: path.join(outputDir, outputPath), 30 35 } as UserConfig; 31 36 }; 37 + }
+2 -4
packages/openapi-ts-tests/sdks/test/method-class-conflict.test.ts
··· 4 4 import { createClient } from '@hey-api/openapi-ts'; 5 5 6 6 import { getFilePaths, getSpecsPath } from '../../utils'; 7 - import { createSdkConfig, getSnapshotsPath, getTempSnapshotsPath } from './utils'; 7 + import { createConfigFactory, getSnapshotsPath, getTempSnapshotsPath } from './utils'; 8 8 9 9 const namespace = 'method-class-conflict'; 10 10 ··· 14 14 const specPath = path.join(getSpecsPath(), '3.0.x', 'sdk-method-class-conflict.yaml'); 15 15 16 16 describe(`SDK: ${namespace}`, () => { 17 - const createConfig = createSdkConfig({ 18 - outputDir, 19 - }); 17 + const createConfig = createConfigFactory({ outputDir }); 20 18 21 19 const scenarios = [ 22 20 {
+2 -4
packages/openapi-ts-tests/sdks/test/opencode.test.ts
··· 4 4 import { createClient } from '@hey-api/openapi-ts'; 5 5 6 6 import { getFilePaths, getSpecsPath } from '../../utils'; 7 - import { createSdkConfig, getSnapshotsPath, getTempSnapshotsPath } from './utils'; 7 + import { createConfigFactory, getSnapshotsPath, getTempSnapshotsPath } from './utils'; 8 8 9 9 const namespace = 'opencode'; 10 10 ··· 14 14 const specPath = path.join(getSpecsPath(), '3.1.x', 'opencode.yaml'); 15 15 16 16 describe(`SDK: ${namespace}`, () => { 17 - const createConfig = createSdkConfig({ 18 - outputDir, 19 - }); 17 + const createConfig = createConfigFactory({ outputDir }); 20 18 21 19 const scenarios = [ 22 20 {
+3 -3
packages/openapi-ts-tests/sdks/test/utils.ts
··· 6 6 const __filename = fileURLToPath(import.meta.url); 7 7 const __dirname = path.dirname(__filename); 8 8 9 - export const createSdkConfig = 10 - ({ outputDir }: { outputDir: string }) => 11 - (userConfig: UserConfig) => 9 + export function createConfigFactory({ outputDir }: { outputDir: string }) { 10 + return (userConfig: UserConfig) => 12 11 ({ 13 12 ...userConfig, 14 13 logs: { ··· 26 25 ), 27 26 }, 28 27 }) as const satisfies UserConfig; 28 + } 29 29 30 30 export const getSnapshotsPath = (): string => path.join(__dirname, '..', '__snapshots__'); 31 31
-9
packages/openapi-ts-tests/valibot/v1/.gitignore
··· 1 1 .DS_Store 2 2 .idea 3 - .tmp 4 - .tsdown 5 3 logs 6 4 node_modules 7 - temp 8 - 9 - .env 10 5 coverage 11 - dist 12 - 13 - # test files 14 - .gen
+5 -5
packages/openapi-ts-tests/valibot/v1/test/3.0.x.test.ts
··· 4 4 import { createClient } from '@hey-api/openapi-ts'; 5 5 6 6 import { getFilePaths } from '../../../utils'; 7 - import { createValibotConfig, getSnapshotsPath, getTempSnapshotsPath } from './utils'; 7 + import { snapshotsDir, tmpDir } from './constants'; 8 + import { createConfigFactory } from './utils'; 8 9 9 10 const version = '3.0.x'; 10 11 11 - const outputDir = path.join(getTempSnapshotsPath(), version); 12 - const snapshotsDir = path.join(getSnapshotsPath(), version); 12 + const outputDir = path.join(tmpDir, version); 13 13 14 14 describe(`OpenAPI ${version}`, () => { 15 - const createConfig = createValibotConfig({ openApiVersion: version, outputDir }); 15 + const createConfig = createConfigFactory({ openApiVersion: version, outputDir }); 16 16 17 17 const scenarios = [ 18 18 { ··· 48 48 filePaths.map(async (filePath) => { 49 49 const fileContent = fs.readFileSync(filePath, 'utf-8'); 50 50 await expect(fileContent).toMatchFileSnapshot( 51 - path.join(snapshotsDir, filePath.slice(outputDir.length + 1)), 51 + path.join(snapshotsDir, version, filePath.slice(outputDir.length + 1)), 52 52 ); 53 53 }), 54 54 );
+5 -5
packages/openapi-ts-tests/valibot/v1/test/3.1.x.test.ts
··· 4 4 import { createClient } from '@hey-api/openapi-ts'; 5 5 6 6 import { getFilePaths } from '../../../utils'; 7 - import { createValibotConfig, getSnapshotsPath, getTempSnapshotsPath } from './utils'; 7 + import { snapshotsDir, tmpDir } from './constants'; 8 + import { createConfigFactory } from './utils'; 8 9 9 10 const version = '3.1.x'; 10 11 11 - const outputDir = path.join(getTempSnapshotsPath(), version); 12 - const snapshotsDir = path.join(getSnapshotsPath(), version); 12 + const outputDir = path.join(tmpDir, version); 13 13 14 14 describe(`OpenAPI ${version}`, () => { 15 - const createConfig = createValibotConfig({ openApiVersion: version, outputDir }); 15 + const createConfig = createConfigFactory({ openApiVersion: version, outputDir }); 16 16 17 17 const scenarios = [ 18 18 { ··· 166 166 filePaths.map(async (filePath) => { 167 167 const fileContent = fs.readFileSync(filePath, 'utf-8'); 168 168 await expect(fileContent).toMatchFileSnapshot( 169 - path.join(snapshotsDir, filePath.slice(outputDir.length + 1)), 169 + path.join(snapshotsDir, version, filePath.slice(outputDir.length + 1)), 170 170 ); 171 171 }), 172 172 );
+4
packages/openapi-ts-tests/valibot/v1/test/constants.ts
··· 1 + import path from 'node:path'; 2 + 3 + export const snapshotsDir = path.join(__dirname, '..', '__snapshots__'); 4 + export const tmpDir = path.join(__dirname, '..', '.tmp');
+7
packages/openapi-ts-tests/valibot/v1/test/globalTeardown.ts
··· 1 + import fs from 'node:fs'; 2 + 3 + import { tmpDir } from './constants'; 4 + 5 + export function teardown() { 6 + fs.rmSync(tmpDir, { force: true, recursive: true }); 7 + }
+11 -12
packages/openapi-ts-tests/valibot/v1/test/utils.ts
··· 1 1 import fs from 'node:fs'; 2 2 import path from 'node:path'; 3 - import { fileURLToPath } from 'node:url'; 4 3 5 4 import { createClient, type UserConfig } from '@hey-api/openapi-ts'; 6 5 import * as v from 'valibot'; 7 6 8 7 import { getSpecsPath } from '../../../utils'; 9 - 10 - const __filename = fileURLToPath(import.meta.url); 11 - const __dirname = path.dirname(__filename); 12 - 13 - export const getSnapshotsPath = (): string => path.join(__dirname, '..', '__snapshots__'); 8 + import { tmpDir } from './constants'; 14 9 15 - export const getTempSnapshotsPath = (): string => path.join(__dirname, '..', '.gen', 'snapshots'); 16 - 17 - export const createValibotConfig = 18 - ({ openApiVersion, outputDir }: { openApiVersion: string; outputDir: string }) => 19 - (userConfig: UserConfig) => { 10 + export function createConfigFactory({ 11 + openApiVersion, 12 + outputDir, 13 + }: { 14 + openApiVersion: string; 15 + outputDir: string; 16 + }) { 17 + return (userConfig: UserConfig) => { 20 18 const input = userConfig.input instanceof Array ? userConfig.input[0]! : userConfig.input; 21 19 const inputPath = path.join( 22 20 getSpecsPath(), ··· 39 37 output: path.join(outputDir, outputPath), 40 38 } as UserConfig; 41 39 }; 40 + } 42 41 43 42 function loadGeneratedSchemas(generatedPath: string): any { 44 43 if (!fs.existsSync(generatedPath)) { ··· 79 78 version = '3.1.x', 80 79 ): Promise<any> { 81 80 const inputPath = path.join(getSpecsPath(), version, input); 82 - const outputPath = path.join(__dirname, '.gen', version, output); 81 + const outputPath = path.join(tmpDir, '.integration', version, output); 83 82 84 83 fs.mkdirSync(outputPath, { recursive: true }); 85 84
-1
packages/openapi-ts-tests/valibot/v1/tsconfig.json
··· 1 1 { 2 2 "extends": "../../tsconfig.base.json", 3 3 "include": ["test/**/*", "__snapshots__/**/*"], 4 - "exclude": [".gen/**/*"], 5 4 "references": [{ "path": "../../../openapi-ts" }] 6 5 }
+2 -2
packages/openapi-ts-tests/zod/v3/test/3.0.x.test.ts
··· 4 4 import { createClient } from '@hey-api/openapi-ts'; 5 5 6 6 import { getFilePaths } from '../../../utils'; 7 - import { createZodConfig, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 7 + import { createConfigFactory, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 8 8 9 9 const version = '3.0.x'; 10 10 ··· 13 13 const snapshotsDir = path.join(getSnapshotsPath(), version, zodVersion.folder); 14 14 15 15 describe(`OpenAPI ${version}`, () => { 16 - const createConfig = createZodConfig({ 16 + const createConfig = createConfigFactory({ 17 17 openApiVersion: version, 18 18 outputDir, 19 19 zodVersion,
+2 -2
packages/openapi-ts-tests/zod/v3/test/3.1.x.test.ts
··· 4 4 import { createClient } from '@hey-api/openapi-ts'; 5 5 6 6 import { getFilePaths } from '../../../utils'; 7 - import { createZodConfig, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 7 + import { createConfigFactory, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 8 8 9 9 const version = '3.1.x'; 10 10 ··· 13 13 const snapshotsDir = path.join(getSnapshotsPath(), version, zodVersion.folder); 14 14 15 15 describe(`OpenAPI ${version}`, () => { 16 - const createConfig = createZodConfig({ 16 + const createConfig = createConfigFactory({ 17 17 openApiVersion: version, 18 18 outputDir, 19 19 zodVersion,
+2 -2
packages/openapi-ts-tests/zod/v3/test/openapi.test.ts
··· 4 4 import { createClient } from '@hey-api/openapi-ts'; 5 5 6 6 import { getFilePaths } from '../../../utils'; 7 - import { createZodConfig, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 7 + import { createConfigFactory, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 8 8 9 9 const versions = ['2.0.x', '3.0.x', '3.1.x']; 10 10 ··· 14 14 const snapshotsDir = path.join(getSnapshotsPath(), version, zodVersion.folder); 15 15 16 16 describe(`OpenAPI ${version}`, () => { 17 - const createConfig = createZodConfig({ 17 + const createConfig = createConfigFactory({ 18 18 openApiVersion: version, 19 19 outputDir, 20 20 zodVersion,
+11 -11
packages/openapi-ts-tests/zod/v3/test/utils.ts
··· 8 8 const __filename = fileURLToPath(import.meta.url); 9 9 const __dirname = path.dirname(__filename); 10 10 11 - export const createZodConfig = 12 - ({ 13 - openApiVersion, 14 - outputDir, 15 - zodVersion, 16 - }: { 17 - openApiVersion: string; 18 - outputDir: string; 19 - zodVersion: (typeof zodVersions)[number]; 20 - }) => 21 - (userConfig: UserConfig) => { 11 + export function createConfigFactory({ 12 + openApiVersion, 13 + outputDir, 14 + zodVersion, 15 + }: { 16 + openApiVersion: string; 17 + outputDir: string; 18 + zodVersion: (typeof zodVersions)[number]; 19 + }) { 20 + return (userConfig: UserConfig) => { 22 21 const input = userConfig.input instanceof Array ? userConfig.input[0]! : userConfig.input; 23 22 const inputPath = path.join( 24 23 getSpecsPath(), ··· 47 46 output: path.join(outputDir, typeof userConfig.output === 'string' ? userConfig.output : ''), 48 47 } as const satisfies UserConfig; 49 48 }; 49 + } 50 50 51 51 export const getSnapshotsPath = (): string => path.join(__dirname, '..', '__snapshots__'); 52 52
+2 -2
packages/openapi-ts-tests/zod/v4/test/3.0.x.test.ts
··· 4 4 import { createClient } from '@hey-api/openapi-ts'; 5 5 6 6 import { getFilePaths } from '../../../utils'; 7 - import { createZodConfig, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 7 + import { createConfigFactory, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 8 8 9 9 const version = '3.0.x'; 10 10 ··· 13 13 const snapshotsDir = path.join(getSnapshotsPath(), version, zodVersion.folder); 14 14 15 15 describe(`OpenAPI ${version}`, () => { 16 - const createConfig = createZodConfig({ 16 + const createConfig = createConfigFactory({ 17 17 openApiVersion: version, 18 18 outputDir, 19 19 zodVersion,
+2 -2
packages/openapi-ts-tests/zod/v4/test/3.1.x.test.ts
··· 4 4 import { createClient } from '@hey-api/openapi-ts'; 5 5 6 6 import { getFilePaths } from '../../../utils'; 7 - import { createZodConfig, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 7 + import { createConfigFactory, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 8 8 9 9 const version = '3.1.x'; 10 10 ··· 13 13 const snapshotsDir = path.join(getSnapshotsPath(), version, zodVersion.folder); 14 14 15 15 describe(`OpenAPI ${version}`, () => { 16 - const createConfig = createZodConfig({ 16 + const createConfig = createConfigFactory({ 17 17 openApiVersion: version, 18 18 outputDir, 19 19 zodVersion,
+2 -2
packages/openapi-ts-tests/zod/v4/test/formats.test.ts
··· 4 4 import { createClient } from '@hey-api/openapi-ts'; 5 5 6 6 import { getFilePaths } from '../../../utils'; 7 - import { createZodConfig, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 7 + import { createConfigFactory, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 8 8 9 9 const version = '3.1.x'; 10 10 ··· 13 13 const snapshotsDir = path.join(getSnapshotsPath(), version, zodVersion.folder); 14 14 15 15 describe(`OpenAPI ${version} Zod formats`, () => { 16 - const createConfig = createZodConfig({ 16 + const createConfig = createConfigFactory({ 17 17 openApiVersion: version, 18 18 outputDir, 19 19 zodVersion,
+2 -2
packages/openapi-ts-tests/zod/v4/test/openapi.test.ts
··· 4 4 import { createClient } from '@hey-api/openapi-ts'; 5 5 6 6 import { getFilePaths } from '../../../utils'; 7 - import { createZodConfig, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 7 + import { createConfigFactory, getSnapshotsPath, getTempSnapshotsPath, zodVersions } from './utils'; 8 8 9 9 const versions = ['2.0.x', '3.0.x', '3.1.x']; 10 10 ··· 14 14 const snapshotsDir = path.join(getSnapshotsPath(), version, zodVersion.folder); 15 15 16 16 describe(`OpenAPI ${version}`, () => { 17 - const createConfig = createZodConfig({ 17 + const createConfig = createConfigFactory({ 18 18 openApiVersion: version, 19 19 outputDir, 20 20 zodVersion,
+11 -11
packages/openapi-ts-tests/zod/v4/test/utils.ts
··· 8 8 const __filename = fileURLToPath(import.meta.url); 9 9 const __dirname = path.dirname(__filename); 10 10 11 - export const createZodConfig = 12 - ({ 13 - openApiVersion, 14 - outputDir, 15 - zodVersion, 16 - }: { 17 - openApiVersion: string; 18 - outputDir: string; 19 - zodVersion: (typeof zodVersions)[number]; 20 - }) => 21 - (userConfig: UserConfig) => { 11 + export function createConfigFactory({ 12 + openApiVersion, 13 + outputDir, 14 + zodVersion, 15 + }: { 16 + openApiVersion: string; 17 + outputDir: string; 18 + zodVersion: (typeof zodVersions)[number]; 19 + }) { 20 + return (userConfig: UserConfig) => { 22 21 const input = userConfig.input instanceof Array ? userConfig.input[0]! : userConfig.input; 23 22 const inputPath = path.join( 24 23 getSpecsPath(), ··· 47 46 output: path.join(outputDir, typeof userConfig.output === 'string' ? userConfig.output : ''), 48 47 } as const satisfies UserConfig; 49 48 }; 49 + } 50 50 51 51 export const getSnapshotsPath = (): string => path.join(__dirname, '..', '__snapshots__'); 52 52
+1 -1
packages/openapi-ts/CHANGELOG.md
··· 884 884 ...getPetByIdQuery({ 885 885 path: { petId: petId.value as number }, 886 886 }), 887 - enabled: () => petId.value != null, 887 + enabled: () => petId.value !== null, 888 888 })); 889 889 ``` 890 890
+1 -1
packages/openapi-ts/package.json
··· 88 88 "@angular/platform-browser-dynamic": "21.1.2", 89 89 "@angular/router": "21.1.2", 90 90 "axios": "1.13.4", 91 - "eslint": "9.39.1", 91 + "eslint": "9.39.2", 92 92 "ky": "1.14.3", 93 93 "nuxt": "3.14.1592", 94 94 "ofetch": "1.5.1",
+4 -13
packages/openapi-ts/src/plugins/@faker-js/faker/types.ts
··· 61 61 Plugin.Hooks & 62 62 Plugin.Exports & { 63 63 // Resolvers & { 64 - /** 65 - * Casing convention for generated names. 66 - */ 64 + /** Casing convention for generated names. */ 67 65 case: Casing; 68 - /** 69 - * Configuration for reusable schema definitions. 70 - */ 66 + /** Configuration for reusable schema definitions. */ 71 67 definitions: NamingOptions & FeatureToggle; 72 - /** 73 - * Faker locale for generated data. 74 - */ 68 + /** Faker locale for generated data. */ 75 69 locale: string; 76 - /** 77 - * Seed for deterministic output. When set, Faker will produce 78 - * the same values across runs. 79 - */ 70 + /** Seed for deterministic output. */ 80 71 seed?: number; 81 72 }; 82 73
+1 -1
packages/shared/package.json
··· 53 53 "@types/bun": "1.3.8", 54 54 "@types/cross-spawn": "6.0.6", 55 55 "@types/semver": "7.7.1", 56 - "eslint": "9.39.1", 56 + "eslint": "9.39.2", 57 57 "typescript": "5.9.3", 58 58 "yaml": "2.8.2" 59 59 },
+2 -2
packages/shared/src/openApi/3.0.x/parser/schema.ts
··· 792 792 }); 793 793 794 794 // `$ref` should be defined with discriminators 795 - if (schema.discriminator && irCompositionSchema.$ref != null) { 795 + if (schema.discriminator && irCompositionSchema.$ref) { 796 796 const values = discriminatorValues(irCompositionSchema.$ref, schema.discriminator.mapping); 797 797 798 798 const valueSchemas: ReadonlyArray<IR.SchemaObject> = values.map((value) => ··· 960 960 }); 961 961 962 962 // `$ref` should be defined with discriminators 963 - if (schema.discriminator && irCompositionSchema.$ref != null) { 963 + if (schema.discriminator && irCompositionSchema.$ref) { 964 964 const values = discriminatorValues(irCompositionSchema.$ref, schema.discriminator.mapping); 965 965 966 966 const valueSchemas: ReadonlyArray<IR.SchemaObject> = values.map((value) =>
+2 -2
packages/shared/src/openApi/3.1.x/parser/schema.ts
··· 876 876 }); 877 877 878 878 // `$ref` should be defined with discriminators 879 - if (schema.discriminator && irCompositionSchema.$ref != null) { 879 + if (schema.discriminator && irCompositionSchema.$ref) { 880 880 const values = discriminatorValues(irCompositionSchema.$ref, schema.discriminator.mapping); 881 881 882 882 const valueSchemas: ReadonlyArray<IR.SchemaObject> = values.map((value) => ··· 1035 1035 }); 1036 1036 1037 1037 // `$ref` should be defined with discriminators 1038 - if (schema.discriminator && irCompositionSchema.$ref != null) { 1038 + if (schema.discriminator && irCompositionSchema.$ref) { 1039 1039 const values = discriminatorValues(irCompositionSchema.$ref, schema.discriminator.mapping); 1040 1040 1041 1041 const valueSchemas: ReadonlyArray<IR.SchemaObject> = values.map((value) =>
+1 -1
packages/shared/src/openApi/shared/transforms/enums.ts
··· 238 238 const schemasPointerNamespace = specToSchemasPointerNamespace(spec); 239 239 for (const { key, parent, signature } of inlineEnums) { 240 240 const name = signatureToName[signature]; 241 - if (name && key != null && parent && typeof parent === 'object') { 241 + if (name && key !== null && parent && typeof parent === 'object') { 242 242 (parent as Record<string, unknown>)[key] = { 243 243 $ref: `${schemasPointerNamespace}${name}`, 244 244 };
+889 -1108
pnpm-lock.yaml
··· 48 48 version: 7.0.0-dev.20260321.1 49 49 '@vitest/coverage-v8': 50 50 specifier: 4.1.0 51 - version: 4.1.0(vitest@4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))) 51 + version: 4.1.0(vitest@4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))) 52 52 eslint: 53 53 specifier: 9.39.2 54 54 version: 9.39.2(jiti@2.6.1) ··· 96 96 version: 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 97 97 vitest: 98 98 specifier: 4.1.0 99 - version: 4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 99 + version: 4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 100 100 101 101 dev: 102 102 devDependencies: ··· 115 115 '@hey-api/openapi-ts': 116 116 specifier: workspace:* 117 117 version: link:../packages/openapi-ts 118 + '@msw/source': 119 + specifier: 0.6.1 120 + version: 0.6.1(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3)) 118 121 '@opencode-ai/sdk': 119 122 specifier: 1.2.27 120 123 version: 1.2.27 ··· 145 148 arktype: 146 149 specifier: 2.2.0 147 150 version: 2.2.0 151 + msw: 152 + specifier: 2.12.14 153 + version: 2.12.14(@types/node@25.2.1)(typescript@5.9.3) 148 154 nuxt: 149 155 specifier: 3.21.0 150 156 version: 3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2) ··· 233 239 devDependencies: 234 240 '@angular-devkit/build-angular': 235 241 specifier: 21.1.2 236 - version: 21.1.2(b9fcfc698b20164011953e0b05a5c087) 242 + version: 21.1.2(e7b38691dcceec66c29b1e19d8dba0f4) 237 243 '@angular/cli': 238 244 specifier: 21.1.2 239 245 version: 21.1.2(@types/node@24.10.10)(chokidar@5.0.0)(hono@4.11.8) ··· 254 260 version: 24.10.10 255 261 '@typescript-eslint/eslint-plugin': 256 262 specifier: 8.29.1 257 - version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 263 + version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 258 264 '@typescript-eslint/parser': 259 265 specifier: 8.29.1 260 - version: 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 266 + version: 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 261 267 eslint: 262 - specifier: 9.17.0 263 - version: 9.17.0(jiti@2.6.1) 268 + specifier: 9.39.2 269 + version: 9.39.2(jiti@2.6.1) 264 270 jasmine-core: 265 271 specifier: 5.6.0 266 272 version: 5.6.0 ··· 327 333 devDependencies: 328 334 '@angular-devkit/build-angular': 329 335 specifier: 21.1.2 330 - version: 21.1.2(e7024e150686e3bbe2cdedb5695d6284) 336 + version: 21.1.2(b0adb2eb4671a686a9409000aca50fdf) 331 337 '@angular/cli': 332 338 specifier: 21.1.2 333 339 version: 21.1.2(@types/node@24.10.10)(chokidar@5.0.0)(hono@4.11.8) ··· 348 354 version: 24.10.10 349 355 '@typescript-eslint/eslint-plugin': 350 356 specifier: 8.29.1 351 - version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 357 + version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 352 358 '@typescript-eslint/parser': 353 359 specifier: 8.29.1 354 - version: 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 360 + version: 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 355 361 eslint: 356 - specifier: 9.17.0 357 - version: 9.17.0(jiti@2.6.1) 362 + specifier: 9.39.2 363 + version: 9.39.2(jiti@2.6.1) 358 364 jasmine-core: 359 365 specifier: 5.6.0 360 366 version: 5.6.0 ··· 409 415 version: 19.0.1 410 416 '@typescript-eslint/eslint-plugin': 411 417 specifier: 8.29.1 412 - version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 418 + version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 413 419 '@typescript-eslint/parser': 414 420 specifier: 8.29.1 415 - version: 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 421 + version: 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 416 422 '@vitejs/plugin-react': 417 423 specifier: 4.4.0-beta.1 418 424 version: 4.4.0-beta.1(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) ··· 420 426 specifier: 10.4.19 421 427 version: 10.4.19(postcss@8.4.41) 422 428 eslint: 423 - specifier: 9.17.0 424 - version: 9.17.0(jiti@2.6.1) 429 + specifier: 9.39.2 430 + version: 9.39.2(jiti@2.6.1) 425 431 eslint-plugin-react-hooks: 426 432 specifier: 5.2.0 427 - version: 5.2.0(eslint@9.17.0(jiti@2.6.1)) 433 + version: 5.2.0(eslint@9.39.2(jiti@2.6.1)) 428 434 eslint-plugin-react-refresh: 429 435 specifier: 0.4.7 430 - version: 0.4.7(eslint@9.17.0(jiti@2.6.1)) 436 + version: 0.4.7(eslint@9.39.2(jiti@2.6.1)) 431 437 oxfmt: 432 - specifier: 0.27.0 433 - version: 0.27.0 438 + specifier: 0.41.0 439 + version: 0.41.0 434 440 postcss: 435 441 specifier: 8.4.41 436 442 version: 8.4.41 ··· 457 463 specifier: workspace:* 458 464 version: link:../../packages/openapi-ts 459 465 eslint: 460 - specifier: 9.17.0 461 - version: 9.17.0(jiti@2.6.1) 466 + specifier: 9.39.2 467 + version: 9.39.2(jiti@2.6.1) 462 468 oxfmt: 463 - specifier: 0.27.0 464 - version: 0.27.0 469 + specifier: 0.41.0 470 + version: 0.41.0 465 471 typescript: 466 472 specifier: 5.9.3 467 473 version: 5.9.3 ··· 469 475 specifier: 7.3.1 470 476 version: 7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 471 477 vitest: 472 - specifier: 4.0.18 473 - version: 4.0.18(@types/node@25.2.1)(jiti@2.6.1)(jsdom@28.0.0)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 478 + specifier: 4.1.0 479 + version: 4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 474 480 475 481 examples/openapi-ts-fetch: 476 482 dependencies: ··· 501 507 version: 19.0.1 502 508 '@typescript-eslint/eslint-plugin': 503 509 specifier: 8.29.1 504 - version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 510 + version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 505 511 '@typescript-eslint/parser': 506 512 specifier: 8.29.1 507 - version: 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 513 + version: 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 508 514 '@vitejs/plugin-react': 509 515 specifier: 4.4.0-beta.1 510 516 version: 4.4.0-beta.1(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) ··· 512 518 specifier: 10.4.19 513 519 version: 10.4.19(postcss@8.4.41) 514 520 eslint: 515 - specifier: 9.17.0 516 - version: 9.17.0(jiti@2.6.1) 521 + specifier: 9.39.2 522 + version: 9.39.2(jiti@2.6.1) 517 523 eslint-plugin-react-hooks: 518 524 specifier: 5.2.0 519 - version: 5.2.0(eslint@9.17.0(jiti@2.6.1)) 525 + version: 5.2.0(eslint@9.39.2(jiti@2.6.1)) 520 526 eslint-plugin-react-refresh: 521 527 specifier: 0.4.7 522 - version: 0.4.7(eslint@9.17.0(jiti@2.6.1)) 528 + version: 0.4.7(eslint@9.39.2(jiti@2.6.1)) 529 + msw: 530 + specifier: 2.12.14 531 + version: 2.12.14(@types/node@25.2.1)(typescript@5.9.3) 523 532 oxfmt: 524 - specifier: 0.27.0 525 - version: 0.27.0 533 + specifier: 0.41.0 534 + version: 0.41.0 526 535 postcss: 527 536 specifier: 8.4.41 528 537 version: 8.4.41 ··· 535 544 vite: 536 545 specifier: 7.3.1 537 546 version: 7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 547 + vitest: 548 + specifier: 4.1.0 549 + version: 4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 538 550 539 551 examples/openapi-ts-ky: 540 552 dependencies: ··· 568 580 version: 19.0.1 569 581 '@typescript-eslint/eslint-plugin': 570 582 specifier: 8.29.1 571 - version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 583 + version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 572 584 '@typescript-eslint/parser': 573 585 specifier: 8.29.1 574 - version: 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 586 + version: 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 575 587 '@vitejs/plugin-react': 576 588 specifier: 4.4.0-beta.1 577 589 version: 4.4.0-beta.1(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) ··· 579 591 specifier: 10.4.19 580 592 version: 10.4.19(postcss@8.4.41) 581 593 eslint: 582 - specifier: 9.17.0 583 - version: 9.17.0(jiti@2.6.1) 594 + specifier: 9.39.2 595 + version: 9.39.2(jiti@2.6.1) 584 596 eslint-plugin-react-hooks: 585 597 specifier: 5.2.0 586 - version: 5.2.0(eslint@9.17.0(jiti@2.6.1)) 598 + version: 5.2.0(eslint@9.39.2(jiti@2.6.1)) 587 599 eslint-plugin-react-refresh: 588 600 specifier: 0.4.7 589 - version: 0.4.7(eslint@9.17.0(jiti@2.6.1)) 601 + version: 0.4.7(eslint@9.39.2(jiti@2.6.1)) 590 602 oxfmt: 591 - specifier: 0.27.0 592 - version: 0.27.0 603 + specifier: 0.41.0 604 + version: 0.41.0 593 605 postcss: 594 606 specifier: 8.4.41 595 607 version: 8.4.41 ··· 606 618 examples/openapi-ts-nestjs: 607 619 dependencies: 608 620 '@nestjs/common': 609 - specifier: ^11.0.1 610 - version: 11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2) 621 + specifier: 11.0.1 622 + version: 11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2) 611 623 '@nestjs/core': 612 - specifier: ^11.0.1 613 - version: 11.1.16(@nestjs/common@11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@11.1.16)(reflect-metadata@0.2.2)(rxjs@7.8.2) 624 + specifier: 11.0.1 625 + version: 11.0.1(@nestjs/common@11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@11.0.1)(reflect-metadata@0.2.2)(rxjs@7.8.2) 614 626 '@nestjs/platform-express': 615 - specifier: ^11.0.1 616 - version: 11.1.16(@nestjs/common@11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.1.16) 627 + specifier: 11.0.1 628 + version: 11.0.1(@nestjs/common@11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.0.1) 617 629 reflect-metadata: 618 - specifier: ^0.2.2 630 + specifier: 0.2.2 619 631 version: 0.2.2 620 632 rxjs: 621 - specifier: ^7.8.1 633 + specifier: 7.8.2 622 634 version: 7.8.2 623 635 devDependencies: 624 636 '@hey-api/openapi-ts': 625 637 specifier: workspace:* 626 638 version: link:../../packages/openapi-ts 627 639 '@nestjs/testing': 628 - specifier: ^11.0.1 629 - version: 11.1.16(@nestjs/common@11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.1.16)(@nestjs/platform-express@11.1.16) 640 + specifier: 11.0.1 641 + version: 11.0.1(@nestjs/common@11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.0.1)(@nestjs/platform-express@11.0.1) 630 642 '@swc-node/register': 631 - specifier: ^1.10.10 632 - version: 1.11.1(@swc/core@1.15.18)(@swc/types@0.1.25)(typescript@5.9.3) 643 + specifier: 1.10.10 644 + version: 1.10.10(@swc/core@1.11.29)(@swc/types@0.1.25)(typescript@5.9.3) 633 645 '@swc/core': 634 - specifier: ^1.11.29 635 - version: 1.15.18 646 + specifier: 1.11.29 647 + version: 1.11.29 636 648 eslint: 637 - specifier: ^9.18.0 649 + specifier: 9.39.2 638 650 version: 9.39.2(jiti@2.6.1) 639 651 oxfmt: 640 - specifier: ^0.27.0 641 - version: 0.27.0 652 + specifier: 0.41.0 653 + version: 0.41.0 642 654 typescript: 643 - specifier: ^5.9.3 655 + specifier: 5.9.3 644 656 version: 5.9.3 645 657 unplugin-swc: 646 - specifier: ^1.5.5 647 - version: 1.5.9(@swc/core@1.15.18)(rollup@4.56.0) 658 + specifier: 1.5.5 659 + version: 1.5.5(@swc/core@1.11.29)(rollup@4.56.0) 648 660 vite: 649 - specifier: ^7.3.1 661 + specifier: 7.3.1 650 662 version: 7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 651 663 vitest: 652 - specifier: ^4.0.18 653 - version: 4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 664 + specifier: 4.1.0 665 + version: 4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 654 666 655 667 examples/openapi-ts-next: 656 668 dependencies: ··· 677 689 specifier: 19.0.1 678 690 version: 19.0.1 679 691 eslint: 680 - specifier: 9.17.0 681 - version: 9.17.0(jiti@2.6.1) 692 + specifier: 9.39.2 693 + version: 9.39.2(jiti@2.6.1) 682 694 eslint-config-next: 683 695 specifier: 15.1.6 684 - version: 15.1.6(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 696 + version: 15.1.6(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 685 697 postcss: 686 698 specifier: 8.4.41 687 699 version: 8.4.41 ··· 746 758 version: 5.1.4(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.13(typescript@5.9.3)) 747 759 '@vue/eslint-config-typescript': 748 760 specifier: 14.6.0 749 - version: 14.6.0(eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 761 + version: 14.6.0(eslint-plugin-vue@9.32.0(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 750 762 '@vue/test-utils': 751 763 specifier: 2.4.6 752 764 version: 2.4.6 ··· 757 769 specifier: 10.4.20 758 770 version: 10.4.20(postcss@8.4.41) 759 771 eslint: 760 - specifier: 9.17.0 761 - version: 9.17.0(jiti@2.6.1) 772 + specifier: 9.39.2 773 + version: 9.39.2(jiti@2.6.1) 762 774 eslint-plugin-vue: 763 775 specifier: 9.32.0 764 - version: 9.32.0(eslint@9.17.0(jiti@2.6.1)) 776 + version: 9.32.0(eslint@9.39.2(jiti@2.6.1)) 765 777 jsdom: 766 778 specifier: 28.0.0 767 779 version: 28.0.0 ··· 769 781 specifier: 6.2.0 770 782 version: 6.2.0 771 783 oxfmt: 772 - specifier: 0.27.0 773 - version: 0.27.0 784 + specifier: 0.41.0 785 + version: 0.41.0 774 786 postcss: 775 787 specifier: 8.4.41 776 788 version: 8.4.41 ··· 787 799 specifier: 8.0.2 788 800 version: 8.0.2(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.13(typescript@5.9.3)) 789 801 vitest: 790 - specifier: 4.0.18 791 - version: 4.0.18(@types/node@24.10.10)(jiti@2.6.1)(jsdom@28.0.0)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 802 + specifier: 4.1.0 803 + version: 4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 792 804 vue-tsc: 793 805 specifier: 3.2.4 794 806 version: 3.2.4(typescript@5.9.3) ··· 825 837 version: 19.0.1 826 838 '@typescript-eslint/eslint-plugin': 827 839 specifier: 8.29.1 828 - version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 840 + version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 829 841 '@typescript-eslint/parser': 830 842 specifier: 8.29.1 831 - version: 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 843 + version: 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 832 844 '@vitejs/plugin-react': 833 845 specifier: 4.4.0-beta.1 834 846 version: 4.4.0-beta.1(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) ··· 836 848 specifier: 10.4.19 837 849 version: 10.4.19(postcss@8.4.41) 838 850 eslint: 839 - specifier: 9.17.0 840 - version: 9.17.0(jiti@2.6.1) 851 + specifier: 9.39.2 852 + version: 9.39.2(jiti@2.6.1) 841 853 eslint-plugin-react-hooks: 842 854 specifier: 5.2.0 843 - version: 5.2.0(eslint@9.17.0(jiti@2.6.1)) 855 + version: 5.2.0(eslint@9.39.2(jiti@2.6.1)) 844 856 eslint-plugin-react-refresh: 845 857 specifier: 0.4.7 846 - version: 0.4.7(eslint@9.17.0(jiti@2.6.1)) 858 + version: 0.4.7(eslint@9.39.2(jiti@2.6.1)) 847 859 oxfmt: 848 - specifier: 0.27.0 849 - version: 0.27.0 860 + specifier: 0.41.0 861 + version: 0.41.0 850 862 postcss: 851 863 specifier: 8.4.41 852 864 version: 8.4.41 ··· 901 913 version: 5.1.4(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.13(typescript@5.9.3)) 902 914 '@vue/eslint-config-typescript': 903 915 specifier: 14.6.0 904 - version: 14.6.0(eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 916 + version: 14.6.0(eslint-plugin-vue@9.32.0(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 905 917 '@vue/test-utils': 906 918 specifier: 2.4.6 907 919 version: 2.4.6 ··· 912 924 specifier: 10.4.20 913 925 version: 10.4.20(postcss@8.4.41) 914 926 eslint: 915 - specifier: 9.17.0 916 - version: 9.17.0(jiti@2.6.1) 927 + specifier: 9.39.2 928 + version: 9.39.2(jiti@2.6.1) 917 929 eslint-plugin-vue: 918 930 specifier: 9.32.0 919 - version: 9.32.0(eslint@9.17.0(jiti@2.6.1)) 931 + version: 9.32.0(eslint@9.39.2(jiti@2.6.1)) 920 932 jsdom: 921 933 specifier: 28.0.0 922 934 version: 28.0.0 ··· 924 936 specifier: 6.2.0 925 937 version: 6.2.0 926 938 oxfmt: 927 - specifier: 0.27.0 928 - version: 0.27.0 939 + specifier: 0.41.0 940 + version: 0.41.0 929 941 postcss: 930 942 specifier: 8.4.41 931 943 version: 8.4.41 ··· 942 954 specifier: 8.0.2 943 955 version: 8.0.2(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.13(typescript@5.9.3)) 944 956 vitest: 945 - specifier: 4.0.18 946 - version: 4.0.18(@types/node@24.10.10)(jiti@2.6.1)(jsdom@28.0.0)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 957 + specifier: 4.1.0 958 + version: 4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 947 959 vue-tsc: 948 960 specifier: 3.2.4 949 961 version: 3.2.4(typescript@5.9.3) ··· 995 1007 devDependencies: 996 1008 '@angular-devkit/build-angular': 997 1009 specifier: 21.1.2 998 - version: 21.1.2(bfb22c0d38474de5255b56daa3b8edae) 1010 + version: 21.1.2(bce736dd892461a752d981a601516c23) 999 1011 '@angular/cli': 1000 1012 specifier: 21.1.2 1001 1013 version: 21.1.2(@types/node@25.2.1)(chokidar@5.0.0)(hono@4.11.8) ··· 1065 1077 version: 19.0.1 1066 1078 '@typescript-eslint/eslint-plugin': 1067 1079 specifier: 8.29.1 1068 - version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 1080 + version: 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 1069 1081 '@typescript-eslint/parser': 1070 1082 specifier: 8.29.1 1071 - version: 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 1083 + version: 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 1072 1084 '@vitejs/plugin-react': 1073 1085 specifier: 4.4.0-beta.1 1074 1086 version: 4.4.0-beta.1(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) ··· 1076 1088 specifier: 10.4.19 1077 1089 version: 10.4.19(postcss@8.4.41) 1078 1090 eslint: 1079 - specifier: 9.17.0 1080 - version: 9.17.0(jiti@2.6.1) 1091 + specifier: 9.39.2 1092 + version: 9.39.2(jiti@2.6.1) 1081 1093 eslint-plugin-react-hooks: 1082 1094 specifier: 5.2.0 1083 - version: 5.2.0(eslint@9.17.0(jiti@2.6.1)) 1095 + version: 5.2.0(eslint@9.39.2(jiti@2.6.1)) 1084 1096 eslint-plugin-react-refresh: 1085 1097 specifier: 0.4.7 1086 - version: 0.4.7(eslint@9.17.0(jiti@2.6.1)) 1098 + version: 0.4.7(eslint@9.39.2(jiti@2.6.1)) 1087 1099 oxfmt: 1088 - specifier: 0.27.0 1089 - version: 0.27.0 1100 + specifier: 0.41.0 1101 + version: 0.41.0 1090 1102 postcss: 1091 1103 specifier: 8.4.41 1092 1104 version: 8.4.41 ··· 1128 1140 specifier: 9.6.0 1129 1141 version: 9.6.0 1130 1142 eslint: 1131 - specifier: 9.17.0 1132 - version: 9.17.0(jiti@2.6.1) 1143 + specifier: 9.39.2 1144 + version: 9.39.2(jiti@2.6.1) 1133 1145 eslint-plugin-svelte: 1134 1146 specifier: 2.36.0 1135 - version: 2.36.0(eslint@9.17.0(jiti@2.6.1))(svelte@5.19.9)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@25.2.1)(typescript@5.9.3)) 1147 + version: 2.36.0(eslint@9.39.2(jiti@2.6.1))(svelte@5.19.9)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@25.2.1)(typescript@5.9.3)) 1136 1148 globals: 1137 1149 specifier: 15.14.0 1138 1150 version: 15.14.0 1139 1151 oxfmt: 1140 - specifier: 0.27.0 1141 - version: 0.27.0 1152 + specifier: 0.41.0 1153 + version: 0.41.0 1142 1154 svelte: 1143 1155 specifier: 5.19.9 1144 1156 version: 5.19.9 ··· 1150 1162 version: 5.9.3 1151 1163 typescript-eslint: 1152 1164 specifier: 8.29.1 1153 - version: 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 1165 + version: 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 1154 1166 vite: 1155 1167 specifier: 7.3.1 1156 1168 version: 7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 1157 1169 vitest: 1158 - specifier: 4.0.18 1159 - version: 4.0.18(@types/node@25.2.1)(jiti@2.6.1)(jsdom@28.0.0)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 1170 + specifier: 4.1.0 1171 + version: 4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 1160 1172 1161 1173 examples/openapi-ts-tanstack-vue-query: 1162 1174 dependencies: ··· 1199 1211 version: 5.1.4(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.13(typescript@5.9.3)) 1200 1212 '@vue/eslint-config-typescript': 1201 1213 specifier: 14.6.0 1202 - version: 14.6.0(eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 1214 + version: 14.6.0(eslint-plugin-vue@9.32.0(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 1203 1215 '@vue/test-utils': 1204 1216 specifier: 2.4.6 1205 1217 version: 2.4.6 ··· 1210 1222 specifier: 10.4.20 1211 1223 version: 10.4.20(postcss@8.4.41) 1212 1224 eslint: 1213 - specifier: 9.17.0 1214 - version: 9.17.0(jiti@2.6.1) 1225 + specifier: 9.39.2 1226 + version: 9.39.2(jiti@2.6.1) 1215 1227 eslint-plugin-vue: 1216 1228 specifier: 9.32.0 1217 - version: 9.32.0(eslint@9.17.0(jiti@2.6.1)) 1229 + version: 9.32.0(eslint@9.39.2(jiti@2.6.1)) 1218 1230 jsdom: 1219 1231 specifier: 28.0.0 1220 1232 version: 28.0.0 ··· 1222 1234 specifier: 6.2.0 1223 1235 version: 6.2.0 1224 1236 oxfmt: 1225 - specifier: 0.27.0 1226 - version: 0.27.0 1237 + specifier: 0.41.0 1238 + version: 0.41.0 1227 1239 postcss: 1228 1240 specifier: 8.4.41 1229 1241 version: 8.4.41 ··· 1240 1252 specifier: 8.0.2 1241 1253 version: 8.0.2(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.13(typescript@5.9.3)) 1242 1254 vitest: 1243 - specifier: 4.0.18 1244 - version: 4.0.18(@types/node@24.10.10)(jiti@2.6.1)(jsdom@28.0.0)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 1255 + specifier: 4.1.0 1256 + version: 4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 1245 1257 vue-tsc: 1246 1258 specifier: 3.2.4 1247 1259 version: 3.2.4(typescript@5.9.3) ··· 1262 1274 version: 1.1.3 1263 1275 devDependencies: 1264 1276 eslint: 1265 - specifier: 9.39.1 1266 - version: 9.39.1(jiti@2.6.1) 1277 + specifier: 9.39.2 1278 + version: 9.39.2(jiti@2.6.1) 1267 1279 typescript: 1268 1280 specifier: 5.9.3 1269 1281 version: 5.9.3 ··· 1328 1340 version: 3.16.2 1329 1341 '@nuxt/test-utils': 1330 1342 specifier: 4.0.0 1331 - version: 4.0.0(@vue/test-utils@2.4.6)(jsdom@28.0.0)(magicast@0.3.5)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))) 1343 + version: 4.0.0(@vue/test-utils@2.4.6)(jsdom@28.0.0)(magicast@0.3.5)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))) 1332 1344 vite: 1333 1345 specifier: 7.3.1 1334 1346 version: 7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) ··· 1361 1373 version: 14.0.3 1362 1374 devDependencies: 1363 1375 eslint: 1364 - specifier: 9.39.1 1365 - version: 9.39.1(jiti@2.6.1) 1376 + specifier: 9.39.2 1377 + version: 9.39.2(jiti@2.6.1) 1366 1378 typescript: 1367 1379 specifier: 5.9.3 1368 1380 version: 5.9.3 ··· 1443 1455 specifier: 1.13.4 1444 1456 version: 1.13.4 1445 1457 eslint: 1446 - specifier: 9.39.1 1447 - version: 9.39.1(jiti@2.6.1) 1458 + specifier: 9.39.2 1459 + version: 9.39.2(jiti@2.6.1) 1448 1460 ky: 1449 1461 specifier: 1.14.3 1450 1462 version: 1.14.3 1451 1463 nuxt: 1452 1464 specifier: 3.14.1592 1453 - version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.1(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)) 1465 + version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)) 1454 1466 ofetch: 1455 1467 specifier: 1.5.1 1456 1468 version: 1.5.1 ··· 1474 1486 devDependencies: 1475 1487 '@angular-devkit/build-angular': 1476 1488 specifier: 21.1.2 1477 - version: 21.1.2(bfb22c0d38474de5255b56daa3b8edae) 1489 + version: 21.1.2(bce736dd892461a752d981a601516c23) 1478 1490 '@angular/animations': 1479 1491 specifier: 21.1.2 1480 1492 version: 21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)) ··· 1551 1563 specifier: 7.0.6 1552 1564 version: 7.0.6 1553 1565 eslint: 1554 - specifier: 9.39.1 1555 - version: 9.39.1(jiti@2.6.1) 1566 + specifier: 9.39.2 1567 + version: 9.39.2(jiti@2.6.1) 1556 1568 fastify: 1557 1569 specifier: 5.7.4 1558 1570 version: 5.7.4 ··· 1564 1576 version: 3.3.2 1565 1577 nuxt: 1566 1578 specifier: 3.14.1592 1567 - version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.1(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)) 1579 + version: 3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)) 1568 1580 ofetch: 1569 1581 specifier: 1.5.1 1570 1582 version: 1.5.1 ··· 1693 1705 specifier: 7.7.1 1694 1706 version: 7.7.1 1695 1707 eslint: 1696 - specifier: 9.39.1 1697 - version: 9.39.1(jiti@2.6.1) 1708 + specifier: 9.39.2 1709 + version: 9.39.2(jiti@2.6.1) 1698 1710 typescript: 1699 1711 specifier: 5.9.3 1700 1712 version: 5.9.3 ··· 2763 2775 commander: 2764 2776 optional: true 2765 2777 2766 - '@borewit/text-codec@0.2.2': 2767 - resolution: {integrity: sha512-DDaRehssg1aNrH4+2hnj1B7vnUGEjU6OIlyRdkMd0aUdIUvKXrJfXsy8LVtXAy7DRvYVluWbMspsRhz2lcW0mQ==} 2768 - 2769 2778 '@braidai/lang@1.1.2': 2770 2779 resolution: {integrity: sha512-qBcknbBufNHlui137Hft8xauQMTZDKdophmLFv05r2eNmdIv/MlPuP4TdUknHG68UdWLgVZwgxVe735HzJNIwA==} 2771 2780 ··· 3842 3851 resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} 3843 3852 engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 3844 3853 3845 - '@eslint/config-array@0.19.2': 3846 - resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==} 3847 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3848 - 3849 3854 '@eslint/config-array@0.21.1': 3850 3855 resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==} 3851 3856 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} ··· 3854 3859 resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==} 3855 3860 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3856 3861 3857 - '@eslint/core@0.13.0': 3858 - resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==} 3859 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3860 - 3861 3862 '@eslint/core@0.17.0': 3862 3863 resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==} 3863 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3864 - 3865 - '@eslint/core@0.9.1': 3866 - resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==} 3867 3864 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3868 3865 3869 3866 '@eslint/eslintrc@3.3.1': 3870 3867 resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} 3871 3868 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3872 3869 3873 - '@eslint/js@9.17.0': 3874 - resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==} 3875 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3876 - 3877 - '@eslint/js@9.39.1': 3878 - resolution: {integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==} 3879 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3880 - 3881 3870 '@eslint/js@9.39.2': 3882 3871 resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==} 3883 3872 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3884 3873 3885 - '@eslint/object-schema@2.1.6': 3886 - resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} 3887 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3888 - 3889 3874 '@eslint/object-schema@2.1.7': 3890 3875 resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==} 3891 3876 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3892 3877 3893 - '@eslint/plugin-kit@0.2.8': 3894 - resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==} 3895 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3896 - 3897 3878 '@eslint/plugin-kit@0.4.1': 3898 3879 resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==} 3899 3880 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} ··· 3906 3887 peerDependenciesMeta: 3907 3888 '@noble/hashes': 3908 3889 optional: true 3890 + 3891 + '@faker-js/faker@8.4.1': 3892 + resolution: {integrity: sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==} 3893 + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'} 3909 3894 3910 3895 '@fastify/ajv-compiler@4.0.5': 3911 3896 resolution: {integrity: sha512-KoWKW+MhvfTRWL4qrhUwAAZoaChluo0m0vbiJlGMt2GXvL4LVPQEjt8kSpHI3IBq5Rez8fg+XeH3cneztq+C7A==} ··· 4683 4668 cpu: [x64] 4684 4669 os: [win32] 4685 4670 4671 + '@msw/source@0.6.1': 4672 + resolution: {integrity: sha512-eKX3x85/Ejo2HoOgfilfB4cMqdzie58F+7vMvuKH2N0m4Hs3GhfqjLSLlWXkNx09O7NIUSilygmrlEeWOPDNUA==} 4673 + engines: {node: '>=20'} 4674 + peerDependencies: 4675 + msw: ^2.10.0 4676 + 4677 + '@mswjs/interceptors@0.40.0': 4678 + resolution: {integrity: sha512-EFd6cVbHsgLa6wa4RljGj6Wk75qoHxUSyc5asLyyPSyuhIcdS2Q3Phw6ImS1q+CkALthJRShiYfKANcQMuMqsQ==} 4679 + engines: {node: '>=18'} 4680 + 4681 + '@mswjs/interceptors@0.41.3': 4682 + resolution: {integrity: sha512-cXu86tF4VQVfwz8W1SPbhoRyHJkti6mjH/XJIxp40jhO4j2k1m4KYrEykxqWPkFF3vrK4rgQppBh//AwyGSXPA==} 4683 + engines: {node: '>=18'} 4684 + 4686 4685 '@napi-rs/nice-android-arm-eabi@1.1.1': 4687 4686 resolution: {integrity: sha512-kjirL3N6TnRPv5iuHw36wnucNqXAO46dzK9oPb0wj076R5Xm8PfUVA9nAFB5ZNMmfJQJVKACAPd/Z2KYMppthw==} 4688 4687 engines: {node: '>= 10'} ··· 4805 4804 '@neoconfetti/svelte@2.0.0': 4806 4805 resolution: {integrity: sha512-n/Uu7/XmHc8w0uBci0QWBjgbRzLhfWsH8yPJ5pMaseIvzSwabXvB30nb3JjzEYNBp9uGt4eCeY7LUmxAjnJV8A==} 4807 4806 4808 - '@nestjs/common@11.1.16': 4809 - resolution: {integrity: sha512-JSIeW+USuMJkkcNbiOdcPkVCeI3TSnXstIVEPpp3HiaKnPRuSbUUKm9TY9o/XpIcPHWUOQItAtC5BiAwFdVITQ==} 4807 + '@nestjs/common@11.0.1': 4808 + resolution: {integrity: sha512-GbPKvDz/sYjhR86ebZu+0F5jAvYDZDXY5WcHek9gkEkMI9eIo3xeH/F/tNIPhdyeWp3eG+kNWqR9VPtC18G+TA==} 4810 4809 peerDependencies: 4811 - class-transformer: '>=0.4.1' 4812 - class-validator: '>=0.13.2' 4810 + class-transformer: '*' 4811 + class-validator: '*' 4813 4812 reflect-metadata: ^0.1.12 || ^0.2.0 4814 4813 rxjs: ^7.1.0 4815 4814 peerDependenciesMeta: ··· 4818 4817 class-validator: 4819 4818 optional: true 4820 4819 4821 - '@nestjs/core@11.1.16': 4822 - resolution: {integrity: sha512-tXWXyCiqWthelJjrE0KLFjf0O98VEt+WPVx5CrqCf+059kIxJ8y1Vw7Cy7N4fwQafWNrmFL2AfN87DDMbVAY0w==} 4820 + '@nestjs/core@11.0.1': 4821 + resolution: {integrity: sha512-Yn7X2aInjmX7yxpH8TjJmgC0JPvs+tcreETkquSRmKbuK5J28dZDi8loiaw3eRTLLvzzUovv5mlqFxmVhDESOw==} 4823 4822 engines: {node: '>= 20'} 4824 4823 peerDependencies: 4825 4824 '@nestjs/common': ^11.0.0 ··· 4836 4835 '@nestjs/websockets': 4837 4836 optional: true 4838 4837 4839 - '@nestjs/platform-express@11.1.16': 4840 - resolution: {integrity: sha512-IOegr5+ZfUiMKgk+garsSU4MOkPRhm46e6w8Bp1GcO4vCdl9Piz6FlWAzKVfa/U3Hn/DdzSVJOW3TWcQQFdBDw==} 4838 + '@nestjs/platform-express@11.0.1': 4839 + resolution: {integrity: sha512-vkAcm4Lm/aAvvpYtRcRKuwzsliy4SqoSp0saHOIx6VdphIb1k7ziRkjDbLFDczDZmkiyX1pJ9kI5SHjoQzVDPw==} 4841 4840 peerDependencies: 4842 4841 '@nestjs/common': ^11.0.0 4843 4842 '@nestjs/core': ^11.0.0 4844 4843 4845 - '@nestjs/testing@11.1.16': 4846 - resolution: {integrity: sha512-E7/aUCxzeMSJV80L5GWGIuiMyR/1ncS7uOIetAImfbS4ATE1/h2GBafk0qpk+vjFtPIbtoh9BWDGICzUEU5jDA==} 4844 + '@nestjs/testing@11.0.1': 4845 + resolution: {integrity: sha512-s1hQAC46W/qp2JJqCeqhG/uT8IBtvgIoAHklUPl7sTYSJCs745q6X2+rrOPtAewVW8CuYNhQS7/0g94QR1IHXw==} 4847 4846 peerDependencies: 4848 4847 '@nestjs/common': ^11.0.0 4849 4848 '@nestjs/core': ^11.0.0 ··· 5160 5159 '@one-ini/wasm@0.1.1': 5161 5160 resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} 5162 5161 5162 + '@open-draft/deferred-promise@2.2.0': 5163 + resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==} 5164 + 5165 + '@open-draft/logger@0.3.0': 5166 + resolution: {integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==} 5167 + 5168 + '@open-draft/until@2.1.0': 5169 + resolution: {integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==} 5170 + 5163 5171 '@opencode-ai/sdk@1.2.27': 5164 5172 resolution: {integrity: sha512-Wk0o/I+Fo+wE3zgvlJDs8Fb67KlKqX0PrV8dK5adSDkANq6r4Z25zXJg2iOir+a8ntg3rAcpel1OY4FV/TwRUA==} 5165 5173 ··· 5464 5472 cpu: [arm64] 5465 5473 os: [darwin] 5466 5474 5475 + '@oxc-resolver/binding-darwin-arm64@5.3.0': 5476 + resolution: {integrity: sha512-hXem5ZAguS7IlSiHg/LK0tEfLj4eUo+9U6DaFwwBEGd0L0VIF9LmuiHydRyOrdnnmi9iAAFMAn/wl2cUoiuruA==} 5477 + cpu: [arm64] 5478 + os: [darwin] 5479 + 5467 5480 '@oxc-resolver/binding-darwin-x64@11.19.1': 5468 5481 resolution: {integrity: sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ==} 5469 5482 cpu: [x64] 5470 5483 os: [darwin] 5471 5484 5485 + '@oxc-resolver/binding-darwin-x64@5.3.0': 5486 + resolution: {integrity: sha512-wgSwfsZkRbuYCIBLxeg1bYrtKnirAy+IJF0lwfz4z08clgdNBDbfGECJe/cd0csIZPpRcvPFe8317yf31sWhtA==} 5487 + cpu: [x64] 5488 + os: [darwin] 5489 + 5472 5490 '@oxc-resolver/binding-freebsd-x64@11.19.1': 5473 5491 resolution: {integrity: sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw==} 5474 5492 cpu: [x64] 5475 5493 os: [freebsd] 5476 5494 5495 + '@oxc-resolver/binding-freebsd-x64@5.3.0': 5496 + resolution: {integrity: sha512-kzeE2WHgcRMmWjB071RdwEV5Pwke4o0WWslCKoh8if1puvxIxfzu3o7g6P2+v77BP5qop4cri+uvLABSO0WZjg==} 5497 + cpu: [x64] 5498 + os: [freebsd] 5499 + 5477 5500 '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1': 5478 5501 resolution: {integrity: sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A==} 5502 + cpu: [arm] 5503 + os: [linux] 5504 + 5505 + '@oxc-resolver/binding-linux-arm-gnueabihf@5.3.0': 5506 + resolution: {integrity: sha512-I8np34yZP/XfIkZNDbw3rweqVgfjmHYpNX3xnJZWg+f4mgO9/UNWBwetSaqXeDZqvIch/aHak+q4HVrQhQKCqg==} 5479 5507 cpu: [arm] 5480 5508 os: [linux] 5481 5509 ··· 5490 5518 os: [linux] 5491 5519 libc: [glibc] 5492 5520 5521 + '@oxc-resolver/binding-linux-arm64-gnu@5.3.0': 5522 + resolution: {integrity: sha512-u2ndfeEUrW898eXM+qPxIN8TvTPjI90NDQBRgaxxkOfNw3xaotloeiZGz5+Yzlfxgvxr9DY9FdYkqhUhSnGhOw==} 5523 + cpu: [arm64] 5524 + os: [linux] 5525 + libc: [glibc] 5526 + 5493 5527 '@oxc-resolver/binding-linux-arm64-musl@11.19.1': 5494 5528 resolution: {integrity: sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew==} 5529 + cpu: [arm64] 5530 + os: [linux] 5531 + libc: [musl] 5532 + 5533 + '@oxc-resolver/binding-linux-arm64-musl@5.3.0': 5534 + resolution: {integrity: sha512-TzbjmFkcnESGuVItQ2diKacX8vu5G0bH3BHmIlmY4OSRLyoAlrJFwGKAHmh6C9+Amfcjo2rx8vdm7swzmsGC6Q==} 5495 5535 cpu: [arm64] 5496 5536 os: [linux] 5497 5537 libc: [musl] ··· 5508 5548 os: [linux] 5509 5549 libc: [glibc] 5510 5550 5551 + '@oxc-resolver/binding-linux-riscv64-gnu@5.3.0': 5552 + resolution: {integrity: sha512-NH3pjAqh8nuN29iRuRfTY42Vn03ctoR9VE8llfoUKUfhHUjFHYOXK5VSkhjj1usG8AeuesvqrQnLptCRQVTi/Q==} 5553 + cpu: [riscv64] 5554 + os: [linux] 5555 + libc: [glibc] 5556 + 5511 5557 '@oxc-resolver/binding-linux-riscv64-musl@11.19.1': 5512 5558 resolution: {integrity: sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw==} 5513 5559 cpu: [riscv64] ··· 5520 5566 os: [linux] 5521 5567 libc: [glibc] 5522 5568 5569 + '@oxc-resolver/binding-linux-s390x-gnu@5.3.0': 5570 + resolution: {integrity: sha512-tuZtkK9sJYh2MC2uhol1M/8IMTB6ZQ5jmqP2+k5XNXnOb/im94Y5uV/u2lXwVyIuKHZZHtr+0d1HrOiNahoKpw==} 5571 + cpu: [s390x] 5572 + os: [linux] 5573 + libc: [glibc] 5574 + 5523 5575 '@oxc-resolver/binding-linux-x64-gnu@11.19.1': 5524 5576 resolution: {integrity: sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ==} 5525 5577 cpu: [x64] 5526 5578 os: [linux] 5527 5579 libc: [glibc] 5528 5580 5581 + '@oxc-resolver/binding-linux-x64-gnu@5.3.0': 5582 + resolution: {integrity: sha512-VzhPYmZCtoES/ThcPdGSmMop7JlwgqtSvlgtKCW15ByV2JKyl8kHAHnPSBfpIooXb0ehFnRdxFtL9qtAEWy01g==} 5583 + cpu: [x64] 5584 + os: [linux] 5585 + libc: [glibc] 5586 + 5529 5587 '@oxc-resolver/binding-linux-x64-musl@11.19.1': 5530 5588 resolution: {integrity: sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw==} 5589 + cpu: [x64] 5590 + os: [linux] 5591 + libc: [musl] 5592 + 5593 + '@oxc-resolver/binding-linux-x64-musl@5.3.0': 5594 + resolution: {integrity: sha512-Hi39cWzul24rGljN4Vf1lxjXzQdCrdxO5oCT7KJP4ndSlqIUODJnfnMAP1YhcnIRvNvk+5E6sZtnEmFUd/4d8Q==} 5531 5595 cpu: [x64] 5532 5596 os: [linux] 5533 5597 libc: [musl] ··· 5542 5606 engines: {node: '>=14.0.0'} 5543 5607 cpu: [wasm32] 5544 5608 5609 + '@oxc-resolver/binding-wasm32-wasi@5.3.0': 5610 + resolution: {integrity: sha512-ddujvHhP3chmHnSXRlkPVUeYj4/B7eLZwL4yUid+df3WCbVh6DgoT9RmllZn21AhxgKtMdekDdyVJYKFd8tl4A==} 5611 + engines: {node: '>=14.0.0'} 5612 + cpu: [wasm32] 5613 + 5545 5614 '@oxc-resolver/binding-win32-arm64-msvc@11.19.1': 5546 5615 resolution: {integrity: sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ==} 5547 5616 cpu: [arm64] 5548 5617 os: [win32] 5549 5618 5619 + '@oxc-resolver/binding-win32-arm64-msvc@5.3.0': 5620 + resolution: {integrity: sha512-j1YYPLvUkMVNKmIFQZZJ7q6Do4cI3htUnyxNLwDSBVhSohvPIK2VG+IdtOAlWZGa7v+phEZsHfNbXVwB0oPYFQ==} 5621 + cpu: [arm64] 5622 + os: [win32] 5623 + 5550 5624 '@oxc-resolver/binding-win32-ia32-msvc@11.19.1': 5551 5625 resolution: {integrity: sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA==} 5552 5626 cpu: [ia32] ··· 5554 5628 5555 5629 '@oxc-resolver/binding-win32-x64-msvc@11.19.1': 5556 5630 resolution: {integrity: sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw==} 5631 + cpu: [x64] 5632 + os: [win32] 5633 + 5634 + '@oxc-resolver/binding-win32-x64-msvc@5.3.0': 5635 + resolution: {integrity: sha512-LT9eOPPUqfZscQRd5mc08RBeDWOQf+dnOrKnanMallTGPe6g7+rcAlFTA8SWoJbcD45PV8yArFtCmSQSpzHZmg==} 5557 5636 cpu: [x64] 5558 5637 os: [win32] 5559 5638 ··· 5803 5882 '@oxfmt/binding-win32-x64-msvc@0.41.0': 5804 5883 resolution: {integrity: sha512-49ZSpbZ1noozyPapE8SUOSm3IN0Ze4b5nkO+4+7fq6oEYQQJFhE0saj5k/Gg4oewVPdjn0L3ZFeWk2Vehjcw7A==} 5805 5884 engines: {node: ^20.19.0 || >=22.12.0} 5806 - cpu: [x64] 5807 - os: [win32] 5808 - 5809 - '@oxfmt/darwin-arm64@0.27.0': 5810 - resolution: {integrity: sha512-3vwqyzNlVTVFVzHMlrqxb4tgVgHp6FYS0uIxsIZ/SeEDG0azaqiOw/2t8LlJ9f72PKRLWSey+Ak99tiKgpbsnQ==} 5811 - cpu: [arm64] 5812 - os: [darwin] 5813 - 5814 - '@oxfmt/darwin-x64@0.27.0': 5815 - resolution: {integrity: sha512-5u8mZVLm70v6l1wLZ2MmeNIEzGsruwKw5F7duePzpakPfxGtLpiFNUwe4aBUJULTP6aMzH+A4dA0JOn8lb7Luw==} 5816 - cpu: [x64] 5817 - os: [darwin] 5818 - 5819 - '@oxfmt/linux-arm64-gnu@0.27.0': 5820 - resolution: {integrity: sha512-aql/LLYriX/5Ar7o5Qivnp/qMTUPNiOCr7cFLvmvzYZa3XL0H8XtbKUfIVm+9ILR0urXQzcml+L8pLe1p8sgEg==} 5821 - cpu: [arm64] 5822 - os: [linux] 5823 - libc: [glibc] 5824 - 5825 - '@oxfmt/linux-arm64-musl@0.27.0': 5826 - resolution: {integrity: sha512-6u/kNb7hubthg4u/pn3MK/GJLwPgjDvDDnjjr7TC0/OK/xztef8ToXmycxIQ9OeDNIJJf7Z0Ss/rHnKvQOWzRw==} 5827 - cpu: [arm64] 5828 - os: [linux] 5829 - libc: [musl] 5830 - 5831 - '@oxfmt/linux-x64-gnu@0.27.0': 5832 - resolution: {integrity: sha512-EhvDfFHO1yrK/Cu75eU1U828lBsW2cV0JITOrka5AjR3PlmnQQ03Mr9ROkWkbPmzAMklXI4Q16eO+4n+7FhS1w==} 5833 - cpu: [x64] 5834 - os: [linux] 5835 - libc: [glibc] 5836 - 5837 - '@oxfmt/linux-x64-musl@0.27.0': 5838 - resolution: {integrity: sha512-1pgjuwMT5sCekuteYZ7LkDsto7DJouaccwjozHqdWohSj2zJpFeSP2rMaC+6JJ1KD5r9HG9sWRuHZGEaoX9uOw==} 5839 - cpu: [x64] 5840 - os: [linux] 5841 - libc: [musl] 5842 - 5843 - '@oxfmt/win32-arm64@0.27.0': 5844 - resolution: {integrity: sha512-mmuEhXZEhAYAeyjVTWwGKIA3RSb2b/He9wrXkDJPhmqp8qISUzkVg1dQmLEt4hD+wI5rzR+6vchPt521tzuRDA==} 5845 - cpu: [arm64] 5846 - os: [win32] 5847 - 5848 - '@oxfmt/win32-x64@0.27.0': 5849 - resolution: {integrity: sha512-cXKVkL1DuRq31QjwHqtBEUztyBmM9YZKdeFhsDLBURNdk1CFW42uWsmTsaqrXSoiCj7nCjfP0pwTOzxhQZra/A==} 5850 5885 cpu: [x64] 5851 5886 os: [win32] 5852 5887 ··· 7225 7260 '@standard-schema/spec@1.1.0': 7226 7261 resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} 7227 7262 7263 + '@stoplight/json@3.21.7': 7264 + resolution: {integrity: sha512-xcJXgKFqv/uCEgtGlPxy3tPA+4I+ZI4vAuMJ885+ThkTHFVkC+0Fm58lA9NlsyjnkpxFh4YiQWpH+KefHdbA0A==} 7265 + engines: {node: '>=8.3.0'} 7266 + 7267 + '@stoplight/ordered-object-literal@1.0.5': 7268 + resolution: {integrity: sha512-COTiuCU5bgMUtbIFBuyyh2/yVVzlr5Om0v5utQDgBCuQUOPgU1DwoffkTfg4UBQOvByi5foF4w4T+H9CoRe5wg==} 7269 + engines: {node: '>=8'} 7270 + 7271 + '@stoplight/path@1.3.2': 7272 + resolution: {integrity: sha512-lyIc6JUlUA8Ve5ELywPC8I2Sdnh1zc1zmbYgVarhXIp9YeAB0ReeqmGEOWNtlHkbP2DAA1AL65Wfn2ncjK/jtQ==} 7273 + engines: {node: '>=8'} 7274 + 7275 + '@stoplight/types@13.20.0': 7276 + resolution: {integrity: sha512-2FNTv05If7ib79VPDA/r9eUet76jewXFH2y2K5vuge6SXbRHtWBhcaRmu+6QpF4/WRNoJj5XYRSwLGXDxysBGA==} 7277 + engines: {node: ^12.20 || >=14.13} 7278 + 7228 7279 '@sveltejs/adapter-auto@4.0.0': 7229 7280 resolution: {integrity: sha512-kmuYSQdD2AwThymQF0haQhM8rE5rhutQXG4LNbnbShwhMO4qQGnKaaTy+88DuNSuoQDi58+thpq8XpHc1+oEKQ==} 7230 7281 peerDependencies: ··· 7261 7312 '@swc/core': '>= 1.13.3' 7262 7313 '@swc/types': '>= 0.1' 7263 7314 7264 - '@swc-node/register@1.11.1': 7265 - resolution: {integrity: sha512-VQ0hJ5jX31TVv/fhZx4xJRzd8pwn6VvzYd2tGOHHr2TfXGCBixZoqdPDXTiEoJLCTS2MmvBf6zyQZZ0M8aGQCQ==} 7315 + '@swc-node/register@1.10.10': 7316 + resolution: {integrity: sha512-jYWaI2WNEKz8KZL3sExd2KVL1JMma1/J7z+9iTpv0+fRN7LGMF8VTGGuHI2bug/ztpdZU1G44FG/Kk6ElXL9CQ==} 7266 7317 peerDependencies: 7267 7318 '@swc/core': '>= 1.4.13' 7268 7319 typescript: '>= 4.3' 7269 7320 7270 - '@swc-node/sourcemap-support@0.6.1': 7271 - resolution: {integrity: sha512-ovltDVH5QpdHXZkW138vG4+dgcNsxfwxHVoV6BtmTbz2KKl1A8ZSlbdtxzzfNjCjbpayda8Us9eMtcHobm38dA==} 7321 + '@swc-node/sourcemap-support@0.5.1': 7322 + resolution: {integrity: sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==} 7323 + 7324 + '@swc/core-darwin-arm64@1.11.29': 7325 + resolution: {integrity: sha512-whsCX7URzbuS5aET58c75Dloby3Gtj/ITk2vc4WW6pSDQKSPDuONsIcZ7B2ng8oz0K6ttbi4p3H/PNPQLJ4maQ==} 7326 + engines: {node: '>=10'} 7327 + cpu: [arm64] 7328 + os: [darwin] 7272 7329 7273 7330 '@swc/core-darwin-arm64@1.15.18': 7274 7331 resolution: {integrity: sha512-+mIv7uBuSaywN3C9LNuWaX1jJJ3SKfiJuE6Lr3bd+/1Iv8oMU7oLBjYMluX1UrEPzwN2qCdY6Io0yVicABoCwQ==} ··· 7276 7333 cpu: [arm64] 7277 7334 os: [darwin] 7278 7335 7336 + '@swc/core-darwin-x64@1.11.29': 7337 + resolution: {integrity: sha512-S3eTo/KYFk+76cWJRgX30hylN5XkSmjYtCBnM4jPLYn7L6zWYEPajsFLmruQEiTEDUg0gBEWLMNyUeghtswouw==} 7338 + engines: {node: '>=10'} 7339 + cpu: [x64] 7340 + os: [darwin] 7341 + 7279 7342 '@swc/core-darwin-x64@1.15.18': 7280 7343 resolution: {integrity: sha512-wZle0eaQhnzxWX5V/2kEOI6Z9vl/lTFEC6V4EWcn+5pDjhemCpQv9e/TDJ0GIoiClX8EDWRvuZwh+Z3dhL1NAg==} 7281 7344 engines: {node: '>=10'} 7282 7345 cpu: [x64] 7283 7346 os: [darwin] 7284 7347 7348 + '@swc/core-linux-arm-gnueabihf@1.11.29': 7349 + resolution: {integrity: sha512-o9gdshbzkUMG6azldHdmKklcfrcMx+a23d/2qHQHPDLUPAN+Trd+sDQUYArK5Fcm7TlpG4sczz95ghN0DMkM7g==} 7350 + engines: {node: '>=10'} 7351 + cpu: [arm] 7352 + os: [linux] 7353 + 7285 7354 '@swc/core-linux-arm-gnueabihf@1.15.18': 7286 7355 resolution: {integrity: sha512-ao61HGXVqrJFHAcPtF4/DegmwEkVCo4HApnotLU8ognfmU8x589z7+tcf3hU+qBiU1WOXV5fQX6W9Nzs6hjxDw==} 7287 7356 engines: {node: '>=10'} 7288 7357 cpu: [arm] 7289 7358 os: [linux] 7359 + 7360 + '@swc/core-linux-arm64-gnu@1.11.29': 7361 + resolution: {integrity: sha512-sLoaciOgUKQF1KX9T6hPGzvhOQaJn+3DHy4LOHeXhQqvBgr+7QcZ+hl4uixPKTzxk6hy6Hb0QOvQEdBAAR1gXw==} 7362 + engines: {node: '>=10'} 7363 + cpu: [arm64] 7364 + os: [linux] 7365 + libc: [glibc] 7290 7366 7291 7367 '@swc/core-linux-arm64-gnu@1.15.18': 7292 7368 resolution: {integrity: sha512-3xnctOBLIq3kj8PxOCgPrGjBLP/kNOddr6f5gukYt/1IZxsITQaU9TDyjeX6jG+FiCIHjCuWuffsyQDL5Ew1bg==} ··· 7295 7371 os: [linux] 7296 7372 libc: [glibc] 7297 7373 7374 + '@swc/core-linux-arm64-musl@1.11.29': 7375 + resolution: {integrity: sha512-PwjB10BC0N+Ce7RU/L23eYch6lXFHz7r3NFavIcwDNa/AAqywfxyxh13OeRy+P0cg7NDpWEETWspXeI4Ek8otw==} 7376 + engines: {node: '>=10'} 7377 + cpu: [arm64] 7378 + os: [linux] 7379 + libc: [musl] 7380 + 7298 7381 '@swc/core-linux-arm64-musl@1.15.18': 7299 7382 resolution: {integrity: sha512-0a+Lix+FSSHBSBOA0XznCcHo5/1nA6oLLjcnocvzXeqtdjnPb+SvchItHI+lfeiuj1sClYPDvPMLSLyXFaiIKw==} 7300 7383 engines: {node: '>=10'} ··· 7302 7385 os: [linux] 7303 7386 libc: [musl] 7304 7387 7388 + '@swc/core-linux-x64-gnu@1.11.29': 7389 + resolution: {integrity: sha512-i62vBVoPaVe9A3mc6gJG07n0/e7FVeAvdD9uzZTtGLiuIfVfIBta8EMquzvf+POLycSk79Z6lRhGPZPJPYiQaA==} 7390 + engines: {node: '>=10'} 7391 + cpu: [x64] 7392 + os: [linux] 7393 + libc: [glibc] 7394 + 7305 7395 '@swc/core-linux-x64-gnu@1.15.18': 7306 7396 resolution: {integrity: sha512-wG9J8vReUlpaHz4KOD/5UE1AUgirimU4UFT9oZmupUDEofxJKYb1mTA/DrMj0s78bkBiNI+7Fo2EgPuvOJfuAA==} 7307 7397 engines: {node: '>=10'} ··· 7309 7399 os: [linux] 7310 7400 libc: [glibc] 7311 7401 7402 + '@swc/core-linux-x64-musl@1.11.29': 7403 + resolution: {integrity: sha512-YER0XU1xqFdK0hKkfSVX1YIyCvMDI7K07GIpefPvcfyNGs38AXKhb2byySDjbVxkdl4dycaxxhRyhQ2gKSlsFQ==} 7404 + engines: {node: '>=10'} 7405 + cpu: [x64] 7406 + os: [linux] 7407 + libc: [musl] 7408 + 7312 7409 '@swc/core-linux-x64-musl@1.15.18': 7313 7410 resolution: {integrity: sha512-4nwbVvCphKzicwNWRmvD5iBaZj8JYsRGa4xOxJmOyHlMDpsvvJ2OR2cODlvWyGFH6BYL1MfIAK3qph3hp0Az6g==} 7314 7411 engines: {node: '>=10'} ··· 7316 7413 os: [linux] 7317 7414 libc: [musl] 7318 7415 7416 + '@swc/core-win32-arm64-msvc@1.11.29': 7417 + resolution: {integrity: sha512-po+WHw+k9g6FAg5IJ+sMwtA/fIUL3zPQ4m/uJgONBATCVnDDkyW6dBA49uHNVtSEvjvhuD8DVWdFP847YTcITw==} 7418 + engines: {node: '>=10'} 7419 + cpu: [arm64] 7420 + os: [win32] 7421 + 7319 7422 '@swc/core-win32-arm64-msvc@1.15.18': 7320 7423 resolution: {integrity: sha512-zk0RYO+LjiBCat2RTMHzAWaMky0cra9loH4oRrLKLLNuL+jarxKLFDA8xTZWEkCPLjUTwlRN7d28eDLLMgtUcQ==} 7321 7424 engines: {node: '>=10'} 7322 7425 cpu: [arm64] 7323 7426 os: [win32] 7324 7427 7428 + '@swc/core-win32-ia32-msvc@1.11.29': 7429 + resolution: {integrity: sha512-h+NjOrbqdRBYr5ItmStmQt6x3tnhqgwbj9YxdGPepbTDamFv7vFnhZR0YfB3jz3UKJ8H3uGJ65Zw1VsC+xpFkg==} 7430 + engines: {node: '>=10'} 7431 + cpu: [ia32] 7432 + os: [win32] 7433 + 7325 7434 '@swc/core-win32-ia32-msvc@1.15.18': 7326 7435 resolution: {integrity: sha512-yVuTrZ0RccD5+PEkpcLOBAuPbYBXS6rslENvIXfvJGXSdX5QGi1ehC4BjAMl5FkKLiam4kJECUI0l7Hq7T1vwg==} 7327 7436 engines: {node: '>=10'} 7328 7437 cpu: [ia32] 7329 7438 os: [win32] 7330 7439 7440 + '@swc/core-win32-x64-msvc@1.11.29': 7441 + resolution: {integrity: sha512-Q8cs2BDV9wqDvqobkXOYdC+pLUSEpX/KvI0Dgfun1F+LzuLotRFuDhrvkU9ETJA6OnD2+Fn/ieHgloiKA/Mn/g==} 7442 + engines: {node: '>=10'} 7443 + cpu: [x64] 7444 + os: [win32] 7445 + 7331 7446 '@swc/core-win32-x64-msvc@1.15.18': 7332 7447 resolution: {integrity: sha512-7NRmE4hmUQNCbYU3Hn9Tz57mK9Qq4c97ZS+YlamlK6qG9Fb5g/BB3gPDe0iLlJkns/sYv2VWSkm8c3NmbEGjbg==} 7333 7448 engines: {node: '>=10'} 7334 7449 cpu: [x64] 7335 7450 os: [win32] 7336 7451 7452 + '@swc/core@1.11.29': 7453 + resolution: {integrity: sha512-g4mThMIpWbNhV8G2rWp5a5/Igv8/2UFRJx2yImrLGMgrDDYZIopqZ/z0jZxDgqNA1QDx93rpwNF7jGsxVWcMlA==} 7454 + engines: {node: '>=10'} 7455 + peerDependencies: 7456 + '@swc/helpers': '>=0.5.17' 7457 + peerDependenciesMeta: 7458 + '@swc/helpers': 7459 + optional: true 7460 + 7337 7461 '@swc/core@1.15.18': 7338 7462 resolution: {integrity: sha512-z87aF9GphWp//fnkRsqvtY+inMVPgYW3zSlXH1kJFvRT5H/wiAn+G32qW5l3oEk63KSF1x3Ov0BfHCObAmT8RA==} 7339 7463 engines: {node: '>=10'} ··· 7448 7572 '@vue/composition-api': 7449 7573 optional: true 7450 7574 7451 - '@tokenizer/inflate@0.4.1': 7452 - resolution: {integrity: sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA==} 7453 - engines: {node: '>=18'} 7454 - 7455 - '@tokenizer/token@0.3.0': 7456 - resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} 7457 - 7458 7575 '@tsconfig/node10@1.0.11': 7459 7576 resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} 7460 7577 ··· 7574 7691 '@types/express@4.17.21': 7575 7692 resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} 7576 7693 7694 + '@types/har-format@1.2.16': 7695 + resolution: {integrity: sha512-fluxdy7ryD3MV6h8pTfTYpy/xQzCFC7m89nOH9y94cNqJ1mDIDPut7MnRHI3F6qRmh/cT2fUjG1MLdCNb4hE9A==} 7696 + 7577 7697 '@types/hast@3.0.4': 7578 7698 resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 7579 7699 ··· 7667 7787 7668 7788 '@types/sockjs@0.3.36': 7669 7789 resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} 7790 + 7791 + '@types/statuses@2.0.6': 7792 + resolution: {integrity: sha512-xMAgYwceFhRA2zY+XbEA7mxYbA093wdiW8Vu6gZPGWy9cmOyU9XesH1tNcEWsKFd5Vzrqx5T3D38PWx1FIIXkA==} 7670 7793 7671 7794 '@types/tough-cookie@4.0.5': 7672 7795 resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} ··· 8077 8200 '@vitest/browser': 8078 8201 optional: true 8079 8202 8080 - '@vitest/expect@4.0.18': 8081 - resolution: {integrity: sha512-8sCWUyckXXYvx4opfzVY03EOiYVxyNrHS5QxX3DAIi5dpJAAkyJezHCP77VMX4HKA2LDT/Jpfo8i2r5BE3GnQQ==} 8082 - 8083 8203 '@vitest/expect@4.1.0': 8084 8204 resolution: {integrity: sha512-EIxG7k4wlWweuCLG9Y5InKFwpMEOyrMb6ZJ1ihYu02LVj/bzUwn2VMU+13PinsjRW75XnITeFrQBMH5+dLvCDA==} 8085 8205 8086 - '@vitest/mocker@4.0.18': 8087 - resolution: {integrity: sha512-HhVd0MDnzzsgevnOWCBj5Otnzobjy5wLBe4EdeeFGv8luMsGcYqDuFRMcttKWZA5vVO8RFjexVovXvAM4JoJDQ==} 8088 - peerDependencies: 8089 - msw: ^2.4.9 8090 - vite: ^6.0.0 || ^7.0.0-0 8091 - peerDependenciesMeta: 8092 - msw: 8093 - optional: true 8094 - vite: 8095 - optional: true 8096 - 8097 8206 '@vitest/mocker@4.1.0': 8098 8207 resolution: {integrity: sha512-evxREh+Hork43+Y4IOhTo+h5lGmVRyjqI739Rz4RlUPqwrkFFDF6EMvOOYjTx4E8Tl6gyCLRL8Mu7Ry12a13Tw==} 8099 8208 peerDependencies: ··· 8104 8213 optional: true 8105 8214 vite: 8106 8215 optional: true 8107 - 8108 - '@vitest/pretty-format@4.0.18': 8109 - resolution: {integrity: sha512-P24GK3GulZWC5tz87ux0m8OADrQIUVDPIjjj65vBXYG17ZeU3qD7r+MNZ1RNv4l8CGU2vtTRqixrOi9fYk/yKw==} 8110 8216 8111 8217 '@vitest/pretty-format@4.1.0': 8112 8218 resolution: {integrity: sha512-3RZLZlh88Ib0J7NQTRATfc/3ZPOnSUn2uDBUoGNn5T36+bALixmzphN26OUD3LRXWkJu4H0s5vvUeqBiw+kS0A==} 8113 8219 8114 - '@vitest/runner@4.0.18': 8115 - resolution: {integrity: sha512-rpk9y12PGa22Jg6g5M3UVVnTS7+zycIGk9ZNGN+m6tZHKQb7jrP7/77WfZy13Y/EUDd52NDsLRQhYKtv7XfPQw==} 8116 - 8117 8220 '@vitest/runner@4.1.0': 8118 8221 resolution: {integrity: sha512-Duvx2OzQ7d6OjchL+trw+aSrb9idh7pnNfxrklo14p3zmNL4qPCDeIJAK+eBKYjkIwG96Bc6vYuxhqDXQOWpoQ==} 8119 - 8120 - '@vitest/snapshot@4.0.18': 8121 - resolution: {integrity: sha512-PCiV0rcl7jKQjbgYqjtakly6T1uwv/5BQ9SwBLekVg/EaYeQFPiXcgrC2Y7vDMA8dM1SUEAEV82kgSQIlXNMvA==} 8122 8222 8123 8223 '@vitest/snapshot@4.1.0': 8124 8224 resolution: {integrity: sha512-0Vy9euT1kgsnj1CHttwi9i9o+4rRLEaPRSOJ5gyv579GJkNpgJK+B4HSv/rAWixx2wdAFci1X4CEPjiu2bXIMg==} 8125 8225 8126 - '@vitest/spy@4.0.18': 8127 - resolution: {integrity: sha512-cbQt3PTSD7P2OARdVW3qWER5EGq7PHlvE+QfzSC0lbwO+xnt7+XH06ZzFjFRgzUX//JmpxrCu92VdwvEPlWSNw==} 8128 - 8129 8226 '@vitest/spy@4.1.0': 8130 8227 resolution: {integrity: sha512-pz77k+PgNpyMDv2FV6qmk5ZVau6c3R8HC8v342T2xlFxQKTrSeYw9waIJG8KgV9fFwAtTu4ceRzMivPTH6wSxw==} 8131 - 8132 - '@vitest/utils@4.0.18': 8133 - resolution: {integrity: sha512-msMRKLMVLWygpK3u2Hybgi4MNjcYJvwTb0Ru09+fOyCXIgT5raYP041DRRdiJiI3k/2U6SEbAETB3YtBrUkCFA==} 8134 8228 8135 8229 '@vitest/utils@4.1.0': 8136 8230 resolution: {integrity: sha512-XfPXT6a8TZY3dcGY8EdwsBulFCIw+BeeX0RZn2x/BtiY/75YGh8FeWGG8QISN/WhaqSrE2OrlDgtF8q5uhOTmw==} ··· 8497 8591 8498 8592 '@yarnpkg/lockfile@1.1.0': 8499 8593 resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} 8594 + 8595 + '@yellow-ticket/seed-json-schema@0.1.7': 8596 + resolution: {integrity: sha512-OQkwqMt6VMMExa74b6ODrDwMyvTAQ4wXXodb0kJuQhI1DkhFm4PIUwj9D1foE5gZwfyGlogtTZsjhyQzhwkyyg==} 8500 8597 8501 8598 abbrev@2.0.0: 8502 8599 resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} ··· 9264 9361 concat-map@0.0.1: 9265 9362 resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 9266 9363 9267 - concat-stream@2.0.0: 9268 - resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} 9269 - engines: {'0': node >= 6.0} 9364 + concat-stream@1.6.2: 9365 + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} 9366 + engines: {'0': node >= 0.8} 9270 9367 9271 9368 confbox@0.1.8: 9272 9369 resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} ··· 9594 9691 supports-color: 9595 9692 optional: true 9596 9693 9694 + debug@4.3.6: 9695 + resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} 9696 + engines: {node: '>=6.0'} 9697 + peerDependencies: 9698 + supports-color: '*' 9699 + peerDependenciesMeta: 9700 + supports-color: 9701 + optional: true 9702 + 9597 9703 debug@4.3.7: 9598 9704 resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 9599 9705 engines: {node: '>=6.0'} ··· 9835 9941 resolution: {integrity: sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==} 9836 9942 engines: {node: '>=12'} 9837 9943 9944 + drange@1.1.1: 9945 + resolution: {integrity: sha512-pYxfDYpued//QpnLIm4Avk7rsNtAtQkUES2cwAYSvD/wd2pKD71gN2Ebj3e7klzXwjocvE8c5vx/1fxwpqmSxA==} 9946 + engines: {node: '>=4'} 9947 + 9838 9948 dts-resolver@2.1.3: 9839 9949 resolution: {integrity: sha512-bihc7jPC90VrosXNzK0LTE2cuLP6jr0Ro8jk+kMugHReJVLIpHz/xadeq3MhuwyO4TD4OA3L1Q8pBBFRc08Tsw==} 9840 9950 engines: {node: '>=20.19.0'} ··· 10223 10333 resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} 10224 10334 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 10225 10335 10226 - eslint@9.17.0: 10227 - resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==} 10228 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 10229 - hasBin: true 10230 - peerDependencies: 10231 - jiti: '*' 10232 - peerDependenciesMeta: 10233 - jiti: 10234 - optional: true 10235 - 10236 - eslint@9.39.1: 10237 - resolution: {integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==} 10238 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 10239 - hasBin: true 10240 - peerDependencies: 10241 - jiti: '*' 10242 - peerDependenciesMeta: 10243 - jiti: 10244 - optional: true 10245 - 10246 10336 eslint@9.39.2: 10247 10337 resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==} 10248 10338 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} ··· 10340 10430 resolution: {integrity: sha512-jpWzZ1ZhwUmeWRhS7Qv3mhpOhLfwI+uAX4e5fOcXqwMR7EcJ0pj2kV1CVzHVMX/LphnKWD3LObjZCoJ71lKpHw==} 10341 10431 engines: {node: ^18.19.0 || >=20.5.0} 10342 10432 10343 - expect-type@1.2.2: 10344 - resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==} 10345 - engines: {node: '>=12.0.0'} 10346 - 10347 10433 expect-type@1.3.0: 10348 10434 resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} 10349 10435 engines: {node: '>=12.0.0'} ··· 10364 10450 express@4.21.2: 10365 10451 resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==} 10366 10452 engines: {node: '>= 0.10.0'} 10453 + 10454 + express@5.0.1: 10455 + resolution: {integrity: sha512-ORF7g6qGnD+YtUG9yx4DFoqCShNMmUKiXuT5oWMHiOvt/4WFbHC6yCwQMTSBMno7AqntNCAzzcnnjowRkTL9eQ==} 10456 + engines: {node: '>= 18'} 10367 10457 10368 10458 express@5.2.1: 10369 10459 resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==} ··· 10486 10576 resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 10487 10577 engines: {node: '>=16.0.0'} 10488 10578 10489 - file-type@21.3.0: 10490 - resolution: {integrity: sha512-8kPJMIGz1Yt/aPEwOsrR97ZyZaD1Iqm8PClb1nYFclUCkBi0Ma5IsYNQzvSFS9ib51lWyIw5mIT9rWzI/xjpzA==} 10491 - engines: {node: '>=20'} 10492 - 10493 10579 file-uri-to-path@1.0.0: 10494 10580 resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} 10495 10581 ··· 10797 10883 graphemer@1.4.0: 10798 10884 resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 10799 10885 10886 + graphql@16.13.1: 10887 + resolution: {integrity: sha512-gGgrVCoDKlIZ8fIqXBBb0pPKqDgki0Z/FSKNiQzSGj2uEYHr1tq5wmBegGwJx6QB5S5cM0khSBpi/JFHMCvsmQ==} 10888 + engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} 10889 + 10800 10890 gray-matter@4.0.3: 10801 10891 resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} 10802 10892 engines: {node: '>=6.0'} ··· 10859 10949 hast-util-whitespace@3.0.0: 10860 10950 resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 10861 10951 10952 + headers-polyfill@4.0.3: 10953 + resolution: {integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==} 10954 + 10862 10955 highlight.js@10.7.3: 10863 10956 resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} 10864 10957 ··· 11220 11313 resolution: {integrity: sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==} 11221 11314 engines: {node: '>=16'} 11222 11315 11316 + is-node-process@1.2.0: 11317 + resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} 11318 + 11223 11319 is-number-object@1.1.1: 11224 11320 resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} 11225 11321 engines: {node: '>= 0.4'} ··· 11519 11615 resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 11520 11616 engines: {node: '>=6'} 11521 11617 hasBin: true 11618 + 11619 + jsonc-parser@2.2.1: 11620 + resolution: {integrity: sha512-o6/yDBYccGvTz1+QFevz6l6OBZ2+fMVu2JZ9CIhzsYRX4mjaK5IyX9eldUdCmga16zlgQxyrj5pt9kzuj2C02w==} 11522 11621 11523 11622 jsonc-parser@3.3.1: 11524 11623 resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} ··· 11698 11797 resolution: {integrity: sha512-+Y2DqovevLkb6DrSQ6SXTYLEd6kvlRbhsxzgJrk7BUfOVA/mt21ak6pFDZDKxiAczHMWxrb02kXBTSTIA0O94A==} 11699 11798 hasBin: true 11700 11799 11701 - load-esm@1.0.3: 11702 - resolution: {integrity: sha512-v5xlu8eHD1+6r8EHTg6hfmO97LN8ugKtiXcy5e6oN72iD2r6u0RPfLl6fxM+7Wnh2ZRq15o0russMst44WauPA==} 11703 - engines: {node: '>=13.2.0'} 11704 - 11705 11800 load-tsconfig@0.2.5: 11706 11801 resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} 11707 11802 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} ··· 12204 12299 ms@2.0.0: 12205 12300 resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 12206 12301 12302 + ms@2.1.2: 12303 + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 12304 + 12207 12305 ms@2.1.3: 12208 12306 resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 12209 12307 ··· 12214 12312 msgpackr@1.11.5: 12215 12313 resolution: {integrity: sha512-UjkUHN0yqp9RWKy0Lplhh+wlpdt9oQBYgULZOiFhV3VclSF1JnSQWZ5r9gORQlNYaUKQoR8itv7g7z1xDDuACA==} 12216 12314 12315 + msw@2.12.14: 12316 + resolution: {integrity: sha512-4KXa4nVBIBjbDbd7vfQNuQ25eFxug0aropCQFoI0JdOBuJWamkT1yLVIWReFI8SiTRc+H1hKzaNk+cLk2N9rtQ==} 12317 + engines: {node: '>=18'} 12318 + hasBin: true 12319 + peerDependencies: 12320 + typescript: '>= 4.8.x' 12321 + peerDependenciesMeta: 12322 + typescript: 12323 + optional: true 12324 + 12217 12325 muggle-string@0.4.1: 12218 12326 resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} 12219 12327 12220 - multer@2.1.1: 12221 - resolution: {integrity: sha512-mo+QTzKlx8R7E5ylSXxWzGoXoZbOsRMpyitcht8By2KHvMbf3tjwosZ/Mu/XYU6UuJ3VZnODIrak5ZrPiPyB6A==} 12222 - engines: {node: '>= 10.16.0'} 12328 + multer@1.4.5-lts.1: 12329 + resolution: {integrity: sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==} 12330 + engines: {node: '>= 6.0.0'} 12331 + deprecated: Multer 1.x is impacted by a number of vulnerabilities, which have been patched in 2.x. You should upgrade to the latest 2.x version. 12223 12332 12224 12333 multicast-dns@7.2.5: 12225 12334 resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} ··· 12663 12772 outdent@0.5.0: 12664 12773 resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} 12665 12774 12775 + outvariant@1.4.3: 12776 + resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==} 12777 + 12666 12778 own-keys@1.0.1: 12667 12779 resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} 12668 12780 engines: {node: '>= 0.4'} ··· 12678 12790 oxc-resolver@11.19.1: 12679 12791 resolution: {integrity: sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg==} 12680 12792 12793 + oxc-resolver@5.3.0: 12794 + resolution: {integrity: sha512-FHqtZx0idP5QRPSNcI5g2ItmADg7fhR3XIeWg5eRMGfp44xqRpfkdvo+EX4ZceqV9bxvl0Z8vaqMqY0gYaNYNA==} 12795 + 12681 12796 oxc-transform@0.110.0: 12682 12797 resolution: {integrity: sha512-/fymQNzzUoKZweH0nC5yvbI2eR0yWYusT9TEKDYVgOgYrf9Qmdez9lUFyvxKR9ycx+PTHi/reIOzqf3wkShQsw==} 12683 12798 engines: {node: ^20.19.0 || >=22.12.0} ··· 12687 12802 peerDependencies: 12688 12803 oxc-parser: '>=0.98.0' 12689 12804 12690 - oxfmt@0.27.0: 12691 - resolution: {integrity: sha512-FHR0HR3WeMKBuVEQvW3EeiRZXs/cQzNHxGbhCoAIEPr1FVcOa9GCqrKJXPqv2jkzmCg6Wqot+DvN9RzemyFJhw==} 12692 - engines: {node: ^20.19.0 || >=22.12.0} 12693 - hasBin: true 12694 - 12695 12805 oxfmt@0.41.0: 12696 12806 resolution: {integrity: sha512-sKLdJZdQ3bw6x9qKiT7+eID4MNEXlDHf5ZacfIircrq6Qwjk0L6t2/JQlZZrVHTXJawK3KaMuBoJnEJPcqCEdg==} 12697 12807 engines: {node: ^20.19.0 || >=22.12.0} ··· 12868 12978 12869 12979 path-to-regexp@6.3.0: 12870 12980 resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==} 12981 + 12982 + path-to-regexp@8.2.0: 12983 + resolution: {integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==} 12984 + engines: {node: '>=16'} 12871 12985 12872 12986 path-to-regexp@8.3.0: 12873 12987 resolution: {integrity: sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==} ··· 13418 13532 radix3@1.1.2: 13419 13533 resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 13420 13534 13535 + randexp@0.5.3: 13536 + resolution: {integrity: sha512-U+5l2KrcMNOUPYvazA3h5ekF80FHTUG+87SEAmHZmolh1M+i/WyTCxVzmi+tidIa1tM4BSe8g2Y/D3loWDjj+w==} 13537 + engines: {node: '>=4'} 13538 + 13421 13539 randombytes@2.1.0: 13422 13540 resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} 13423 13541 ··· 13656 13774 resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} 13657 13775 engines: {node: '>=18'} 13658 13776 13777 + ret@0.2.2: 13778 + resolution: {integrity: sha512-M0b3YWQs7R3Z917WRQy1HHA7Ba7D8hvZg6UE5mLykJxQVE2ju0IXbGlaHPPlkY+WN7wFP+wUMXmBFA0aV6vYGQ==} 13779 + engines: {node: '>=4'} 13780 + 13659 13781 ret@0.5.0: 13660 13782 resolution: {integrity: sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==} 13661 13783 engines: {node: '>=10'} ··· 13667 13789 retry@0.13.1: 13668 13790 resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} 13669 13791 engines: {node: '>= 4'} 13792 + 13793 + rettime@0.10.1: 13794 + resolution: {integrity: sha512-uyDrIlUEH37cinabq0AX4QbgV4HbFZ/gqoiunWQ1UqBtRvTTytwhNYjE++pO/MjPTZL5KQCf2bEoJ/BJNVQ5Kw==} 13670 13795 13671 13796 reusify@1.1.0: 13672 13797 resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} ··· 13806 13931 13807 13932 safe-regex2@5.0.0: 13808 13933 resolution: {integrity: sha512-YwJwe5a51WlK7KbOJREPdjNrpViQBI3p4T50lfwPuDhZnE3XGVTlGvi+aolc5+RvxDD6bnUmjVsU9n1eboLUYw==} 13934 + 13935 + safe-stable-stringify@1.1.1: 13936 + resolution: {integrity: sha512-ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw==} 13809 13937 13810 13938 safe-stable-stringify@2.5.0: 13811 13939 resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} ··· 14213 14341 streamx@2.22.1: 14214 14342 resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==} 14215 14343 14344 + strict-event-emitter@0.5.1: 14345 + resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==} 14346 + 14216 14347 string-argv@0.3.2: 14217 14348 resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} 14218 14349 engines: {node: '>=0.6.19'} ··· 14301 14432 14302 14433 strip-literal@3.1.0: 14303 14434 resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} 14304 - 14305 - strtok3@10.3.4: 14306 - resolution: {integrity: sha512-KIy5nylvC5le1OdaaoCJ07L+8iQzJHGH6pWDuzS+d07Cu7n1MZ2x26P8ZKIWfbK02+XIL8Mp4RkWeqdUCrDMfg==} 14307 - engines: {node: '>=18'} 14308 14435 14309 14436 structured-clone-es@1.0.0: 14310 14437 resolution: {integrity: sha512-FL8EeKFFyNQv5cMnXI31CIMCsFarSVI2bF0U0ImeNE3g/F1IvJQyqzOXxPBRXiwQfyBTlbNe88jh1jFW0O/jiQ==} ··· 14522 14649 resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 14523 14650 engines: {node: '>=12.0.0'} 14524 14651 14525 - tinypool@2.0.0: 14526 - resolution: {integrity: sha512-/RX9RzeH2xU5ADE7n2Ykvmi9ED3FBGPAjw9u3zucrNNaEBIO0HPSYgL0NT7+3p147ojeSdaVu08F6hjpv31HJg==} 14527 - engines: {node: ^20.0.0 || >=22.0.0} 14528 - 14529 14652 tinypool@2.1.0: 14530 14653 resolution: {integrity: sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==} 14531 14654 engines: {node: ^20.0.0 || >=22.0.0} ··· 14559 14682 toidentifier@1.0.1: 14560 14683 resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 14561 14684 engines: {node: '>=0.6'} 14562 - 14563 - token-types@6.1.2: 14564 - resolution: {integrity: sha512-dRXchy+C0IgK8WPC6xvCHFRIWYUbqqdEIKPaKo/AcTUNzwLTK6AH7RjdLWsEZcAN/TBdtfUw3PYEgPr5VPr6ww==} 14565 - engines: {node: '>=14.16'} 14566 14685 14567 14686 tokenx@1.3.0: 14568 14687 resolution: {integrity: sha512-NLdXTEZkKiO0gZuLtMoZKjCXTREXeZZt8nnnNeyoXtNZAfG/GKGSbQtLU5STspc0rMSwcA+UJfWZkbNU01iKmQ==} ··· 14804 14923 resolution: {integrity: sha512-u3xV3X7uzvi5b1MncmZo3i2Aw222Zk1keqLA1YkHldREkAhAqi65wuPfe7lHx8H/Wzy+8CE7S7uS3jekIM5s8g==} 14805 14924 engines: {node: '>=8'} 14806 14925 14807 - uint8array-extras@1.5.0: 14808 - resolution: {integrity: sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==} 14809 - engines: {node: '>=18'} 14810 - 14811 14926 ultrahtml@1.6.0: 14812 14927 resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} 14813 14928 ··· 14950 15065 resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} 14951 15066 engines: {node: '>= 0.8'} 14952 15067 14953 - unplugin-swc@1.5.9: 14954 - resolution: {integrity: sha512-RKwK3yf0M+MN17xZfF14bdKqfx0zMXYdtOdxLiE6jHAoidupKq3jGdJYANyIM1X/VmABhh1WpdO+/f4+Ol89+g==} 15068 + unplugin-swc@1.5.5: 15069 + resolution: {integrity: sha512-BahYtYvQ/KSgOqHoy5FfQgp/oZNAB7jwERxNeFVeN/PtJhg4fpK/ybj9OwKtqGPseOadS7+TGbq6tH2DmDAYvA==} 14955 15070 peerDependencies: 14956 15071 '@swc/core': ^1.2.108 14957 15072 ··· 15139 15254 uploadthing: 15140 15255 optional: true 15141 15256 15257 + until-async@3.0.2: 15258 + resolution: {integrity: sha512-IiSk4HlzAMqTUseHHe3VhIGyuFmN90zMTpD3Z3y8jeQbzLIq500MVM7Jq2vUAnTKAFPJrqwkzr6PoTcPhGcOiw==} 15259 + 15142 15260 untun@0.1.3: 15143 15261 resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==} 15144 15262 hasBin: true ··· 15208 15326 15209 15327 util-deprecate@1.0.2: 15210 15328 resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 15329 + 15330 + utility-types@3.11.0: 15331 + resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==} 15332 + engines: {node: '>= 4'} 15211 15333 15212 15334 utils-merge@1.0.1: 15213 15335 resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} ··· 15535 15657 vitest-environment-nuxt@1.0.1: 15536 15658 resolution: {integrity: sha512-eBCwtIQriXW5/M49FjqNKfnlJYlG2LWMSNFsRVKomc8CaMqmhQPBS5LZ9DlgYL9T8xIVsiA6RZn2lk7vxov3Ow==} 15537 15659 15538 - vitest@4.0.18: 15539 - resolution: {integrity: sha512-hOQuK7h0FGKgBAas7v0mSAsnvrIgAvWmRFjmzpJ7SwFHH3g1k2u37JtYwOwmEKhK6ZO3v9ggDBBm0La1LCK4uQ==} 15540 - engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} 15541 - hasBin: true 15542 - peerDependencies: 15543 - '@edge-runtime/vm': '*' 15544 - '@opentelemetry/api': ^1.9.0 15545 - '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 15546 - '@vitest/browser-playwright': 4.0.18 15547 - '@vitest/browser-preview': 4.0.18 15548 - '@vitest/browser-webdriverio': 4.0.18 15549 - '@vitest/ui': 4.0.18 15550 - happy-dom: '*' 15551 - jsdom: '*' 15552 - peerDependenciesMeta: 15553 - '@edge-runtime/vm': 15554 - optional: true 15555 - '@opentelemetry/api': 15556 - optional: true 15557 - '@types/node': 15558 - optional: true 15559 - '@vitest/browser-playwright': 15560 - optional: true 15561 - '@vitest/browser-preview': 15562 - optional: true 15563 - '@vitest/browser-webdriverio': 15564 - optional: true 15565 - '@vitest/ui': 15566 - optional: true 15567 - happy-dom: 15568 - optional: true 15569 - jsdom: 15570 - optional: true 15571 - 15572 15660 vitest@4.1.0: 15573 15661 resolution: {integrity: sha512-YbDrMF9jM2Lqc++2530UourxZHmkKLxrs4+mYhEwqWS97WJ7wOYEkcr+QfRgJ3PW9wz3odRijLZjHEaRLTNbqw==} 15574 15662 engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} ··· 15943 16031 xmlchars@2.2.0: 15944 16032 resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} 15945 16033 16034 + xtend@4.0.2: 16035 + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 16036 + engines: {node: '>=0.4'} 16037 + 15946 16038 y18n@5.0.8: 15947 16039 resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 15948 16040 engines: {node: '>=10'} ··· 16160 16252 transitivePeerDependencies: 16161 16253 - chokidar 16162 16254 16163 - '@angular-devkit/build-angular@21.1.2(b9fcfc698b20164011953e0b05a5c087)': 16255 + '@angular-devkit/build-angular@21.1.2(b0adb2eb4671a686a9409000aca50fdf)': 16164 16256 dependencies: 16165 16257 '@ampproject/remapping': 2.3.0 16166 16258 '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) 16167 16259 '@angular-devkit/build-webpack': 0.2101.2(chokidar@5.0.0)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1(@swc/core@1.15.18)(esbuild@0.27.2)))(webpack@5.104.1(@swc/core@1.15.18)(esbuild@0.27.2)) 16168 16260 '@angular-devkit/core': 21.1.2(chokidar@5.0.0) 16169 - '@angular/build': 21.1.2(715bbcce77c47a418ef6cc48ef7ededc) 16261 + '@angular/build': 21.1.2(c61f5a4471c856746a2fa4de08e90517) 16170 16262 '@angular/compiler-cli': 21.1.2(@angular/compiler@21.1.2)(typescript@5.9.3) 16171 16263 '@babel/core': 7.28.5 16172 16264 '@babel/generator': 7.28.5 ··· 16249 16341 - webpack-cli 16250 16342 - yaml 16251 16343 16252 - '@angular-devkit/build-angular@21.1.2(bfb22c0d38474de5255b56daa3b8edae)': 16344 + '@angular-devkit/build-angular@21.1.2(bce736dd892461a752d981a601516c23)': 16253 16345 dependencies: 16254 16346 '@ampproject/remapping': 2.3.0 16255 16347 '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) 16256 16348 '@angular-devkit/build-webpack': 0.2101.2(chokidar@5.0.0)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1(@swc/core@1.15.18)(esbuild@0.27.2)))(webpack@5.104.1(@swc/core@1.15.18)(esbuild@0.27.2)) 16257 16349 '@angular-devkit/core': 21.1.2(chokidar@5.0.0) 16258 - '@angular/build': 21.1.2(4ae04ca60d5e69e646f2e6985d14766b) 16350 + '@angular/build': 21.1.2(ab55d5d3e10a09025eb4fe22599bb5be) 16259 16351 '@angular/compiler-cli': 21.1.2(@angular/compiler@21.1.2)(typescript@5.9.3) 16260 16352 '@babel/core': 7.28.5 16261 16353 '@babel/generator': 7.28.5 ··· 16338 16430 - webpack-cli 16339 16431 - yaml 16340 16432 16341 - '@angular-devkit/build-angular@21.1.2(e7024e150686e3bbe2cdedb5695d6284)': 16433 + '@angular-devkit/build-angular@21.1.2(e7b38691dcceec66c29b1e19d8dba0f4)': 16342 16434 dependencies: 16343 16435 '@ampproject/remapping': 2.3.0 16344 16436 '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) 16345 16437 '@angular-devkit/build-webpack': 0.2101.2(chokidar@5.0.0)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1(@swc/core@1.15.18)(esbuild@0.27.2)))(webpack@5.104.1(@swc/core@1.15.18)(esbuild@0.27.2)) 16346 16438 '@angular-devkit/core': 21.1.2(chokidar@5.0.0) 16347 - '@angular/build': 21.1.2(b8a91db99523b9ce3edfd9b854e0f81b) 16439 + '@angular/build': 21.1.2(cf7fde1dea0a268731df571b0c811188) 16348 16440 '@angular/compiler-cli': 21.1.2(@angular/compiler@21.1.2)(typescript@5.9.3) 16349 16441 '@babel/core': 7.28.5 16350 16442 '@babel/generator': 7.28.5 ··· 16462 16554 '@angular/core': 21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0) 16463 16555 tslib: 2.8.1 16464 16556 16465 - '@angular/build@21.1.2(4ae04ca60d5e69e646f2e6985d14766b)': 16557 + '@angular/build@21.1.2(ab55d5d3e10a09025eb4fe22599bb5be)': 16466 16558 dependencies: 16467 16559 '@ampproject/remapping': 2.3.0 16468 16560 '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) ··· 16505 16597 lmdb: 3.4.4 16506 16598 postcss: 8.5.6 16507 16599 tailwindcss: 3.4.14(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@25.2.1)(typescript@5.9.3)) 16508 - vitest: 4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 16600 + vitest: 4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 16509 16601 transitivePeerDependencies: 16510 16602 - '@types/node' 16511 16603 - chokidar ··· 16519 16611 - tsx 16520 16612 - yaml 16521 16613 16522 - '@angular/build@21.1.2(715bbcce77c47a418ef6cc48ef7ededc)': 16614 + '@angular/build@21.1.2(c61f5a4471c856746a2fa4de08e90517)': 16523 16615 dependencies: 16524 16616 '@ampproject/remapping': 2.3.0 16525 16617 '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) ··· 16562 16654 lmdb: 3.4.4 16563 16655 postcss: 8.5.6 16564 16656 tailwindcss: 3.4.14(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@24.10.10)(typescript@5.9.3)) 16565 - vitest: 4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(vite@7.3.0(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 16657 + vitest: 4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 16566 16658 transitivePeerDependencies: 16567 16659 - '@types/node' 16568 16660 - chokidar ··· 16576 16668 - tsx 16577 16669 - yaml 16578 16670 16579 - '@angular/build@21.1.2(b8a91db99523b9ce3edfd9b854e0f81b)': 16671 + '@angular/build@21.1.2(cf7fde1dea0a268731df571b0c811188)': 16580 16672 dependencies: 16581 16673 '@ampproject/remapping': 2.3.0 16582 16674 '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) ··· 16619 16711 lmdb: 3.4.4 16620 16712 postcss: 8.5.6 16621 16713 tailwindcss: 3.4.14(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@24.10.10)(typescript@5.9.3)) 16622 - vitest: 4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 16714 + vitest: 4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.0(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 16623 16715 transitivePeerDependencies: 16624 16716 - '@types/node' 16625 16717 - chokidar ··· 17824 17916 cac: 6.7.14 17825 17917 citty: 0.1.6 17826 17918 17827 - '@borewit/text-codec@0.2.2': {} 17828 - 17829 17919 '@braidai/lang@1.1.2': {} 17830 17920 17831 17921 '@changesets/apply-release-plan@7.1.0': ··· 18533 18623 '@esbuild/win32-x64@0.27.2': 18534 18624 optional: true 18535 18625 18536 - '@eslint-community/eslint-utils@4.7.0(eslint@9.17.0(jiti@2.6.1))': 18537 - dependencies: 18538 - eslint: 9.17.0(jiti@2.6.1) 18539 - eslint-visitor-keys: 3.4.3 18540 - 18541 - '@eslint-community/eslint-utils@4.9.0(eslint@9.17.0(jiti@2.6.1))': 18542 - dependencies: 18543 - eslint: 9.17.0(jiti@2.6.1) 18544 - eslint-visitor-keys: 3.4.3 18545 - 18546 - '@eslint-community/eslint-utils@4.9.0(eslint@9.39.1(jiti@2.6.1))': 18626 + '@eslint-community/eslint-utils@4.7.0(eslint@9.39.2(jiti@2.6.1))': 18547 18627 dependencies: 18548 - eslint: 9.39.1(jiti@2.6.1) 18628 + eslint: 9.39.2(jiti@2.6.1) 18549 18629 eslint-visitor-keys: 3.4.3 18550 18630 18551 18631 '@eslint-community/eslint-utils@4.9.0(eslint@9.39.2(jiti@2.6.1))': ··· 18553 18633 eslint: 9.39.2(jiti@2.6.1) 18554 18634 eslint-visitor-keys: 3.4.3 18555 18635 18556 - '@eslint-community/eslint-utils@4.9.1(eslint@9.17.0(jiti@2.6.1))': 18557 - dependencies: 18558 - eslint: 9.17.0(jiti@2.6.1) 18559 - eslint-visitor-keys: 3.4.3 18560 - 18561 18636 '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@2.6.1))': 18562 18637 dependencies: 18563 18638 eslint: 9.39.2(jiti@2.6.1) ··· 18567 18642 18568 18643 '@eslint-community/regexpp@4.12.2': {} 18569 18644 18570 - '@eslint/config-array@0.19.2': 18571 - dependencies: 18572 - '@eslint/object-schema': 2.1.6 18573 - debug: 4.4.3 18574 - minimatch: 3.1.2 18575 - transitivePeerDependencies: 18576 - - supports-color 18577 - 18578 18645 '@eslint/config-array@0.21.1': 18579 18646 dependencies: 18580 18647 '@eslint/object-schema': 2.1.7 ··· 18587 18654 dependencies: 18588 18655 '@eslint/core': 0.17.0 18589 18656 18590 - '@eslint/core@0.13.0': 18591 - dependencies: 18592 - '@types/json-schema': 7.0.15 18593 - 18594 18657 '@eslint/core@0.17.0': 18595 - dependencies: 18596 - '@types/json-schema': 7.0.15 18597 - 18598 - '@eslint/core@0.9.1': 18599 18658 dependencies: 18600 18659 '@types/json-schema': 7.0.15 18601 18660 ··· 18613 18672 transitivePeerDependencies: 18614 18673 - supports-color 18615 18674 18616 - '@eslint/js@9.17.0': {} 18617 - 18618 - '@eslint/js@9.39.1': {} 18619 - 18620 18675 '@eslint/js@9.39.2': {} 18621 18676 18622 - '@eslint/object-schema@2.1.6': {} 18623 - 18624 18677 '@eslint/object-schema@2.1.7': {} 18625 18678 18626 - '@eslint/plugin-kit@0.2.8': 18627 - dependencies: 18628 - '@eslint/core': 0.13.0 18629 - levn: 0.4.1 18630 - 18631 18679 '@eslint/plugin-kit@0.4.1': 18632 18680 dependencies: 18633 18681 '@eslint/core': 0.17.0 18634 18682 levn: 0.4.1 18635 18683 18636 18684 '@exodus/bytes@1.11.0': {} 18685 + 18686 + '@faker-js/faker@8.4.1': {} 18637 18687 18638 18688 '@fastify/ajv-compiler@4.0.5': 18639 18689 dependencies: ··· 19455 19505 '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3': 19456 19506 optional: true 19457 19507 19508 + '@msw/source@0.6.1(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))': 19509 + dependencies: 19510 + '@mswjs/interceptors': 0.40.0 19511 + '@stoplight/json': 3.21.7 19512 + '@types/har-format': 1.2.16 19513 + '@yellow-ticket/seed-json-schema': 0.1.7 19514 + msw: 2.12.14(@types/node@25.2.1)(typescript@5.9.3) 19515 + openapi-types: 12.1.3 19516 + outvariant: 1.4.3 19517 + yaml: 2.8.2 19518 + 19519 + '@mswjs/interceptors@0.40.0': 19520 + dependencies: 19521 + '@open-draft/deferred-promise': 2.2.0 19522 + '@open-draft/logger': 0.3.0 19523 + '@open-draft/until': 2.1.0 19524 + is-node-process: 1.2.0 19525 + outvariant: 1.4.3 19526 + strict-event-emitter: 0.5.1 19527 + 19528 + '@mswjs/interceptors@0.41.3': 19529 + dependencies: 19530 + '@open-draft/deferred-promise': 2.2.0 19531 + '@open-draft/logger': 0.3.0 19532 + '@open-draft/until': 2.1.0 19533 + is-node-process: 1.2.0 19534 + outvariant: 1.4.3 19535 + strict-event-emitter: 0.5.1 19536 + 19458 19537 '@napi-rs/nice-android-arm-eabi@1.1.1': 19459 19538 optional: true 19460 19539 ··· 19543 19622 19544 19623 '@neoconfetti/svelte@2.0.0': {} 19545 19624 19546 - '@nestjs/common@11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2)': 19625 + '@nestjs/common@11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2)': 19547 19626 dependencies: 19548 - file-type: 21.3.0 19549 19627 iterare: 1.2.1 19550 - load-esm: 1.0.3 19551 19628 reflect-metadata: 0.2.2 19552 19629 rxjs: 7.8.2 19553 19630 tslib: 2.8.1 19554 19631 uid: 2.0.2 19555 - transitivePeerDependencies: 19556 - - supports-color 19557 19632 19558 - '@nestjs/core@11.1.16(@nestjs/common@11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@11.1.16)(reflect-metadata@0.2.2)(rxjs@7.8.2)': 19633 + '@nestjs/core@11.0.1(@nestjs/common@11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@11.0.1)(reflect-metadata@0.2.2)(rxjs@7.8.2)': 19559 19634 dependencies: 19560 - '@nestjs/common': 11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2) 19635 + '@nestjs/common': 11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2) 19561 19636 '@nuxt/opencollective': 0.4.1 19562 19637 fast-safe-stringify: 2.1.1 19563 19638 iterare: 1.2.1 19564 - path-to-regexp: 8.3.0 19639 + path-to-regexp: 8.2.0 19565 19640 reflect-metadata: 0.2.2 19566 19641 rxjs: 7.8.2 19567 19642 tslib: 2.8.1 19568 19643 uid: 2.0.2 19569 19644 optionalDependencies: 19570 - '@nestjs/platform-express': 11.1.16(@nestjs/common@11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.1.16) 19645 + '@nestjs/platform-express': 11.0.1(@nestjs/common@11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.0.1) 19571 19646 19572 - '@nestjs/platform-express@11.1.16(@nestjs/common@11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.1.16)': 19647 + '@nestjs/platform-express@11.0.1(@nestjs/common@11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.0.1)': 19573 19648 dependencies: 19574 - '@nestjs/common': 11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2) 19575 - '@nestjs/core': 11.1.16(@nestjs/common@11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@11.1.16)(reflect-metadata@0.2.2)(rxjs@7.8.2) 19576 - cors: 2.8.6 19577 - express: 5.2.1 19578 - multer: 2.1.1 19579 - path-to-regexp: 8.3.0 19649 + '@nestjs/common': 11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2) 19650 + '@nestjs/core': 11.0.1(@nestjs/common@11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@11.0.1)(reflect-metadata@0.2.2)(rxjs@7.8.2) 19651 + body-parser: 1.20.3 19652 + cors: 2.8.5 19653 + express: 5.0.1 19654 + multer: 1.4.5-lts.1 19580 19655 tslib: 2.8.1 19581 19656 transitivePeerDependencies: 19582 19657 - supports-color 19583 19658 19584 - '@nestjs/testing@11.1.16(@nestjs/common@11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.1.16)(@nestjs/platform-express@11.1.16)': 19659 + '@nestjs/testing@11.0.1(@nestjs/common@11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.0.1)(@nestjs/platform-express@11.0.1)': 19585 19660 dependencies: 19586 - '@nestjs/common': 11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2) 19587 - '@nestjs/core': 11.1.16(@nestjs/common@11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@11.1.16)(reflect-metadata@0.2.2)(rxjs@7.8.2) 19661 + '@nestjs/common': 11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2) 19662 + '@nestjs/core': 11.0.1(@nestjs/common@11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@11.0.1)(reflect-metadata@0.2.2)(rxjs@7.8.2) 19588 19663 tslib: 2.8.1 19589 19664 optionalDependencies: 19590 - '@nestjs/platform-express': 11.1.16(@nestjs/common@11.1.16(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.1.16) 19665 + '@nestjs/platform-express': 11.0.1(@nestjs/common@11.0.1(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.0.1) 19591 19666 19592 19667 '@netlify/binary-info@1.0.0': {} 19593 19668 ··· 20338 20413 transitivePeerDependencies: 20339 20414 - magicast 20340 20415 20341 - '@nuxt/test-utils@4.0.0(@vue/test-utils@2.4.6)(jsdom@28.0.0)(magicast@0.3.5)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)))': 20416 + '@nuxt/test-utils@4.0.0(@vue/test-utils@2.4.6)(jsdom@28.0.0)(magicast@0.3.5)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)))': 20342 20417 dependencies: 20343 20418 '@clack/prompts': 1.0.0 20344 20419 '@nuxt/devtools-kit': 2.7.0(magicast@0.3.5)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) ··· 20367 20442 tinyexec: 1.0.2 20368 20443 ufo: 1.6.3 20369 20444 unplugin: 3.0.0 20370 - vitest-environment-nuxt: 1.0.1(@vue/test-utils@2.4.6)(jsdom@28.0.0)(magicast@0.3.5)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))) 20445 + vitest-environment-nuxt: 1.0.1(@vue/test-utils@2.4.6)(jsdom@28.0.0)(magicast@0.3.5)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))) 20371 20446 vue: 3.5.27(typescript@5.9.3) 20372 20447 optionalDependencies: 20373 20448 '@vue/test-utils': 2.4.6 20374 20449 jsdom: 28.0.0 20375 - vitest: 4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 20450 + vitest: 4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 20376 20451 transitivePeerDependencies: 20377 20452 - crossws 20378 20453 - magicast 20379 20454 - typescript 20380 20455 - vite 20381 - 20382 - '@nuxt/vite-builder@3.14.1592(@types/node@25.2.1)(eslint@9.39.1(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))': 20383 - dependencies: 20384 - '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.56.0) 20385 - '@rollup/plugin-replace': 6.0.2(rollup@4.56.0) 20386 - '@vitejs/plugin-vue': 5.2.1(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))(vue@3.5.25(typescript@5.9.3)) 20387 - '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))(vue@3.5.25(typescript@5.9.3)) 20388 - autoprefixer: 10.4.20(postcss@8.5.6) 20389 - clear: 0.1.0 20390 - consola: 3.4.2 20391 - cssnano: 7.1.1(postcss@8.5.6) 20392 - defu: 6.1.4 20393 - esbuild: 0.24.2 20394 - escape-string-regexp: 5.0.0 20395 - estree-walker: 3.0.3 20396 - externality: 1.0.2 20397 - get-port-please: 3.2.0 20398 - h3: 1.15.4 20399 - jiti: 2.6.1 20400 - knitwork: 1.3.0 20401 - magic-string: 0.30.21 20402 - mlly: 1.8.0 20403 - ohash: 1.1.6 20404 - pathe: 1.1.2 20405 - perfect-debounce: 1.0.0 20406 - pkg-types: 1.3.1 20407 - postcss: 8.5.6 20408 - rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-rc.9)(rollup@4.56.0) 20409 - std-env: 3.10.0 20410 - strip-literal: 2.1.1 20411 - ufo: 1.6.1 20412 - unenv: 1.10.0 20413 - unplugin: 1.16.1 20414 - vite: 5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1) 20415 - vite-node: 2.1.9(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1) 20416 - vite-plugin-checker: 0.8.0(eslint@9.39.1(jiti@2.6.1))(optionator@0.9.4)(typescript@5.9.3)(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))(vue-tsc@3.2.4(typescript@5.9.3)) 20417 - vue: 3.5.25(typescript@5.9.3) 20418 - vue-bundle-renderer: 2.1.2 20419 - transitivePeerDependencies: 20420 - - '@biomejs/biome' 20421 - - '@types/node' 20422 - - eslint 20423 - - less 20424 - - lightningcss 20425 - - magicast 20426 - - meow 20427 - - optionator 20428 - - rolldown 20429 - - rollup 20430 - - sass 20431 - - sass-embedded 20432 - - stylelint 20433 - - stylus 20434 - - sugarss 20435 - - supports-color 20436 - - terser 20437 - - typescript 20438 - - vls 20439 - - vti 20440 - - vue-tsc 20441 20456 20442 20457 '@nuxt/vite-builder@3.14.1592(@types/node@25.2.1)(eslint@9.39.2(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@3.29.5)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))': 20443 20458 dependencies: ··· 20624 20639 20625 20640 '@one-ini/wasm@0.1.1': {} 20626 20641 20642 + '@open-draft/deferred-promise@2.2.0': {} 20643 + 20644 + '@open-draft/logger@0.3.0': 20645 + dependencies: 20646 + is-node-process: 1.2.0 20647 + outvariant: 1.4.3 20648 + 20649 + '@open-draft/until@2.1.0': {} 20650 + 20627 20651 '@opencode-ai/sdk@1.2.27': {} 20628 20652 20629 20653 '@orpc/client@1.13.9': ··· 20808 20832 '@oxc-resolver/binding-darwin-arm64@11.19.1': 20809 20833 optional: true 20810 20834 20835 + '@oxc-resolver/binding-darwin-arm64@5.3.0': 20836 + optional: true 20837 + 20811 20838 '@oxc-resolver/binding-darwin-x64@11.19.1': 20812 20839 optional: true 20813 20840 20841 + '@oxc-resolver/binding-darwin-x64@5.3.0': 20842 + optional: true 20843 + 20814 20844 '@oxc-resolver/binding-freebsd-x64@11.19.1': 20815 20845 optional: true 20816 20846 20847 + '@oxc-resolver/binding-freebsd-x64@5.3.0': 20848 + optional: true 20849 + 20817 20850 '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1': 20851 + optional: true 20852 + 20853 + '@oxc-resolver/binding-linux-arm-gnueabihf@5.3.0': 20818 20854 optional: true 20819 20855 20820 20856 '@oxc-resolver/binding-linux-arm-musleabihf@11.19.1': ··· 20823 20859 '@oxc-resolver/binding-linux-arm64-gnu@11.19.1': 20824 20860 optional: true 20825 20861 20862 + '@oxc-resolver/binding-linux-arm64-gnu@5.3.0': 20863 + optional: true 20864 + 20826 20865 '@oxc-resolver/binding-linux-arm64-musl@11.19.1': 20866 + optional: true 20867 + 20868 + '@oxc-resolver/binding-linux-arm64-musl@5.3.0': 20827 20869 optional: true 20828 20870 20829 20871 '@oxc-resolver/binding-linux-ppc64-gnu@11.19.1': 20830 20872 optional: true 20831 20873 20832 20874 '@oxc-resolver/binding-linux-riscv64-gnu@11.19.1': 20875 + optional: true 20876 + 20877 + '@oxc-resolver/binding-linux-riscv64-gnu@5.3.0': 20833 20878 optional: true 20834 20879 20835 20880 '@oxc-resolver/binding-linux-riscv64-musl@11.19.1': ··· 20838 20883 '@oxc-resolver/binding-linux-s390x-gnu@11.19.1': 20839 20884 optional: true 20840 20885 20886 + '@oxc-resolver/binding-linux-s390x-gnu@5.3.0': 20887 + optional: true 20888 + 20841 20889 '@oxc-resolver/binding-linux-x64-gnu@11.19.1': 20842 20890 optional: true 20843 20891 20892 + '@oxc-resolver/binding-linux-x64-gnu@5.3.0': 20893 + optional: true 20894 + 20844 20895 '@oxc-resolver/binding-linux-x64-musl@11.19.1': 20845 20896 optional: true 20846 20897 20898 + '@oxc-resolver/binding-linux-x64-musl@5.3.0': 20899 + optional: true 20900 + 20847 20901 '@oxc-resolver/binding-openharmony-arm64@11.19.1': 20848 20902 optional: true 20849 20903 20850 20904 '@oxc-resolver/binding-wasm32-wasi@11.19.1': 20851 20905 dependencies: 20852 20906 '@napi-rs/wasm-runtime': 1.1.1 20907 + optional: true 20908 + 20909 + '@oxc-resolver/binding-wasm32-wasi@5.3.0': 20910 + dependencies: 20911 + '@napi-rs/wasm-runtime': 0.2.12 20853 20912 optional: true 20854 20913 20855 20914 '@oxc-resolver/binding-win32-arm64-msvc@11.19.1': 20856 20915 optional: true 20857 20916 20917 + '@oxc-resolver/binding-win32-arm64-msvc@5.3.0': 20918 + optional: true 20919 + 20858 20920 '@oxc-resolver/binding-win32-ia32-msvc@11.19.1': 20859 20921 optional: true 20860 20922 20861 20923 '@oxc-resolver/binding-win32-x64-msvc@11.19.1': 20924 + optional: true 20925 + 20926 + '@oxc-resolver/binding-win32-x64-msvc@5.3.0': 20862 20927 optional: true 20863 20928 20864 20929 '@oxc-transform/binding-android-arm-eabi@0.110.0': ··· 20978 21043 optional: true 20979 21044 20980 21045 '@oxfmt/binding-win32-x64-msvc@0.41.0': 20981 - optional: true 20982 - 20983 - '@oxfmt/darwin-arm64@0.27.0': 20984 - optional: true 20985 - 20986 - '@oxfmt/darwin-x64@0.27.0': 20987 - optional: true 20988 - 20989 - '@oxfmt/linux-arm64-gnu@0.27.0': 20990 - optional: true 20991 - 20992 - '@oxfmt/linux-arm64-musl@0.27.0': 20993 - optional: true 20994 - 20995 - '@oxfmt/linux-x64-gnu@0.27.0': 20996 - optional: true 20997 - 20998 - '@oxfmt/linux-x64-musl@0.27.0': 20999 - optional: true 21000 - 21001 - '@oxfmt/win32-arm64@0.27.0': 21002 - optional: true 21003 - 21004 - '@oxfmt/win32-x64@0.27.0': 21005 21046 optional: true 21006 21047 21007 21048 '@parcel/watcher-android-arm64@2.5.1': ··· 22022 22063 22023 22064 '@rollup/plugin-replace@6.0.2(rollup@3.29.5)': 22024 22065 dependencies: 22025 - '@rollup/pluginutils': 5.2.0(rollup@3.29.5) 22066 + '@rollup/pluginutils': 5.3.0(rollup@3.29.5) 22026 22067 magic-string: 0.30.21 22027 22068 optionalDependencies: 22028 22069 rollup: 3.29.5 22029 22070 22030 22071 '@rollup/plugin-replace@6.0.2(rollup@4.56.0)': 22031 22072 dependencies: 22032 - '@rollup/pluginutils': 5.2.0(rollup@4.56.0) 22073 + '@rollup/pluginutils': 5.3.0(rollup@4.56.0) 22033 22074 magic-string: 0.30.21 22034 22075 optionalDependencies: 22035 22076 rollup: 4.56.0 22036 22077 22037 22078 '@rollup/plugin-replace@6.0.3(rollup@4.56.0)': 22038 22079 dependencies: 22039 - '@rollup/pluginutils': 5.2.0(rollup@4.56.0) 22080 + '@rollup/pluginutils': 5.3.0(rollup@4.56.0) 22040 22081 magic-string: 0.30.21 22041 22082 optionalDependencies: 22042 22083 rollup: 4.56.0 ··· 22064 22105 picomatch: 4.0.3 22065 22106 optionalDependencies: 22066 22107 rollup: 4.56.0 22108 + 22109 + '@rollup/pluginutils@5.3.0(rollup@3.29.5)': 22110 + dependencies: 22111 + '@types/estree': 1.0.8 22112 + estree-walker: 2.0.2 22113 + picomatch: 4.0.3 22114 + optionalDependencies: 22115 + rollup: 3.29.5 22067 22116 22068 22117 '@rollup/pluginutils@5.3.0(rollup@4.56.0)': 22069 22118 dependencies: ··· 22260 22309 22261 22310 '@standard-schema/spec@1.1.0': {} 22262 22311 22312 + '@stoplight/json@3.21.7': 22313 + dependencies: 22314 + '@stoplight/ordered-object-literal': 1.0.5 22315 + '@stoplight/path': 1.3.2 22316 + '@stoplight/types': 13.20.0 22317 + jsonc-parser: 2.2.1 22318 + lodash: 4.17.23 22319 + safe-stable-stringify: 1.1.1 22320 + 22321 + '@stoplight/ordered-object-literal@1.0.5': {} 22322 + 22323 + '@stoplight/path@1.3.2': {} 22324 + 22325 + '@stoplight/types@13.20.0': 22326 + dependencies: 22327 + '@types/json-schema': 7.0.15 22328 + utility-types: 3.11.0 22329 + 22263 22330 '@sveltejs/adapter-auto@4.0.0(@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)))(svelte@5.19.9)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)))': 22264 22331 dependencies: 22265 22332 '@sveltejs/kit': 2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.19.9)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)))(svelte@5.19.9)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) ··· 22304 22371 transitivePeerDependencies: 22305 22372 - supports-color 22306 22373 22307 - '@swc-node/core@1.14.1(@swc/core@1.15.18)(@swc/types@0.1.25)': 22374 + '@swc-node/core@1.14.1(@swc/core@1.11.29)(@swc/types@0.1.25)': 22308 22375 dependencies: 22309 - '@swc/core': 1.15.18 22376 + '@swc/core': 1.11.29 22310 22377 '@swc/types': 0.1.25 22311 22378 22312 - '@swc-node/register@1.11.1(@swc/core@1.15.18)(@swc/types@0.1.25)(typescript@5.9.3)': 22379 + '@swc-node/register@1.10.10(@swc/core@1.11.29)(@swc/types@0.1.25)(typescript@5.9.3)': 22313 22380 dependencies: 22314 - '@swc-node/core': 1.14.1(@swc/core@1.15.18)(@swc/types@0.1.25) 22315 - '@swc-node/sourcemap-support': 0.6.1 22316 - '@swc/core': 1.15.18 22381 + '@swc-node/core': 1.14.1(@swc/core@1.11.29)(@swc/types@0.1.25) 22382 + '@swc-node/sourcemap-support': 0.5.1 22383 + '@swc/core': 1.11.29 22317 22384 colorette: 2.0.20 22318 22385 debug: 4.4.3 22319 - oxc-resolver: 11.19.1 22386 + oxc-resolver: 5.3.0 22320 22387 pirates: 4.0.7 22321 22388 tslib: 2.8.1 22322 22389 typescript: 5.9.3 ··· 22324 22391 - '@swc/types' 22325 22392 - supports-color 22326 22393 22327 - '@swc-node/sourcemap-support@0.6.1': 22394 + '@swc-node/sourcemap-support@0.5.1': 22328 22395 dependencies: 22329 22396 source-map-support: 0.5.21 22330 22397 tslib: 2.8.1 22398 + 22399 + '@swc/core-darwin-arm64@1.11.29': 22400 + optional: true 22331 22401 22332 22402 '@swc/core-darwin-arm64@1.15.18': 22333 22403 optional: true 22334 22404 22405 + '@swc/core-darwin-x64@1.11.29': 22406 + optional: true 22407 + 22335 22408 '@swc/core-darwin-x64@1.15.18': 22336 22409 optional: true 22337 22410 22411 + '@swc/core-linux-arm-gnueabihf@1.11.29': 22412 + optional: true 22413 + 22338 22414 '@swc/core-linux-arm-gnueabihf@1.15.18': 22339 22415 optional: true 22340 22416 22417 + '@swc/core-linux-arm64-gnu@1.11.29': 22418 + optional: true 22419 + 22341 22420 '@swc/core-linux-arm64-gnu@1.15.18': 22421 + optional: true 22422 + 22423 + '@swc/core-linux-arm64-musl@1.11.29': 22342 22424 optional: true 22343 22425 22344 22426 '@swc/core-linux-arm64-musl@1.15.18': 22345 22427 optional: true 22346 22428 22429 + '@swc/core-linux-x64-gnu@1.11.29': 22430 + optional: true 22431 + 22347 22432 '@swc/core-linux-x64-gnu@1.15.18': 22348 22433 optional: true 22349 22434 22435 + '@swc/core-linux-x64-musl@1.11.29': 22436 + optional: true 22437 + 22350 22438 '@swc/core-linux-x64-musl@1.15.18': 22351 22439 optional: true 22352 22440 22441 + '@swc/core-win32-arm64-msvc@1.11.29': 22442 + optional: true 22443 + 22353 22444 '@swc/core-win32-arm64-msvc@1.15.18': 22445 + optional: true 22446 + 22447 + '@swc/core-win32-ia32-msvc@1.11.29': 22354 22448 optional: true 22355 22449 22356 22450 '@swc/core-win32-ia32-msvc@1.15.18': 22357 22451 optional: true 22358 22452 22453 + '@swc/core-win32-x64-msvc@1.11.29': 22454 + optional: true 22455 + 22359 22456 '@swc/core-win32-x64-msvc@1.15.18': 22360 22457 optional: true 22361 22458 22459 + '@swc/core@1.11.29': 22460 + dependencies: 22461 + '@swc/counter': 0.1.3 22462 + '@swc/types': 0.1.25 22463 + optionalDependencies: 22464 + '@swc/core-darwin-arm64': 1.11.29 22465 + '@swc/core-darwin-x64': 1.11.29 22466 + '@swc/core-linux-arm-gnueabihf': 1.11.29 22467 + '@swc/core-linux-arm64-gnu': 1.11.29 22468 + '@swc/core-linux-arm64-musl': 1.11.29 22469 + '@swc/core-linux-x64-gnu': 1.11.29 22470 + '@swc/core-linux-x64-musl': 1.11.29 22471 + '@swc/core-win32-arm64-msvc': 1.11.29 22472 + '@swc/core-win32-ia32-msvc': 1.11.29 22473 + '@swc/core-win32-x64-msvc': 1.11.29 22474 + 22362 22475 '@swc/core@1.15.18': 22363 22476 dependencies: 22364 22477 '@swc/counter': 0.1.3 ··· 22374 22487 '@swc/core-win32-arm64-msvc': 1.15.18 22375 22488 '@swc/core-win32-ia32-msvc': 1.15.18 22376 22489 '@swc/core-win32-x64-msvc': 1.15.18 22490 + optional: true 22377 22491 22378 22492 '@swc/counter@0.1.3': {} 22379 22493 ··· 22478 22592 vue: 3.5.25(typescript@5.9.3) 22479 22593 vue-demi: 0.14.10(vue@3.5.25(typescript@5.9.3)) 22480 22594 22481 - '@tokenizer/inflate@0.4.1': 22482 - dependencies: 22483 - debug: 4.4.3 22484 - token-types: 6.1.2 22485 - transitivePeerDependencies: 22486 - - supports-color 22487 - 22488 - '@tokenizer/token@0.3.0': {} 22489 - 22490 22595 '@tsconfig/node10@1.0.11': 22491 22596 optional: true 22492 22597 ··· 22627 22732 '@types/qs': 6.14.0 22628 22733 '@types/serve-static': 1.15.8 22629 22734 22735 + '@types/har-format@1.2.16': {} 22736 + 22630 22737 '@types/hast@3.0.4': 22631 22738 dependencies: 22632 22739 '@types/unist': 3.0.3 ··· 22726 22833 dependencies: 22727 22834 '@types/node': 24.10.10 22728 22835 22836 + '@types/statuses@2.0.6': {} 22837 + 22729 22838 '@types/tough-cookie@4.0.5': {} 22730 22839 22731 22840 '@types/triple-beam@1.3.5': {} ··· 22743 22852 '@types/node': 24.10.10 22744 22853 optional: true 22745 22854 22746 - '@typescript-eslint/eslint-plugin@8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)': 22855 + '@typescript-eslint/eslint-plugin@8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': 22747 22856 dependencies: 22748 22857 '@eslint-community/regexpp': 4.12.1 22749 - '@typescript-eslint/parser': 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 22858 + '@typescript-eslint/parser': 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 22750 22859 '@typescript-eslint/scope-manager': 8.29.1 22751 - '@typescript-eslint/type-utils': 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 22752 - '@typescript-eslint/utils': 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 22860 + '@typescript-eslint/type-utils': 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 22861 + '@typescript-eslint/utils': 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 22753 22862 '@typescript-eslint/visitor-keys': 8.29.1 22754 - eslint: 9.17.0(jiti@2.6.1) 22863 + eslint: 9.39.2(jiti@2.6.1) 22755 22864 graphemer: 1.4.0 22756 22865 ignore: 5.3.2 22757 22866 natural-compare: 1.4.0 ··· 22760 22869 transitivePeerDependencies: 22761 22870 - supports-color 22762 22871 22763 - '@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)': 22764 - dependencies: 22765 - '@eslint-community/regexpp': 4.12.2 22766 - '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 22767 - '@typescript-eslint/scope-manager': 8.54.0 22768 - '@typescript-eslint/type-utils': 8.54.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 22769 - '@typescript-eslint/utils': 8.54.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 22770 - '@typescript-eslint/visitor-keys': 8.54.0 22771 - eslint: 9.17.0(jiti@2.6.1) 22772 - ignore: 7.0.5 22773 - natural-compare: 1.4.0 22774 - ts-api-utils: 2.4.0(typescript@5.9.3) 22775 - typescript: 5.9.3 22776 - transitivePeerDependencies: 22777 - - supports-color 22778 - 22779 22872 '@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': 22780 22873 dependencies: 22781 22874 '@eslint-community/regexpp': 4.12.2 ··· 22800 22893 - supports-color 22801 22894 - typescript 22802 22895 22803 - '@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)': 22896 + '@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': 22804 22897 dependencies: 22805 22898 '@typescript-eslint/scope-manager': 8.29.1 22806 22899 '@typescript-eslint/types': 8.29.1 22807 22900 '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.9.3) 22808 22901 '@typescript-eslint/visitor-keys': 8.29.1 22809 22902 debug: 4.4.3 22810 - eslint: 9.17.0(jiti@2.6.1) 22811 - typescript: 5.9.3 22812 - transitivePeerDependencies: 22813 - - supports-color 22814 - 22815 - '@typescript-eslint/parser@8.54.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)': 22816 - dependencies: 22817 - '@typescript-eslint/scope-manager': 8.54.0 22818 - '@typescript-eslint/types': 8.54.0 22819 - '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3) 22820 - '@typescript-eslint/visitor-keys': 8.54.0 22821 - debug: 4.4.3 22822 - eslint: 9.17.0(jiti@2.6.1) 22903 + eslint: 9.39.2(jiti@2.6.1) 22823 22904 typescript: 5.9.3 22824 22905 transitivePeerDependencies: 22825 22906 - supports-color ··· 22877 22958 dependencies: 22878 22959 typescript: 5.9.3 22879 22960 22880 - '@typescript-eslint/type-utils@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)': 22961 + '@typescript-eslint/type-utils@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': 22881 22962 dependencies: 22882 22963 '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.9.3) 22883 - '@typescript-eslint/utils': 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 22964 + '@typescript-eslint/utils': 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 22884 22965 debug: 4.4.3 22885 - eslint: 9.17.0(jiti@2.6.1) 22966 + eslint: 9.39.2(jiti@2.6.1) 22886 22967 ts-api-utils: 2.1.0(typescript@5.9.3) 22887 - typescript: 5.9.3 22888 - transitivePeerDependencies: 22889 - - supports-color 22890 - 22891 - '@typescript-eslint/type-utils@8.54.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)': 22892 - dependencies: 22893 - '@typescript-eslint/types': 8.54.0 22894 - '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3) 22895 - '@typescript-eslint/utils': 8.54.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 22896 - debug: 4.4.3 22897 - eslint: 9.17.0(jiti@2.6.1) 22898 - ts-api-utils: 2.4.0(typescript@5.9.3) 22899 22968 typescript: 5.9.3 22900 22969 transitivePeerDependencies: 22901 22970 - supports-color ··· 22994 23063 - supports-color 22995 23064 - typescript 22996 23065 22997 - '@typescript-eslint/utils@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)': 23066 + '@typescript-eslint/utils@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': 22998 23067 dependencies: 22999 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.17.0(jiti@2.6.1)) 23068 + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.6.1)) 23000 23069 '@typescript-eslint/scope-manager': 8.29.1 23001 23070 '@typescript-eslint/types': 8.29.1 23002 23071 '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.9.3) 23003 - eslint: 9.17.0(jiti@2.6.1) 23004 - typescript: 5.9.3 23005 - transitivePeerDependencies: 23006 - - supports-color 23007 - 23008 - '@typescript-eslint/utils@8.54.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)': 23009 - dependencies: 23010 - '@eslint-community/eslint-utils': 4.9.1(eslint@9.17.0(jiti@2.6.1)) 23011 - '@typescript-eslint/scope-manager': 8.54.0 23012 - '@typescript-eslint/types': 8.54.0 23013 - '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3) 23014 - eslint: 9.17.0(jiti@2.6.1) 23072 + eslint: 9.39.2(jiti@2.6.1) 23015 23073 typescript: 5.9.3 23016 23074 transitivePeerDependencies: 23017 23075 - supports-color ··· 23281 23339 vite: 7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 23282 23340 vue: 3.5.27(typescript@5.9.3) 23283 23341 23284 - '@vitest/coverage-v8@4.1.0(vitest@4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)))': 23342 + '@vitest/coverage-v8@4.1.0(vitest@4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)))': 23285 23343 dependencies: 23286 23344 '@bcoe/v8-coverage': 1.0.2 23287 23345 '@vitest/utils': 4.1.0 ··· 23293 23351 obug: 2.1.1 23294 23352 std-env: 4.0.0 23295 23353 tinyrainbow: 3.0.3 23296 - vitest: 4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 23297 - 23298 - '@vitest/expect@4.0.18': 23299 - dependencies: 23300 - '@standard-schema/spec': 1.1.0 23301 - '@types/chai': 5.2.2 23302 - '@vitest/spy': 4.0.18 23303 - '@vitest/utils': 4.0.18 23304 - chai: 6.2.2 23305 - tinyrainbow: 3.0.3 23354 + vitest: 4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 23306 23355 23307 23356 '@vitest/expect@4.1.0': 23308 23357 dependencies: ··· 23313 23362 chai: 6.2.2 23314 23363 tinyrainbow: 3.0.3 23315 23364 23316 - '@vitest/mocker@4.0.18(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))': 23317 - dependencies: 23318 - '@vitest/spy': 4.0.18 23319 - estree-walker: 3.0.3 23320 - magic-string: 0.30.21 23321 - optionalDependencies: 23322 - vite: 7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 23323 - 23324 - '@vitest/mocker@4.0.18(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))': 23325 - dependencies: 23326 - '@vitest/spy': 4.0.18 23327 - estree-walker: 3.0.3 23328 - magic-string: 0.30.21 23329 - optionalDependencies: 23330 - vite: 7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 23331 - 23332 - '@vitest/mocker@4.1.0(vite@7.3.0(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))': 23365 + '@vitest/mocker@4.1.0(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.0(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))': 23333 23366 dependencies: 23334 23367 '@vitest/spy': 4.1.0 23335 23368 estree-walker: 3.0.3 23336 23369 magic-string: 0.30.21 23337 23370 optionalDependencies: 23371 + msw: 2.12.14(@types/node@24.10.10)(typescript@5.9.3) 23338 23372 vite: 7.3.0(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 23339 23373 optional: true 23340 23374 23341 - '@vitest/mocker@4.1.0(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))': 23375 + '@vitest/mocker@4.1.0(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))': 23342 23376 dependencies: 23343 23377 '@vitest/spy': 4.1.0 23344 23378 estree-walker: 3.0.3 23345 23379 magic-string: 0.30.21 23346 23380 optionalDependencies: 23381 + msw: 2.12.14(@types/node@24.10.10)(typescript@5.9.3) 23347 23382 vite: 7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 23348 23383 23349 - '@vitest/mocker@4.1.0(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))': 23384 + '@vitest/mocker@4.1.0(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))': 23350 23385 dependencies: 23351 23386 '@vitest/spy': 4.1.0 23352 23387 estree-walker: 3.0.3 23353 23388 magic-string: 0.30.21 23354 23389 optionalDependencies: 23390 + msw: 2.12.14(@types/node@25.2.1)(typescript@5.9.3) 23355 23391 vite: 7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 23356 23392 23357 - '@vitest/pretty-format@4.0.18': 23358 - dependencies: 23359 - tinyrainbow: 3.0.3 23360 - 23361 23393 '@vitest/pretty-format@4.1.0': 23362 23394 dependencies: 23363 23395 tinyrainbow: 3.0.3 23364 23396 23365 - '@vitest/runner@4.0.18': 23366 - dependencies: 23367 - '@vitest/utils': 4.0.18 23368 - pathe: 2.0.3 23369 - 23370 23397 '@vitest/runner@4.1.0': 23371 23398 dependencies: 23372 23399 '@vitest/utils': 4.1.0 23373 23400 pathe: 2.0.3 23374 23401 23375 - '@vitest/snapshot@4.0.18': 23376 - dependencies: 23377 - '@vitest/pretty-format': 4.0.18 23378 - magic-string: 0.30.21 23379 - pathe: 2.0.3 23380 - 23381 23402 '@vitest/snapshot@4.1.0': 23382 23403 dependencies: 23383 23404 '@vitest/pretty-format': 4.1.0 ··· 23385 23406 magic-string: 0.30.21 23386 23407 pathe: 2.0.3 23387 23408 23388 - '@vitest/spy@4.0.18': {} 23389 - 23390 23409 '@vitest/spy@4.1.0': {} 23391 - 23392 - '@vitest/utils@4.0.18': 23393 - dependencies: 23394 - '@vitest/pretty-format': 4.0.18 23395 - tinyrainbow: 3.0.3 23396 23410 23397 23411 '@vitest/utils@4.1.0': 23398 23412 dependencies: ··· 23738 23752 dependencies: 23739 23753 rfdc: 1.4.1 23740 23754 23741 - '@vue/eslint-config-typescript@14.6.0(eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)': 23755 + '@vue/eslint-config-typescript@14.6.0(eslint-plugin-vue@9.32.0(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': 23742 23756 dependencies: 23743 - '@typescript-eslint/utils': 8.54.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 23744 - eslint: 9.17.0(jiti@2.6.1) 23745 - eslint-plugin-vue: 9.32.0(eslint@9.17.0(jiti@2.6.1)) 23757 + '@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 23758 + eslint: 9.39.2(jiti@2.6.1) 23759 + eslint-plugin-vue: 9.32.0(eslint@9.39.2(jiti@2.6.1)) 23746 23760 fast-glob: 3.3.3 23747 - typescript-eslint: 8.54.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 23748 - vue-eslint-parser: 10.2.0(eslint@9.17.0(jiti@2.6.1)) 23761 + typescript-eslint: 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 23762 + vue-eslint-parser: 10.2.0(eslint@9.39.2(jiti@2.6.1)) 23749 23763 optionalDependencies: 23750 23764 typescript: 5.9.3 23751 23765 transitivePeerDependencies: ··· 23976 23990 '@xtuc/long@4.2.2': {} 23977 23991 23978 23992 '@yarnpkg/lockfile@1.1.0': {} 23993 + 23994 + '@yellow-ticket/seed-json-schema@0.1.7': 23995 + dependencies: 23996 + '@faker-js/faker': 8.4.1 23997 + '@types/json-schema': 7.0.15 23998 + outvariant: 1.4.3 23999 + randexp: 0.5.3 23979 24000 23980 24001 abbrev@2.0.0: {} 23981 24002 ··· 24858 24879 24859 24880 concat-map@0.0.1: {} 24860 24881 24861 - concat-stream@2.0.0: 24882 + concat-stream@1.6.2: 24862 24883 dependencies: 24863 24884 buffer-from: 1.1.2 24864 24885 inherits: 2.0.4 24865 - readable-stream: 3.6.2 24886 + readable-stream: 2.3.8 24866 24887 typedarray: 0.0.6 24867 24888 24868 24889 confbox@0.1.8: {} ··· 25189 25210 dependencies: 25190 25211 ms: 2.1.3 25191 25212 25213 + debug@4.3.6: 25214 + dependencies: 25215 + ms: 2.1.2 25216 + 25192 25217 debug@4.3.7: 25193 25218 dependencies: 25194 25219 ms: 2.1.3 ··· 25398 25423 25399 25424 dotenv@17.2.3: {} 25400 25425 25426 + drange@1.1.1: {} 25427 + 25401 25428 dts-resolver@2.1.3(oxc-resolver@11.19.1): 25402 25429 optionalDependencies: 25403 25430 oxc-resolver: 11.19.1 ··· 25461 25488 accepts: 1.3.8 25462 25489 base64id: 2.0.0 25463 25490 cookie: 0.7.2 25464 - cors: 2.8.5 25491 + cors: 2.8.6 25465 25492 debug: 4.3.7 25466 25493 engine.io-parser: 5.2.3 25467 25494 ws: 8.17.1 ··· 25805 25832 optionalDependencies: 25806 25833 source-map: 0.6.1 25807 25834 25808 - eslint-compat-utils@0.5.1(eslint@9.17.0(jiti@2.6.1)): 25835 + eslint-compat-utils@0.5.1(eslint@9.39.2(jiti@2.6.1)): 25809 25836 dependencies: 25810 - eslint: 9.17.0(jiti@2.6.1) 25837 + eslint: 9.39.2(jiti@2.6.1) 25811 25838 semver: 7.7.3 25812 25839 25813 - eslint-config-next@15.1.6(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3): 25840 + eslint-config-next@15.1.6(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3): 25814 25841 dependencies: 25815 25842 '@next/eslint-plugin-next': 15.1.6 25816 25843 '@rushstack/eslint-patch': 1.10.5 25817 - '@typescript-eslint/eslint-plugin': 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 25818 - '@typescript-eslint/parser': 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 25819 - eslint: 9.17.0(jiti@2.6.1) 25844 + '@typescript-eslint/eslint-plugin': 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 25845 + '@typescript-eslint/parser': 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 25846 + eslint: 9.39.2(jiti@2.6.1) 25820 25847 eslint-import-resolver-node: 0.3.9 25821 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)) 25822 - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)) 25823 - eslint-plugin-jsx-a11y: 6.10.2(eslint@9.17.0(jiti@2.6.1)) 25824 - eslint-plugin-react: 7.37.5(eslint@9.17.0(jiti@2.6.1)) 25825 - eslint-plugin-react-hooks: 5.2.0(eslint@9.17.0(jiti@2.6.1)) 25848 + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) 25849 + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) 25850 + eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.2(jiti@2.6.1)) 25851 + eslint-plugin-react: 7.37.5(eslint@9.39.2(jiti@2.6.1)) 25852 + eslint-plugin-react-hooks: 5.2.0(eslint@9.39.2(jiti@2.6.1)) 25826 25853 optionalDependencies: 25827 25854 typescript: 5.9.3 25828 25855 transitivePeerDependencies: ··· 25838 25865 transitivePeerDependencies: 25839 25866 - supports-color 25840 25867 25841 - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)): 25868 + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)): 25842 25869 dependencies: 25843 25870 '@nolyfill/is-core-module': 1.0.39 25844 25871 debug: 4.4.3 25845 - eslint: 9.17.0(jiti@2.6.1) 25872 + eslint: 9.39.2(jiti@2.6.1) 25846 25873 get-tsconfig: 4.13.6 25847 25874 is-bun-module: 2.0.0 25848 25875 stable-hash: 0.0.5 25849 25876 tinyglobby: 0.2.15 25850 25877 unrs-resolver: 1.11.1 25851 25878 optionalDependencies: 25852 - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)) 25879 + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) 25853 25880 transitivePeerDependencies: 25854 25881 - supports-color 25855 25882 25856 - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)): 25883 + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)): 25857 25884 dependencies: 25858 25885 debug: 3.2.7 25859 25886 optionalDependencies: 25860 - '@typescript-eslint/parser': 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 25861 - eslint: 9.17.0(jiti@2.6.1) 25887 + '@typescript-eslint/parser': 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 25888 + eslint: 9.39.2(jiti@2.6.1) 25862 25889 eslint-import-resolver-node: 0.3.9 25863 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)) 25890 + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) 25864 25891 transitivePeerDependencies: 25865 25892 - supports-color 25866 25893 25867 - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)): 25894 + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)): 25868 25895 dependencies: 25869 25896 '@rtsao/scc': 1.1.0 25870 25897 array-includes: 3.1.9 ··· 25873 25900 array.prototype.flatmap: 1.3.3 25874 25901 debug: 3.2.7 25875 25902 doctrine: 2.1.0 25876 - eslint: 9.17.0(jiti@2.6.1) 25903 + eslint: 9.39.2(jiti@2.6.1) 25877 25904 eslint-import-resolver-node: 0.3.9 25878 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)) 25905 + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) 25879 25906 hasown: 2.0.2 25880 25907 is-core-module: 2.16.1 25881 25908 is-glob: 4.0.3 ··· 25887 25914 string.prototype.trimend: 1.0.9 25888 25915 tsconfig-paths: 3.15.0 25889 25916 optionalDependencies: 25890 - '@typescript-eslint/parser': 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 25917 + '@typescript-eslint/parser': 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 25891 25918 transitivePeerDependencies: 25892 25919 - eslint-import-resolver-typescript 25893 25920 - eslint-import-resolver-webpack 25894 25921 - supports-color 25895 25922 25896 - eslint-plugin-jsx-a11y@6.10.2(eslint@9.17.0(jiti@2.6.1)): 25923 + eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.2(jiti@2.6.1)): 25897 25924 dependencies: 25898 25925 aria-query: 5.3.2 25899 25926 array-includes: 3.1.9 ··· 25903 25930 axobject-query: 4.1.0 25904 25931 damerau-levenshtein: 1.0.8 25905 25932 emoji-regex: 9.2.2 25906 - eslint: 9.17.0(jiti@2.6.1) 25933 + eslint: 9.39.2(jiti@2.6.1) 25907 25934 hasown: 2.0.2 25908 25935 jsx-ast-utils: 3.3.5 25909 25936 language-tags: 1.0.9 ··· 25912 25939 safe-regex-test: 1.1.0 25913 25940 string.prototype.includes: 2.0.1 25914 25941 25915 - eslint-plugin-react-hooks@5.2.0(eslint@9.17.0(jiti@2.6.1)): 25942 + eslint-plugin-react-hooks@5.2.0(eslint@9.39.2(jiti@2.6.1)): 25916 25943 dependencies: 25917 - eslint: 9.17.0(jiti@2.6.1) 25944 + eslint: 9.39.2(jiti@2.6.1) 25918 25945 25919 - eslint-plugin-react-refresh@0.4.7(eslint@9.17.0(jiti@2.6.1)): 25946 + eslint-plugin-react-refresh@0.4.7(eslint@9.39.2(jiti@2.6.1)): 25920 25947 dependencies: 25921 - eslint: 9.17.0(jiti@2.6.1) 25948 + eslint: 9.39.2(jiti@2.6.1) 25922 25949 25923 - eslint-plugin-react@7.37.5(eslint@9.17.0(jiti@2.6.1)): 25950 + eslint-plugin-react@7.37.5(eslint@9.39.2(jiti@2.6.1)): 25924 25951 dependencies: 25925 25952 array-includes: 3.1.9 25926 25953 array.prototype.findlast: 1.2.5 ··· 25928 25955 array.prototype.tosorted: 1.1.4 25929 25956 doctrine: 2.1.0 25930 25957 es-iterator-helpers: 1.2.1 25931 - eslint: 9.17.0(jiti@2.6.1) 25958 + eslint: 9.39.2(jiti@2.6.1) 25932 25959 estraverse: 5.3.0 25933 25960 hasown: 2.0.2 25934 25961 jsx-ast-utils: 3.3.5 ··· 25958 25985 natural-compare: 1.4.0 25959 25986 requireindex: 1.2.0 25960 25987 25961 - eslint-plugin-svelte@2.36.0(eslint@9.17.0(jiti@2.6.1))(svelte@5.19.9)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@25.2.1)(typescript@5.9.3)): 25988 + eslint-plugin-svelte@2.36.0(eslint@9.39.2(jiti@2.6.1))(svelte@5.19.9)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@25.2.1)(typescript@5.9.3)): 25962 25989 dependencies: 25963 - '@eslint-community/eslint-utils': 4.7.0(eslint@9.17.0(jiti@2.6.1)) 25990 + '@eslint-community/eslint-utils': 4.7.0(eslint@9.39.2(jiti@2.6.1)) 25964 25991 '@jridgewell/sourcemap-codec': 1.5.5 25965 25992 debug: 4.4.1 25966 - eslint: 9.17.0(jiti@2.6.1) 25967 - eslint-compat-utils: 0.5.1(eslint@9.17.0(jiti@2.6.1)) 25993 + eslint: 9.39.2(jiti@2.6.1) 25994 + eslint-compat-utils: 0.5.1(eslint@9.39.2(jiti@2.6.1)) 25968 25995 esutils: 2.0.3 25969 25996 known-css-properties: 0.30.0 25970 25997 postcss: 8.4.41 ··· 26003 26030 optionalDependencies: 26004 26031 '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 26005 26032 26006 - eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.6.1)): 26033 + eslint-plugin-vue@9.32.0(eslint@9.39.2(jiti@2.6.1)): 26007 26034 dependencies: 26008 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.17.0(jiti@2.6.1)) 26009 - eslint: 9.17.0(jiti@2.6.1) 26035 + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.6.1)) 26036 + eslint: 9.39.2(jiti@2.6.1) 26010 26037 globals: 13.24.0 26011 26038 natural-compare: 1.4.0 26012 26039 nth-check: 2.1.1 26013 26040 postcss-selector-parser: 6.1.2 26014 26041 semver: 7.7.2 26015 - vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.6.1)) 26042 + vue-eslint-parser: 9.4.3(eslint@9.39.2(jiti@2.6.1)) 26016 26043 xml-name-validator: 4.0.0 26017 26044 transitivePeerDependencies: 26018 26045 - supports-color ··· 26038 26065 26039 26066 eslint-visitor-keys@4.2.1: {} 26040 26067 26041 - eslint@9.17.0(jiti@2.6.1): 26042 - dependencies: 26043 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.17.0(jiti@2.6.1)) 26044 - '@eslint-community/regexpp': 4.12.1 26045 - '@eslint/config-array': 0.19.2 26046 - '@eslint/core': 0.9.1 26047 - '@eslint/eslintrc': 3.3.1 26048 - '@eslint/js': 9.17.0 26049 - '@eslint/plugin-kit': 0.2.8 26050 - '@humanfs/node': 0.16.6 26051 - '@humanwhocodes/module-importer': 1.0.1 26052 - '@humanwhocodes/retry': 0.4.3 26053 - '@types/estree': 1.0.8 26054 - '@types/json-schema': 7.0.15 26055 - ajv: 6.12.6 26056 - chalk: 4.1.2 26057 - cross-spawn: 7.0.6 26058 - debug: 4.4.3 26059 - escape-string-regexp: 4.0.0 26060 - eslint-scope: 8.4.0 26061 - eslint-visitor-keys: 4.2.1 26062 - espree: 10.4.0 26063 - esquery: 1.6.0 26064 - esutils: 2.0.3 26065 - fast-deep-equal: 3.1.3 26066 - file-entry-cache: 8.0.0 26067 - find-up: 5.0.0 26068 - glob-parent: 6.0.2 26069 - ignore: 5.3.2 26070 - imurmurhash: 0.1.4 26071 - is-glob: 4.0.3 26072 - json-stable-stringify-without-jsonify: 1.0.1 26073 - lodash.merge: 4.6.2 26074 - minimatch: 3.1.2 26075 - natural-compare: 1.4.0 26076 - optionator: 0.9.4 26077 - optionalDependencies: 26078 - jiti: 2.6.1 26079 - transitivePeerDependencies: 26080 - - supports-color 26081 - 26082 - eslint@9.39.1(jiti@2.6.1): 26083 - dependencies: 26084 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) 26085 - '@eslint-community/regexpp': 4.12.1 26086 - '@eslint/config-array': 0.21.1 26087 - '@eslint/config-helpers': 0.4.2 26088 - '@eslint/core': 0.17.0 26089 - '@eslint/eslintrc': 3.3.1 26090 - '@eslint/js': 9.39.1 26091 - '@eslint/plugin-kit': 0.4.1 26092 - '@humanfs/node': 0.16.6 26093 - '@humanwhocodes/module-importer': 1.0.1 26094 - '@humanwhocodes/retry': 0.4.3 26095 - '@types/estree': 1.0.8 26096 - ajv: 6.12.6 26097 - chalk: 4.1.2 26098 - cross-spawn: 7.0.6 26099 - debug: 4.4.3 26100 - escape-string-regexp: 4.0.0 26101 - eslint-scope: 8.4.0 26102 - eslint-visitor-keys: 4.2.1 26103 - espree: 10.4.0 26104 - esquery: 1.6.0 26105 - esutils: 2.0.3 26106 - fast-deep-equal: 3.1.3 26107 - file-entry-cache: 8.0.0 26108 - find-up: 5.0.0 26109 - glob-parent: 6.0.2 26110 - ignore: 5.3.2 26111 - imurmurhash: 0.1.4 26112 - is-glob: 4.0.3 26113 - json-stable-stringify-without-jsonify: 1.0.1 26114 - lodash.merge: 4.6.2 26115 - minimatch: 3.1.2 26116 - natural-compare: 1.4.0 26117 - optionator: 0.9.4 26118 - optionalDependencies: 26119 - jiti: 2.6.1 26120 - transitivePeerDependencies: 26121 - - supports-color 26122 - 26123 26068 eslint@9.39.2(jiti@2.6.1): 26124 26069 dependencies: 26125 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.6.1)) 26126 - '@eslint-community/regexpp': 4.12.1 26070 + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1)) 26071 + '@eslint-community/regexpp': 4.12.2 26127 26072 '@eslint/config-array': 0.21.1 26128 26073 '@eslint/config-helpers': 0.4.2 26129 26074 '@eslint/core': 0.17.0 ··· 26262 26207 strip-final-newline: 4.0.0 26263 26208 yoctocolors: 2.1.2 26264 26209 26265 - expect-type@1.2.2: {} 26266 - 26267 26210 expect-type@1.3.0: {} 26268 26211 26269 26212 exponential-backoff@3.1.2: {} ··· 26344 26287 transitivePeerDependencies: 26345 26288 - supports-color 26346 26289 26290 + express@5.0.1: 26291 + dependencies: 26292 + accepts: 2.0.0 26293 + body-parser: 2.2.2 26294 + content-disposition: 1.0.1 26295 + content-type: 1.0.5 26296 + cookie: 0.7.1 26297 + cookie-signature: 1.2.2 26298 + debug: 4.3.6 26299 + depd: 2.0.0 26300 + encodeurl: 2.0.0 26301 + escape-html: 1.0.3 26302 + etag: 1.8.1 26303 + finalhandler: 2.1.1 26304 + fresh: 2.0.0 26305 + http-errors: 2.0.0 26306 + merge-descriptors: 2.0.0 26307 + methods: 1.1.2 26308 + mime-types: 3.0.1 26309 + on-finished: 2.4.1 26310 + once: 1.4.0 26311 + parseurl: 1.3.3 26312 + proxy-addr: 2.0.7 26313 + qs: 6.13.0 26314 + range-parser: 1.2.1 26315 + router: 2.2.0 26316 + safe-buffer: 5.2.1 26317 + send: 1.2.0 26318 + serve-static: 2.2.1 26319 + setprototypeof: 1.2.0 26320 + statuses: 2.0.1 26321 + type-is: 2.0.1 26322 + utils-merge: 1.0.1 26323 + vary: 1.1.2 26324 + transitivePeerDependencies: 26325 + - supports-color 26326 + 26347 26327 express@5.2.1: 26348 26328 dependencies: 26349 26329 accepts: 2.0.0 ··· 26516 26496 file-entry-cache@8.0.0: 26517 26497 dependencies: 26518 26498 flat-cache: 4.0.1 26519 - 26520 - file-type@21.3.0: 26521 - dependencies: 26522 - '@tokenizer/inflate': 0.4.1 26523 - strtok3: 10.3.4 26524 - token-types: 6.1.2 26525 - uint8array-extras: 1.5.0 26526 - transitivePeerDependencies: 26527 - - supports-color 26528 26499 26529 26500 file-uri-to-path@1.0.0: {} 26530 26501 ··· 26884 26855 graceful-fs@4.2.11: {} 26885 26856 26886 26857 graphemer@1.4.0: {} 26858 + 26859 + graphql@16.13.1: {} 26887 26860 26888 26861 gray-matter@4.0.3: 26889 26862 dependencies: ··· 26969 26942 dependencies: 26970 26943 '@types/hast': 3.0.4 26971 26944 26945 + headers-polyfill@4.0.3: {} 26946 + 26972 26947 highlight.js@10.7.3: {} 26973 26948 26974 26949 hono@4.11.8: {} ··· 27341 27316 is-negative-zero@2.0.3: {} 27342 27317 27343 27318 is-network-error@1.1.0: {} 27319 + 27320 + is-node-process@1.2.0: {} 27344 27321 27345 27322 is-number-object@1.1.1: 27346 27323 dependencies: ··· 27625 27602 27626 27603 json5@2.2.3: {} 27627 27604 27605 + jsonc-parser@2.2.1: {} 27606 + 27628 27607 jsonc-parser@3.3.1: {} 27629 27608 27630 27609 jsonfile@4.0.0: ··· 27864 27843 '@lmdb/lmdb-win32-arm64': 3.4.4 27865 27844 '@lmdb/lmdb-win32-x64': 3.4.4 27866 27845 optional: true 27867 - 27868 - load-esm@1.0.3: {} 27869 27846 27870 27847 load-tsconfig@0.2.5: {} 27871 27848 ··· 28489 28466 28490 28467 ms@2.0.0: {} 28491 28468 28469 + ms@2.1.2: {} 28470 + 28492 28471 ms@2.1.3: {} 28493 28472 28494 28473 msgpackr-extract@3.0.3: ··· 28508 28487 msgpackr-extract: 3.0.3 28509 28488 optional: true 28510 28489 28490 + msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3): 28491 + dependencies: 28492 + '@inquirer/confirm': 5.1.21(@types/node@24.10.10) 28493 + '@mswjs/interceptors': 0.41.3 28494 + '@open-draft/deferred-promise': 2.2.0 28495 + '@types/statuses': 2.0.6 28496 + cookie: 1.0.2 28497 + graphql: 16.13.1 28498 + headers-polyfill: 4.0.3 28499 + is-node-process: 1.2.0 28500 + outvariant: 1.4.3 28501 + path-to-regexp: 6.3.0 28502 + picocolors: 1.1.1 28503 + rettime: 0.10.1 28504 + statuses: 2.0.2 28505 + strict-event-emitter: 0.5.1 28506 + tough-cookie: 6.0.0 28507 + type-fest: 5.5.0 28508 + until-async: 3.0.2 28509 + yargs: 17.7.2 28510 + optionalDependencies: 28511 + typescript: 5.9.3 28512 + transitivePeerDependencies: 28513 + - '@types/node' 28514 + optional: true 28515 + 28516 + msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3): 28517 + dependencies: 28518 + '@inquirer/confirm': 5.1.21(@types/node@25.2.1) 28519 + '@mswjs/interceptors': 0.41.3 28520 + '@open-draft/deferred-promise': 2.2.0 28521 + '@types/statuses': 2.0.6 28522 + cookie: 1.0.2 28523 + graphql: 16.13.1 28524 + headers-polyfill: 4.0.3 28525 + is-node-process: 1.2.0 28526 + outvariant: 1.4.3 28527 + path-to-regexp: 6.3.0 28528 + picocolors: 1.1.1 28529 + rettime: 0.10.1 28530 + statuses: 2.0.2 28531 + strict-event-emitter: 0.5.1 28532 + tough-cookie: 6.0.0 28533 + type-fest: 5.5.0 28534 + until-async: 3.0.2 28535 + yargs: 17.7.2 28536 + optionalDependencies: 28537 + typescript: 5.9.3 28538 + transitivePeerDependencies: 28539 + - '@types/node' 28540 + 28511 28541 muggle-string@0.4.1: {} 28512 28542 28513 - multer@2.1.1: 28543 + multer@1.4.5-lts.1: 28514 28544 dependencies: 28515 28545 append-field: 1.0.0 28516 28546 busboy: 1.6.0 28517 - concat-stream: 2.0.0 28547 + concat-stream: 1.6.2 28548 + mkdirp: 0.5.6 28549 + object-assign: 4.1.1 28518 28550 type-is: 1.6.18 28551 + xtend: 4.0.2 28519 28552 28520 28553 multicast-dns@7.2.5: 28521 28554 dependencies: ··· 29078 29111 - vue-tsc 29079 29112 - xml2js 29080 29113 29081 - nuxt@3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.1(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)): 29082 - dependencies: 29083 - '@nuxt/devalue': 2.0.2 29084 - '@nuxt/devtools': 1.7.0(rollup@4.56.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3)) 29085 - '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.56.0) 29086 - '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.56.0) 29087 - '@nuxt/telemetry': 2.6.6(magicast@0.3.5) 29088 - '@nuxt/vite-builder': 3.14.1592(@types/node@25.2.1)(eslint@9.39.1(jiti@2.6.1))(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3)) 29089 - '@unhead/dom': 1.11.20 29090 - '@unhead/shared': 1.11.20 29091 - '@unhead/ssr': 1.11.20 29092 - '@unhead/vue': 1.11.20(vue@3.5.25(typescript@5.9.3)) 29093 - '@vue/shared': 3.5.25 29094 - acorn: 8.14.0 29095 - c12: 2.0.1(magicast@0.3.5) 29096 - chokidar: 4.0.3 29097 - compatx: 0.1.8 29098 - consola: 3.4.2 29099 - cookie-es: 1.2.2 29100 - defu: 6.1.4 29101 - destr: 2.0.5 29102 - devalue: 5.3.2 29103 - errx: 0.1.0 29104 - esbuild: 0.24.2 29105 - escape-string-regexp: 5.0.0 29106 - estree-walker: 3.0.3 29107 - globby: 14.1.0 29108 - h3: 1.15.4 29109 - hookable: 5.5.3 29110 - ignore: 6.0.2 29111 - impound: 0.2.2(rollup@4.56.0) 29112 - jiti: 2.6.1 29113 - klona: 2.0.6 29114 - knitwork: 1.3.0 29115 - magic-string: 0.30.21 29116 - mlly: 1.8.0 29117 - nanotar: 0.1.1 29118 - nitropack: 2.12.4(@netlify/blobs@9.1.2)(encoding@0.1.13)(rolldown@1.0.0-rc.9) 29119 - nuxi: 3.28.0 29120 - nypm: 0.3.12 29121 - ofetch: 1.5.1 29122 - ohash: 1.1.6 29123 - pathe: 1.1.2 29124 - perfect-debounce: 1.0.0 29125 - pkg-types: 1.3.1 29126 - radix3: 1.1.2 29127 - scule: 1.3.0 29128 - semver: 7.7.3 29129 - std-env: 3.10.0 29130 - strip-literal: 2.1.1 29131 - tinyglobby: 0.2.10 29132 - ufo: 1.6.1 29133 - ultrahtml: 1.6.0 29134 - uncrypto: 0.1.3 29135 - unctx: 2.4.1 29136 - unenv: 1.10.0 29137 - unhead: 1.11.20 29138 - unimport: 3.14.6(rollup@4.56.0) 29139 - unplugin: 1.16.1 29140 - unplugin-vue-router: 0.10.9(rollup@4.56.0)(vue-router@4.5.0(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)) 29141 - unstorage: 1.17.0(@netlify/blobs@9.1.2)(db0@0.3.4)(ioredis@5.9.2) 29142 - untyped: 1.5.2 29143 - vue: 3.5.25(typescript@5.9.3) 29144 - vue-bundle-renderer: 2.1.2 29145 - vue-devtools-stub: 0.1.0 29146 - vue-router: 4.5.0(vue@3.5.25(typescript@5.9.3)) 29147 - optionalDependencies: 29148 - '@parcel/watcher': 2.5.1 29149 - '@types/node': 25.2.1 29150 - transitivePeerDependencies: 29151 - - '@azure/app-configuration' 29152 - - '@azure/cosmos' 29153 - - '@azure/data-tables' 29154 - - '@azure/identity' 29155 - - '@azure/keyvault-secrets' 29156 - - '@azure/storage-blob' 29157 - - '@biomejs/biome' 29158 - - '@capacitor/preferences' 29159 - - '@deno/kv' 29160 - - '@electric-sql/pglite' 29161 - - '@libsql/client' 29162 - - '@netlify/blobs' 29163 - - '@planetscale/database' 29164 - - '@upstash/redis' 29165 - - '@vercel/blob' 29166 - - '@vercel/functions' 29167 - - '@vercel/kv' 29168 - - aws4fetch 29169 - - better-sqlite3 29170 - - bufferutil 29171 - - db0 29172 - - drizzle-orm 29173 - - encoding 29174 - - eslint 29175 - - idb-keyval 29176 - - ioredis 29177 - - less 29178 - - lightningcss 29179 - - magicast 29180 - - meow 29181 - - mysql2 29182 - - optionator 29183 - - rolldown 29184 - - rollup 29185 - - sass 29186 - - sass-embedded 29187 - - sqlite3 29188 - - stylelint 29189 - - stylus 29190 - - sugarss 29191 - - supports-color 29192 - - terser 29193 - - typescript 29194 - - uploadthing 29195 - - utf-8-validate 29196 - - vite 29197 - - vls 29198 - - vti 29199 - - vue-tsc 29200 - - xml2js 29201 - 29202 29114 nuxt@3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3)): 29203 29115 dependencies: 29204 29116 '@nuxt/devalue': 2.0.2 ··· 29258 29170 unhead: 1.11.20 29259 29171 unimport: 3.14.6(rollup@4.56.0) 29260 29172 unplugin: 1.16.1 29261 - unplugin-vue-router: 0.10.9(rollup@4.56.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)) 29173 + unplugin-vue-router: 0.10.9(rollup@4.56.0)(vue-router@4.5.0(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)) 29262 29174 unstorage: 1.17.0(@netlify/blobs@9.1.2)(db0@0.3.4)(ioredis@5.9.2) 29263 29175 untyped: 1.5.2 29264 29176 vue: 3.5.25(typescript@5.9.3) ··· 29639 29551 29640 29552 outdent@0.5.0: {} 29641 29553 29554 + outvariant@1.4.3: {} 29555 + 29642 29556 own-keys@1.0.1: 29643 29557 dependencies: 29644 29558 get-intrinsic: 1.3.0 ··· 29715 29629 '@oxc-resolver/binding-win32-arm64-msvc': 11.19.1 29716 29630 '@oxc-resolver/binding-win32-ia32-msvc': 11.19.1 29717 29631 '@oxc-resolver/binding-win32-x64-msvc': 11.19.1 29632 + optional: true 29633 + 29634 + oxc-resolver@5.3.0: 29635 + optionalDependencies: 29636 + '@oxc-resolver/binding-darwin-arm64': 5.3.0 29637 + '@oxc-resolver/binding-darwin-x64': 5.3.0 29638 + '@oxc-resolver/binding-freebsd-x64': 5.3.0 29639 + '@oxc-resolver/binding-linux-arm-gnueabihf': 5.3.0 29640 + '@oxc-resolver/binding-linux-arm64-gnu': 5.3.0 29641 + '@oxc-resolver/binding-linux-arm64-musl': 5.3.0 29642 + '@oxc-resolver/binding-linux-riscv64-gnu': 5.3.0 29643 + '@oxc-resolver/binding-linux-s390x-gnu': 5.3.0 29644 + '@oxc-resolver/binding-linux-x64-gnu': 5.3.0 29645 + '@oxc-resolver/binding-linux-x64-musl': 5.3.0 29646 + '@oxc-resolver/binding-wasm32-wasi': 5.3.0 29647 + '@oxc-resolver/binding-win32-arm64-msvc': 5.3.0 29648 + '@oxc-resolver/binding-win32-x64-msvc': 5.3.0 29718 29649 29719 29650 oxc-transform@0.110.0: 29720 29651 optionalDependencies: ··· 29744 29675 magic-regexp: 0.10.0 29745 29676 oxc-parser: 0.110.0 29746 29677 29747 - oxfmt@0.27.0: 29748 - dependencies: 29749 - tinypool: 2.0.0 29750 - optionalDependencies: 29751 - '@oxfmt/darwin-arm64': 0.27.0 29752 - '@oxfmt/darwin-x64': 0.27.0 29753 - '@oxfmt/linux-arm64-gnu': 0.27.0 29754 - '@oxfmt/linux-arm64-musl': 0.27.0 29755 - '@oxfmt/linux-x64-gnu': 0.27.0 29756 - '@oxfmt/linux-x64-musl': 0.27.0 29757 - '@oxfmt/win32-arm64': 0.27.0 29758 - '@oxfmt/win32-x64': 0.27.0 29759 - 29760 29678 oxfmt@0.41.0: 29761 29679 dependencies: 29762 29680 tinypool: 2.1.0 ··· 29952 29870 path-to-regexp@0.1.12: {} 29953 29871 29954 29872 path-to-regexp@6.3.0: {} 29873 + 29874 + path-to-regexp@8.2.0: {} 29955 29875 29956 29876 path-to-regexp@8.3.0: {} 29957 29877 ··· 30472 30392 30473 30393 radix3@1.1.2: {} 30474 30394 30395 + randexp@0.5.3: 30396 + dependencies: 30397 + drange: 1.1.1 30398 + ret: 0.2.2 30399 + 30475 30400 randombytes@2.1.0: 30476 30401 dependencies: 30477 30402 safe-buffer: 5.2.1 ··· 30755 30680 onetime: 7.0.0 30756 30681 signal-exit: 4.1.0 30757 30682 30683 + ret@0.2.2: {} 30684 + 30758 30685 ret@0.5.0: {} 30759 30686 30760 30687 retry@0.12.0: {} 30761 30688 30762 30689 retry@0.13.1: {} 30690 + 30691 + rettime@0.10.1: {} 30763 30692 30764 30693 reusify@1.1.0: {} 30765 30694 ··· 30972 30901 dependencies: 30973 30902 ret: 0.5.0 30974 30903 30904 + safe-stable-stringify@1.1.1: {} 30905 + 30975 30906 safe-stable-stringify@2.5.0: {} 30976 30907 30977 30908 safer-buffer@2.1.2: {} ··· 31510 31441 optionalDependencies: 31511 31442 bare-events: 2.6.1 31512 31443 31444 + strict-event-emitter@0.5.1: {} 31445 + 31513 31446 string-argv@0.3.2: {} 31514 31447 31515 31448 string-width@4.2.3: ··· 31627 31560 strip-literal@3.1.0: 31628 31561 dependencies: 31629 31562 js-tokens: 9.0.1 31630 - 31631 - strtok3@10.3.4: 31632 - dependencies: 31633 - '@tokenizer/token': 0.3.0 31634 31563 31635 31564 structured-clone-es@1.0.0: {} 31636 31565 ··· 31962 31891 fdir: 6.5.0(picomatch@4.0.3) 31963 31892 picomatch: 4.0.3 31964 31893 31965 - tinypool@2.0.0: {} 31966 - 31967 31894 tinypool@2.1.0: {} 31968 31895 31969 31896 tinyrainbow@3.0.3: {} ··· 31987 31914 toad-cache@3.7.0: {} 31988 31915 31989 31916 toidentifier@1.0.1: {} 31990 - 31991 - token-types@6.1.2: 31992 - dependencies: 31993 - '@borewit/text-codec': 0.2.2 31994 - '@tokenizer/token': 0.3.0 31995 - ieee754: 1.2.1 31996 31917 31997 31918 tokenx@1.3.0: {} 31998 31919 ··· 32218 32139 32219 32140 typedarray@0.0.6: {} 32220 32141 32221 - typescript-eslint@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3): 32142 + typescript-eslint@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3): 32222 32143 dependencies: 32223 - '@typescript-eslint/eslint-plugin': 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 32224 - '@typescript-eslint/parser': 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 32225 - '@typescript-eslint/utils': 8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 32226 - eslint: 9.17.0(jiti@2.6.1) 32227 - typescript: 5.9.3 32228 - transitivePeerDependencies: 32229 - - supports-color 32230 - 32231 - typescript-eslint@8.54.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3): 32232 - dependencies: 32233 - '@typescript-eslint/eslint-plugin': 8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 32234 - '@typescript-eslint/parser': 8.54.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 32235 - '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3) 32236 - '@typescript-eslint/utils': 8.54.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3) 32237 - eslint: 9.17.0(jiti@2.6.1) 32144 + '@typescript-eslint/eslint-plugin': 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 32145 + '@typescript-eslint/parser': 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 32146 + '@typescript-eslint/utils': 8.29.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 32147 + eslint: 9.39.2(jiti@2.6.1) 32238 32148 typescript: 5.9.3 32239 32149 transitivePeerDependencies: 32240 32150 - supports-color ··· 32265 32175 uid@2.0.2: 32266 32176 dependencies: 32267 32177 '@lukeed/csprng': 1.1.0 32268 - 32269 - uint8array-extras@1.5.0: {} 32270 32178 32271 32179 ultrahtml@1.6.0: {} 32272 32180 ··· 32516 32424 32517 32425 unpipe@1.0.0: {} 32518 32426 32519 - unplugin-swc@1.5.9(@swc/core@1.15.18)(rollup@4.56.0): 32427 + unplugin-swc@1.5.5(@swc/core@1.11.29)(rollup@4.56.0): 32520 32428 dependencies: 32521 32429 '@rollup/pluginutils': 5.3.0(rollup@4.56.0) 32522 - '@swc/core': 1.15.18 32430 + '@swc/core': 1.11.29 32523 32431 load-tsconfig: 0.2.5 32524 32432 unplugin: 2.3.11 32525 32433 transitivePeerDependencies: ··· 32562 32470 - rollup 32563 32471 - vue 32564 32472 32565 - unplugin-vue-router@0.10.9(rollup@4.56.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)): 32566 - dependencies: 32567 - '@babel/types': 7.28.5 32568 - '@rollup/pluginutils': 5.2.0(rollup@4.56.0) 32569 - '@vue-macros/common': 1.16.1(vue@3.5.25(typescript@5.9.3)) 32570 - ast-walker-scope: 0.6.2 32571 - chokidar: 3.6.0 32572 - fast-glob: 3.3.3 32573 - json5: 2.2.3 32574 - local-pkg: 0.5.1 32575 - magic-string: 0.30.21 32576 - mlly: 1.8.0 32577 - pathe: 1.1.2 32578 - scule: 1.3.0 32579 - unplugin: 2.0.0-beta.1 32580 - yaml: 2.8.2 32581 - optionalDependencies: 32582 - vue-router: 4.5.0(vue@3.5.13(typescript@5.9.3)) 32583 - transitivePeerDependencies: 32584 - - rollup 32585 - - vue 32586 - 32587 32473 unplugin-vue-router@0.10.9(rollup@4.56.0)(vue-router@4.5.0(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)): 32588 32474 dependencies: 32589 32475 '@babel/types': 7.28.5 ··· 32728 32614 '@netlify/blobs': 9.1.2 32729 32615 db0: 0.3.4 32730 32616 ioredis: 5.9.2 32617 + 32618 + until-async@3.0.2: {} 32731 32619 32732 32620 untun@0.1.3: 32733 32621 dependencies: ··· 32817 32705 32818 32706 util-deprecate@1.0.2: {} 32819 32707 32708 + utility-types@3.11.0: {} 32709 + 32820 32710 utils-merge@1.0.1: {} 32821 32711 32822 32712 uuid@11.1.0: {} ··· 32934 32824 typescript: 5.9.3 32935 32825 vue-tsc: 3.2.4(typescript@5.9.3) 32936 32826 32937 - vite-plugin-checker@0.8.0(eslint@9.39.1(jiti@2.6.1))(optionator@0.9.4)(typescript@5.9.3)(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))(vue-tsc@3.2.4(typescript@5.9.3)): 32938 - dependencies: 32939 - '@babel/code-frame': 7.27.1 32940 - ansi-escapes: 4.3.2 32941 - chalk: 4.1.2 32942 - chokidar: 3.6.0 32943 - commander: 8.3.0 32944 - fast-glob: 3.3.3 32945 - fs-extra: 11.3.1 32946 - npm-run-path: 4.0.1 32947 - strip-ansi: 6.0.1 32948 - tiny-invariant: 1.3.3 32949 - vite: 5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1) 32950 - vscode-languageclient: 7.0.0 32951 - vscode-languageserver: 7.0.0 32952 - vscode-languageserver-textdocument: 1.0.12 32953 - vscode-uri: 3.1.0 32954 - optionalDependencies: 32955 - eslint: 9.39.1(jiti@2.6.1) 32956 - optionator: 0.9.4 32957 - typescript: 5.9.3 32958 - vue-tsc: 3.2.4(typescript@5.9.3) 32959 - 32960 32827 vite-plugin-checker@0.8.0(eslint@9.39.2(jiti@2.6.1))(optionator@0.9.4)(typescript@5.9.3)(vite@5.4.19(@types/node@25.2.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1))(vue-tsc@3.2.4(typescript@5.9.3)): 32961 32828 dependencies: 32962 32829 '@babel/code-frame': 7.27.1 ··· 33259 33126 - universal-cookie 33260 33127 - yaml 33261 33128 33262 - vitest-environment-nuxt@1.0.1(@vue/test-utils@2.4.6)(jsdom@28.0.0)(magicast@0.3.5)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))): 33129 + vitest-environment-nuxt@1.0.1(@vue/test-utils@2.4.6)(jsdom@28.0.0)(magicast@0.3.5)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))): 33263 33130 dependencies: 33264 - '@nuxt/test-utils': 4.0.0(@vue/test-utils@2.4.6)(jsdom@28.0.0)(magicast@0.3.5)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))) 33131 + '@nuxt/test-utils': 4.0.0(@vue/test-utils@2.4.6)(jsdom@28.0.0)(magicast@0.3.5)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))) 33265 33132 transitivePeerDependencies: 33266 33133 - '@cucumber/cucumber' 33267 33134 - '@jest/globals' ··· 33278 33145 - vite 33279 33146 - vitest 33280 33147 33281 - vitest@4.0.18(@types/node@24.10.10)(jiti@2.6.1)(jsdom@28.0.0)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2): 33282 - dependencies: 33283 - '@vitest/expect': 4.0.18 33284 - '@vitest/mocker': 4.0.18(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 33285 - '@vitest/pretty-format': 4.0.18 33286 - '@vitest/runner': 4.0.18 33287 - '@vitest/snapshot': 4.0.18 33288 - '@vitest/spy': 4.0.18 33289 - '@vitest/utils': 4.0.18 33290 - es-module-lexer: 1.7.0 33291 - expect-type: 1.2.2 33292 - magic-string: 0.30.21 33293 - obug: 2.1.1 33294 - pathe: 2.0.3 33295 - picomatch: 4.0.3 33296 - std-env: 3.10.0 33297 - tinybench: 2.9.0 33298 - tinyexec: 1.0.2 33299 - tinyglobby: 0.2.15 33300 - tinyrainbow: 3.0.3 33301 - vite: 7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 33302 - why-is-node-running: 2.3.0 33303 - optionalDependencies: 33304 - '@types/node': 24.10.10 33305 - jsdom: 28.0.0 33306 - transitivePeerDependencies: 33307 - - jiti 33308 - - less 33309 - - lightningcss 33310 - - msw 33311 - - sass 33312 - - sass-embedded 33313 - - stylus 33314 - - sugarss 33315 - - terser 33316 - - tsx 33317 - - yaml 33318 - 33319 - vitest@4.0.18(@types/node@25.2.1)(jiti@2.6.1)(jsdom@28.0.0)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2): 33320 - dependencies: 33321 - '@vitest/expect': 4.0.18 33322 - '@vitest/mocker': 4.0.18(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 33323 - '@vitest/pretty-format': 4.0.18 33324 - '@vitest/runner': 4.0.18 33325 - '@vitest/snapshot': 4.0.18 33326 - '@vitest/spy': 4.0.18 33327 - '@vitest/utils': 4.0.18 33328 - es-module-lexer: 1.7.0 33329 - expect-type: 1.2.2 33330 - magic-string: 0.30.21 33331 - obug: 2.1.1 33332 - pathe: 2.0.3 33333 - picomatch: 4.0.3 33334 - std-env: 3.10.0 33335 - tinybench: 2.9.0 33336 - tinyexec: 1.0.2 33337 - tinyglobby: 0.2.15 33338 - tinyrainbow: 3.0.3 33339 - vite: 7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 33340 - why-is-node-running: 2.3.0 33341 - optionalDependencies: 33342 - '@types/node': 25.2.1 33343 - jsdom: 28.0.0 33344 - transitivePeerDependencies: 33345 - - jiti 33346 - - less 33347 - - lightningcss 33348 - - msw 33349 - - sass 33350 - - sass-embedded 33351 - - stylus 33352 - - sugarss 33353 - - terser 33354 - - tsx 33355 - - yaml 33356 - 33357 - vitest@4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(vite@7.3.0(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)): 33148 + vitest@4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.0(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)): 33358 33149 dependencies: 33359 33150 '@vitest/expect': 4.1.0 33360 - '@vitest/mocker': 4.1.0(vite@7.3.0(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 33151 + '@vitest/mocker': 4.1.0(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.0(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 33361 33152 '@vitest/pretty-format': 4.1.0 33362 33153 '@vitest/runner': 4.1.0 33363 33154 '@vitest/snapshot': 4.1.0 ··· 33383 33174 - msw 33384 33175 optional: true 33385 33176 33386 - vitest@4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)): 33177 + vitest@4.1.0(@types/node@24.10.10)(jsdom@28.0.0)(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)): 33387 33178 dependencies: 33388 33179 '@vitest/expect': 4.1.0 33389 - '@vitest/mocker': 4.1.0(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 33180 + '@vitest/mocker': 4.1.0(msw@2.12.14(@types/node@24.10.10)(typescript@5.9.3))(vite@7.3.1(@types/node@24.10.10)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 33390 33181 '@vitest/pretty-format': 4.1.0 33391 33182 '@vitest/runner': 4.1.0 33392 33183 '@vitest/snapshot': 4.1.0 ··· 33411 33202 transitivePeerDependencies: 33412 33203 - msw 33413 33204 33414 - vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)): 33205 + vitest@4.1.0(@types/node@25.2.1)(jsdom@28.0.0)(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)): 33415 33206 dependencies: 33416 33207 '@vitest/expect': 4.1.0 33417 - '@vitest/mocker': 4.1.0(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 33208 + '@vitest/mocker': 4.1.0(msw@2.12.14(@types/node@25.2.1)(typescript@5.9.3))(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 33418 33209 '@vitest/pretty-format': 4.1.0 33419 33210 '@vitest/runner': 4.1.0 33420 33211 '@vitest/snapshot': 4.1.0 ··· 33484 33275 33485 33276 vue-devtools-stub@0.1.0: {} 33486 33277 33487 - vue-eslint-parser@10.2.0(eslint@9.17.0(jiti@2.6.1)): 33488 - dependencies: 33489 - debug: 4.4.3 33490 - eslint: 9.17.0(jiti@2.6.1) 33491 - eslint-scope: 8.4.0 33492 - eslint-visitor-keys: 4.2.1 33493 - espree: 10.4.0 33494 - esquery: 1.6.0 33495 - semver: 7.7.3 33496 - transitivePeerDependencies: 33497 - - supports-color 33498 - 33499 33278 vue-eslint-parser@10.2.0(eslint@9.39.2(jiti@2.6.1)): 33500 33279 dependencies: 33501 33280 debug: 4.4.3 ··· 33508 33287 transitivePeerDependencies: 33509 33288 - supports-color 33510 33289 33511 - vue-eslint-parser@9.4.3(eslint@9.17.0(jiti@2.6.1)): 33290 + vue-eslint-parser@9.4.3(eslint@9.39.2(jiti@2.6.1)): 33512 33291 dependencies: 33513 33292 debug: 4.4.3 33514 - eslint: 9.17.0(jiti@2.6.1) 33293 + eslint: 9.39.2(jiti@2.6.1) 33515 33294 eslint-scope: 7.2.2 33516 33295 eslint-visitor-keys: 3.4.3 33517 33296 espree: 9.6.1 ··· 33871 33650 xml-name-validator@5.0.0: {} 33872 33651 33873 33652 xmlchars@2.2.0: {} 33653 + 33654 + xtend@4.0.2: {} 33874 33655 33875 33656 y18n@5.0.8: {} 33876 33657
-10
renovate.json
··· 9 9 "matchPackageNames": ["zod"], 10 10 "matchFileNames": ["packages/openapi-ts-tests/zod/v3/**"], 11 11 "allowedVersions": "<4.0.0" 12 - }, 13 - { 14 - "matchFileNames": ["examples/**"], 15 - "groupName": "examples", 16 - "prPriority": -1 17 - }, 18 - { 19 - "matchFileNames": ["packages/**"], 20 - "groupName": "core packages", 21 - "prPriority": 10 22 12 } 23 13 ], 24 14 "prConcurrentLimit": 4,
+1
vitest.config.ts
··· 87 87 { 88 88 extends: true, 89 89 test: { 90 + globalSetup: ['./test/globalTeardown.ts'], 90 91 name: '@test/openapi-ts-valibot-v1', 91 92 root: 'packages/openapi-ts-tests/valibot/v1', 92 93 setupFiles: ['./vitest.setup.ts'],