diff --git a/docs/router/integrations/nativescript.md b/docs/router/integrations/nativescript.md index 4c33ef7e278..e84cd37a905 100644 --- a/docs/router/integrations/nativescript.md +++ b/docs/router/integrations/nativescript.md @@ -23,23 +23,24 @@ by NativeScript and Vite into the nearest `pnpm-workspace.yaml`. Existing workspace settings and explicit denials are preserved. ```sh -npm run native:ios -npm run native:android +npm run ios +npm run android ``` Requirements for the current stable NativeScript toolchain: - React 19 -- NativeScript 9 +- NativeScript 9.1 - `@nativescript-community/react` 19 - `react-nativescript` as an npm alias of `@nativescript-community/react` 19 -- `@nativescript/vite` 2.0.3 -- Vite 7.3 or newer within the Vite 7 major +- `@nativescript/vite` 8 +- Vite 8 -NativeScript's stable Vite plugin does not currently support Vite 8. The +NativeScript 9.1 integrates the Vite dev server, including HMR, into the +`ns debug` command, so no additional development scripts are needed. The initializer adds a compatible Vite version when one is absent and reports a -conflict for an existing incompatible range. `--force` deliberately replaces -that range. +conflict for an existing incompatible range such as Vite 7. `--force` +deliberately replaces that range. ## Sharing an app diff --git a/docs/start/framework/react/guide/nativescript.md b/docs/start/framework/react/guide/nativescript.md index aff3c5a8508..cb34a51f70d 100644 --- a/docs/start/framework/react/guide/nativescript.md +++ b/docs/start/framework/react/guide/nativescript.md @@ -19,17 +19,17 @@ From a React Start app: npx @tanstack/router-cli@latest native init ``` -The generated development scripts start the Start server and NativeScript app -together: +NativeScript 9.1 integrates the Vite dev server, including HMR, directly into +the CLI, so the generated scripts are plain `ns debug` commands: ```sh -npm run native:ios -npm run native:android +npm run ios +npm run android ``` -NativeScript Vite 2.0.3 does not register an HMR server for React, so these -scripts use `ns debug --no-hmr`. Source changes rebuild and restart the native -app instead of hot-patching it. +Run the normal Start dev server (`npm run dev`) in a second terminal when +screens call server functions during development; it hosts them on the +configured Start port. The Android emulator reaches the host server through `10.0.2.2`. The iOS simulator uses `127.0.0.1`. A physical device needs a reachable LAN or deployed @@ -111,17 +111,16 @@ are sent to `serverFnBase`. ## Production builds -Set the deployed endpoint before invoking a generated build script: +Set the deployed endpoint before invoking a release build: ```sh -TSS_SERVER_FN_BASE=https://app.example.com/_serverFn/ npm run native:build:ios -TSS_SERVER_FN_BASE=https://app.example.com/_serverFn/ npm run native:build:android +TSS_SERVER_FN_BASE=https://app.example.com/_serverFn/ ns build ios --release +TSS_SERVER_FN_BASE=https://app.example.com/_serverFn/ ns build android --release ``` -The generated scripts pass NativeScript's `--release` flag. Android release -builds require all four `--key-store-*` options, which can be appended after -`npm run native:build:android --`. Add `--for-device` and the appropriate iOS -signing options when producing an iOS device build. +Android release builds require all four `--key-store-*` options. Add +`--for-device` and the appropriate iOS signing options when producing an iOS +device build. NativeScript platform signing, App Store configuration, Android manifests, and device permissions remain standard NativeScript responsibilities. The diff --git a/examples/react/start-nativescript/README.md b/examples/react/start-nativescript/README.md index 405f88cfb0b..d1d9681dcae 100644 --- a/examples/react/start-nativescript/README.md +++ b/examples/react/start-nativescript/README.md @@ -7,15 +7,17 @@ with the `*-native.tsx` convention. ```sh pnpm dev -pnpm native:ios -pnpm native:android +pnpm ios +pnpm android ``` -The native commands start the Start development server and the NativeScript -debug build together. Production native builds run in release mode and must set -`TSS_SERVER_FN_BASE` to the absolute HTTPS server-function endpoint. Android -release builds also require NativeScript's four `--key-store-*` signing -arguments. +NativeScript 9.1 integrates the Vite dev server into the CLI, so `ns debug` +handles bundling and HMR on its own. Run `pnpm dev` in a second terminal when +screens call Start server functions; it hosts them on port 3000. Production +native builds run in release mode (`ns build ios --release` / +`ns build android --release`) and must set `TSS_SERVER_FN_BASE` to the absolute +HTTPS server-function endpoint. Android release builds also require +NativeScript's four `--key-store-*` signing arguments. NativeScript renders native `Frame`, `Page`, `ActionBar`, and layout views. It is not a WebView. iOS interactive swipe-back is provided by the native `Page` @@ -27,6 +29,3 @@ The web root route is replaced only in the native bundle. Imports such as `screens/HomeScreen` resolve to `HomeScreen-native.tsx`, while route and server modules stay shared. This is the intended migration boundary: DOM and CSS are not translated into NativeScript controls. - -The stable NativeScript Vite 2 integration currently requires Vite 7. This -example pins Vite 7.3.6 while the rest of the monorepo can use Vite 8. diff --git a/examples/react/start-nativescript/e2e/run-android.mjs b/examples/react/start-nativescript/e2e/run-android.mjs index 54ae1d4bc46..82ef5e8c1d8 100644 --- a/examples/react/start-nativescript/e2e/run-android.mjs +++ b/examples/react/start-nativescript/e2e/run-android.mjs @@ -480,7 +480,6 @@ async function main() { ANDROID_HOME: process.env.ANDROID_HOME || process.env.ANDROID_SDK_ROOT || tools.sdkRoot, JAVA_HOME: javaHome, - TSS_NATIVE_PLATFORM: 'android', TSS_SERVER_FN_BASE: serverFunctionBase, } diff --git a/examples/react/start-nativescript/package.json b/examples/react/start-nativescript/package.json index ce37982ca3f..dd7472fd427 100644 --- a/examples/react/start-nativescript/package.json +++ b/examples/react/start-nativescript/package.json @@ -8,16 +8,14 @@ "dev": "vite dev --host 0.0.0.0", "build": "vite build && tsc --noEmit", "preview": "vite preview", - "native:ios": "concurrently --kill-others-on-fail --names start,ios \"vite dev --host 0.0.0.0\" \"wait-on http-get://127.0.0.1:3000 && cross-env TSS_SERVER_FN_BASE=http://127.0.0.1:3000/_serverFn/ ns debug ios --no-hmr\"", - "native:android": "concurrently --kill-others-on-fail --names start,android \"vite dev --host 0.0.0.0\" \"wait-on http-get://127.0.0.1:3000 && cross-env TSS_SERVER_FN_BASE=http://10.0.2.2:3000/_serverFn/ ns debug android --no-hmr\"", - "native:build:ios": "ns build ios --release --env.production", - "native:build:android": "ns build android --release --env.production", - "native:test:ios": "node e2e/run-ios.mjs", - "native:test:android": "node e2e/run-android.mjs" + "ios": "ns debug ios", + "android": "ns debug android", + "test:ios": "node e2e/run-ios.mjs", + "test:android": "node e2e/run-android.mjs" }, "dependencies": { "@nativescript-community/react": "^19.0.0", - "@nativescript/core": "^9.0.20", + "@nativescript/core": "~9.1.0", "@tanstack/react-nativescript-router": "^0.0.1", "@tanstack/react-router": "^1.170.15", "@tanstack/react-start": "^1.168.25", @@ -28,21 +26,18 @@ "undom-ng": "^1.1.2" }, "devDependencies": { - "@nativescript/android": "^9.0.5", - "@nativescript/ios": "^9.0.3", - "@nativescript/types": "^9.0.0", - "@nativescript/vite": "2.0.3", + "@nativescript/android": "~9.1.0", + "@nativescript/ios": "~9.1.0", + "@nativescript/types": "~9.1.0", + "@nativescript/vite": "~8.0.0", "@tanstack/router-cli": "^1.167.17", "@types/node": "^22.5.4", "@types/react": "^19.0.8", "@types/react-dom": "^19.0.3", "@vitejs/plugin-react": "^5.2.0", - "concurrently": "^9.2.1", - "cross-env": "^10.1.0", - "nativescript": "^9.0.6", + "nativescript": "~9.1.0", "nitro": "^3.0.260311-beta", "typescript": "^6.0.2", - "vite": "^7.3.6", - "wait-on": "^9.0.3" + "vite": "^8.0.14" } } diff --git a/examples/react/start-nativescript/vite.native.config.ts b/examples/react/start-nativescript/vite.native.config.ts index ca88dbf842c..f0aab725067 100644 --- a/examples/react/start-nativescript/vite.native.config.ts +++ b/examples/react/start-nativescript/vite.native.config.ts @@ -1,7 +1,25 @@ +import { getCliFlags } from '@nativescript/vite' import { reactConfig } from '@nativescript/vite/react' import { tanstackStartNativeScript } from '@tanstack/react-start/plugin/nativescript' import { defineConfig, mergeConfig } from 'vite' +function isAndroidBuild(): boolean { + // NATIVESCRIPT_BUNDLER_ENV is checked first: the CLI injects it into the + // integrated dev-server process, where the argv --env flags may be absent. + try { + const env = JSON.parse(process.env.NATIVESCRIPT_BUNDLER_ENV ?? '{}') + if (env.android) { + return true + } + if (env.ios || env.visionos) { + return false + } + } catch { + // fall through to the argv flags + } + return Boolean(getCliFlags().android) +} + function getServerFnBase(mode: string): string { const configured = process.env.TSS_SERVER_FN_BASE if (configured) { @@ -12,7 +30,7 @@ function getServerFnBase(mode: string): string { 'Set TSS_SERVER_FN_BASE to the deployed absolute Start server-function URL before building the native app.', ) } - return process.env.TSS_NATIVE_PLATFORM === 'android' + return isAndroidBuild() ? 'http://10.0.2.2:3000/_serverFn/' : 'http://127.0.0.1:3000/_serverFn/' } diff --git a/packages/react-nativescript-router/README.md b/packages/react-nativescript-router/README.md index ce041d4c0aa..3c8b1af588f 100644 --- a/packages/react-nativescript-router/README.md +++ b/packages/react-nativescript-router/README.md @@ -19,19 +19,19 @@ merges an explicit build-script policy without replacing workspace settings. Then run one of: ```sh -npm run native:ios -npm run native:android +npm run ios +npm run android ``` -The current stable toolchain requires React 19, NativeScript 9, +The current stable toolchain requires React 19, NativeScript 9.1, `@nativescript-community/react` 19, a `react-nativescript` npm alias pointing -to that renderer, `@nativescript/vite@2.0.3`, and Vite 7.3 or newer within the -Vite 7 major. -The initializer refuses an existing Vite 8 range unless `--force` is used. +to that renderer, `@nativescript/vite` 8, and Vite 8. +The initializer refuses an existing incompatible Vite range such as Vite 7 +unless `--force` is used. -NativeScript Vite 2.0.3 does not register an HMR server for React. Generated -React scripts therefore use its supported `ns debug --no-hmr` workflow. Source -changes rebuild and restart the native app instead of hot-patching it. +NativeScript 9.1 integrates the Vite dev server, including HMR, into the +`ns debug` command, so the generated scripts are plain `ns debug ios` and +`ns debug android`. ## What is shared diff --git a/packages/react-nativescript-router/package.json b/packages/react-nativescript-router/package.json index bfa477901b8..edf77fbd475 100644 --- a/packages/react-nativescript-router/package.json +++ b/packages/react-nativescript-router/package.json @@ -97,12 +97,12 @@ }, "peerDependencies": { "@nativescript-community/react": ">=19.0.0 <20.0.0", - "@nativescript/core": ">=9.0.0 <10.0.0", + "@nativescript/core": ">=9.1.0", "dominative": ">=0.1.2", "react": ">=19.0.0 <20.0.0", "react-nativescript": ">=19.0.0 <20.0.0", "undom-ng": ">=1.1.2", - "vite": ">=7.3.0 <8.0.0" + "vite": ">=8.0.0" }, "peerDependenciesMeta": { "vite": { @@ -111,8 +111,8 @@ }, "devDependencies": { "@nativescript-community/react": "^19.0.0", - "@nativescript/core": "^9.0.20", - "@nativescript/types": "^9.0.0", + "@nativescript/core": "~9.1.0", + "@nativescript/types": "~9.1.0", "@types/node": ">=20", "@types/react": "^19.0.0", "@vitejs/plugin-react": "^4.3.4", diff --git a/packages/router-cli/src/index.ts b/packages/router-cli/src/index.ts index 38cef9e0f63..05ee1986891 100644 --- a/packages/router-cli/src/index.ts +++ b/packages/router-cli/src/index.ts @@ -94,7 +94,7 @@ export async function main() { `Initialized the ${result.mode} NativeScript target in ${result.root}.`, ) console.info( - `Run ${result.packageManager} run native:ios or ${result.packageManager} run native:android.`, + `Run ${result.packageManager} run ios or ${result.packageManager} run android.`, ) }, ) diff --git a/packages/router-cli/src/native-init.ts b/packages/router-cli/src/native-init.ts index 450b42833ec..1a6076c71e1 100644 --- a/packages/router-cli/src/native-init.ts +++ b/packages/router-cli/src/native-init.ts @@ -5,7 +5,7 @@ import { createRequire } from 'node:module' import path from 'node:path' import { isMap, parseDocument } from 'yaml' -const NATIVE_SCRIPT_VITE_VERSION = '^7.3.6' +const NATIVE_SCRIPT_VITE_VERSION = '^8.0.0' const NATIVE_SCRIPT_PNPM_BUILD_POLICY = { '@nativescript/core': true, '@parcel/watcher': true, @@ -288,14 +288,11 @@ function normalizePackageVersionRange( function supportsNativeScriptVite(version: string): boolean { const range = normalizePackageVersionRange('vite', version).trim() - const simpleRange = range.match( - /^(?:[~^])?v?7\.(\d+)\.(\d+)(?:-[0-9A-Za-z.-]+)?$/, - ) - if (simpleRange) { - return Number(simpleRange[1]) >= 3 + if (/^(?:[~^])?v?8\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?$/.test(range)) { + return true } - return /^>=\s*7\.3\.0\s+<\s*8(?:\.0\.0)?$/.test(range) + return /^>=\s*8(?:\.0){0,2}\s+<\s*9(?:\.0\.0)?$/.test(range) } function validateAppId(appId: string): void { @@ -429,10 +426,28 @@ function createStartViteConfig( ? ` ?? ${JSON.stringify(serverFnBase)}` : '' - return `import { reactConfig } from '@nativescript/vite/react' + return `import { getCliFlags } from '@nativescript/vite' +import { reactConfig } from '@nativescript/vite/react' import { tanstackStartNativeScript } from '@tanstack/react-start/plugin/nativescript' import { defineConfig, mergeConfig } from 'vite' +function isAndroidBuild(): boolean { + // NATIVESCRIPT_BUNDLER_ENV is checked first: the CLI injects it into the + // integrated dev-server process, where the argv --env flags may be absent. + try { + const env = JSON.parse(process.env.NATIVESCRIPT_BUNDLER_ENV ?? '{}') + if (env.android) { + return true + } + if (env.ios || env.visionos) { + return false + } + } catch { + // fall through to the argv flags + } + return Boolean(getCliFlags().android) +} + function getServerFnBase(mode: string): string { const configured = process.env.TSS_SERVER_FN_BASE${configuredBase} if (configured) { @@ -443,7 +458,7 @@ function getServerFnBase(mode: string): string { 'Set TSS_SERVER_FN_BASE to the deployed absolute Start server-function URL before building the native app.', ) } - return process.env.TSS_NATIVE_PLATFORM === 'android' + return isAndroidBuild() ? 'http://10.0.2.2:${serverPort}/_serverFn/' : 'http://127.0.0.1:${serverPort}/_serverFn/' } @@ -597,8 +612,6 @@ function createPackageJson( mode: 'router' | 'start', adapterVersion: string, routerVersion: string, - serverPort: number, - packageManager: NativeScriptPackageManager, force: boolean, conflicts: Array, ): PackageJson { @@ -608,42 +621,26 @@ function createPackageJson( } const scripts: Record = { - 'native:ios': isStart - ? `concurrently --kill-others-on-fail --names start,ios "${packageManager} run native:server" "wait-on http-get://127.0.0.1:${serverPort} && cross-env TSS_NATIVE_PLATFORM=ios ns debug ios --no-hmr"` - : 'cross-env TSS_NATIVE_PLATFORM=ios ns debug ios --no-hmr', - 'native:android': isStart - ? `concurrently --kill-others-on-fail --names start,android "${packageManager} run native:server" "wait-on http-get://127.0.0.1:${serverPort} && cross-env TSS_NATIVE_PLATFORM=android ns debug android --no-hmr"` - : 'cross-env TSS_NATIVE_PLATFORM=android ns debug android --no-hmr', - 'native:build:ios': - 'cross-env TSS_NATIVE_PLATFORM=ios ns build ios --release --env.production', - 'native:build:android': - 'cross-env TSS_NATIVE_PLATFORM=android ns build android --release --env.production', - 'native:clean': 'ns clean', - } - if (isStart) { - scripts['native:server'] = `vite dev --host 0.0.0.0 --port ${serverPort}` + ios: 'ns debug ios', + android: 'ns debug android', } const dependencies = { '@nativescript-community/react': '^19.0.0', - '@nativescript/core': '^9.0.20', + '@nativescript/core': '~9.1.0', '@tanstack/react-nativescript-router': adapterVersion, dominative: '^0.1.3', 'react-nativescript': 'npm:@nativescript-community/react@^19.0.0', 'undom-ng': '^1.1.2', } const devDependencies: Record = { - '@nativescript/android': '^9.0.5', - '@nativescript/ios': '^9.0.3', - '@nativescript/types': '^9.0.0', - '@nativescript/vite': '2.0.3', - 'cross-env': '^10.1.0', - nativescript: '^9.0.6', - } - if (isStart) { - devDependencies.concurrently = '^9.2.1' - devDependencies['wait-on'] = '^9.0.3' - } else { + '@nativescript/android': '~9.1.0', + '@nativescript/ios': '~9.1.0', + '@nativescript/types': '~9.1.0', + '@nativescript/vite': '~8.0.0', + nativescript: '~9.1.0', + } + if (!isStart) { devDependencies['@tanstack/router-plugin'] = routerVersion } @@ -839,8 +836,6 @@ export async function initializeNativeScript( mode, adapterVersion, routerVersion, - serverPort, - packageManager, options.force ?? false, conflicts, ) diff --git a/packages/router-cli/tests/native-init.test.ts b/packages/router-cli/tests/native-init.test.ts index 5eabce6975d..7d5a551760d 100644 --- a/packages/router-cli/tests/native-init.test.ts +++ b/packages/router-cli/tests/native-init.test.ts @@ -1,4 +1,4 @@ -import { mkdtemp, mkdir, readFile, rm, writeFile } from 'node:fs/promises' +import { mkdir, mkdtemp, readFile, rm, writeFile } from 'node:fs/promises' import { tmpdir } from 'node:os' import path from 'node:path' import { afterEach, expect, test } from 'vitest' @@ -112,19 +112,18 @@ test('initializes a Start app and is idempotent', async () => { devDependencies: Record } expect(packageJson.main).toBe('src/native/index.tsx') - expect(packageJson.scripts['native:ios']).toContain('concurrently') - expect(packageJson.scripts['native:ios']).toContain('pnpm run native:server') - expect(packageJson.scripts['native:ios']).toContain('ns debug ios --no-hmr') - expect(packageJson.scripts['native:build:ios']).toContain( - 'ns build ios --release --env.production', - ) - expect(packageJson.scripts['native:build:android']).toContain( - 'ns build android --release --env.production', - ) + expect(packageJson.scripts.ios).toBe('ns debug ios') + expect(packageJson.scripts.android).toBe('ns debug android') + expect(packageJson.dependencies['@nativescript/core']).toBe('~9.1.0') expect(packageJson.dependencies['@tanstack/react-nativescript-router']).toBe( 'latest', ) - expect(packageJson.devDependencies.vite).toBe('^7.3.6') + expect(packageJson.devDependencies.nativescript).toBe('~9.1.0') + expect(packageJson.devDependencies['@nativescript/vite']).toBe('~8.0.0') + expect(packageJson.devDependencies.concurrently).toBeUndefined() + expect(packageJson.devDependencies['wait-on']).toBeUndefined() + expect(packageJson.devDependencies['cross-env']).toBeUndefined() + expect(packageJson.devDependencies.vite).toBe('^8.0.0') const pnpmWorkspace = parse( await readFile(path.join(root, 'pnpm-workspace.yaml'), 'utf8'), ) as { allowBuilds: Record } @@ -335,13 +334,13 @@ test('rejects an invalid server function base before writing files', async () => ).rejects.toThrow() }) -test('rejects Vite 8 atomically and replaces it only with force', async () => { +test('rejects Vite 7 atomically and replaces it only with force', async () => { const root = await createFixture('start') const packageJsonPath = path.join(root, 'package.json') const packageJson = JSON.parse(await readFile(packageJsonPath, 'utf8')) as { devDependencies?: Record } - packageJson.devDependencies = { vite: '^8.0.0' } + packageJson.devDependencies = { vite: '^7.3.6' } const packageJsonBefore = `${JSON.stringify(packageJson, null, 2)}\n` await writeFile(packageJsonPath, packageJsonBefore) @@ -367,7 +366,7 @@ test('rejects Vite 8 atomically and replaces it only with force', async () => { ) as { devDependencies: Record } - expect(forcedPackageJson.devDependencies.vite).toBe('^7.3.6') + expect(forcedPackageJson.devDependencies.vite).toBe('^8.0.0') }) test('preflights conflicts before changing the project', async () => { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ffa17b95437..e5a887f9be4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,11 +5,6 @@ settings: excludeLinksFromLockfile: false overrides: - tanstack-start-example-nativescript>vite: 7.3.6 - '@nativescript/vite@2.0.3>vite': 7.3.6 - nativescript@9.0.6>axios: 1.18.1 - nativescript@9.0.6>simple-git: 3.36.0 - wait-on@9.0.10>axios: 1.18.1 '@types/babel__traverse': ^7.28.0 vite-plugin-dts: 4.2.3 solid-js: 1.9.12 @@ -9770,10 +9765,10 @@ importers: dependencies: '@nativescript-community/react': specifier: ^19.0.0 - version: 19.0.0(@nativescript/core@9.0.20)(dominative@0.1.3(@nativescript/core@9.0.20)(undom-ng@1.1.2))(react@19.2.3)(undom-ng@1.1.2) + version: 19.0.0(@nativescript/core@9.1.0)(dominative@0.1.3(@nativescript/core@9.1.0)(undom-ng@1.1.2))(react@19.2.3)(undom-ng@1.1.2) '@nativescript/core': - specifier: ^9.0.20 - version: 9.0.20 + specifier: ~9.1.0 + version: 9.1.0 '@tanstack/react-nativescript-router': specifier: workspace:* version: link:../../../packages/react-nativescript-router @@ -9785,7 +9780,7 @@ importers: version: link:../../../packages/react-start dominative: specifier: ^0.1.3 - version: 0.1.3(@nativescript/core@9.0.20)(undom-ng@1.1.2) + version: 0.1.3(@nativescript/core@9.1.0)(undom-ng@1.1.2) react: specifier: ^19.2.3 version: 19.2.3 @@ -9794,23 +9789,23 @@ importers: version: 19.2.3(react@19.2.3) react-nativescript: specifier: npm:@nativescript-community/react@^19.0.0 - version: '@nativescript-community/react@19.0.0(@nativescript/core@9.0.20)(dominative@0.1.3(@nativescript/core@9.0.20)(undom-ng@1.1.2))(react@19.2.3)(undom-ng@1.1.2)' + version: '@nativescript-community/react@19.0.0(@nativescript/core@9.1.0)(dominative@0.1.3(@nativescript/core@9.1.0)(undom-ng@1.1.2))(react@19.2.3)(undom-ng@1.1.2)' undom-ng: specifier: ^1.1.2 version: 1.1.2 devDependencies: '@nativescript/android': - specifier: ^9.0.5 - version: 9.0.5 + specifier: ~9.1.0 + version: 9.1.0 '@nativescript/ios': - specifier: ^9.0.3 - version: 9.0.3 + specifier: ~9.1.0 + version: 9.1.0 '@nativescript/types': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ~9.1.0 + version: 9.1.1 '@nativescript/vite': - specifier: 2.0.3 - version: 2.0.3(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@testing-library/jest-dom@6.6.3)(@types/node@25.0.9)(chokidar@5.0.0)(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(postcss@8.5.12)(react@19.2.3)(rollup@4.56.0)(solid-js@1.9.12)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(vue@3.5.25(typescript@6.0.2))(yaml@2.9.0) + specifier: ~8.0.0 + version: 8.0.0(245238542c207fb6c2c4392adf3f59ff) '@tanstack/router-cli': specifier: workspace:* version: link:../../../packages/router-cli @@ -9825,28 +9820,19 @@ importers: version: 19.2.3(@types/react@19.2.9) '@vitejs/plugin-react': specifier: ^5.2.0 - version: 5.2.0(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) - concurrently: - specifier: ^9.2.1 - version: 9.2.1 - cross-env: - specifier: ^10.1.0 - version: 10.1.0 + version: 5.2.0(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) nativescript: - specifier: ^9.0.6 - version: 9.0.6(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(debug@4.4.3) + specifier: ~9.1.0 + version: 9.1.0 nitro: specifier: ^3.0.260311-beta - version: 3.0.260311-beta(@electric-sql/pglite@0.3.2)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@libsql/client@0.15.15)(@netlify/blobs@10.1.0)(chokidar@5.0.0)(dotenv@17.4.2)(giget@2.0.0)(jiti@2.7.0)(lru-cache@11.5.1)(miniflare@4.20260317.0)(mysql2@3.15.3)(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(xml2js@0.6.2) + version: 3.0.260311-beta(@electric-sql/pglite@0.3.2)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@libsql/client@0.15.15)(@netlify/blobs@10.1.0)(chokidar@5.0.0)(dotenv@17.4.2)(giget@2.0.0)(jiti@2.7.0)(lru-cache@11.5.1)(miniflare@4.20260317.0)(mysql2@3.15.3)(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(xml2js@0.6.2) typescript: specifier: ^6.0.2 version: 6.0.2 vite: - specifier: 7.3.6 - version: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) - wait-on: - specifier: ^9.0.3 - version: 9.0.10 + specifier: ^8.0.14 + version: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) examples/react/start-rscs: dependencies: @@ -12694,13 +12680,13 @@ importers: devDependencies: '@nativescript-community/react': specifier: ^19.0.0 - version: 19.0.0(@nativescript/core@9.0.20)(dominative@0.1.3(@nativescript/core@9.0.20)(undom-ng@1.1.2))(react@19.2.3)(undom-ng@1.1.2) + version: 19.0.0(@nativescript/core@9.1.0)(dominative@0.1.3(@nativescript/core@9.1.0)(undom-ng@1.1.2))(react@19.2.3)(undom-ng@1.1.2) '@nativescript/core': - specifier: ^9.0.20 - version: 9.0.20 + specifier: ~9.1.0 + version: 9.1.0 '@nativescript/types': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ~9.1.0 + version: 9.1.1 '@types/node': specifier: 25.0.9 version: 25.0.9 @@ -12712,13 +12698,13 @@ importers: version: 4.7.0(vite@8.0.14(@types/node@25.0.9)(esbuild@0.28.1)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) dominative: specifier: ^0.1.3 - version: 0.1.3(@nativescript/core@9.0.20)(undom-ng@1.1.2) + version: 0.1.3(@nativescript/core@9.1.0)(undom-ng@1.1.2) react: specifier: ^19.2.3 version: 19.2.3 react-nativescript: specifier: npm:@nativescript-community/react@^19.0.0 - version: '@nativescript-community/react@19.0.0(@nativescript/core@9.0.20)(dominative@0.1.3(@nativescript/core@9.0.20)(undom-ng@1.1.2))(react@19.2.3)(undom-ng@1.1.2)' + version: '@nativescript-community/react@19.0.0(@nativescript/core@9.1.0)(dominative@0.1.3(@nativescript/core@9.1.0)(undom-ng@1.1.2))(react@19.2.3)(undom-ng@1.1.2)' undom-ng: specifier: ^1.1.2 version: 1.1.2 @@ -14954,6 +14940,9 @@ packages: '@blazediff/core@1.9.1': resolution: {integrity: sha512-ehg3jIkYKulZh+8om/O25vkvSsXXwC+skXmyA87FFx6A/45eqOkZsBltMw/TVteb0mloiGT8oGRTcjRAz66zaA==} + '@borewit/text-codec@0.2.2': + resolution: {integrity: sha512-DDaRehssg1aNrH4+2hnj1B7vnUGEjU6OIlyRdkMd0aUdIUvKXrJfXsy8LVtXAy7DRvYVluWbMspsRhz2lcW0mQ==} + '@braidai/lang@1.1.2': resolution: {integrity: sha512-qBcknbBufNHlui137Hft8xauQMTZDKdophmLFv05r2eNmdIv/MlPuP4TdUknHG68UdWLgVZwgxVe735HzJNIwA==} @@ -16686,26 +16675,6 @@ packages: engines: {node: '>=6'} hasBin: true - '@hapi/address@5.1.1': - resolution: {integrity: sha512-A+po2d/dVoY7cYajycYI43ZbYMXukuopIsqCjh5QzsBCipDtdofHntljDlpccMjIfTy6UOkg+5KPriwYch2bXA==} - engines: {node: '>=14.0.0'} - - '@hapi/formula@3.0.2': - resolution: {integrity: sha512-hY5YPNXzw1He7s0iqkRQi+uMGh383CGdyyIGYtB+W5N3KHPXoqychklvHhKCC9M3Xtv0OCs/IHw+r4dcHtBYWw==} - - '@hapi/hoek@11.0.7': - resolution: {integrity: sha512-HV5undWkKzcB4RZUusqOpcgxOaq6VOAH7zhhIr2g3G8NF/MlFO75SjOr2NfuSx0Mh40+1FqCkagKLJRykUWoFQ==} - - '@hapi/pinpoint@2.0.1': - resolution: {integrity: sha512-EKQmr16tM8s16vTT3cA5L0kZZcTMU5DUOZTuvpnY738m+jyP3JIUj+Mm1xc1rsLkGBQ/gVnfKYPwOmPg1tUR4Q==} - - '@hapi/tlds@1.1.7': - resolution: {integrity: sha512-MgNjRwy9Ti92yVAixLmDc8dd1bJIKwO9qlWCfFQRwRmUEDPQHYn4G6hwPFvFGUTzAa0FsS+inMjLin7GnyBRhA==} - engines: {node: '>=14.0.0'} - - '@hapi/topo@6.0.2': - resolution: {integrity: sha512-KR3rD5inZbGMrHmgPxsJ9dbi6zEK+C3ZwUwTa+eMwWLz7oijWUTWD2pMSNNYJAU6Qq+65NkxXjqHr/7LM2Xkqg==} - '@harperfast/extended-iterable@1.0.3': resolution: {integrity: sha512-sSAYhQca3rDWtQUHSAPeO7axFIUJOI6hn1gjRC5APVE1a90tuyT8f5WIgRsFhhWA7htNkju2veB9eWL6YHi/Lw==} @@ -17089,34 +17058,6 @@ packages: '@types/node': optional: true - '@ionic/utils-array@2.1.6': - resolution: {integrity: sha512-0JZ1Zkp3wURnv8oq6Qt7fMPo5MpjbLoUoa9Bu2Q4PJuSDWM8H8gwF3dQO7VTeUj3/0o1IB1wGkFWZZYgUXZMUg==} - engines: {node: '>=16.0.0'} - - '@ionic/utils-fs@3.1.7': - resolution: {integrity: sha512-2EknRvMVfhnyhL1VhFkSLa5gOcycK91VnjfrTB0kbqkTFCOXyXgVLI5whzq7SLrgD9t1aqos3lMMQyVzaQ5gVA==} - engines: {node: '>=16.0.0'} - - '@ionic/utils-object@2.1.6': - resolution: {integrity: sha512-vCl7sl6JjBHFw99CuAqHljYJpcE88YaH2ZW4ELiC/Zwxl5tiwn4kbdP/gxi2OT3MQb1vOtgAmSNRtusvgxI8ww==} - engines: {node: '>=16.0.0'} - - '@ionic/utils-process@2.1.11': - resolution: {integrity: sha512-Uavxn+x8j3rDlZEk1X7YnaN6wCgbCwYQOeIjv/m94i1dzslqWhqIHEqxEyeE8HsT5Negboagg7GtQiABy+BLbA==} - engines: {node: '>=16.0.0'} - - '@ionic/utils-stream@3.1.6': - resolution: {integrity: sha512-4+Kitey1lTA1yGtnigeYNhV/0tggI3lWBMjC7tBs1K9GXa/q7q4CtOISppdh8QgtOhrhAXS2Igp8rbko/Cj+lA==} - engines: {node: '>=16.0.0'} - - '@ionic/utils-subprocess@2.1.14': - resolution: {integrity: sha512-nGYvyGVjU0kjPUcSRFr4ROTraT3w/7r502f5QJEsMRKTqa4eEzCshtwRk+/mpASm0kgBN5rrjYA5A/OZg8ahqg==} - engines: {node: '>=16.0.0'} - - '@ionic/utils-terminal@2.3.4': - resolution: {integrity: sha512-cEiMFl3jklE0sW60r8JHH3ijFTwh/jkdEKWbylSyExQwZ8pPuwoXz7gpkWoJRLuoRHHSvg+wzNYyPJazIHfoJA==} - engines: {node: '>=16.0.0'} - '@ioredis/commands@1.5.0': resolution: {integrity: sha512-eUgLqrMf8nJkZxT24JvVRrQya1vZkQh8BBeYNwGDqa5I0VUi8ACx7uFvAaLxintokpTenkK6DASvo/bvNbBGow==} @@ -17139,116 +17080,116 @@ packages: resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jimp/core@1.6.0': - resolution: {integrity: sha512-EQQlKU3s9QfdJqiSrZWNTxBs3rKXgO2W+GxNXDtwchF3a4IqxDheFX1ti+Env9hdJXDiYLp2jTRjlxhPthsk8w==} + '@jimp/core@1.6.1': + resolution: {integrity: sha512-+BoKC5G6hkrSy501zcJ2EpfnllP+avPevcBfRcZe/CW+EwEfY6X1EZ8QWyT7NpDIvEEJb1fdJnMMfUnFkxmw9A==} engines: {node: '>=18'} - '@jimp/diff@1.6.0': - resolution: {integrity: sha512-+yUAQ5gvRC5D1WHYxjBHZI7JBRusGGSLf8AmPRPCenTzh4PA+wZ1xv2+cYqQwTfQHU5tXYOhA0xDytfHUf1Zyw==} + '@jimp/diff@1.6.1': + resolution: {integrity: sha512-YkKDPdHjLgo1Api3+Bhc0GLAygldlpt97NfOKoNg1U6IUNXA6X2MgosCjPfSBiSvJvrrz1fsIR+/4cfYXBI/HQ==} engines: {node: '>=18'} - '@jimp/file-ops@1.6.0': - resolution: {integrity: sha512-Dx/bVDmgnRe1AlniRpCKrGRm5YvGmUwbDzt+MAkgmLGf+jvBT75hmMEZ003n9HQI/aPnm/YKnXjg/hOpzNCpHQ==} + '@jimp/file-ops@1.6.1': + resolution: {integrity: sha512-T+gX6osHjprbDRad0/B71Evyre7ZdVY1z/gFGEG9Z8KOtZPKboWvPeP2UjbZYWQLy9UKCPQX1FNAnDiOPkJL7w==} engines: {node: '>=18'} - '@jimp/js-bmp@1.6.0': - resolution: {integrity: sha512-FU6Q5PC/e3yzLyBDXupR3SnL3htU7S3KEs4e6rjDP6gNEOXRFsWs6YD3hXuXd50jd8ummy+q2WSwuGkr8wi+Gw==} + '@jimp/js-bmp@1.6.1': + resolution: {integrity: sha512-xzWzNT4/u5zGrTT3Tme9sGU7YzIKxi13+BCQwLqACbt5DXf9SAfdzRkopZQnmDko+6In5nqaT89Gjs43/WdnYQ==} engines: {node: '>=18'} - '@jimp/js-gif@1.6.0': - resolution: {integrity: sha512-N9CZPHOrJTsAUoWkWZstLPpwT5AwJ0wge+47+ix3++SdSL/H2QzyMqxbcDYNFe4MoI5MIhATfb0/dl/wmX221g==} + '@jimp/js-gif@1.6.1': + resolution: {integrity: sha512-YjY2W26rQa05XhanYhRZ7dingCiNN+T2Ymb1JiigIbABY0B28wHE3v3Cf1/HZPWGu0hOg36ylaKgV5KxF2M58w==} engines: {node: '>=18'} - '@jimp/js-jpeg@1.6.0': - resolution: {integrity: sha512-6vgFDqeusblf5Pok6B2DUiMXplH8RhIKAryj1yn+007SIAQ0khM1Uptxmpku/0MfbClx2r7pnJv9gWpAEJdMVA==} + '@jimp/js-jpeg@1.6.1': + resolution: {integrity: sha512-HT9H3yOmlOFzYmdI15IYdfy6ggQhSRIaHeA+OTJSEORXBqEo97sUZu/DsgHIcX5NJ7TkJBTgZ9BZXsV6UbsyMg==} engines: {node: '>=18'} - '@jimp/js-png@1.6.0': - resolution: {integrity: sha512-AbQHScy3hDDgMRNfG0tPjL88AV6qKAILGReIa3ATpW5QFjBKpisvUaOqhzJ7Reic1oawx3Riyv152gaPfqsBVg==} + '@jimp/js-png@1.6.1': + resolution: {integrity: sha512-SZ/KVhI5UjcSzzlXsXdIi/LhJ7UShf2NkMOtVrbZQcGzsqNtynAelrOXeoTxcanfVqmNhAoVHg8yR2cYoqrYjA==} engines: {node: '>=18'} - '@jimp/js-tiff@1.6.0': - resolution: {integrity: sha512-zhReR8/7KO+adijj3h0ZQUOiun3mXUv79zYEAKvE0O+rP7EhgtKvWJOZfRzdZSNv0Pu1rKtgM72qgtwe2tFvyw==} + '@jimp/js-tiff@1.6.1': + resolution: {integrity: sha512-jDG/eJquID1M4MBlKMmDRBmz2TpXMv7TUyu2nIRUxhlUc2ogC82T+VQUkca9GJH1BBJ9dx5sSE5dGkWNjIbZxw==} engines: {node: '>=18'} - '@jimp/plugin-blit@1.6.0': - resolution: {integrity: sha512-M+uRWl1csi7qilnSK8uxK4RJMSuVeBiO1AY0+7APnfUbQNZm6hCe0CCFv1Iyw1D/Dhb8ph8fQgm5mwM0eSxgVA==} + '@jimp/plugin-blit@1.6.1': + resolution: {integrity: sha512-MwnI7C7K81uWddY9FLw1fCOIy6SsPIUftUz36Spt7jisCn8/40DhQMlSxpxTNelnZb/2SnloFimQfRZAmHLOqQ==} engines: {node: '>=18'} - '@jimp/plugin-blur@1.6.0': - resolution: {integrity: sha512-zrM7iic1OTwUCb0g/rN5y+UnmdEsT3IfuCXCJJNs8SZzP0MkZ1eTvuwK9ZidCuMo4+J3xkzCidRwYXB5CyGZTw==} + '@jimp/plugin-blur@1.6.1': + resolution: {integrity: sha512-lIo7Tzp5jQu30EFFSK/phXANK3citKVEjepDjQ6ljHoIFtuMRrnybnmI2Md24ulvWlDaz+hh3n6qrMb8ydwhZQ==} engines: {node: '>=18'} - '@jimp/plugin-circle@1.6.0': - resolution: {integrity: sha512-xt1Gp+LtdMKAXfDp3HNaG30SPZW6AQ7dtAtTnoRKorRi+5yCJjKqXRgkewS5bvj8DEh87Ko1ydJfzqS3P2tdWw==} + '@jimp/plugin-circle@1.6.1': + resolution: {integrity: sha512-kK1PavY6cKHNNKce37vdV4Tmpc1/zDKngGoeOV3j+EMatoHFZUinV3s6F9aWryPs3A0xhCLZgdJ6Zeea1d5LCQ==} engines: {node: '>=18'} - '@jimp/plugin-color@1.6.0': - resolution: {integrity: sha512-J5q8IVCpkBsxIXM+45XOXTrsyfblyMZg3a9eAo0P7VPH4+CrvyNQwaYatbAIamSIN1YzxmO3DkIZXzRjFSz1SA==} + '@jimp/plugin-color@1.6.1': + resolution: {integrity: sha512-LtUN1vAP+LRlZAtTNVhDRSiXx+26Kbz3zJaG6a5k59gQ95jgT5mknnF8lxkHcqJthM4MEk3/tPxkdJpEybyF/A==} engines: {node: '>=18'} - '@jimp/plugin-contain@1.6.0': - resolution: {integrity: sha512-oN/n+Vdq/Qg9bB4yOBOxtY9IPAtEfES8J1n9Ddx+XhGBYT1/QTU/JYkGaAkIGoPnyYvmLEDqMz2SGihqlpqfzQ==} + '@jimp/plugin-contain@1.6.1': + resolution: {integrity: sha512-m0qhrfA8jkTqretGv4w+T/ADFR4GwBpE0sCOC2uJ0dzr44/ddOMsIdrpi89kabqYiPYIrxkgdCVCLm3zn1Vkkg==} engines: {node: '>=18'} - '@jimp/plugin-cover@1.6.0': - resolution: {integrity: sha512-Iow0h6yqSC269YUJ8HC3Q/MpCi2V55sMlbkkTTx4zPvd8mWZlC0ykrNDeAy9IJegrQ7v5E99rJwmQu25lygKLA==} + '@jimp/plugin-cover@1.6.1': + resolution: {integrity: sha512-hZytnsth0zoll6cPf434BrT+p/v569Wr5tyO6Dp0dH1IDPhzhB5F38sZGMLDo7bzQiN9JFVB3fxkcJ/WYCJ3Mg==} engines: {node: '>=18'} - '@jimp/plugin-crop@1.6.0': - resolution: {integrity: sha512-KqZkEhvs+21USdySCUDI+GFa393eDIzbi1smBqkUPTE+pRwSWMAf01D5OC3ZWB+xZsNla93BDS9iCkLHA8wang==} + '@jimp/plugin-crop@1.6.1': + resolution: {integrity: sha512-EerRSLlclXyKDnYc/H9w/1amZW7b7v3OGi/VlerPd2M/pAu5X8TkyYWtfqYCXnNp1Ixtd8oCo9zGfY9zoXT4rg==} engines: {node: '>=18'} - '@jimp/plugin-displace@1.6.0': - resolution: {integrity: sha512-4Y10X9qwr5F+Bo5ME356XSACEF55485j5nGdiyJ9hYzjQP9nGgxNJaZ4SAOqpd+k5sFaIeD7SQ0Occ26uIng5Q==} + '@jimp/plugin-displace@1.6.1': + resolution: {integrity: sha512-K07QVl7xQwIfD6KfxRV/c3E9e7ZBXxUXdWuvoTWcKHL2qV48MOF5Nqbz/aJW4ThnQARIsxvYlZjPFiqkCjlU+g==} engines: {node: '>=18'} - '@jimp/plugin-dither@1.6.0': - resolution: {integrity: sha512-600d1RxY0pKwgyU0tgMahLNKsqEcxGdbgXadCiVCoGd6V6glyCvkNrnnwC0n5aJ56Htkj88PToSdF88tNVZEEQ==} + '@jimp/plugin-dither@1.6.1': + resolution: {integrity: sha512-+2V+GCV2WycMoX1/z977TkZ8Zq/4MVSKElHYatgUqtwXMi2fDK2gKYU2g9V39IqFvTJsTIsK0+58VFz/ROBVew==} engines: {node: '>=18'} - '@jimp/plugin-fisheye@1.6.0': - resolution: {integrity: sha512-E5QHKWSCBFtpgZarlmN3Q6+rTQxjirFqo44ohoTjzYVrDI6B6beXNnPIThJgPr0Y9GwfzgyarKvQuQuqCnnfbA==} + '@jimp/plugin-fisheye@1.6.1': + resolution: {integrity: sha512-XtS5ZyoZ0vxZxJ6gkqI63SivhtI58vX95foMPM+cyzYkRsJXMOYCr8DScxF5bp4Xr003NjYm/P+7+08tibwzHA==} engines: {node: '>=18'} - '@jimp/plugin-flip@1.6.0': - resolution: {integrity: sha512-/+rJVDuBIVOgwoyVkBjUFHtP+wmW0r+r5OQ2GpatQofToPVbJw1DdYWXlwviSx7hvixTWLKVgRWQ5Dw862emDg==} + '@jimp/plugin-flip@1.6.1': + resolution: {integrity: sha512-ws38W/sGj7LobNRayQ83garxiktOyWxM5vO/y4a/2cy9v65SLEUzVkrj+oeAaUSSObdz4HcCEla7XtGlnAGAaA==} engines: {node: '>=18'} - '@jimp/plugin-hash@1.6.0': - resolution: {integrity: sha512-wWzl0kTpDJgYVbZdajTf+4NBSKvmI3bRI8q6EH9CVeIHps9VWVsUvEyb7rpbcwVLWYuzDtP2R0lTT6WeBNQH9Q==} + '@jimp/plugin-hash@1.6.1': + resolution: {integrity: sha512-sZt6ZcMX6i8vFWb4GYnw0pR/o9++ef0dTVcboTB5B/g7nrxCODIB4wfEkJ/YqZM5wUvol77K1qeS0/rVO6z21A==} engines: {node: '>=18'} - '@jimp/plugin-mask@1.6.0': - resolution: {integrity: sha512-Cwy7ExSJMZszvkad8NV8o/Z92X2kFUFM8mcDAhNVxU0Q6tA0op2UKRJY51eoK8r6eds/qak3FQkXakvNabdLnA==} + '@jimp/plugin-mask@1.6.1': + resolution: {integrity: sha512-SIG0/FcmEj3tkwFxc7fAGLO8o4uNzMpSOdQOhbCgxefQKq5wOVMk9BQx/sdMPBwtMLr9WLq0GzLA/rk6t2v20A==} engines: {node: '>=18'} - '@jimp/plugin-print@1.6.0': - resolution: {integrity: sha512-zarTIJi8fjoGMSI/M3Xh5yY9T65p03XJmPsuNet19K/Q7mwRU6EV2pfj+28++2PV2NJ+htDF5uecAlnGyxFN2A==} + '@jimp/plugin-print@1.6.1': + resolution: {integrity: sha512-BYVz/X3Xzv8XYilVeDy11NOp0h7BTDjlOtu0BekIFHP1yHVd24AXNzbOy52XlzYZWQ0Dl36HOHEpl/nSNrzc6w==} engines: {node: '>=18'} - '@jimp/plugin-quantize@1.6.0': - resolution: {integrity: sha512-EmzZ/s9StYQwbpG6rUGBCisc3f64JIhSH+ncTJd+iFGtGo0YvSeMdAd+zqgiHpfZoOL54dNavZNjF4otK+mvlg==} + '@jimp/plugin-quantize@1.6.1': + resolution: {integrity: sha512-J2En9PLURfP+vwYDtuZ9T8yBW6BWYZBScydAjRiPBmJfEhTcNQqiiQODrZf7EqbbX/Sy5H6dAeRiqkgoV9N6Ww==} engines: {node: '>=18'} - '@jimp/plugin-resize@1.6.0': - resolution: {integrity: sha512-uSUD1mqXN9i1SGSz5ov3keRZ7S9L32/mAQG08wUwZiEi5FpbV0K8A8l1zkazAIZi9IJzLlTauRNU41Mi8IF9fA==} + '@jimp/plugin-resize@1.6.1': + resolution: {integrity: sha512-CLkrtJoIz2HdWnpYiN6p8KYcPc00rCH/SUu6o+lfZL05Q4uhecJlnvXuj9x+U6mDn3ldPmJj6aZqMHuUJzdVqg==} engines: {node: '>=18'} - '@jimp/plugin-rotate@1.6.0': - resolution: {integrity: sha512-JagdjBLnUZGSG4xjCLkIpQOZZ3Mjbg8aGCCi4G69qR+OjNpOeGI7N2EQlfK/WE8BEHOW5vdjSyglNqcYbQBWRw==} + '@jimp/plugin-rotate@1.6.1': + resolution: {integrity: sha512-nOjVjbbj705B02ksysKnh0POAwEBXZtJ9zQ5qC+X7Tavl3JNn+P3BzQovbBxLPSbUSld6XID9z5ijin4PtOAUg==} engines: {node: '>=18'} - '@jimp/plugin-threshold@1.6.0': - resolution: {integrity: sha512-M59m5dzLoHOVWdM41O8z9SyySzcDn43xHseOH0HavjsfQsT56GGCC4QzU1banJidbUrePhzoEdS42uFE8Fei8w==} + '@jimp/plugin-threshold@1.6.1': + resolution: {integrity: sha512-JOKv9F8s6tnVLf4sB/2fF0F339EFnHvgEdFYugO6VhowKLsap0pEZmLyE/DlRnYtIj2RddHZVxVMp/eKJ04l2Q==} engines: {node: '>=18'} - '@jimp/types@1.6.0': - resolution: {integrity: sha512-7UfRsiKo5GZTAATxm2qQ7jqmUXP0DxTArztllTcYdyw6Xi5oT4RaoXynVtCD4UyLK5gJgkZJcwonoijrhYFKfg==} + '@jimp/types@1.6.1': + resolution: {integrity: sha512-leI7YbveTNi565m910XgIOwXyuu074H5qazAD1357HImJSv2hqxnWXpwxQbadGWZ7goZRYBDZy5lpqud0p7q5w==} engines: {node: '>=18'} - '@jimp/utils@1.6.0': - resolution: {integrity: sha512-gqFTGEosKbOkYF/WFj26jMHOI5OH2jeP1MmC/zbK6BF6VJBf8rIC5898dPfSzZEbSA0wbbV5slbntWVc5PKLFA==} + '@jimp/utils@1.6.1': + resolution: {integrity: sha512-veFPRd93FCnS7AgmCkPgARVGoDRrJ9cm1ujuNyA+UfQ5VKbED2002sm5XfFLFwTsKC8j04heTrwe+tU1dluXOw==} engines: {node: '>=18'} '@jridgewell/gen-mapping@0.3.13': @@ -17864,33 +17805,59 @@ packages: react: ^19.2.3 undom-ng: ^1.1.2 - '@nativescript/android@9.0.5': - resolution: {integrity: sha512-X68BZJDZtnSU3NL13k3giUriCDvZPCS5rRcRBM77RyTKbK78bHsyP9Yl6REg4L35xORK2cX2HOl1NCec7lS2eA==} + '@nativescript/android@9.1.0': + resolution: {integrity: sha512-5V+9HSq4Bt4C8a4Hs0WraV3LClYbmXeSXFp/I7Q9/p2fJs+bt82zqriwr+1mo8joTB8B2SFYMGbZs0wFBMTPRQ==} - '@nativescript/core@9.0.20': - resolution: {integrity: sha512-zx+4mGO6aUCeVIV3c6x+b3H+ZTBJAvHAYqtjpOYJGiPZc0AG3OwVzXhp4qyAteWha8cnFFHU5+trnve9O0q2xg==} + '@nativescript/core@9.1.0': + resolution: {integrity: sha512-3aXJ3Xh69aLtpplACdKL1OUesjYCj0PGv7M8PNIZfQHoZLVF7d0piFl2wFABph00bGDBXop7OQmUsuW7Bht3OA==} - '@nativescript/doctor@2.0.17': - resolution: {integrity: sha512-+S3nL9/OwsrQ75MkolXtLYOuzzjc2W9EEqys7hg8FLFJbcQc47TYmpGLf/v7bdwx6Rh8G3HTcKy0QSkjInL1WQ==} + '@nativescript/doctor@2.0.18': + resolution: {integrity: sha512-ir8IqN5IQa8UTYq4Xr+58A0HmqBPDeu2wWiMXctT7q9SPa3XcBVmZLGgO7alPf+unP4jVhlz0Rvg+Ztruiw/Eg==} '@nativescript/hook@3.0.5': resolution: {integrity: sha512-MzL7R/nPZU2qnvDWWuJ8RB7H3luEwANgFX/d/ILdg7bSYxl6uANCfzlueHnWgrQmBxu6dTkvPsFW2WNVUxlhUg==} - '@nativescript/ios@9.0.3': - resolution: {integrity: sha512-1IE9OIkBac4D8IPeFZ7kNxQRUr9s7BgFwOoS8XwhX5RvJHE/oSqjbSp+ag9A7MennpyDs/qxduGkwpS1EmmxOg==} + '@nativescript/ios@9.1.0': + resolution: {integrity: sha512-rdSmL+oOL+iyLYoSBM/cS0bOMAKzzOax6SpR4WmIHpmpa7TrFrrmzekuPSkwTZGeA7NTXnXD6K45rFvCHm6kOA==} - '@nativescript/types-android@9.0.0': - resolution: {integrity: sha512-Az64E1m6jd7CKX/QKOZi3uSxQEXZbPW5NlmMNP9VGCP9UobHLd5GgqpEIyeBB4Jep4rckA2Z4LEEpjbu/my63Q==} + '@nativescript/types-android@9.1.1': + resolution: {integrity: sha512-PGaTum9tyqyyza3QT21Z7WrRR1+nM7ITsq9EJiaShLArThJI0PD1ZuDO5IoUUvSQ+gTKU2nLiVMnFbU4s3FeeQ==} - '@nativescript/types-ios@9.0.0': - resolution: {integrity: sha512-A13VLFFKNrkYqS7JU0V+R4wxKIE66VvYiHK1+vrVXqiK6l+95BxgEgRPD8FlXN7W2iXXqYLapo8nVMtWArpscg==} + '@nativescript/types-ios@9.1.1': + resolution: {integrity: sha512-V+2FPLyUYe4dhhr7DEdl6Wzmftwz7Ppxak2FZyXAsam6Kw1R+G13NyIsoV3kPV4KbAQhuc05buHZnYRHnBGx/w==} - '@nativescript/types@9.0.0': - resolution: {integrity: sha512-fR9ot7Si9L0StcsOZpAEThggeQb8cQxCL0BwRKuWHbm+SdlinuOWSl6lS3bKuIIcCzJem2cWP3UrzgweRnOe/A==} + '@nativescript/types@9.1.1': + resolution: {integrity: sha512-O5QOF6xzobdbNubA7rJkVk6fm6nvXPOHlnBkzKzkbuiiJutphuutlXr2Y+ixEBIvloxd7CK1r6AXPao3zZpRTA==} - '@nativescript/vite@2.0.3': - resolution: {integrity: sha512-YHyPEspViqw2zdw1LOT0r2balwBM5uldiArmLrlQ7XEmOldZu6R2Rnr30sXsh3QkOUXIY+/Yoy6Us5SH2OGAQw==} + '@nativescript/vite@8.0.0': + resolution: {integrity: sha512-Zchu3Y5J4oZpkDVeZCHlvR0/jvs4nqpX1HWxS6OSZmebioJIl5KiSWEvXt+aDR0sTL3A+1pGUxE4tDXsWH7qQQ==} hasBin: true + peerDependencies: + '@analogjs/vite-plugin-angular': ^2.0.0 + '@angular/build': ^21.0.0 + '@vitejs/plugin-vue': ^6.0.5 + '@vitejs/plugin-vue-jsx': ^5.1.5 + '@vue/compiler-sfc': ^3.5.0 + react-reconciler: ^0.32.0 + vite-plugin-solid: ^2.11.11 + vue-tsc: ^3.2.0 + peerDependenciesMeta: + '@analogjs/vite-plugin-angular': + optional: true + '@angular/build': + optional: true + '@vitejs/plugin-vue': + optional: true + '@vitejs/plugin-vue-jsx': + optional: true + '@vue/compiler-sfc': + optional: true + react-reconciler: + optional: true + vite-plugin-solid: + optional: true + vue-tsc: + optional: true '@neon-rs/load@0.0.4': resolution: {integrity: sha512-kTPhdZyTQxB+2wpiRcFWrDcejc4JI6tkPuS7UZCG4l6Zvc5kU/gGQ/ozvHTh1XR5tS+UlfAfGuPajjzQjCiHCw==} @@ -18104,9 +18071,6 @@ packages: resolution: {integrity: sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg==} engines: {node: ^20.17.0 || >=22.9.0} - '@nstudio/trapezedev-project@7.2.3': - resolution: {integrity: sha512-EIxEGjwPeMfBVkxvRvf8GY+pD3lfu8CP2sh/AD5eV4fgW/gpgRYE9WKbW4QJLj7WIRgQbn6Oos9NXq1OfTmzhA==} - '@nx/devkit@22.7.5': resolution: {integrity: sha512-/63ziS7kdHXYTLLhwWBu9hFwoFFT8xf+PkcQjsNdPqc5JmkYkSew0cE/vp5ORgBpGLWWnFPJgmfqjbJoO2C7jA==} peerDependencies: @@ -18870,9 +18834,6 @@ packages: '@poppinss/exception@1.2.2': resolution: {integrity: sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==} - '@prettier/plugin-xml@2.2.0': - resolution: {integrity: sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew==} - '@prisma/adapter-libsql@7.0.0': resolution: {integrity: sha512-RspyVP5FgvNhsb4XdpbcUfiWWh/JXucTxzLUVKlrL/sLYQ50Mxx855cElncWjl9u1chaLC5AOLqYC4wNH8XOzA==} @@ -21238,12 +21199,13 @@ packages: '@vue/compiler-sfc': optional: true + '@tokenizer/inflate@0.4.1': + resolution: {integrity: sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA==} + engines: {node: '>=18'} + '@tokenizer/token@0.3.0': resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} - '@trapezedev/gradle-parse@7.1.3': - resolution: {integrity: sha512-WQVF5pEJ5o/mUyvfGTG9nBKx9Te/ilKM3r2IT69GlbaooItT5ao7RyF1MUTBNjHLPk/xpGUY3c6PyVnjDlz0Vw==} - '@trpc/client@11.4.3': resolution: {integrity: sha512-i2suttUCfColktXT8bqex5kHW5jpT15nwUh0hGSDiW1keN621kSUQKcLJ095blqQAUgB+lsmgSqSMmB4L9shQQ==} peerDependencies: @@ -21268,20 +21230,8 @@ packages: '@ts-morph/common@0.22.0': resolution: {integrity: sha512-HqNBuV/oIlMKdkLshXd1zKBqNQCsuPEsgQOkfFQ/eUKjRlwndXW1AjN9LVkBEIukm00gGXSRmfkl0Wv5VXLnlw==} - '@ts-morph/common@0.26.1': - resolution: {integrity: sha512-Sn28TGl/4cFpcM+jwsH1wLncYq3FtN/BIpem+HOygfBWPT5pAeS5dB4VFVzV8FbnOKHpDLZmvAl4AjPEev5idA==} - - '@tsconfig/node10@1.0.12': - resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==} - - '@tsconfig/node12@1.0.11': - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - - '@tsconfig/node14@1.0.3': - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - - '@tsconfig/node16@1.0.4': - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + '@ts-morph/common@0.29.0': + resolution: {integrity: sha512-35oUmphHbJvQ/+UTwFNme/t2p3FoKiGJ5auTjjpNTop2dyREspirjMy82PLSC1pnDJ8ah1GU98hwpVt64YXQsg==} '@tufjs/canonical-json@2.0.0': resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==} @@ -21366,9 +21316,6 @@ packages: '@types/express@5.0.6': resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==} - '@types/fs-extra@8.1.5': - resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} - '@types/html-minifier-terser@6.1.0': resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} @@ -21448,9 +21395,6 @@ packages: '@types/serve-static@2.2.0': resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==} - '@types/slice-ansi@4.0.0': - resolution: {integrity: sha512-+OpjSaq85gvlZAYINyzKpLeiFkSC4EsC6IIiT6v6TLSU5k5U83fHGj9Lel8oKEXM0HqgrMVCjXPDPVICtxF7EQ==} - '@types/sockjs@0.3.36': resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} @@ -22139,12 +22083,10 @@ packages: react: ^19.2.3 react-dom: ^19.2.3 - '@xml-tools/parser@1.0.11': - resolution: {integrity: sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==} - '@xmldom/xmldom@0.8.13': resolution: {integrity: sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==} engines: {node: '>=10.0.0'} + deprecated: this version has critical issues, please update to the latest version '@xtuc/ieee754@1.2.0': resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} @@ -22202,10 +22144,6 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn-walk@8.3.5: - resolution: {integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==} - engines: {node: '>=0.4.0'} - acorn@8.14.1: resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==} engines: {node: '>=0.4.0'} @@ -22309,10 +22247,6 @@ packages: resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} engines: {node: '>=12'} - ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - ansi-styles@4.3.0: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} @@ -22347,9 +22281,6 @@ packages: resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==} engines: {node: '>= 14'} - arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} @@ -22395,10 +22326,6 @@ packages: resolution: {integrity: sha512-WHw67kLXYbZuHTmcdbIrVArCq5wxo6NEuj3hiYAWr8mwJeC+C2mMCIBIWCiDoCye/OF/xelc+teJ1ERoWmnEIA==} engines: {node: '>=18'} - astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} - async-mutex@0.5.0: resolution: {integrity: sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==} @@ -22411,9 +22338,10 @@ packages: asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} + atob@2.1.2: + resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} + engines: {node: '>= 4.5.0'} + hasBin: true atomic-sleep@1.0.0: resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} @@ -22724,6 +22652,10 @@ packages: resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==} engines: {node: 18 || 20 || >=22} + brace-expansion@5.0.9: + resolution: {integrity: sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==} + engines: {node: 20 || >=22} + braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} @@ -22823,10 +22755,6 @@ packages: camel-case@4.1.2: resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} - camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} - caniuse-lite@1.0.30001696: resolution: {integrity: sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ==} @@ -22837,10 +22765,6 @@ packages: resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==} engines: {node: '>=18'} - chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - chalk@3.0.0: resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} engines: {node: '>=8'} @@ -22873,9 +22797,6 @@ packages: chevrotain@10.5.0: resolution: {integrity: sha512-Pkv5rBY3+CsHOYfV5g/Vs5JY9WTHHDEKOlohI2XeygaZhUeqhAlldZ8Hz9cRmxu709bvS08YzxHdTPHhffc13A==} - chevrotain@7.1.1: - resolution: {integrity: sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==} - chokidar@3.6.0: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} engines: {node: '>= 8.10.0'} @@ -22946,9 +22867,6 @@ packages: resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==} engines: {node: '>=18'} - cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} - cliui@7.0.4: resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} @@ -22986,9 +22904,6 @@ packages: code-block-writer@13.0.3: resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==} - color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - color-convert@2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} engines: {node: '>=7.0.0'} @@ -22997,9 +22912,6 @@ packages: resolution: {integrity: sha512-fasDH2ont2GqF5HpyO4w0+BcewlhHEZOFn9c1ckZdHpJ56Qb7MHhH/IcJZbBGgvdtwdwNbLvxiBEdg336iA9Sg==} engines: {node: '>=14.6'} - color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} @@ -23281,12 +23193,10 @@ packages: resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==} engines: {node: '>= 14'} - create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - cron-parser@4.9.0: resolution: {integrity: sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==} engines: {node: '>=12.0.0'} + deprecated: v4 is no longer maintained, upgrade to v5 croner@9.1.0: resolution: {integrity: sha512-p9nwwR4qyT5W996vBZhdvBCnMhicY5ytZkR4D1Xj0wuTDEiMnjwR57Q3RXYY/s0EpX6Ay3vgIcfaR+ewGHsi+g==} @@ -23300,11 +23210,6 @@ packages: engines: {node: '>=20'} hasBin: true - cross-env@10.1.0: - resolution: {integrity: sha512-GsYosgnACZTADcmEyJctkJIoqAhHjttw7RsFrVoJNXbsWWqaq6Ym+7kZjq6mS45O0jij6vtiReppKQEtqWy6Dw==} - engines: {node: '>=20'} - hasBin: true - cross-spawn@6.0.6: resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==} engines: {node: '>=4.8'} @@ -23392,6 +23297,9 @@ packages: css.escape@1.5.1: resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + css@3.0.0: + resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==} + cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} @@ -23491,16 +23399,16 @@ packages: decache@4.6.2: resolution: {integrity: sha512-2LPqkLeu8XWHU8qNCS3kcF6sCcb5zIzvWaAHYSvPfwhdd7mHuah29NssMzrTYyHN4F5oFy2ko9OBYxegtU0FEw==} - decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - decimal.js@10.5.0: resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==} decimal.js@10.6.0: resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} + decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} + dedent@1.5.1: resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==} peerDependencies: @@ -23673,14 +23581,6 @@ packages: dexie@4.2.1: resolution: {integrity: sha512-Ckej0NS6jxQ4Po3OrSQBFddayRhTCic2DoCAG5zacOfOVB9P2Q5Xc5uL/nVa7ZVs+HdMnvUPzLFCB/JwpB6Csg==} - diff@4.0.4: - resolution: {integrity: sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==} - engines: {node: '>=0.3.1'} - - diff@5.2.2: - resolution: {integrity: sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==} - engines: {node: '>=0.3.1'} - diff@8.0.2: resolution: {integrity: sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==} engines: {node: '>=0.3.1'} @@ -24202,6 +24102,7 @@ packages: eslint@9.22.0: resolution: {integrity: sha512-9V/QURhsRN40xuHXWjV64yvrzMjcz7ZyNoF2jJFmy9j/SLk0u1OLSZgXi28MrXjymnjEGSR80WCdab3RGMDveQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true peerDependencies: jiti: '*' @@ -24405,9 +24306,9 @@ packages: resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} engines: {node: '>=16.0.0'} - file-type@16.5.4: - resolution: {integrity: sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==} - engines: {node: '>=10'} + file-type@21.3.4: + resolution: {integrity: sha512-Ievi/yy8DS3ygGvT47PjSfdFoX+2isQueoYP1cntFW1JLYAuS4GD7NUPGg4zv2iZfV52uDyk5w5Z0TdpRS6Q1g==} + engines: {node: '>=20'} file-uri-to-path@1.0.0: resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} @@ -24545,10 +24446,6 @@ packages: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} - fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} - fs-minipass@3.0.3: resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -24717,10 +24614,6 @@ packages: graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - gradle-to-js@2.0.1: - resolution: {integrity: sha512-is3hDn9zb8XXnjbEeAEIqxTpLHUiGBqjegLmXPuyMBfKAggpadWFku4/AP8iYAGBX6qR9/5UIUIp47V0XI3aMw==} - hasBin: true - grammex@3.1.11: resolution: {integrity: sha512-HNwLkgRg9SqTAd1N3Uh/MnKwTBTzwBxTOPbXQ8pb0tpwydjk90k4zRE8JUn9fMUiRwKtXFZ1TWFmms3dZHN+Fg==} @@ -24778,10 +24671,6 @@ packages: resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} engines: {node: '>= 0.4'} - has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - has-flag@4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} @@ -25083,10 +24972,6 @@ packages: ini@1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - ini@2.0.0: - resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} - engines: {node: '>=10'} - ini@6.0.0: resolution: {integrity: sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ==} engines: {node: ^20.17.0 || >=22.9.0} @@ -25110,8 +24995,8 @@ packages: resolution: {integrity: sha512-tAAg/72/VxOUW7RQSX1pIxJVucYKcjFjfvj60L57jrZpYCHC3XN0WCQ3sNYL4Gmvv+7GPvTAjc+KSdeNuE8oWQ==} engines: {node: '>=12.22.0'} - ios-device-lib@0.9.4: - resolution: {integrity: sha512-UoR3+JZ4Ox9xSbp4sM6kMQu7JL5RLqgSS4gLy39hAYYtZqMpNB/u47uN63ZEq/RhqtrNFub/w7t3QicLLQ9bvg==} + ios-device-lib@0.9.5: + resolution: {integrity: sha512-abZn5jjIDKG+P7K9fukdWTwDdSp8U9FhjIl2/qVa7VtKA0d8hm075tdi3IEzxClKAdpqv/0zO0b+wXBF3WVzkQ==} ios-mobileprovision-finder@1.2.1: resolution: {integrity: sha512-9g1AJFRjWdCVdNKn7FpGv/t3EK5wFqP6EEhFVdUk7Pr8n4cVkFGyKa+l/XQdfjVUN5PnLHj5MY3x31Q3X8r80g==} @@ -25418,8 +25303,8 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} - jimp@1.6.0: - resolution: {integrity: sha512-YcwCHw1kiqEeI5xRpDlPPBGL2EOpBKLwO4yIBJcXWHPj5PnA5urGq0jbyhM5KoNpypQ6VboSoxc9D8HyfvngSg==} + jimp@1.6.1: + resolution: {integrity: sha512-hNQh6rZtWfSVWSNVmvq87N5BPJsNH7k7I7qyrXf9DOma9xATQk3fsyHazCQe51nCjdkoWdTmh0vD7bjVSLoxxw==} engines: {node: '>=18'} jiti@2.6.1: @@ -25433,10 +25318,6 @@ packages: jju@1.4.0: resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} - joi@18.2.3: - resolution: {integrity: sha512-N5A3KTWQpPWT4ExxxPlUx7WmykGXRzhNidWhV41d6Abu9YfI2NyWCJuxdPnslJCPWtbRpSVOWSnSS6GakLM/Rg==} - engines: {node: '>= 20'} - jose@6.1.0: resolution: {integrity: sha512-TTQJyoEoKcC1lscpVDCSsVgYzUDg/0Bt3WE//WiTPK6uOCQC2KZS4MpugbMWt/zyjkopgZoXhZuCi00gLudfUA==} @@ -25553,9 +25434,6 @@ packages: jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} - jsonfile@6.2.1: - resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==} - jsonparse@1.3.1: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} @@ -25883,9 +25761,6 @@ packages: lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - lodash@4.17.23: - resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==} - lodash@4.18.1: resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==} @@ -25967,9 +25842,6 @@ packages: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} engines: {node: '>=6'} - make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - make-fetch-happen@15.0.6: resolution: {integrity: sha512-Je0fLJ0F5atA7F+eIlLzk+Wkcl57JDf4kf+EW8xiP5E31xOQxkIxTbgf1Oi1Lw9tRI9UEMRdI5Vz2xTzoNU1Jw==} engines: {node: ^20.17.0 || >=22.9.0} @@ -26127,16 +25999,13 @@ packages: minimalistic-assert@1.0.1: resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - minimatch@10.2.4: - resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==} - engines: {node: 18 || 20 || >=22} - minimatch@10.2.5: resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==} engines: {node: 18 || 20 || >=22} - minimatch@3.0.5: - resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + minimatch@10.2.6: + resolution: {integrity: sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==} + engines: {node: 18 || 20 || >=22} minimatch@3.0.8: resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} @@ -26187,10 +26056,6 @@ packages: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} - minizlib@3.0.1: - resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==} - engines: {node: '>= 18'} - minizlib@3.1.0: resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==} engines: {node: '>= 18'} @@ -26290,12 +26155,12 @@ packages: engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} hasBin: true - nativescript-dev-xcode@0.8.1: - resolution: {integrity: sha512-AIHoah4ZEo8CUC6xb7CX0dWTKHcsoO4DL+nYVwIESVd2XQspE1pzSRMmar9/maz4rxbPeFFTEN7eknqn69+aVg==} + nativescript-dev-xcode@0.8.2: + resolution: {integrity: sha512-Df18n2/t6eS08ilPF8OfcF0d+l/cMyhnmT/ZYiWn0XWn2BaGPg1DgXY5vC7B0fFmfncngJmyrInJwoGF0whmVA==} engines: {node: '>=14.0.0'} - nativescript@9.0.6: - resolution: {integrity: sha512-l0FoivFzHhQlivOWb7YdRjgNAHDCriYnsVxwsyg3EKc0AKp2L8vwdJgcFF2LXbmlp5/amJeDnThc2iVSihNCmg==} + nativescript@9.1.0: + resolution: {integrity: sha512-1Sml8HDljmGE7jvTRXruUPJhy3W9PMtWwmQWP+SwETO6JmPuEYJ2nFm9Dmj2VjrPAV39wuLhPP89M6bW4RVf7g==} engines: {node: '>=20.0.0'} hasBin: true @@ -26730,10 +26595,6 @@ packages: resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} engines: {node: '>=6'} - p-map@7.0.3: - resolution: {integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==} - engines: {node: '>=18'} - p-map@7.0.6: resolution: {integrity: sha512-I4Prw6ivkd6p8PiYR1tXASOAOBzIJwu0TB7fqaX0c/8c3QAehNYmX57EijyGGGBt3c/BIowGwV03RVBtXvHEVg==} engines: {node: '>=18'} @@ -26905,10 +26766,6 @@ packages: pbxproj-dom@1.2.0: resolution: {integrity: sha512-K2czrWqA68AR0q1UXz5EBi/zoxcljrkO4RSJX0jPnVn3iyE0HYnYOzaEEDYMpueczkT/Vtdm3SCc3NM+12kMaQ==} - peek-readable@4.1.0: - resolution: {integrity: sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==} - engines: {node: '>=8'} - pend@1.2.0: resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} @@ -26989,9 +26846,6 @@ packages: engines: {node: '>=18'} hasBin: true - plist-merge-patch@0.2.0: - resolution: {integrity: sha512-JAkxPVP8F+6e28Ppd2T6QpP79/pZWj1BM1mWxE+9TRMRLeAlodmK+I8Db/cp98GPxRWPPwHxUOIKR2vnCX1J4Q==} - plist@3.0.6: resolution: {integrity: sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==} engines: {node: '>=6'} @@ -27153,13 +27007,13 @@ packages: engines: {node: '>=14'} hasBin: true - prettier@3.7.3: - resolution: {integrity: sha512-QgODejq9K3OzoBbuyobZlUhznP5SKwPqp+6Q6xw6o8gnhr4O85L2U915iM2IDcfF2NPXVaM9zlo9tdwipnYwzg==} + prettier@3.8.1: + resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==} engines: {node: '>=14'} hasBin: true - prettier@3.8.1: - resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==} + prettier@3.9.6: + resolution: {integrity: sha512-OpN0zzVdiaiAhxpuuj5efpIS4sY9j7bY6uR5mnj5yPzGkdkjNKSJeUThPb60Jw29QuAZgA4o+/iB49kFiaBX6g==} engines: {node: '>=14'} hasBin: true @@ -27484,10 +27338,6 @@ packages: resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - readable-web-to-node-stream@3.0.4: - resolution: {integrity: sha512-9nX56alTf5bwXQ3ZDipHJhusu9NTQJ/CVPtb/XHAJCXihZeitfJvIRS4GqQ/mfIoOE3IelHMrpayVrosdHBuLw==} - engines: {node: '>=8'} - readdir-glob@1.1.3: resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} @@ -27593,11 +27443,6 @@ packages: resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} engines: {node: '>=0.10'} - replace@1.2.2: - resolution: {integrity: sha512-C4EDifm22XZM2b2JOYe6Mhn+lBsLBAvLbK8drfUQLTfD1KYl/n3VaW/CDju0Ny4w3xTtegBpg8YNSpFJPUDSjA==} - engines: {node: '>= 6'} - hasBin: true - require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} @@ -27606,9 +27451,6 @@ packages: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} - require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - require-package-name@2.0.1: resolution: {integrity: sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==} @@ -27682,10 +27524,6 @@ packages: rfdc@1.4.1: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - rimraf@5.0.10: - resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} - hasBin: true - rimraf@6.1.2: resolution: {integrity: sha512-cFCkPslJv7BAXJsYlK1dZsbP8/ZNLkCAQ0bi1hf5EKX2QHegmDFEFA6QhuYJlk7UDdc+02JjO80YSOrWPpw06g==} engines: {node: 20 || >=22} @@ -27948,9 +27786,6 @@ packages: resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==} engines: {node: '>= 18'} - set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - set-cookie-parser@2.7.2: resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==} @@ -28088,10 +27923,6 @@ packages: slashes@3.0.12: resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==} - slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} - slice-ansi@7.1.2: resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==} engines: {node: '>=18'} @@ -28153,6 +27984,10 @@ packages: peerDependencies: webpack: ^5.72.1 + source-map-resolve@0.6.0: + resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + source-map-support@0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} @@ -28168,6 +28003,10 @@ packages: resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} engines: {node: '>= 12'} + source-map@0.8.0: + resolution: {integrity: sha512-d8EqvL+k/SOXCreS/SUzg2ciyHqBBLcN/yuRjFsbvVhHTE2pgei7oAhmPM7kWFbkX6OSMQfUq4KbkF3au9lhYQ==} + engines: {node: '>= 12'} + spawn-command@0.0.2: resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==} @@ -28372,9 +28211,9 @@ packages: strip-literal@3.1.0: resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} - strtok3@6.3.0: - resolution: {integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==} - engines: {node: '>=10'} + strtok3@10.3.5: + resolution: {integrity: sha512-ki4hZQfh5rX0QDLLkOCj+h+CVNkqmp/CMf8v8kZpkNVK6jGQooMytqzLZYUVYIZcFZ6yDB70EfD8POcFXiF5oA==} + engines: {node: '>=18'} style-loader@4.0.0: resolution: {integrity: sha512-1V4WqhhZZgjVAVJyt7TdDPZoPBPNHbekX4fWnCJL1yQukhCeZhJySUL+gL9y6sNdN95uEOS83Y55SqHcP7MzLA==} @@ -28392,10 +28231,6 @@ packages: resolution: {integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==} engines: {node: '>=18'} - supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - supports-color@7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} engines: {node: '>=8'} @@ -28463,10 +28298,9 @@ packages: tar-stream@3.2.0: resolution: {integrity: sha512-ojzvCvVaNp6aOTFmG7jaRD0meowIAuPc3cMMhSgKiVWws1GyHbGd/xvnyuRKcKlMpt3qvxx6r0hreCNITP9hIg==} - tar@7.4.3: - resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} + tar@7.5.22: + resolution: {integrity: sha512-MFO/QzvtAOmJbkhOaCTvbGcFN9L9b+JunIsDwaKljSOdcLMea3NJ1k9Usz/rjdfSXTq4dfzfeS7W4p4YOAAHeA==} engines: {node: '>=18'} - deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me tar@7.5.9: resolution: {integrity: sha512-BTLcK0xsDh2+PUe9F6c2TlRp4zOOBMTkoQHQIWSIzI0R7KG46uEwq4OPk2W7bZcprBMsuaeFsqwYr7pjh6CuHg==} @@ -28581,6 +28415,10 @@ packages: resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==} engines: {node: '>=12.0.0'} + tinyglobby@0.2.17: + resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==} + engines: {node: '>=12.0.0'} + tinyrainbow@3.1.0: resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} engines: {node: '>=14.0.0'} @@ -28622,9 +28460,9 @@ packages: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} - token-types@4.2.1: - resolution: {integrity: sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==} - engines: {node: '>=10'} + token-types@6.1.2: + resolution: {integrity: sha512-dRXchy+C0IgK8WPC6xvCHFRIWYUbqqdEIKPaKo/AcTUNzwLTK6AH7RjdLWsEZcAN/TBdtfUw3PYEgPr5VPr6ww==} + engines: {node: '>=14.16'} toml@3.0.0: resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==} @@ -28712,22 +28550,8 @@ packages: ts-morph@21.0.1: resolution: {integrity: sha512-dbDtVdEAncKctzrVZ+Nr7kHpHkv+0JDJb2MjjpBaj8bFeCkePU9rHfMklmhuLFnpeq/EJZk2IhStY6NzqgjOkg==} - ts-morph@25.0.1: - resolution: {integrity: sha512-QJEiTdnz1YjrB3JFhd626gX4rKHDLSjSVMvGGG4v7ONc3RBwa0Eei98G9AT9uNFDMtV54JyuXsFeC+OH0n6bXQ==} - - ts-node@10.9.2: - resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': 25.0.9 - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true + ts-morph@28.0.0: + resolution: {integrity: sha512-Wp3tnZ2bzwxyTZMtgWVzXDfm7lB1Drz+y9DmmYH/L702PQhPyVrp3pkou3yIz4qjS14GY9kcpmLiOOMvl8oG1g==} ts-pattern@5.6.2: resolution: {integrity: sha512-d4IxJUXROL5NCa3amvMg6VQW2HVtZYmUTPfvVtO7zJWGYLJ+mry9v2OmYm+z67aniQoQ8/yFNadiEwtNS9qQiw==} @@ -28943,10 +28767,6 @@ packages: resolution: {integrity: sha512-8rqAmtJV8o60x46kBAJKtHpJDJWkA2xcBqWKPI14MgUb05o1pnpnCnXSxedUXyeq7p8fR5g3pTo2BaswZ9lD9A==} engines: {node: '>=18.12.0'} - universal-analytics@0.5.3: - resolution: {integrity: sha512-HXSMyIcf2XTvwZ6ZZQLfxfViRm/yTGoRgDeTbojtq6rezeyKB0sTBcKH2fhddnteAHRcHiKgr/ACpbgjGOC6RQ==} - engines: {node: '>=12.18.2'} - universalify@0.1.2: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} @@ -28955,10 +28775,6 @@ packages: resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} engines: {node: '>= 4.0.0'} - universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} - unixify@1.0.0: resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==} engines: {node: '>=0.10.0'} @@ -29195,10 +29011,6 @@ packages: uploadthing: optional: true - untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} - untun@0.1.3: resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==} hasBin: true @@ -29291,9 +29103,8 @@ packages: resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==} hasBin: true - uuid@7.0.3: - resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==} - deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). + uuid@11.1.1: + resolution: {integrity: sha512-vIYxrBCC/N/K+Js3qSN88go7kIfNPssr/hHCesKCQNAjmgvYS2oqr69kIufEG+O4+PfezOH4EbIeHCfFov8ZgQ==} hasBin: true uuid@8.3.2: @@ -29301,14 +29112,6 @@ packages: deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). hasBin: true - uuid@9.0.1: - resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} - deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). - hasBin: true - - v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - valibot@1.0.0-beta.15: resolution: {integrity: sha512-BKy8XosZkDHWmYC+cJG74LBzP++Gfntwi33pP3D3RKztz2XV9jmFWnkOi21GoqARP8wAWARwhV6eTr1JcWzjGw==} peerDependencies: @@ -29375,9 +29178,9 @@ packages: '@testing-library/jest-dom': optional: true - vite-plugin-static-copy@3.4.0: - resolution: {integrity: sha512-ekryzCw0ouAOE8tw4RvVL/dfqguXzumsV3FBKoKso4MQ1MUUrUXtl5RI4KpJQUNGqFEsg9kxl4EvDl02YtA9VQ==} - engines: {node: ^18.0.0 || >=20.0.0} + vite-plugin-static-copy@4.1.1: + resolution: {integrity: sha512-GrlA8YklrAfSyxJ4M3fdQLOo9oNkp56IM9FYgX/WtEgeIFkPwhu4wzpufBCIuNKCa6Fn77FkRdYxkHqV0FwjAw==} + engines: {node: ^22.0.0 || >=24.0.0} peerDependencies: vite: ^8.0.14 @@ -29386,46 +29189,6 @@ packages: peerDependencies: vite: ^8.0.14 - vite@7.3.6: - resolution: {integrity: sha512-4XP60spRGjSZFf1qYH+dJIkK2znL3zQfl9KkOV9MkkRR/3Dls0dxaBsQPTloEc5BLXWPL9vsOxopxyKoMmDueg==} - engines: {node: ^20.19.0 || >=22.12.0} - hasBin: true - peerDependencies: - '@types/node': 25.0.9 - jiti: '>=1.21.0' - less: ^4.0.0 - lightningcss: ^1.21.0 - sass: ^1.70.0 - sass-embedded: ^1.70.0 - stylus: '>=0.54.8' - sugarss: ^5.0.0 - terser: ^5.16.0 - tsx: ^4.8.1 - yaml: ^2.4.2 - peerDependenciesMeta: - '@types/node': - optional: true - jiti: - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - tsx: - optional: true - yaml: - optional: true - vite@8.0.14: resolution: {integrity: sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==} engines: {node: ^20.19.0 || >=22.12.0} @@ -29583,11 +29346,6 @@ packages: resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} engines: {node: '>=18'} - wait-on@9.0.10: - resolution: {integrity: sha512-rCoJEhvMr0X6alHmwc9abbrA5ZrLZFKpFQVKPNFwl2h7DapXOGdmimIHDtLOWhT4PjhZhxFEtZoQgEXbkDWdZw==} - engines: {node: '>=20.0.0'} - hasBin: true - walk-up-path@4.0.0: resolution: {integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==} engines: {node: 20 || >=22} @@ -29809,9 +29567,6 @@ packages: resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} engines: {node: '>= 0.4'} - which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - which-typed-array@1.1.19: resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} engines: {node: '>= 0.4'} @@ -29931,18 +29686,22 @@ packages: utf-8-validate: optional: true + ws@8.21.1: + resolution: {integrity: sha512-+0NTnW77fFN/DjQi6k/Sq/Yvk4Sgajw7urW8V+asjXnRgDs9gyGkdb7EzgfhA4goXsRIZKE28fzIXBHEzhuiWw==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + wsl-utils@0.3.1: resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==} engines: {node: '>=20'} - xcode@3.0.1: - resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==} - engines: {node: '>=10.0.0'} - - xml-js@1.6.11: - resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==} - hasBin: true - xml-name-validator@4.0.0: resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} engines: {node: '>=12'} @@ -29977,18 +29736,11 @@ packages: xmlchars@2.2.0: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} - xpath@0.0.32: - resolution: {integrity: sha512-rxMJhSIoiO8vXcWvSifKqhvV96GjiD5wYb8/QHdoRyQvraTpp4IEv944nhGausZZ3u7dhQXteZuZbaqfpB7uYw==} - engines: {node: '>=0.6.0'} - xss@1.0.15: resolution: {integrity: sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==} engines: {node: '>= 0.10.0'} hasBin: true - y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} @@ -30012,10 +29764,6 @@ packages: engines: {node: '>= 14.6'} hasBin: true - yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} - yargs-parser@20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} @@ -30028,10 +29776,6 @@ packages: resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==} engines: {node: ^20.19.0 || ^22.12.0 || >=23} - yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} - yargs@16.2.0: resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} engines: {node: '>=10'} @@ -30051,17 +29795,13 @@ packages: yauzl@2.10.0: resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} - yauzl@3.2.0: - resolution: {integrity: sha512-Ow9nuGZE+qp1u4JIPvg+uCiUr7xGQWdff7JQSk5VGYTAZMDe2q8lxJ10ygv10qmSj031Ty/6FNJpLO4o1Sgc+w==} + yauzl@3.4.0: + resolution: {integrity: sha512-jIH9yLR9wqr0wOS0TpBvo/g/2UgZH5qePVbjgRliiF0BYvOZyaBknKsF+x9Iht0O6sqgnB93rCICdOZFecJuDw==} engines: {node: '>=12'} yazl@3.3.1: resolution: {integrity: sha512-BbETDVWG+VcMUle37k5Fqp//7SDOK2/1+T7X8TD96M3D9G8jK5VLUdQVdVjGi8im7FGkazX7kk5hkU8X4L5Bng==} - yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} - yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} @@ -30134,8 +29874,9 @@ snapshots: dependencies: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 + optional: true - '@analogjs/vite-plugin-angular@2.6.3(@angular-devkit/build-angular@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(chokidar@5.0.0)(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(jiti@2.7.0)(tailwindcss@4.2.2)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0))(@angular/build@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.0.9)(chokidar@5.0.0)(jiti@2.7.0)(less@4.4.2)(postcss@8.5.12)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))': + '@analogjs/vite-plugin-angular@2.6.3(@angular-devkit/build-angular@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(chokidar@5.0.0)(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4)))(jiti@2.7.0)(tailwindcss@4.2.2)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0))(@angular/build@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.0.9)(chokidar@5.0.0)(jiti@2.7.0)(less@4.4.2)(postcss@8.5.15)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))': dependencies: magic-string: 0.30.21 obug: 2.1.1 @@ -30143,12 +29884,13 @@ snapshots: tinyglobby: 0.2.16 ts-morph: 21.0.1 optionalDependencies: - '@angular-devkit/build-angular': 21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(chokidar@5.0.0)(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(jiti@2.7.0)(tailwindcss@4.2.2)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0) - '@angular/build': 21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.0.9)(chokidar@5.0.0)(jiti@2.7.0)(less@4.4.2)(postcss@8.5.12)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0) - vite: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + '@angular-devkit/build-angular': 21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(chokidar@5.0.0)(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4)))(jiti@2.7.0)(tailwindcss@4.2.2)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0) + '@angular/build': 21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.0.9)(chokidar@5.0.0)(jiti@2.7.0)(less@4.4.2)(postcss@8.5.15)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0) + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) transitivePeerDependencies: - '@emnapi/core' - '@emnapi/runtime' + optional: true '@andrewbranch/untar.js@1.0.3': {} @@ -30158,12 +29900,13 @@ snapshots: rxjs: 7.8.2 transitivePeerDependencies: - chokidar + optional: true - '@angular-devkit/build-angular@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(chokidar@5.0.0)(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(jiti@2.7.0)(tailwindcss@4.2.2)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0)': + '@angular-devkit/build-angular@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(chokidar@5.0.0)(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4)))(jiti@2.7.0)(tailwindcss@4.2.2)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2102.19(chokidar@5.0.0) - '@angular-devkit/build-webpack': 0.2102.19(chokidar@5.0.0)(webpack-dev-server@5.2.5(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) + '@angular-devkit/build-webpack': 0.2102.19(chokidar@5.0.0)(webpack-dev-server@5.2.5(tslib@2.8.1)(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) '@angular-devkit/core': 21.2.19(chokidar@5.0.0) '@angular/build': 21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.0.9)(chokidar@5.0.0)(jiti@2.7.0)(less@4.4.2)(postcss@8.5.12)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0) '@angular/compiler-cli': 21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2) @@ -30214,9 +29957,9 @@ snapshots: typescript: 6.0.2 webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) - webpack-dev-server: 5.2.5(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) + webpack-dev-server: 5.2.5(tslib@2.8.1)(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) webpack-merge: 6.0.1 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4)))(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) optionalDependencies: esbuild: 0.28.1 tailwindcss: 4.2.2 @@ -30244,15 +29987,17 @@ snapshots: - vitest - webpack-cli - yaml + optional: true - '@angular-devkit/build-webpack@0.2102.19(chokidar@5.0.0)(webpack-dev-server@5.2.5(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1))': + '@angular-devkit/build-webpack@0.2102.19(chokidar@5.0.0)(webpack-dev-server@5.2.5(tslib@2.8.1)(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1))': dependencies: '@angular-devkit/architect': 0.2102.19(chokidar@5.0.0) rxjs: 7.8.2 webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) - webpack-dev-server: 5.2.5(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) + webpack-dev-server: 5.2.5(tslib@2.8.1)(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) transitivePeerDependencies: - chokidar + optional: true '@angular-devkit/core@21.2.19(chokidar@5.0.0)': dependencies: @@ -30264,6 +30009,7 @@ snapshots: source-map: 0.7.6 optionalDependencies: chokidar: 5.0.0 + optional: true '@angular/build@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.0.9)(chokidar@5.0.0)(jiti@2.7.0)(less@4.4.2)(postcss@8.5.12)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0)': dependencies: @@ -30275,7 +30021,7 @@ snapshots: '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-split-export-declaration': 7.24.7 '@inquirer/confirm': 5.1.21(@types/node@25.0.9) - '@vitejs/plugin-basic-ssl': 2.1.4(vite@8.0.14(@types/node@25.0.9)(esbuild@0.28.1)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) + '@vitejs/plugin-basic-ssl': 2.1.4(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) beasties: 0.4.1 browserslist: 4.28.1 esbuild: 0.28.1 @@ -30303,7 +30049,62 @@ snapshots: lmdb: 3.5.1 postcss: 8.5.12 tailwindcss: 4.2.2 - vitest: 4.1.4(@types/node@25.0.9)(@vitest/ui@4.1.4)(jsdom@29.1.1(@noble/hashes@2.0.1))(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) + vitest: 4.1.4(@types/node@25.0.9)(@vitest/ui@4.1.4)(jsdom@29.1.1(@noble/hashes@2.0.1))(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) + transitivePeerDependencies: + - '@emnapi/core' + - '@emnapi/runtime' + - '@types/node' + - '@vitejs/devtools' + - chokidar + - jiti + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + optional: true + + '@angular/build@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.0.9)(chokidar@5.0.0)(jiti@2.7.0)(less@4.4.2)(postcss@8.5.15)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0)': + dependencies: + '@ampproject/remapping': 2.3.0 + '@angular-devkit/architect': 0.2102.19(chokidar@5.0.0) + '@angular/compiler': 21.2.18 + '@angular/compiler-cli': 21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2) + '@babel/core': 7.29.7 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-split-export-declaration': 7.24.7 + '@inquirer/confirm': 5.1.21(@types/node@25.0.9) + '@vitejs/plugin-basic-ssl': 2.1.4(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) + beasties: 0.4.1 + browserslist: 4.28.1 + esbuild: 0.28.1 + https-proxy-agent: 7.0.6 + istanbul-lib-instrument: 6.0.3 + jsonc-parser: 3.3.1 + listr2: 9.0.5 + magic-string: 0.30.21 + mrmime: 2.0.1 + parse5-html-rewriting-stream: 8.0.0 + picomatch: 4.0.4 + piscina: 5.2.0 + rolldown: 1.0.0-rc.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + sass: 1.97.3 + semver: 7.7.4 + source-map-support: 0.5.21 + tinyglobby: 0.2.15 + tslib: 2.8.1 + typescript: 6.0.2 + undici: 7.28.0 + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.28.1)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + watchpack: 2.5.1 + optionalDependencies: + less: 4.4.2 + lmdb: 3.5.1 + postcss: 8.5.15 + tailwindcss: 4.2.2 + vitest: 4.1.4(@types/node@25.0.9)(@vitest/ui@4.1.4)(jsdom@29.1.1(@noble/hashes@2.0.1))(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) transitivePeerDependencies: - '@emnapi/core' - '@emnapi/runtime' @@ -30318,6 +30119,7 @@ snapshots: - terser - tsx - yaml + optional: true '@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2)': dependencies: @@ -30334,10 +30136,12 @@ snapshots: typescript: 6.0.2 transitivePeerDependencies: - supports-color + optional: true '@angular/compiler@21.2.18': dependencies: tslib: 2.8.1 + optional: true '@arethetypeswrong/cli@0.18.4': dependencies: @@ -30380,7 +30184,7 @@ snapshots: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - lru-cache: 11.2.2 + lru-cache: 11.5.1 '@asamuzakjp/css-color@5.1.11': dependencies: @@ -30514,8 +30318,8 @@ snapshots: '@babel/generator@7.29.1': dependencies: - '@babel/parser': 7.29.2 - '@babel/types': 7.29.0 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 @@ -30530,7 +30334,7 @@ snapshots: '@babel/helper-annotate-as-pure@7.27.3': dependencies: - '@babel/types': 7.29.0 + '@babel/types': 7.29.7 '@babel/helper-annotate-as-pure@7.29.7': dependencies: @@ -30581,7 +30385,7 @@ snapshots: '@babel/helper-optimise-call-expression': 7.27.1 '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.28.5 + '@babel/traverse': 7.29.7 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -30594,7 +30398,7 @@ snapshots: '@babel/helper-optimise-call-expression': 7.27.1 '@babel/helper-replace-supers': 7.28.6(@babel/core@7.28.5) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.29.0 + '@babel/traverse': 7.29.7 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -30607,7 +30411,7 @@ snapshots: '@babel/helper-optimise-call-expression': 7.27.1 '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.29.0 + '@babel/traverse': 7.29.7 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -30620,7 +30424,7 @@ snapshots: '@babel/helper-optimise-call-expression': 7.27.1 '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.7) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.29.0 + '@babel/traverse': 7.29.7 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -30637,6 +30441,7 @@ snapshots: semver: 6.3.1 transitivePeerDependencies: - supports-color + optional: true '@babel/helper-create-regexp-features-plugin@7.29.7(@babel/core@7.29.7)': dependencies: @@ -30648,13 +30453,14 @@ snapshots: '@babel/helper-define-polyfill-provider@0.6.8(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 - '@babel/helper-compilation-targets': 7.28.6 - '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 debug: 4.4.3 lodash.debounce: 4.0.8 resolve: 1.22.11 transitivePeerDependencies: - supports-color + optional: true '@babel/helper-globals@7.28.0': {} @@ -30662,15 +30468,15 @@ snapshots: '@babel/helper-member-expression-to-functions@7.27.1': dependencies: - '@babel/traverse': 7.29.0 - '@babel/types': 7.29.0 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color '@babel/helper-member-expression-to-functions@7.28.5': dependencies: - '@babel/traverse': 7.29.0 - '@babel/types': 7.29.0 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color @@ -30680,6 +30486,7 @@ snapshots: '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/helper-module-imports@7.18.6': dependencies: @@ -30687,15 +30494,15 @@ snapshots: '@babel/helper-module-imports@7.27.1': dependencies: - '@babel/traverse': 7.28.5 - '@babel/types': 7.29.0 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color '@babel/helper-module-imports@7.28.6': dependencies: - '@babel/traverse': 7.29.0 - '@babel/types': 7.29.0 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color @@ -30729,7 +30536,7 @@ snapshots: '@babel/core': 7.29.0 '@babel/helper-module-imports': 7.28.6 '@babel/helper-validator-identifier': 7.28.5 - '@babel/traverse': 7.29.0 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color @@ -30744,11 +30551,12 @@ snapshots: '@babel/helper-optimise-call-expression@7.27.1': dependencies: - '@babel/types': 7.29.0 + '@babel/types': 7.29.7 '@babel/helper-optimise-call-expression@7.29.7': dependencies: '@babel/types': 7.29.7 + optional: true '@babel/helper-plugin-utils@7.27.1': {} @@ -30764,13 +30572,14 @@ snapshots: '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.5)': dependencies: '@babel/core': 7.28.5 '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/traverse': 7.29.0 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color @@ -30779,7 +30588,7 @@ snapshots: '@babel/core': 7.28.5 '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/traverse': 7.29.0 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color @@ -30788,7 +30597,7 @@ snapshots: '@babel/core': 7.29.0 '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/traverse': 7.29.0 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color @@ -30797,7 +30606,7 @@ snapshots: '@babel/core': 7.29.7 '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/traverse': 7.29.0 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color @@ -30809,11 +30618,12 @@ snapshots: '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/helper-skip-transparent-expression-wrappers@7.27.1': dependencies: - '@babel/traverse': 7.28.5 - '@babel/types': 7.29.0 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color @@ -30823,10 +30633,12 @@ snapshots: '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/helper-split-export-declaration@7.24.7': dependencies: - '@babel/types': 7.29.0 + '@babel/types': 7.29.7 + optional: true '@babel/helper-string-parser@7.27.1': {} @@ -30847,6 +30659,7 @@ snapshots: '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/helpers@7.28.4': dependencies: @@ -30855,8 +30668,8 @@ snapshots: '@babel/helpers@7.29.2': dependencies: - '@babel/template': 7.28.6 - '@babel/types': 7.29.0 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 '@babel/helpers@7.29.7': dependencies: @@ -30869,7 +30682,7 @@ snapshots: '@babel/parser@7.29.2': dependencies: - '@babel/types': 7.29.0 + '@babel/types': 7.29.7 '@babel/parser@7.29.7': dependencies: @@ -30882,16 +30695,19 @@ snapshots: '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.29.7(@babel/core@7.29.7)': dependencies: @@ -30901,6 +30717,7 @@ snapshots: '@babel/plugin-transform-optional-chaining': 7.29.7(@babel/core@7.29.7) transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.29.7(@babel/core@7.29.7)': dependencies: @@ -30909,6 +30726,7 @@ snapshots: '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.5)': dependencies: @@ -30931,26 +30749,29 @@ snapshots: '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 + optional: true '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.5)': dependencies: '@babel/core': 7.28.5 - '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-plugin-utils': 7.29.7 '@babel/plugin-syntax-decorators@7.28.6(@babel/core@7.29.0)': dependencies: '@babel/core': 7.29.0 - '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-plugin-utils': 7.29.7 '@babel/plugin-syntax-import-assertions@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-syntax-import-attributes@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)': dependencies: @@ -30982,44 +30803,55 @@ snapshots: '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 + '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.7)': + dependencies: + '@babel/core': 7.29.7 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7) - '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-arrow-functions@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-async-generator-functions@7.29.0(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 - '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-plugin-utils': 7.29.7 '@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.7) - '@babel/traverse': 7.29.0 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-async-to-generator@7.28.6(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 - '@babel/helper-module-imports': 7.28.6 - '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 '@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.7) transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-block-scoped-functions@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-block-scoping@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.5)': dependencies: @@ -31044,6 +30876,7 @@ snapshots: '@babel/helper-plugin-utils': 7.28.6 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-class-static-block@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31052,6 +30885,7 @@ snapshots: '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-classes@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31064,12 +30898,14 @@ snapshots: '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-computed-properties@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 '@babel/template': 7.29.7 + optional: true '@babel/plugin-transform-destructuring@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31078,28 +30914,33 @@ snapshots: '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-dotall-regex@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7) '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-duplicate-keys@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7) '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-dynamic-import@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-explicit-resource-management@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31108,16 +30949,19 @@ snapshots: '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.7) transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-exponentiation-operator@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-export-namespace-from@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-for-of@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31126,6 +30970,7 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-function-name@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31135,26 +30980,31 @@ snapshots: '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-json-strings@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-literals@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-logical-assignment-operators@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-member-expression-literals@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-modules-amd@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31163,6 +31013,7 @@ snapshots: '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.5)': dependencies: @@ -31187,6 +31038,7 @@ snapshots: '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-modules-systemjs@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31197,6 +31049,7 @@ snapshots: '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-modules-umd@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31205,27 +31058,32 @@ snapshots: '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-named-capturing-groups-regex@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7) '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-new-target@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-nullish-coalescing-operator@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-numeric-separator@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-object-rest-spread@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31237,6 +31095,7 @@ snapshots: '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-object-super@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31245,11 +31104,13 @@ snapshots: '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.7) transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-optional-catch-binding@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-optional-chaining@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31258,11 +31119,13 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-parameters@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-private-methods@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31271,6 +31134,7 @@ snapshots: '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-private-property-in-object@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31280,11 +31144,13 @@ snapshots: '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-property-literals@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.28.5)': dependencies: @@ -31320,34 +31186,39 @@ snapshots: dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-regexp-modifiers@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7) '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-reserved-words@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-runtime@7.29.0(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 - '@babel/helper-module-imports': 7.28.6 - '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.7) babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.7) babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.29.7) semver: 6.3.1 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-shorthand-properties@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-spread@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31356,21 +31227,25 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-sticky-regex@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-template-literals@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-typeof-symbol@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.28.5)': dependencies: @@ -31416,10 +31291,22 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.7)': + dependencies: + '@babel/core': 7.29.7 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.7) + '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.7) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-unicode-escapes@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-unicode-property-regex@7.29.7(@babel/core@7.29.7)': dependencies: @@ -31432,20 +31319,22 @@ snapshots: '@babel/core': 7.29.7 '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7) '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/plugin-transform-unicode-sets-regex@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7) '@babel/helper-plugin-utils': 7.29.7 + optional: true '@babel/preset-env@7.29.2(@babel/core@7.29.7)': dependencies: - '@babel/compat-data': 7.29.0 + '@babel/compat-data': 7.29.7 '@babel/core': 7.29.7 - '@babel/helper-compilation-targets': 7.28.6 - '@babel/helper-plugin-utils': 7.28.6 - '@babel/helper-validator-option': 7.27.1 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-validator-option': 7.29.7 '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.29.7(@babel/core@7.29.7) '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.29.7(@babel/core@7.29.7) '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.29.7(@babel/core@7.29.7) @@ -31514,13 +31403,15 @@ snapshots: semver: 6.3.1 transitivePeerDependencies: - supports-color + optional: true '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 - '@babel/helper-plugin-utils': 7.28.6 - '@babel/types': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/types': 7.29.7 esutils: 2.0.3 + optional: true '@babel/preset-typescript@7.27.1(@babel/core@7.28.5)': dependencies: @@ -31569,9 +31460,9 @@ snapshots: '@babel/template@7.28.6': dependencies: - '@babel/code-frame': 7.29.0 - '@babel/parser': 7.29.2 - '@babel/types': 7.29.0 + '@babel/code-frame': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 '@babel/template@7.29.7': dependencies: @@ -31582,9 +31473,9 @@ snapshots: '@babel/traverse@7.28.5': dependencies: '@babel/code-frame': 7.27.1 - '@babel/generator': 7.29.1 + '@babel/generator': 7.29.7 '@babel/helper-globals': 7.28.0 - '@babel/parser': 7.29.2 + '@babel/parser': 7.29.7 '@babel/template': 7.27.2 '@babel/types': 7.29.0 debug: 4.4.3 @@ -31593,12 +31484,12 @@ snapshots: '@babel/traverse@7.29.0': dependencies: - '@babel/code-frame': 7.29.0 - '@babel/generator': 7.29.1 + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.7 '@babel/helper-globals': 7.28.0 - '@babel/parser': 7.29.2 - '@babel/template': 7.28.6 - '@babel/types': 7.29.0 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -31617,8 +31508,8 @@ snapshots: '@babel/types@7.28.4': dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-string-parser': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 '@babel/types@7.28.5': dependencies: @@ -31691,6 +31582,8 @@ snapshots: '@blazediff/core@1.9.1': {} + '@borewit/text-codec@0.2.2': {} + '@braidai/lang@1.1.2': {} '@bramus/specificity@2.4.2': @@ -32142,7 +32035,8 @@ snapshots: '@discoveryjs/json-ext@0.5.7': {} - '@discoveryjs/json-ext@0.6.3': {} + '@discoveryjs/json-ext@0.6.3': + optional: true '@electric-sql/pglite-socket@0.0.6(@electric-sql/pglite@0.3.2)': dependencies: @@ -33271,22 +33165,6 @@ snapshots: protobufjs: 7.4.0 yargs: 17.7.2 - '@hapi/address@5.1.1': - dependencies: - '@hapi/hoek': 11.0.7 - - '@hapi/formula@3.0.2': {} - - '@hapi/hoek@11.0.7': {} - - '@hapi/pinpoint@2.0.1': {} - - '@hapi/tlds@1.1.7': {} - - '@hapi/topo@6.0.2': - dependencies: - '@hapi/hoek': 11.0.7 - '@harperfast/extended-iterable@1.0.3': optional: true @@ -33556,74 +33434,6 @@ snapshots: optionalDependencies: '@types/node': 25.0.9 - '@ionic/utils-array@2.1.6': - dependencies: - debug: 4.4.3 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - - '@ionic/utils-fs@3.1.7': - dependencies: - '@types/fs-extra': 8.1.5 - debug: 4.4.3 - fs-extra: 9.1.0 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - - '@ionic/utils-object@2.1.6': - dependencies: - debug: 4.4.3 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - - '@ionic/utils-process@2.1.11': - dependencies: - '@ionic/utils-object': 2.1.6 - '@ionic/utils-terminal': 2.3.4 - debug: 4.4.3 - signal-exit: 3.0.7 - tree-kill: 1.2.2 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - - '@ionic/utils-stream@3.1.6': - dependencies: - debug: 4.4.3 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - - '@ionic/utils-subprocess@2.1.14': - dependencies: - '@ionic/utils-array': 2.1.6 - '@ionic/utils-fs': 3.1.7 - '@ionic/utils-process': 2.1.11 - '@ionic/utils-stream': 3.1.6 - '@ionic/utils-terminal': 2.3.4 - cross-spawn: 7.0.6 - debug: 4.4.3 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - - '@ionic/utils-terminal@2.3.4': - dependencies: - '@types/slice-ansi': 4.0.0 - debug: 4.4.3 - signal-exit: 3.0.7 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - tslib: 2.8.1 - untildify: 4.0.0 - wrap-ansi: 7.0.0 - transitivePeerDependencies: - - supports-color - '@ioredis/commands@1.5.0': {} '@isaacs/cliui@8.0.2': @@ -33641,197 +33451,232 @@ snapshots: '@isaacs/string-locale-compare@1.1.0': {} - '@istanbuljs/schema@0.1.6': {} + '@istanbuljs/schema@0.1.6': + optional: true '@jest/diff-sequences@30.0.1': {} - '@jimp/core@1.6.0': + '@jimp/core@1.6.1': dependencies: - '@jimp/file-ops': 1.6.0 - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/file-ops': 1.6.1 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 await-to-js: 3.0.0 exif-parser: 0.1.12 - file-type: 16.5.4 + file-type: 21.3.4 mime: 3.0.0 + transitivePeerDependencies: + - supports-color - '@jimp/diff@1.6.0': + '@jimp/diff@1.6.1': dependencies: - '@jimp/plugin-resize': 1.6.0 - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/plugin-resize': 1.6.1 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 pixelmatch: 5.3.0 + transitivePeerDependencies: + - supports-color - '@jimp/file-ops@1.6.0': {} + '@jimp/file-ops@1.6.1': {} - '@jimp/js-bmp@1.6.0': + '@jimp/js-bmp@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 bmp-ts: 1.0.9 + transitivePeerDependencies: + - supports-color - '@jimp/js-gif@1.6.0': + '@jimp/js-gif@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/types': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/types': 1.6.1 gifwrap: 0.10.1 omggif: 1.0.10 + transitivePeerDependencies: + - supports-color - '@jimp/js-jpeg@1.6.0': + '@jimp/js-jpeg@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/types': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/types': 1.6.1 jpeg-js: 0.4.4 + transitivePeerDependencies: + - supports-color - '@jimp/js-png@1.6.0': + '@jimp/js-png@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/types': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/types': 1.6.1 pngjs: 7.0.0 + transitivePeerDependencies: + - supports-color - '@jimp/js-tiff@1.6.0': + '@jimp/js-tiff@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/types': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/types': 1.6.1 utif2: 4.1.0 + transitivePeerDependencies: + - supports-color - '@jimp/plugin-blit@1.6.0': + '@jimp/plugin-blit@1.6.1': dependencies: - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 zod: 3.25.76 - '@jimp/plugin-blur@1.6.0': + '@jimp/plugin-blur@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/utils': 1.6.1 + transitivePeerDependencies: + - supports-color - '@jimp/plugin-circle@1.6.0': + '@jimp/plugin-circle@1.6.1': dependencies: - '@jimp/types': 1.6.0 + '@jimp/types': 1.6.1 zod: 3.25.76 - '@jimp/plugin-color@1.6.0': + '@jimp/plugin-color@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 tinycolor2: 1.6.0 zod: 3.25.76 + transitivePeerDependencies: + - supports-color - '@jimp/plugin-contain@1.6.0': + '@jimp/plugin-contain@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/plugin-blit': 1.6.0 - '@jimp/plugin-resize': 1.6.0 - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/plugin-blit': 1.6.1 + '@jimp/plugin-resize': 1.6.1 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 zod: 3.25.76 + transitivePeerDependencies: + - supports-color - '@jimp/plugin-cover@1.6.0': + '@jimp/plugin-cover@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/plugin-crop': 1.6.0 - '@jimp/plugin-resize': 1.6.0 - '@jimp/types': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/plugin-crop': 1.6.1 + '@jimp/plugin-resize': 1.6.1 + '@jimp/types': 1.6.1 zod: 3.25.76 + transitivePeerDependencies: + - supports-color - '@jimp/plugin-crop@1.6.0': + '@jimp/plugin-crop@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 zod: 3.25.76 + transitivePeerDependencies: + - supports-color - '@jimp/plugin-displace@1.6.0': + '@jimp/plugin-displace@1.6.1': dependencies: - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 zod: 3.25.76 - '@jimp/plugin-dither@1.6.0': + '@jimp/plugin-dither@1.6.1': dependencies: - '@jimp/types': 1.6.0 + '@jimp/types': 1.6.1 - '@jimp/plugin-fisheye@1.6.0': + '@jimp/plugin-fisheye@1.6.1': dependencies: - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 zod: 3.25.76 - '@jimp/plugin-flip@1.6.0': + '@jimp/plugin-flip@1.6.1': dependencies: - '@jimp/types': 1.6.0 + '@jimp/types': 1.6.1 zod: 3.25.76 - '@jimp/plugin-hash@1.6.0': - dependencies: - '@jimp/core': 1.6.0 - '@jimp/js-bmp': 1.6.0 - '@jimp/js-jpeg': 1.6.0 - '@jimp/js-png': 1.6.0 - '@jimp/js-tiff': 1.6.0 - '@jimp/plugin-color': 1.6.0 - '@jimp/plugin-resize': 1.6.0 - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/plugin-hash@1.6.1': + dependencies: + '@jimp/core': 1.6.1 + '@jimp/js-bmp': 1.6.1 + '@jimp/js-jpeg': 1.6.1 + '@jimp/js-png': 1.6.1 + '@jimp/js-tiff': 1.6.1 + '@jimp/plugin-color': 1.6.1 + '@jimp/plugin-resize': 1.6.1 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 any-base: 1.1.0 + transitivePeerDependencies: + - supports-color - '@jimp/plugin-mask@1.6.0': + '@jimp/plugin-mask@1.6.1': dependencies: - '@jimp/types': 1.6.0 + '@jimp/types': 1.6.1 zod: 3.25.76 - '@jimp/plugin-print@1.6.0': + '@jimp/plugin-print@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/js-jpeg': 1.6.0 - '@jimp/js-png': 1.6.0 - '@jimp/plugin-blit': 1.6.0 - '@jimp/types': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/js-jpeg': 1.6.1 + '@jimp/js-png': 1.6.1 + '@jimp/plugin-blit': 1.6.1 + '@jimp/types': 1.6.1 parse-bmfont-ascii: 1.0.6 parse-bmfont-binary: 1.0.6 parse-bmfont-xml: 1.1.6 simple-xml-to-json: 1.2.7 zod: 3.25.76 + transitivePeerDependencies: + - supports-color - '@jimp/plugin-quantize@1.6.0': + '@jimp/plugin-quantize@1.6.1': dependencies: image-q: 4.0.0 zod: 3.25.76 - '@jimp/plugin-resize@1.6.0': + '@jimp/plugin-resize@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/types': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/types': 1.6.1 zod: 3.25.76 + transitivePeerDependencies: + - supports-color - '@jimp/plugin-rotate@1.6.0': + '@jimp/plugin-rotate@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/plugin-crop': 1.6.0 - '@jimp/plugin-resize': 1.6.0 - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/plugin-crop': 1.6.1 + '@jimp/plugin-resize': 1.6.1 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 zod: 3.25.76 + transitivePeerDependencies: + - supports-color - '@jimp/plugin-threshold@1.6.0': + '@jimp/plugin-threshold@1.6.1': dependencies: - '@jimp/core': 1.6.0 - '@jimp/plugin-color': 1.6.0 - '@jimp/plugin-hash': 1.6.0 - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + '@jimp/core': 1.6.1 + '@jimp/plugin-color': 1.6.1 + '@jimp/plugin-hash': 1.6.1 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 zod: 3.25.76 + transitivePeerDependencies: + - supports-color - '@jimp/types@1.6.0': + '@jimp/types@1.6.1': dependencies: zod: 3.25.76 - '@jimp/utils@1.6.0': + '@jimp/utils@1.6.1': dependencies: - '@jimp/types': 1.6.0 + '@jimp/types': 1.6.1 tinycolor2: 1.6.0 '@jridgewell/gen-mapping@0.3.13': @@ -33870,22 +33715,27 @@ snapshots: '@jsonjoy.com/base64@17.67.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 + optional: true '@jsonjoy.com/buffers@1.2.1(tslib@2.8.1)': dependencies: tslib: 2.8.1 + optional: true '@jsonjoy.com/buffers@17.67.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 + optional: true '@jsonjoy.com/codegen@1.0.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 + optional: true '@jsonjoy.com/codegen@17.67.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 + optional: true '@jsonjoy.com/fs-core@4.64.0(tslib@2.8.1)': dependencies: @@ -33893,6 +33743,7 @@ snapshots: '@jsonjoy.com/fs-node-utils': 4.64.0(tslib@2.8.1) thingies: 2.6.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/fs-fsa@4.64.0(tslib@2.8.1)': dependencies: @@ -33901,10 +33752,12 @@ snapshots: '@jsonjoy.com/fs-node-utils': 4.64.0(tslib@2.8.1) thingies: 2.6.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/fs-node-builtins@4.64.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 + optional: true '@jsonjoy.com/fs-node-to-fsa@4.64.0(tslib@2.8.1)': dependencies: @@ -33912,12 +33765,14 @@ snapshots: '@jsonjoy.com/fs-node-builtins': 4.64.0(tslib@2.8.1) '@jsonjoy.com/fs-node-utils': 4.64.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/fs-node-utils@4.64.0(tslib@2.8.1)': dependencies: '@jsonjoy.com/fs-node-builtins': 4.64.0(tslib@2.8.1) glob-to-regex.js: 1.2.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/fs-node@4.64.0(tslib@2.8.1)': dependencies: @@ -33929,12 +33784,14 @@ snapshots: glob-to-regex.js: 1.2.0(tslib@2.8.1) thingies: 2.6.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/fs-print@4.64.0(tslib@2.8.1)': dependencies: '@jsonjoy.com/fs-node-utils': 4.64.0(tslib@2.8.1) tree-dump: 1.1.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/fs-snapshot@4.64.0(tslib@2.8.1)': dependencies: @@ -33943,6 +33800,7 @@ snapshots: '@jsonjoy.com/json-pack': 17.67.0(tslib@2.8.1) '@jsonjoy.com/util': 17.67.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/json-pack@1.1.1(tslib@2.8.1)': dependencies: @@ -33963,6 +33821,7 @@ snapshots: thingies: 2.6.0(tslib@2.8.1) tree-dump: 1.1.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/json-pack@17.67.0(tslib@2.8.1)': dependencies: @@ -33975,17 +33834,20 @@ snapshots: thingies: 2.6.0(tslib@2.8.1) tree-dump: 1.1.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/json-pointer@1.0.2(tslib@2.8.1)': dependencies: '@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1) '@jsonjoy.com/util': 1.9.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/json-pointer@17.67.0(tslib@2.8.1)': dependencies: '@jsonjoy.com/util': 17.67.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/util@1.5.0(tslib@2.8.1)': dependencies: @@ -33996,12 +33858,14 @@ snapshots: '@jsonjoy.com/buffers': 1.2.1(tslib@2.8.1) '@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/util@17.67.0(tslib@2.8.1)': dependencies: '@jsonjoy.com/buffers': 17.67.0(tslib@2.8.1) '@jsonjoy.com/codegen': 17.67.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@kwsites/file-exists@1.1.1': dependencies: @@ -34186,7 +34050,7 @@ snapshots: node-fetch: 2.7.0 nopt: 8.1.0 semver: 7.8.2 - tar: 7.4.3 + tar: 7.5.9 transitivePeerDependencies: - encoding - supports-color @@ -34466,17 +34330,17 @@ snapshots: '@tybys/wasm-util': 0.10.2 optional: true - '@nativescript-community/react@19.0.0(@nativescript/core@9.0.20)(dominative@0.1.3(@nativescript/core@9.0.20)(undom-ng@1.1.2))(react@19.2.3)(undom-ng@1.1.2)': + '@nativescript-community/react@19.0.0(@nativescript/core@9.1.0)(dominative@0.1.3(@nativescript/core@9.1.0)(undom-ng@1.1.2))(react@19.2.3)(undom-ng@1.1.2)': dependencies: - '@nativescript/core': 9.0.20 - dominative: 0.1.3(@nativescript/core@9.0.20)(undom-ng@1.1.2) + '@nativescript/core': 9.1.0 + dominative: 0.1.3(@nativescript/core@9.1.0)(undom-ng@1.1.2) react: 19.2.3 react-reconciler: 0.32.0(react@19.2.3) undom-ng: 1.1.2 - '@nativescript/android@9.0.5': {} + '@nativescript/android@9.1.0': {} - '@nativescript/core@9.0.20': + '@nativescript/core@9.1.0': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) @@ -34491,100 +34355,67 @@ snapshots: source-map-js: 1.2.1 tslib: 2.8.1 - '@nativescript/doctor@2.0.17': + '@nativescript/doctor@2.0.18': dependencies: - lodash: 4.17.21 - semver: 7.7.2 + lodash: 4.18.1 + semver: 7.7.3 shelljs: 0.10.0 winreg: 1.2.5 - yauzl: 3.2.0 + yauzl: 3.4.0 '@nativescript/hook@3.0.5': {} - '@nativescript/ios@9.0.3': {} + '@nativescript/ios@9.1.0': {} - '@nativescript/types-android@9.0.0': {} + '@nativescript/types-android@9.1.1': {} - '@nativescript/types-ios@9.0.0': {} + '@nativescript/types-ios@9.1.1': {} - '@nativescript/types@9.0.0': + '@nativescript/types@9.1.1': dependencies: - '@nativescript/types-android': 9.0.0 - '@nativescript/types-ios': 9.0.0 + '@nativescript/types-android': 9.1.1 + '@nativescript/types-ios': 9.1.1 - '@nativescript/vite@2.0.3(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@testing-library/jest-dom@6.6.3)(@types/node@25.0.9)(chokidar@5.0.0)(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(postcss@8.5.12)(react@19.2.3)(rollup@4.56.0)(solid-js@1.9.12)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(vue@3.5.25(typescript@6.0.2))(yaml@2.9.0)': + '@nativescript/vite@8.0.0(245238542c207fb6c2c4392adf3f59ff)': dependencies: - '@analogjs/vite-plugin-angular': 2.6.3(@angular-devkit/build-angular@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(chokidar@5.0.0)(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(jiti@2.7.0)(tailwindcss@4.2.2)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0))(@angular/build@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.0.9)(chokidar@5.0.0)(jiti@2.7.0)(less@4.4.2)(postcss@8.5.12)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) - '@angular-devkit/build-angular': 21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(chokidar@5.0.0)(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(jiti@2.7.0)(tailwindcss@4.2.2)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0) - '@angular/build': 21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.0.9)(chokidar@5.0.0)(jiti@2.7.0)(less@4.4.2)(postcss@8.5.12)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0) - '@babel/core': 7.29.0 - '@babel/generator': 7.29.1 - '@babel/parser': 7.29.2 - '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0) + '@babel/core': 7.29.7 + '@babel/generator': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.7) + '@babel/plugin-transform-unicode-property-regex': 7.29.7(@babel/core@7.29.7) '@rollup/plugin-alias': 6.0.0(rollup@4.56.0) '@rollup/plugin-commonjs': 29.0.0(rollup@4.56.0) '@rollup/plugin-replace': 6.0.3(rollup@4.56.0) - '@vitejs/plugin-vue': 6.0.5(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(vue@3.5.25(typescript@6.0.2)) - '@vitejs/plugin-vue-jsx': 5.1.5(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(vue@3.5.25(typescript@6.0.2)) - '@vue/compiler-sfc': 3.5.25 - esbuild: 0.25.10 + css: 3.0.0 + esbuild: 0.27.4 minimist: 1.2.8 + sass: 1.97.3 + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + vite-plugin-static-copy: 4.1.1(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) + ws: 8.20.0 + optionalDependencies: + '@analogjs/vite-plugin-angular': 2.6.3(@angular-devkit/build-angular@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(chokidar@5.0.0)(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4)))(jiti@2.7.0)(tailwindcss@4.2.2)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0))(@angular/build@21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.0.9)(chokidar@5.0.0)(jiti@2.7.0)(less@4.4.2)(postcss@8.5.15)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0))(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) + '@angular/build': 21.2.19(@angular/compiler-cli@21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2))(@angular/compiler@21.2.18)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@types/node@25.0.9)(chokidar@5.0.0)(jiti@2.7.0)(less@4.4.2)(postcss@8.5.15)(tailwindcss@4.2.2)(terser@5.46.0)(tslib@2.8.1)(tsx@4.20.3)(typescript@6.0.2)(vitest@4.1.4)(yaml@2.9.0) + '@vitejs/plugin-vue': 6.0.5(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(vue@3.5.25(typescript@6.0.2)) + '@vitejs/plugin-vue-jsx': 5.1.5(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(vue@3.5.25(typescript@6.0.2)) + '@vue/compiler-sfc': 3.5.25 react-reconciler: 0.32.0(react@19.2.3) - sass: 1.97.2 - vite: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) - vite-plugin-solid: 2.11.11(@testing-library/jest-dom@6.6.3)(solid-js@1.9.12)(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) - vite-plugin-static-copy: 3.4.0(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) + vite-plugin-solid: 2.11.11(@testing-library/jest-dom@6.6.3)(solid-js@1.9.12)(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) vue-tsc: 3.3.7(typescript@6.0.2) - ws: 8.20.0 transitivePeerDependencies: - - '@angular/compiler' - - '@angular/compiler-cli' - - '@angular/core' - - '@angular/localize' - - '@angular/platform-browser' - - '@angular/platform-server' - - '@angular/service-worker' - - '@angular/ssr' - - '@emnapi/core' - - '@emnapi/runtime' - - '@rspack/core' - - '@swc/core' - - '@testing-library/jest-dom' - '@types/node' - '@vitejs/devtools' - - '@web/test-runner' - - browser-sync - bufferutil - - chokidar - - debug - - html-webpack-plugin - - jest - - jest-environment-jsdom - jiti - - karma - less - - lightningcss - - ng-packagr - - node-sass - - postcss - - protractor - - react - rollup - sass-embedded - - solid-js - stylus - sugarss - supports-color - - tailwindcss - terser - - tslib - tsx - - typescript - - uglify-js - utf-8-validate - - vitest - - vue - - webpack-cli - yaml '@neon-rs/load@0.0.4': {} @@ -34708,7 +34539,7 @@ snapshots: parse-imports: 2.2.1 path-key: 4.0.0 semver: 7.8.2 - tar: 7.4.3 + tar: 7.5.9 tmp-promise: 3.0.3 urlpattern-polyfill: 8.0.2 uuid: 11.1.0 @@ -34891,7 +34722,7 @@ snapshots: '@netlify/zip-it-and-ship-it@14.1.11(rollup@4.56.0)': dependencies: - '@babel/parser': 7.29.2 + '@babel/parser': 7.29.7 '@babel/types': 7.28.4 '@netlify/binary-info': 1.0.0 '@netlify/serverless-functions-api': 2.7.1 @@ -34911,7 +34742,7 @@ snapshots: merge-options: 3.0.4 minimatch: 9.0.9 normalize-path: 3.0.0 - p-map: 7.0.3 + p-map: 7.0.6 path-exists: 5.0.0 precinct: 12.2.0 require-package-name: 2.0.1 @@ -34935,6 +34766,7 @@ snapshots: '@angular/compiler-cli': 21.2.18(@angular/compiler@21.2.18)(typescript@6.0.2) typescript: 6.0.2 webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) + optional: true '@noble/ciphers@2.2.0': {} @@ -35071,37 +34903,6 @@ snapshots: node-gyp: 12.4.0 proc-log: 6.1.0 - '@nstudio/trapezedev-project@7.2.3(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(typescript@5.7.3)': - dependencies: - '@ionic/utils-fs': 3.1.7 - '@ionic/utils-subprocess': 2.1.14 - '@prettier/plugin-xml': 2.2.0 - '@trapezedev/gradle-parse': 7.1.3 - '@xmldom/xmldom': 0.8.13 - cross-spawn: 7.0.6 - diff: 5.2.2 - env-paths: 3.0.0 - gradle-to-js: 2.0.1 - ini: 2.0.0 - kleur: 4.1.5 - lodash: 4.17.21 - plist: 3.1.0 - prettier: 2.8.8 - prompts: 2.4.2 - replace: 1.2.2 - tmp: 0.2.7 - ts-node: 10.9.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(typescript@5.7.3) - xcode: 3.0.1 - xml-js: 1.6.11 - xpath: 0.0.32 - yargs: 17.7.2 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - supports-color - - typescript - '@nx/devkit@22.7.5(nx@22.7.5(@swc-node/register@1.11.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@swc/core@1.15.33(@swc/helpers@0.5.23))(@swc/types@0.1.26)(typescript@6.0.2))(@swc/core@1.15.33(@swc/helpers@0.5.23))(debug@4.4.3))': dependencies: '@zkochan/js-yaml': 0.0.7 @@ -35303,11 +35104,13 @@ snapshots: '@oxc-parser/binding-win32-x64-msvc@0.121.0': optional: true - '@oxc-project/types@0.113.0': {} + '@oxc-project/types@0.113.0': + optional: true '@oxc-project/types@0.115.0': {} - '@oxc-project/types@0.121.0': {} + '@oxc-project/types@0.121.0': + optional: true '@oxc-project/types@0.132.0': {} @@ -35643,11 +35446,6 @@ snapshots: '@poppinss/exception@1.2.2': {} - '@prettier/plugin-xml@2.2.0': - dependencies: - '@xml-tools/parser': 1.0.11 - prettier: 3.8.1 - '@prisma/adapter-libsql@7.0.0': dependencies: '@libsql/client': 0.8.1 @@ -37954,9 +37752,14 @@ snapshots: optionalDependencies: '@vue/compiler-sfc': 3.5.25 - '@tokenizer/token@0.3.0': {} + '@tokenizer/inflate@0.4.1': + dependencies: + debug: 4.4.3 + token-types: 6.1.2 + transitivePeerDependencies: + - supports-color - '@trapezedev/gradle-parse@7.1.3': {} + '@tokenizer/token@0.3.0': {} '@trpc/client@11.4.3(@trpc/server@11.4.3(typescript@6.0.2))(typescript@6.0.2)': dependencies: @@ -37982,20 +37785,13 @@ snapshots: minimatch: 9.0.9 mkdirp: 3.0.1 path-browserify: 1.0.1 + optional: true - '@ts-morph/common@0.26.1': + '@ts-morph/common@0.29.0': dependencies: - fast-glob: 3.3.3 - minimatch: 9.0.9 + minimatch: 10.2.5 path-browserify: 1.0.1 - - '@tsconfig/node10@1.0.12': {} - - '@tsconfig/node12@1.0.11': {} - - '@tsconfig/node14@1.0.3': {} - - '@tsconfig/node16@1.0.4': {} + tinyglobby: 0.2.16 '@tufjs/canonical-json@2.0.0': {} @@ -38113,10 +37909,6 @@ snapshots: '@types/express-serve-static-core': 5.0.6 '@types/serve-static': 2.2.0 - '@types/fs-extra@8.1.5': - dependencies: - '@types/node': 25.0.9 - '@types/html-minifier-terser@6.1.0': {} '@types/http-errors@2.0.4': {} @@ -38196,8 +37988,6 @@ snapshots: '@types/http-errors': 2.0.4 '@types/node': 25.0.9 - '@types/slice-ansi@4.0.0': {} - '@types/sockjs@0.3.36': dependencies: '@types/node': 25.0.9 @@ -38835,9 +38625,10 @@ snapshots: - rollup - supports-color - '@vitejs/plugin-basic-ssl@2.1.4(vite@8.0.14(@types/node@25.0.9)(esbuild@0.28.1)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))': + '@vitejs/plugin-basic-ssl@2.1.4(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))': dependencies: - vite: 8.0.14(@types/node@25.0.9)(esbuild@0.28.1)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + optional: true '@vitejs/plugin-react@4.3.4(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0))': dependencies: @@ -38874,7 +38665,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@vitejs/plugin-react@5.2.0(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))': + '@vitejs/plugin-react@5.2.0(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))': dependencies: '@babel/core': 7.29.0 '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0) @@ -38882,7 +38673,7 @@ snapshots: '@rolldown/pluginutils': 1.0.0-rc.3 '@types/babel__core': 7.20.5 react-refresh: 0.18.0 - vite: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) transitivePeerDependencies: - supports-color @@ -38932,18 +38723,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@5.1.5(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(vue@3.5.25(typescript@6.0.2))': - dependencies: - '@babel/core': 7.29.0 - '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) - '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0) - '@rolldown/pluginutils': 1.0.0-rc.9 - '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0) - vite: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) - vue: 3.5.25(typescript@6.0.2) - transitivePeerDependencies: - - supports-color - '@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0))(vue@3.5.25(typescript@5.8.3))': dependencies: '@babel/core': 7.29.0 @@ -38980,11 +38759,18 @@ snapshots: transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@6.0.5(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(vue@3.5.25(typescript@6.0.2))': + '@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(vue@3.5.25(typescript@6.0.2))': dependencies: - '@rolldown/pluginutils': 1.0.0-rc.2 - vite: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0) + '@rolldown/pluginutils': 1.0.0-rc.9 + '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0) + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) vue: 3.5.25(typescript@6.0.2) + transitivePeerDependencies: + - supports-color + optional: true '@vitejs/plugin-vue@6.0.5(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0))(vue@3.5.25(typescript@5.8.3))': dependencies: @@ -39004,6 +38790,13 @@ snapshots: vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0) vue: 3.5.25(typescript@6.0.2) + '@vitejs/plugin-vue@6.0.5(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(vue@3.5.25(typescript@6.0.2))': + dependencies: + '@rolldown/pluginutils': 1.0.0-rc.2 + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + vue: 3.5.25(typescript@6.0.2) + optional: true + '@vitest/browser@4.1.4(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0))(vitest@4.1.4)': dependencies: '@blazediff/core': 1.9.1 @@ -39039,24 +38832,24 @@ snapshots: msw: 2.7.0(@types/node@25.0.9)(typescript@5.9.2) vite: 8.0.14(@types/node@25.0.9)(esbuild@0.28.1)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) - '@vitest/mocker@4.1.4(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))': + '@vitest/mocker@4.1.4(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0))': dependencies: '@vitest/spy': 4.1.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: msw: 2.7.0(@types/node@25.0.9)(typescript@6.0.2) - vite: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) - optional: true + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0) - '@vitest/mocker@4.1.4(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0))': + '@vitest/mocker@4.1.4(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))': dependencies: '@vitest/spy': 4.1.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: msw: 2.7.0(@types/node@25.0.9)(typescript@6.0.2) - vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0) + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + optional: true '@vitest/pretty-format@4.1.4': dependencies: @@ -39104,12 +38897,14 @@ snapshots: '@volar/language-core@2.4.28': dependencies: '@volar/source-map': 2.4.28 + optional: true '@volar/source-map@2.4.23': {} '@volar/source-map@2.4.26': {} - '@volar/source-map@2.4.28': {} + '@volar/source-map@2.4.28': + optional: true '@volar/typescript@2.4.23': dependencies: @@ -39128,6 +38923,7 @@ snapshots: '@volar/language-core': 2.4.28 path-browserify: 1.0.1 vscode-uri: 3.0.8 + optional: true '@vue/babel-helper-vue-transform-on@1.5.0': {} @@ -39202,8 +38998,8 @@ snapshots: '@babel/code-frame': 7.27.1 '@babel/core': 7.28.5 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.28.6 - '@babel/parser': 7.29.2 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/parser': 7.29.7 '@vue/compiler-sfc': 3.5.25 transitivePeerDependencies: - supports-color @@ -39213,8 +39009,8 @@ snapshots: '@babel/code-frame': 7.27.1 '@babel/core': 7.29.0 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.28.6 - '@babel/parser': 7.29.2 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/parser': 7.29.7 '@vue/compiler-sfc': 3.5.25 transitivePeerDependencies: - supports-color @@ -39224,8 +39020,8 @@ snapshots: '@babel/code-frame': 7.27.1 '@babel/core': 7.29.0 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.28.6 - '@babel/parser': 7.29.2 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/parser': 7.29.7 '@vue/compiler-sfc': 3.5.25 transitivePeerDependencies: - supports-color @@ -39235,8 +39031,8 @@ snapshots: '@babel/code-frame': 7.27.1 '@babel/core': 7.29.7 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.28.6 - '@babel/parser': 7.29.2 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/parser': 7.29.7 '@vue/compiler-sfc': 3.5.25 transitivePeerDependencies: - supports-color @@ -39348,6 +39144,7 @@ snapshots: muggle-string: 0.4.1 path-browserify: 1.0.1 picomatch: 4.0.4 + optional: true '@vue/reactivity@3.5.25': dependencies: @@ -39531,10 +39328,6 @@ snapshots: react: 19.2.3 react-dom: 19.2.3(react@19.2.3) - '@xml-tools/parser@1.0.11': - dependencies: - chevrotain: 7.1.1 - '@xmldom/xmldom@0.8.13': {} '@xtuc/ieee754@1.2.0': {} @@ -39581,10 +39374,6 @@ snapshots: dependencies: acorn: 8.15.0 - acorn-walk@8.3.5: - dependencies: - acorn: 8.15.0 - acorn@8.14.1: {} acorn@8.15.0: {} @@ -39593,6 +39382,7 @@ snapshots: dependencies: loader-utils: 2.0.4 regex-parser: 2.3.1 + optional: true agent-base@6.0.2: dependencies: @@ -39625,6 +39415,7 @@ snapshots: ajv-formats@3.0.1(ajv@8.18.0): optionalDependencies: ajv: 8.18.0 + optional: true ajv-keywords@3.5.2(ajv@6.12.6): dependencies: @@ -39672,7 +39463,8 @@ snapshots: alien-signals@3.1.1: {} - alien-signals@3.2.1: {} + alien-signals@3.2.1: + optional: true ansi-colors@4.1.3: {} @@ -39686,10 +39478,6 @@ snapshots: ansi-regex@6.2.2: {} - ansi-styles@3.2.1: - dependencies: - color-convert: 1.9.3 - ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 @@ -39715,7 +39503,7 @@ snapshots: graceful-fs: 4.2.11 is-stream: 2.0.1 lazystream: 1.0.1 - lodash: 4.17.21 + lodash: 4.18.1 normalize-path: 3.0.0 readable-stream: 4.7.0 @@ -39732,8 +39520,6 @@ snapshots: - bare-abort-controller - bare-buffer - arg@4.1.3: {} - argparse@1.0.10: dependencies: sprintf-js: 1.0.3 @@ -39778,8 +39564,6 @@ snapshots: ast-module-types@6.0.1: {} - astral-regex@2.0.0: {} - async-mutex@0.5.0: dependencies: tslib: 2.8.1 @@ -39790,7 +39574,7 @@ snapshots: asynckit@0.4.0: {} - at-least-node@1.0.0: {} + atob@2.1.2: {} atomic-sleep@1.0.0: {} @@ -39828,6 +39612,7 @@ snapshots: picocolors: 1.1.1 postcss: 8.5.12 postcss-value-parser: 4.2.0 + optional: true available-typed-arrays@1.0.7: dependencies: @@ -39860,7 +39645,7 @@ snapshots: - debug - supports-color - axios@1.18.1(debug@4.4.3): + axios@1.18.1: dependencies: follow-redirects: 1.16.0(debug@4.4.3) form-data: 4.0.5 @@ -39892,6 +39677,7 @@ snapshots: '@babel/core': 7.29.7 find-up: 5.0.0 webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) + optional: true babel-plugin-jsx-dom-expressions@0.40.3(@babel/core@7.28.5): dependencies: @@ -39928,12 +39714,13 @@ snapshots: babel-plugin-polyfill-corejs2@0.4.17(@babel/core@7.29.7): dependencies: - '@babel/compat-data': 7.29.0 + '@babel/compat-data': 7.29.7 '@babel/core': 7.29.7 '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7) semver: 6.3.1 transitivePeerDependencies: - supports-color + optional: true babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.29.7): dependencies: @@ -39942,6 +39729,7 @@ snapshots: core-js-compat: 3.49.0 transitivePeerDependencies: - supports-color + optional: true babel-plugin-polyfill-corejs3@0.14.2(@babel/core@7.29.7): dependencies: @@ -39950,6 +39738,7 @@ snapshots: core-js-compat: 3.49.0 transitivePeerDependencies: - supports-color + optional: true babel-plugin-polyfill-regenerator@0.6.8(@babel/core@7.29.7): dependencies: @@ -39957,6 +39746,7 @@ snapshots: '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7) transitivePeerDependencies: - supports-color + optional: true babel-plugin-vue-jsx-hmr@1.0.0: dependencies: @@ -40039,6 +39829,7 @@ snapshots: postcss: 8.5.15 postcss-media-query-parser: 0.2.3 postcss-safe-parser: 7.0.1(postcss@8.5.15) + optional: true better-ajv-errors@1.2.0(ajv@8.18.0): dependencies: @@ -40101,7 +39892,8 @@ snapshots: big-integer@1.6.52: {} - big.js@5.2.2: {} + big.js@5.2.2: + optional: true bin-links@6.0.2: dependencies: @@ -40196,6 +39988,10 @@ snapshots: dependencies: balanced-match: 4.0.3 + brace-expansion@5.0.9: + dependencies: + balanced-match: 4.0.3 + braces@3.0.3: dependencies: fill-range: 7.1.1 @@ -40292,7 +40088,7 @@ snapshots: minipass-collect: 2.0.1 minipass-flush: 1.0.7 minipass-pipeline: 1.2.4 - p-map: 7.0.3 + p-map: 7.0.6 ssri: 13.0.1 call-bind-apply-helpers@1.0.2: @@ -40321,20 +40117,12 @@ snapshots: pascal-case: 3.1.2 tslib: 2.8.1 - camelcase@5.3.1: {} - caniuse-lite@1.0.30001696: {} caniuse-lite@1.0.30001806: {} chai@6.2.2: {} - chalk@2.4.2: - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - chalk@3.0.0: dependencies: ansi-styles: 4.3.0 @@ -40385,10 +40173,6 @@ snapshots: lodash: 4.17.21 regexp-to-ast: 0.5.0 - chevrotain@7.1.1: - dependencies: - regexp-to-ast: 0.5.0 - chokidar@3.6.0: dependencies: anymatch: 3.1.3 @@ -40432,6 +40216,7 @@ snapshots: cli-cursor@5.0.0: dependencies: restore-cursor: 5.1.0 + optional: true cli-highlight@2.1.11: dependencies: @@ -40444,7 +40229,8 @@ snapshots: cli-spinners@2.6.1: {} - cli-spinners@3.4.0: {} + cli-spinners@3.4.0: + optional: true cli-table3@0.6.5: dependencies: @@ -40456,6 +40242,7 @@ snapshots: dependencies: slice-ansi: 8.0.0 string-width: 8.2.2 + optional: true cli-width@4.1.0: {} @@ -40465,12 +40252,6 @@ snapshots: is-wsl: 3.1.1 is64bit: 2.0.0 - cliui@6.0.0: - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 6.2.0 - cliui@7.0.4: dependencies: string-width: 4.2.3 @@ -40488,6 +40269,7 @@ snapshots: string-width: 7.2.0 strip-ansi: 7.2.0 wrap-ansi: 9.0.2 + optional: true clone-deep@4.0.1: dependencies: @@ -40503,14 +40285,11 @@ snapshots: cmd-shim@8.0.0: {} - code-block-writer@12.0.0: {} + code-block-writer@12.0.0: + optional: true code-block-writer@13.0.3: {} - color-convert@1.9.3: - dependencies: - color-name: 1.1.3 - color-convert@2.0.1: dependencies: color-name: 1.1.4 @@ -40519,8 +40298,6 @@ snapshots: dependencies: color-name: 2.1.0 - color-name@1.1.3: {} - color-name@1.1.4: {} color-name@2.1.0: {} @@ -40731,6 +40508,7 @@ snapshots: copy-anything@2.0.6: dependencies: is-what: 3.14.1 + optional: true copy-file@11.1.0: dependencies: @@ -40745,10 +40523,12 @@ snapshots: serialize-javascript: 7.0.7 tinyglobby: 0.2.16 webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) + optional: true core-js-compat@3.49.0: dependencies: browserslist: 4.28.1 + optional: true core-util-is@1.0.3: {} @@ -40776,8 +40556,6 @@ snapshots: crc-32: 1.2.2 readable-stream: 4.7.0 - create-require@1.1.1: {} - cron-parser@4.9.0: dependencies: luxon: 3.7.2 @@ -40791,11 +40569,6 @@ snapshots: '@epic-web/invariant': 1.0.0 cross-spawn: 7.0.6 - cross-env@10.1.0: - dependencies: - '@epic-web/invariant': 1.0.0 - cross-spawn: 7.0.6 - cross-spawn@6.0.6: dependencies: nice-try: 1.0.5 @@ -40852,6 +40625,7 @@ snapshots: semver: 7.8.2 optionalDependencies: webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) + optional: true css-select@4.3.0: dependencies: @@ -40876,6 +40650,7 @@ snapshots: domhandler: 5.0.3 domutils: 3.2.2 nth-check: 2.1.1 + optional: true css-tree@2.2.1: dependencies: @@ -40893,6 +40668,12 @@ snapshots: css.escape@1.5.1: {} + css@3.0.0: + dependencies: + inherits: 2.0.4 + source-map: 0.6.1 + source-map-resolve: 0.6.0 + cssesc@3.0.0: {} cssfilter@0.0.10: {} @@ -40965,12 +40746,12 @@ snapshots: dependencies: callsite: 1.0.0 - decamelize@1.2.0: {} - decimal.js@10.5.0: {} decimal.js@10.6.0: {} + decode-uri-component@0.2.2: {} + dedent@1.5.1(babel-plugin-macros@3.1.0): optionalDependencies: babel-plugin-macros: 3.1.0 @@ -41017,6 +40798,7 @@ snapshots: dependencies: bundle-name: 4.1.0 default-browser-id: 5.0.0 + optional: true defaults@1.0.4: dependencies: @@ -41130,10 +40912,6 @@ snapshots: dexie@4.2.1: {} - diff@4.0.4: {} - - diff@5.2.2: {} - diff@8.0.2: {} dir-glob@3.0.1: @@ -41179,9 +40957,9 @@ snapshots: dependencies: domelementtype: 2.3.0 - dominative@0.1.3(@nativescript/core@9.0.20)(undom-ng@1.1.2): + dominative@0.1.3(@nativescript/core@9.1.0)(undom-ng@1.1.2): dependencies: - '@nativescript/core': 9.0.20 + '@nativescript/core': 9.1.0 undom-ng: 1.1.2 domutils@2.8.0: @@ -41267,7 +41045,8 @@ snapshots: emojilib@2.4.0: {} - emojis-list@3.0.0: {} + emojis-list@3.0.0: + optional: true empathic@2.0.0: {} @@ -41316,7 +41095,8 @@ snapshots: entities@6.0.0: {} - entities@7.0.1: {} + entities@7.0.1: + optional: true entities@8.0.0: {} @@ -41404,7 +41184,8 @@ snapshots: cheerio: 1.0.0 sass: 1.97.2 - esbuild-wasm@0.28.1: {} + esbuild-wasm@0.28.1: + optional: true esbuild@0.23.0: optionalDependencies: @@ -41576,6 +41357,7 @@ snapshots: '@esbuild/win32-arm64': 0.28.1 '@esbuild/win32-ia32': 0.28.1 '@esbuild/win32-x64': 0.28.1 + optional: true escalade@3.2.0: {} @@ -41922,7 +41704,8 @@ snapshots: eventemitter3@4.0.7: {} - eventemitter3@5.0.4: {} + eventemitter3@5.0.4: + optional: true events-universal@1.0.1: dependencies: @@ -42163,11 +41946,14 @@ snapshots: dependencies: flat-cache: 4.0.1 - file-type@16.5.4: + file-type@21.3.4: dependencies: - readable-web-to-node-stream: 3.0.4 - strtok3: 6.3.0 - token-types: 4.2.1 + '@tokenizer/inflate': 0.4.1 + strtok3: 10.3.5 + token-types: 6.1.2 + uint8array-extras: 1.5.0 + transitivePeerDependencies: + - supports-color file-uri-to-path@1.0.0: {} @@ -42313,7 +42099,8 @@ snapshots: forwarded@0.2.0: {} - fraction.js@5.3.4: {} + fraction.js@5.3.4: + optional: true framer-motion@11.18.2(@emotion/is-prop-valid@1.3.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3): dependencies: @@ -42343,13 +42130,6 @@ snapshots: jsonfile: 4.0.0 universalify: 0.1.2 - fs-extra@9.1.0: - dependencies: - at-least-node: 1.0.0 - graceful-fs: 4.2.11 - jsonfile: 6.2.1 - universalify: 2.0.1 - fs-minipass@3.0.3: dependencies: minipass: 7.1.2 @@ -42377,7 +42157,8 @@ snapshots: get-caller-file@2.0.5: {} - get-east-asian-width@1.6.0: {} + get-east-asian-width@1.6.0: + optional: true get-intrinsic@1.3.0: dependencies: @@ -42450,6 +42231,7 @@ snapshots: glob-to-regex.js@1.2.0(tslib@2.8.1): dependencies: tslib: 2.8.1 + optional: true glob-to-regexp@0.4.1: {} @@ -42516,10 +42298,6 @@ snapshots: graceful-fs@4.2.11: {} - gradle-to-js@2.0.1: - dependencies: - lodash.merge: 4.6.2 - grammex@3.1.11: {} graphemer@1.4.0: {} @@ -42569,8 +42347,6 @@ snapshots: has-bigints@1.1.0: {} - has-flag@3.0.0: {} - has-flag@4.0.0: {} has-own-prop@2.0.0: {} @@ -42662,7 +42438,7 @@ snapshots: html-tags@3.3.1: {} - html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)): + html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -42689,6 +42465,7 @@ snapshots: domhandler: 5.0.3 domutils: 3.2.2 entities: 7.0.1 + optional: true htmlparser2@6.1.0: dependencies: @@ -42773,6 +42550,7 @@ snapshots: micromatch: 4.0.8 transitivePeerDependencies: - supports-color + optional: true http-proxy@1.18.1(debug@4.4.3): dependencies: @@ -42837,6 +42615,7 @@ snapshots: icss-utils@5.1.0(postcss@8.5.15): dependencies: postcss: 8.5.15 + optional: true icss-utils@5.1.0(postcss@8.5.6): dependencies: @@ -42895,8 +42674,6 @@ snapshots: ini@1.3.8: {} - ini@2.0.0: {} - ini@6.0.0: {} inline-style-parser@0.2.4: {} @@ -42925,10 +42702,10 @@ snapshots: transitivePeerDependencies: - supports-color - ios-device-lib@0.9.4: + ios-device-lib@0.9.5: dependencies: bufferpack: 0.0.6 - uuid: 8.3.2 + uuid: 11.1.0 ios-mobileprovision-finder@1.2.1: dependencies: @@ -43045,6 +42822,7 @@ snapshots: is-fullwidth-code-point@5.1.0: dependencies: get-east-asian-width: 1.6.0 + optional: true is-glob@4.0.3: dependencies: @@ -43064,7 +42842,8 @@ snapshots: transitivePeerDependencies: - supports-color - is-in-ssh@1.0.0: {} + is-in-ssh@1.0.0: + optional: true is-inside-container@1.0.0: dependencies: @@ -43072,7 +42851,8 @@ snapshots: is-interactive@1.0.0: {} - is-interactive@2.0.0: {} + is-interactive@2.0.0: + optional: true is-map@2.0.3: {} @@ -43168,7 +42948,8 @@ snapshots: call-bound: 1.0.4 get-intrinsic: 1.3.0 - is-what@3.14.1: {} + is-what@3.14.1: + optional: true is-what@4.1.16: {} @@ -43198,17 +42979,19 @@ snapshots: isobject@3.0.1: {} - istanbul-lib-coverage@3.2.2: {} + istanbul-lib-coverage@3.2.2: + optional: true istanbul-lib-instrument@6.0.3: dependencies: - '@babel/core': 7.29.0 - '@babel/parser': 7.29.2 + '@babel/core': 7.29.7 + '@babel/parser': 7.29.7 '@istanbuljs/schema': 0.1.6 istanbul-lib-coverage: 3.2.2 semver: 7.8.2 transitivePeerDependencies: - supports-color + optional: true jackspeak@3.4.3: dependencies: @@ -43222,35 +43005,37 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 - jimp@1.6.0: - dependencies: - '@jimp/core': 1.6.0 - '@jimp/diff': 1.6.0 - '@jimp/js-bmp': 1.6.0 - '@jimp/js-gif': 1.6.0 - '@jimp/js-jpeg': 1.6.0 - '@jimp/js-png': 1.6.0 - '@jimp/js-tiff': 1.6.0 - '@jimp/plugin-blit': 1.6.0 - '@jimp/plugin-blur': 1.6.0 - '@jimp/plugin-circle': 1.6.0 - '@jimp/plugin-color': 1.6.0 - '@jimp/plugin-contain': 1.6.0 - '@jimp/plugin-cover': 1.6.0 - '@jimp/plugin-crop': 1.6.0 - '@jimp/plugin-displace': 1.6.0 - '@jimp/plugin-dither': 1.6.0 - '@jimp/plugin-fisheye': 1.6.0 - '@jimp/plugin-flip': 1.6.0 - '@jimp/plugin-hash': 1.6.0 - '@jimp/plugin-mask': 1.6.0 - '@jimp/plugin-print': 1.6.0 - '@jimp/plugin-quantize': 1.6.0 - '@jimp/plugin-resize': 1.6.0 - '@jimp/plugin-rotate': 1.6.0 - '@jimp/plugin-threshold': 1.6.0 - '@jimp/types': 1.6.0 - '@jimp/utils': 1.6.0 + jimp@1.6.1: + dependencies: + '@jimp/core': 1.6.1 + '@jimp/diff': 1.6.1 + '@jimp/js-bmp': 1.6.1 + '@jimp/js-gif': 1.6.1 + '@jimp/js-jpeg': 1.6.1 + '@jimp/js-png': 1.6.1 + '@jimp/js-tiff': 1.6.1 + '@jimp/plugin-blit': 1.6.1 + '@jimp/plugin-blur': 1.6.1 + '@jimp/plugin-circle': 1.6.1 + '@jimp/plugin-color': 1.6.1 + '@jimp/plugin-contain': 1.6.1 + '@jimp/plugin-cover': 1.6.1 + '@jimp/plugin-crop': 1.6.1 + '@jimp/plugin-displace': 1.6.1 + '@jimp/plugin-dither': 1.6.1 + '@jimp/plugin-fisheye': 1.6.1 + '@jimp/plugin-flip': 1.6.1 + '@jimp/plugin-hash': 1.6.1 + '@jimp/plugin-mask': 1.6.1 + '@jimp/plugin-print': 1.6.1 + '@jimp/plugin-quantize': 1.6.1 + '@jimp/plugin-resize': 1.6.1 + '@jimp/plugin-rotate': 1.6.1 + '@jimp/plugin-threshold': 1.6.1 + '@jimp/types': 1.6.1 + '@jimp/utils': 1.6.1 + transitivePeerDependencies: + - supports-color jiti@2.6.1: {} @@ -43258,16 +43043,6 @@ snapshots: jju@1.4.0: {} - joi@18.2.3: - dependencies: - '@hapi/address': 5.1.1 - '@hapi/formula': 3.0.2 - '@hapi/hoek': 11.0.7 - '@hapi/pinpoint': 2.0.1 - '@hapi/tlds': 1.1.7 - '@hapi/topo': 6.0.2 - '@standard-schema/spec': 1.1.0 - jose@6.1.0: {} jose@6.1.3: {} @@ -43415,18 +43190,13 @@ snapshots: jsonc-parser@3.2.0: {} - jsonc-parser@3.3.1: {} + jsonc-parser@3.3.1: + optional: true jsonfile@4.0.0: optionalDependencies: graceful-fs: 4.2.11 - jsonfile@6.2.1: - dependencies: - universalify: 2.0.1 - optionalDependencies: - graceful-fs: 4.2.11 - jsonparse@1.3.1: {} jsonpointer@5.0.1: {} @@ -43468,6 +43238,7 @@ snapshots: karma-source-map-support@1.4.0: dependencies: source-map-support: 0.5.21 + optional: true kebab-case@1.0.2: {} @@ -43517,6 +43288,7 @@ snapshots: less: 4.4.2 optionalDependencies: webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) + optional: true less@4.4.2: dependencies: @@ -43531,6 +43303,7 @@ snapshots: mime: 1.6.0 needle: 3.5.0 source-map: 0.6.1 + optional: true leven@3.1.0: {} @@ -43572,6 +43345,7 @@ snapshots: webpack-sources: 3.3.3 optionalDependencies: webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) + optional: true light-my-request@6.6.0: dependencies: @@ -43663,6 +43437,7 @@ snapshots: log-update: 6.1.0 rfdc: 1.4.1 wrap-ansi: 9.0.2 + optional: true lmdb@3.5.1: dependencies: @@ -43691,8 +43466,10 @@ snapshots: big.js: 5.2.2 emojis-list: 3.0.0 json5: 2.2.3 + optional: true - loader-utils@3.3.1: {} + loader-utils@3.3.1: + optional: true local-pkg@0.5.1: dependencies: @@ -43723,7 +43500,8 @@ snapshots: lodash.clonedeep@4.5.0: {} - lodash.debounce@4.0.8: {} + lodash.debounce@4.0.8: + optional: true lodash.defaults@4.2.0: {} @@ -43751,8 +43529,6 @@ snapshots: lodash@4.17.21: {} - lodash@4.17.23: {} - lodash@4.18.1: {} log-symbols@4.1.0: @@ -43764,6 +43540,7 @@ snapshots: dependencies: is-unicode-supported: 2.1.0 yoctocolors: 2.1.2 + optional: true log-update@6.1.0: dependencies: @@ -43772,6 +43549,7 @@ snapshots: slice-ansi: 7.1.2 strip-ansi: 7.2.0 wrap-ansi: 9.0.2 + optional: true log4js@6.9.1: dependencies: @@ -43834,7 +43612,7 @@ snapshots: magicast@0.5.1: dependencies: - '@babel/parser': 7.29.2 + '@babel/parser': 7.29.7 '@babel/types': 7.29.0 source-map-js: 1.2.1 @@ -43844,8 +43622,6 @@ snapshots: semver: 5.7.2 optional: true - make-error@1.3.6: {} - make-fetch-happen@15.0.6: dependencies: '@gar/promise-retry': 1.0.3 @@ -43933,6 +43709,7 @@ snapshots: thingies: 2.6.0(tslib@2.8.1) tree-dump: 1.1.0(tslib@2.8.1) tslib: 2.8.1 + optional: true merge-anything@5.1.7: dependencies: @@ -43983,7 +43760,8 @@ snapshots: mimic-fn@4.0.0: {} - mimic-function@5.0.1: {} + mimic-function@5.0.1: + optional: true min-indent@1.0.1: {} @@ -43992,6 +43770,7 @@ snapshots: schema-utils: 4.3.3 tapable: 2.3.0 webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) + optional: true miniflare@4.20260317.0: dependencies: @@ -44007,17 +43786,13 @@ snapshots: minimalistic-assert@1.0.1: {} - minimatch@10.2.4: - dependencies: - brace-expansion: 5.0.6 - minimatch@10.2.5: dependencies: brace-expansion: 5.0.6 - minimatch@3.0.5: + minimatch@10.2.6: dependencies: - brace-expansion: 1.1.15 + brace-expansion: 5.0.9 minimatch@3.0.8: dependencies: @@ -44049,7 +43824,7 @@ snapshots: dependencies: minipass: 7.1.2 minipass-sized: 2.0.0 - minizlib: 3.0.1 + minizlib: 3.1.0 optionalDependencies: iconv-lite: 0.7.3 @@ -44071,11 +43846,6 @@ snapshots: minipass@7.1.2: {} - minizlib@3.0.1: - dependencies: - minipass: 7.1.2 - rimraf: 5.0.10 - minizlib@3.1.0: dependencies: minipass: 7.1.2 @@ -44104,7 +43874,8 @@ snapshots: mrmime@2.0.0: {} - mrmime@2.0.1: {} + mrmime@2.0.1: + optional: true ms@2.0.0: {} @@ -44217,20 +43988,19 @@ snapshots: napi-postinstall@0.3.3: {} - nativescript-dev-xcode@0.8.1: + nativescript-dev-xcode@0.8.2: dependencies: simple-plist: 1.3.1 - uuid: 9.0.1 + uuid: 11.1.0 - nativescript@9.0.6(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(debug@4.4.3): + nativescript@9.1.0: dependencies: '@foxt/js-srp': 0.0.3-patch2 - '@nativescript/doctor': 2.0.17 + '@nativescript/doctor': 2.0.18 '@nativescript/hook': 3.0.5 '@npmcli/arborist': 9.1.8 - '@nstudio/trapezedev-project': 7.2.3(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(typescript@5.7.3) '@rigor789/resolve-package-path': 1.0.7 - axios: 1.18.1(debug@4.4.3) + axios: 1.18.1 byline: 5.0.0 chokidar: 3.6.0 cli-table3: 0.6.5 @@ -44238,27 +44008,25 @@ snapshots: convert-source-map: 2.0.0 detect-newline: 3.1.0 email-validator: 2.0.4 - esprima: 4.0.1 font-finder: 1.1.0 - ios-device-lib: 0.9.4 + ios-device-lib: 0.9.5 ios-mobileprovision-finder: 1.2.1 ios-sim-portable: 4.5.1 - jimp: 1.6.0 - lodash: 4.17.23 + jimp: 1.6.1 + lodash: 4.18.1 log4js: 6.9.1 marked: 15.0.12 marked-terminal: 7.3.0(marked@15.0.12) - minimatch: 10.2.4 + minimatch: 10.2.6 mkdirp: 3.0.1 mute-stream: 2.0.0 - nativescript-dev-xcode: 0.8.1 + nativescript-dev-xcode: 0.8.2 open: 8.4.2 ora: 5.4.1 pacote: 21.0.4 pbxproj-dom: 1.2.0 plist: 3.1.0 - plist-merge-patch: 0.2.0 - prettier: 3.7.3 + prettier: 3.9.6 prompts: 2.4.2 proper-lockfile: 4.1.2 proxy-lib: 0.4.1 @@ -44268,24 +44036,20 @@ snapshots: shelljs: 0.10.0 simple-git: 3.36.0 simple-plist: 1.4.0 - source-map: 0.7.6 - tar: 7.5.9 - ts-morph: 25.0.1 + source-map: 0.8.0 + tar: 7.5.22 + ts-morph: 28.0.0 tunnel: 0.0.6 typescript: 5.7.3 - universal-analytics: 0.5.3 - uuid: 11.1.0 + uuid: 11.1.1 winreg: 1.2.5 - ws: 8.18.3 + ws: 8.21.1 xml2js: 0.6.2 yargs: 17.7.2 yazl: 3.3.1 optionalDependencies: fsevents: 2.3.3 transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' - bufferutil - debug - supports-color @@ -44367,7 +44131,7 @@ snapshots: - sqlite3 - uploadthing - nitro@3.0.260311-beta(@electric-sql/pglite@0.3.2)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@libsql/client@0.15.15)(@netlify/blobs@10.1.0)(chokidar@5.0.0)(dotenv@17.4.2)(giget@2.0.0)(jiti@2.7.0)(lru-cache@11.5.1)(miniflare@4.20260317.0)(mysql2@3.15.3)(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(xml2js@0.6.2): + nitro@3.0.260311-beta(@electric-sql/pglite@0.3.2)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@libsql/client@0.15.15)(@netlify/blobs@10.1.0)(chokidar@5.0.0)(dotenv@17.4.2)(giget@2.0.0)(jiti@2.7.0)(lru-cache@11.5.1)(miniflare@4.20260317.0)(mysql2@3.15.3)(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0))(xml2js@0.6.2): dependencies: consola: 3.4.2 crossws: 0.4.4(srvx@0.11.15) @@ -44387,7 +44151,7 @@ snapshots: dotenv: 17.4.2 giget: 2.0.0 jiti: 2.7.0 - vite: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0) xml2js: 0.6.2 transitivePeerDependencies: - '@azure/app-configuration' @@ -44421,7 +44185,7 @@ snapshots: - sqlite3 - uploadthing - nitro@3.0.260311-beta(@electric-sql/pglite@0.3.2)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@libsql/client@0.15.15)(@netlify/blobs@10.1.0)(chokidar@5.0.0)(dotenv@17.4.2)(giget@2.0.0)(jiti@2.7.0)(lru-cache@11.5.1)(miniflare@4.20260317.0)(mysql2@3.15.3)(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0))(xml2js@0.6.2): + nitro@3.0.260311-beta(@electric-sql/pglite@0.3.2)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@libsql/client@0.15.15)(@netlify/blobs@10.1.0)(chokidar@5.0.0)(dotenv@17.4.2)(giget@2.0.0)(jiti@2.7.0)(lru-cache@11.5.1)(miniflare@4.20260317.0)(mysql2@3.15.3)(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0))(xml2js@0.6.2): dependencies: consola: 3.4.2 crossws: 0.4.4(srvx@0.11.15) @@ -44441,7 +44205,7 @@ snapshots: dotenv: 17.4.2 giget: 2.0.0 jiti: 2.7.0 - vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0) + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) xml2js: 0.6.2 transitivePeerDependencies: - '@azure/app-configuration' @@ -44642,7 +44406,7 @@ snapshots: node-source-walk@7.0.1: dependencies: - '@babel/parser': 7.29.2 + '@babel/parser': 7.29.7 node-stream-zip@1.15.0: {} @@ -44706,7 +44470,7 @@ snapshots: make-fetch-happen: 15.0.6 minipass: 7.1.2 minipass-fetch: 5.0.2 - minizlib: 3.0.1 + minizlib: 3.1.0 npm-package-arg: 13.0.2 proc-log: 6.1.0 transitivePeerDependencies: @@ -44941,6 +44705,7 @@ snapshots: onetime@7.0.0: dependencies: mimic-function: 5.0.1 + optional: true open@10.1.0: dependencies: @@ -44957,6 +44722,7 @@ snapshots: is-inside-container: 1.0.0 powershell-utils: 0.1.0 wsl-utils: 0.3.1 + optional: true open@8.4.2: dependencies: @@ -45006,6 +44772,7 @@ snapshots: log-symbols: 7.0.1 stdin-discarder: 0.3.2 string-width: 8.2.2 + optional: true ordered-binary@1.6.1: optional: true @@ -45067,6 +44834,7 @@ snapshots: transitivePeerDependencies: - '@emnapi/core' - '@emnapi/runtime' + optional: true oxc-resolver@11.19.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0): optionalDependencies: @@ -45156,8 +44924,6 @@ snapshots: p-map@2.1.0: {} - p-map@7.0.3: {} - p-map@7.0.6: {} p-retry@6.2.1: @@ -45200,7 +44966,7 @@ snapshots: promise-retry: 2.0.1 sigstore: 4.1.1 ssri: 13.0.1 - tar: 7.4.3 + tar: 7.5.9 transitivePeerDependencies: - supports-color @@ -45250,13 +45016,15 @@ snapshots: index-to-position: 1.2.0 type-fest: 4.41.0 - parse-node-version@1.0.1: {} + parse-node-version@1.0.1: + optional: true parse5-html-rewriting-stream@8.0.0: dependencies: entities: 6.0.0 parse5: 8.0.1 parse5-sax-parser: 8.0.0 + optional: true parse5-htmlparser2-tree-adapter@6.0.1: dependencies: @@ -45274,6 +45042,7 @@ snapshots: parse5-sax-parser@8.0.0: dependencies: parse5: 8.0.1 + optional: true parse5@5.1.1: {} @@ -45315,7 +45084,7 @@ snapshots: path-scurry@2.0.0: dependencies: - lru-cache: 11.2.2 + lru-cache: 11.5.1 minipass: 7.1.2 path-to-regexp@0.1.12: {} @@ -45334,8 +45103,6 @@ snapshots: pbxproj-dom@1.2.0: {} - peek-readable@4.1.0: {} - pend@1.2.0: {} perfect-debounce@1.0.0: {} @@ -45385,6 +45152,7 @@ snapshots: piscina@5.2.0: optionalDependencies: '@napi-rs/nice': 1.1.1 + optional: true pixelmatch@5.3.0: dependencies: @@ -45423,11 +45191,6 @@ snapshots: optionalDependencies: fsevents: 2.3.2 - plist-merge-patch@0.2.0: - dependencies: - lodash: 4.17.21 - plist: 3.0.6 - plist@3.0.6: dependencies: base64-js: 1.5.1 @@ -45455,6 +45218,7 @@ snapshots: webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) transitivePeerDependencies: - typescript + optional: true postcss-loader@8.2.0(postcss@8.5.6)(typescript@6.0.2)(webpack@5.97.1): dependencies: @@ -45467,11 +45231,13 @@ snapshots: transitivePeerDependencies: - typescript - postcss-media-query-parser@0.2.3: {} + postcss-media-query-parser@0.2.3: + optional: true postcss-modules-extract-imports@3.1.0(postcss@8.5.15): dependencies: postcss: 8.5.15 + optional: true postcss-modules-extract-imports@3.1.0(postcss@8.5.6): dependencies: @@ -45483,6 +45249,7 @@ snapshots: postcss: 8.5.15 postcss-selector-parser: 7.1.0 postcss-value-parser: 4.2.0 + optional: true postcss-modules-local-by-default@4.2.0(postcss@8.5.6): dependencies: @@ -45495,6 +45262,7 @@ snapshots: dependencies: postcss: 8.5.15 postcss-selector-parser: 7.1.0 + optional: true postcss-modules-scope@3.2.1(postcss@8.5.6): dependencies: @@ -45505,6 +45273,7 @@ snapshots: dependencies: icss-utils: 5.1.0(postcss@8.5.15) postcss: 8.5.15 + optional: true postcss-modules-values@4.0.0(postcss@8.5.6): dependencies: @@ -45514,6 +45283,7 @@ snapshots: postcss-safe-parser@7.0.1(postcss@8.5.15): dependencies: postcss: 8.5.15 + optional: true postcss-selector-parser@6.1.2: dependencies: @@ -45539,6 +45309,7 @@ snapshots: nanoid: 3.3.12 picocolors: 1.1.1 source-map-js: 1.2.1 + optional: true postcss@8.5.15: dependencies: @@ -45566,7 +45337,8 @@ snapshots: postgres@3.4.7: {} - powershell-utils@0.1.0: {} + powershell-utils@0.1.0: + optional: true pprof-format@2.2.1: {} @@ -45614,10 +45386,10 @@ snapshots: prettier@3.6.2: {} - prettier@3.7.3: {} - prettier@3.8.1: {} + prettier@3.9.6: {} + pretty-bytes@5.6.0: {} pretty-bytes@7.1.0: {} @@ -46008,10 +45780,6 @@ snapshots: process: 0.11.10 string_decoder: 1.3.0 - readable-web-to-node-stream@3.0.4: - dependencies: - readable-stream: 4.7.0 - readdir-glob@1.1.3: dependencies: minimatch: 5.1.9 @@ -46059,7 +45827,8 @@ snapshots: regenerator-runtime@0.14.1: {} - regex-parser@2.3.1: {} + regex-parser@2.3.1: + optional: true regexp-to-ast@0.5.0: {} @@ -46108,23 +45877,15 @@ snapshots: css-select: 4.3.0 dom-converter: 0.2.0 htmlparser2: 6.1.0 - lodash: 4.17.21 + lodash: 4.18.1 strip-ansi: 6.0.1 repeat-string@1.6.1: {} - replace@1.2.2: - dependencies: - chalk: 2.4.2 - minimatch: 3.0.5 - yargs: 15.4.1 - require-directory@2.1.1: {} require-from-string@2.0.2: {} - require-main-filename@2.0.0: {} - require-package-name@2.0.1: {} requires-port@1.0.0: {} @@ -46146,6 +45907,7 @@ snapshots: loader-utils: 2.0.4 postcss: 8.5.15 source-map: 0.6.1 + optional: true resolve.exports@2.0.3: {} @@ -46176,6 +45938,7 @@ snapshots: dependencies: onetime: 7.0.0 signal-exit: 4.1.0 + optional: true ret@0.5.0: {} @@ -46189,10 +45952,6 @@ snapshots: rfdc@1.4.1: {} - rimraf@5.0.10: - dependencies: - glob: 10.5.0 - rimraf@6.1.2: dependencies: glob: 13.0.0 @@ -46219,6 +45978,7 @@ snapshots: transitivePeerDependencies: - '@emnapi/core' - '@emnapi/runtime' + optional: true rolldown@1.0.0-rc.9(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0): dependencies: @@ -46382,6 +46142,7 @@ snapshots: optionalDependencies: sass: 1.97.3 webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) + optional: true sass@1.97.2: dependencies: @@ -46496,7 +46257,8 @@ snapshots: dependencies: randombytes: 2.1.0 - serialize-javascript@7.0.7: {} + serialize-javascript@7.0.7: + optional: true seroval-plugins@1.5.4(seroval@1.5.4): dependencies: @@ -46538,8 +46300,6 @@ snapshots: transitivePeerDependencies: - supports-color - set-blocking@2.0.0: {} - set-cookie-parser@2.7.2: {} set-cookie-parser@3.1.0: {} @@ -46749,21 +46509,17 @@ snapshots: slashes@3.0.12: {} - slice-ansi@4.0.0: - dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 - slice-ansi@7.1.2: dependencies: ansi-styles: 6.2.3 is-fullwidth-code-point: 5.1.0 + optional: true slice-ansi@8.0.0: dependencies: ansi-styles: 6.2.3 is-fullwidth-code-point: 5.1.0 + optional: true smart-buffer@4.2.0: {} @@ -46832,6 +46588,12 @@ snapshots: iconv-lite: 0.6.3 source-map-js: 1.2.1 webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) + optional: true + + source-map-resolve@0.6.0: + dependencies: + atob: 2.1.2 + decode-uri-component: 0.2.2 source-map-support@0.5.21: dependencies: @@ -46844,6 +46606,8 @@ snapshots: source-map@0.7.6: {} + source-map@0.8.0: {} + spawn-command@0.0.2: {} spawndamnit@3.0.1: @@ -46946,7 +46710,8 @@ snapshots: std-env@4.1.0: {} - stdin-discarder@0.3.2: {} + stdin-discarder@0.3.2: + optional: true stop-iteration-iterator@1.1.0: dependencies: @@ -47001,11 +46766,13 @@ snapshots: emoji-regex: 10.6.0 get-east-asian-width: 1.6.0 strip-ansi: 7.2.0 + optional: true string-width@8.2.2: dependencies: get-east-asian-width: 1.6.0 strip-ansi: 7.2.0 + optional: true string_decoder@1.1.1: dependencies: @@ -47041,10 +46808,9 @@ snapshots: dependencies: js-tokens: 9.0.1 - strtok3@6.3.0: + strtok3@10.3.5: dependencies: '@tokenizer/token': 0.3.0 - peek-readable: 4.1.0 style-loader@4.0.0(webpack@5.97.1): dependencies: @@ -47058,10 +46824,6 @@ snapshots: supports-color@10.2.2: {} - supports-color@5.5.0: - dependencies: - has-flag: 3.0.0 - supports-color@7.2.0: dependencies: has-flag: 4.0.0 @@ -47133,13 +46895,12 @@ snapshots: - bare-abort-controller - bare-buffer - tar@7.4.3: + tar@7.5.22: dependencies: '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 minipass: 7.1.2 - minizlib: 3.0.1 - mkdirp: 3.0.1 + minizlib: 3.1.0 yallist: 5.0.0 tar@7.5.9: @@ -47200,23 +46961,24 @@ snapshots: jest-worker: 27.5.1 schema-utils: 4.3.3 serialize-javascript: 6.0.2 - terser: 5.37.0 + terser: 5.46.0 webpack: 5.104.0(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4) optionalDependencies: '@swc/core': 1.15.33(@swc/helpers@0.5.23) esbuild: 0.27.4 - terser-webpack-plugin@5.3.16(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)): + terser-webpack-plugin@5.3.16(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4)(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)): dependencies: '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 serialize-javascript: 6.0.2 - terser: 5.37.0 + terser: 5.46.0 webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) optionalDependencies: '@swc/core': 1.15.33(@swc/helpers@0.5.23) - esbuild: 0.28.1 + esbuild: 0.27.4 + optional: true terser@5.37.0: dependencies: @@ -47257,6 +47019,7 @@ snapshots: thingies@2.6.0(tslib@2.8.1): dependencies: tslib: 2.8.1 + optional: true thread-stream@4.0.0: dependencies: @@ -47284,6 +47047,11 @@ snapshots: fdir: 6.5.0(picomatch@4.0.4) picomatch: 4.0.4 + tinyglobby@0.2.17: + dependencies: + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 + tinyrainbow@3.1.0: {} tldts-core@6.1.76: {} @@ -47314,8 +47082,9 @@ snapshots: toidentifier@1.0.1: {} - token-types@4.2.1: + token-types@6.1.2: dependencies: + '@borewit/text-codec': 0.2.2 '@tokenizer/token': 0.3.0 ieee754: 1.2.1 @@ -47361,6 +47130,7 @@ snapshots: tree-dump@1.1.0(tslib@2.8.1): dependencies: tslib: 2.8.1 + optional: true tree-kill@1.2.2: {} @@ -47406,32 +47176,13 @@ snapshots: dependencies: '@ts-morph/common': 0.22.0 code-block-writer: 12.0.0 + optional: true - ts-morph@25.0.1: + ts-morph@28.0.0: dependencies: - '@ts-morph/common': 0.26.1 + '@ts-morph/common': 0.29.0 code-block-writer: 13.0.3 - ts-node@10.9.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(@types/node@25.0.9)(typescript@5.7.3): - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.12 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 25.0.9 - acorn: 8.15.0 - acorn-walk: 8.3.5 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.4 - make-error: 1.3.6 - typescript: 5.7.3 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - optionalDependencies: - '@swc/core': 1.15.33(@swc/helpers@0.5.23) - ts-pattern@5.6.2: {} tsconfck@3.1.4(typescript@6.0.2): @@ -47494,7 +47245,8 @@ snapshots: media-typer: 1.1.0 mime-types: 3.0.1 - typed-assert@1.0.9: {} + typed-assert@1.0.9: + optional: true typescript-eslint@8.44.1(eslint@9.22.0(jiti@2.7.0))(typescript@6.0.2): dependencies: @@ -47607,19 +47359,10 @@ snapshots: unplugin: 2.3.11 unplugin-utils: 0.3.1 - universal-analytics@0.5.3: - dependencies: - debug: 4.4.3 - uuid: 8.3.2 - transitivePeerDependencies: - - supports-color - universalify@0.1.2: {} universalify@0.2.0: {} - universalify@2.0.1: {} - unixify@1.0.0: dependencies: normalize-path: 2.1.1 @@ -47707,8 +47450,6 @@ snapshots: lru-cache: 11.5.1 ofetch: 2.0.0-alpha.3 - untildify@4.0.0: {} - untun@0.1.3: dependencies: citty: 0.1.6 @@ -47796,14 +47537,10 @@ snapshots: uuid@11.1.0: {} - uuid@7.0.3: {} + uuid@11.1.1: {} uuid@8.3.2: {} - uuid@9.0.1: {} - - v8-compile-cache-lib@3.0.1: {} - valibot@1.0.0-beta.15(typescript@6.0.2): optionalDependencies: typescript: 6.0.2 @@ -47861,7 +47598,7 @@ snapshots: transitivePeerDependencies: - supports-color - vite-plugin-solid@2.11.11(@testing-library/jest-dom@6.6.3)(solid-js@1.9.12)(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)): + vite-plugin-solid@2.11.11(@testing-library/jest-dom@6.6.3)(solid-js@1.9.12)(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0)): dependencies: '@babel/core': 7.28.5 '@types/babel__core': 7.20.5 @@ -47869,14 +47606,14 @@ snapshots: merge-anything: 5.1.7 solid-js: 1.9.12 solid-refresh: 0.6.3(solid-js@1.9.12) - vite: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) - vitefu: 1.1.1(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0) + vitefu: 1.1.1(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0)) optionalDependencies: '@testing-library/jest-dom': 6.6.3 transitivePeerDependencies: - supports-color - vite-plugin-solid@2.11.11(@testing-library/jest-dom@6.6.3)(solid-js@1.9.12)(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0)): + vite-plugin-solid@2.11.11(@testing-library/jest-dom@6.6.3)(solid-js@1.9.12)(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)): dependencies: '@babel/core': 7.28.5 '@types/babel__core': 7.20.5 @@ -47884,20 +47621,21 @@ snapshots: merge-anything: 5.1.7 solid-js: 1.9.12 solid-refresh: 0.6.3(solid-js@1.9.12) - vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0) - vitefu: 1.1.1(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0)) + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + vitefu: 1.1.1(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) optionalDependencies: '@testing-library/jest-dom': 6.6.3 transitivePeerDependencies: - supports-color + optional: true - vite-plugin-static-copy@3.4.0(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)): + vite-plugin-static-copy@4.1.1(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)): dependencies: chokidar: 3.6.0 p-map: 7.0.6 picocolors: 1.1.1 - tinyglobby: 0.2.16 - vite: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + tinyglobby: 0.2.17 + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) vite-tsconfig-paths@6.1.1(typescript@6.0.2)(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0)): dependencies: @@ -47909,26 +47647,25 @@ snapshots: - supports-color - typescript - vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0): + vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0): dependencies: - esbuild: 0.27.4 - fdir: 6.5.0(picomatch@4.0.4) + lightningcss: 1.32.0 picomatch: 4.0.4 postcss: 8.5.15 - rollup: 4.56.0 + rolldown: 1.0.2 tinyglobby: 0.2.16 optionalDependencies: '@types/node': 25.0.9 + esbuild: 0.27.4 fsevents: 2.3.3 jiti: 2.7.0 less: 4.4.2 - lightningcss: 1.32.0 sass: 1.97.2 - terser: 5.46.0 + terser: 5.37.0 tsx: 4.20.3 yaml: 2.9.0 - vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0): + vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0): dependencies: lightningcss: 1.32.0 picomatch: 4.0.4 @@ -47941,8 +47678,8 @@ snapshots: fsevents: 2.3.3 jiti: 2.7.0 less: 4.4.2 - sass: 1.97.2 - terser: 5.37.0 + sass: 1.97.3 + terser: 5.46.0 tsx: 4.20.3 yaml: 2.9.0 @@ -47964,14 +47701,15 @@ snapshots: tsx: 4.20.3 yaml: 2.9.0 - vitefu@1.1.1(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)): - optionalDependencies: - vite: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) - vitefu@1.1.1(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0)): optionalDependencies: vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0) + vitefu@1.1.1(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)): + optionalDependencies: + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + optional: true + vitefu@1.1.1(vite@8.0.14(@types/node@25.0.9)(esbuild@0.28.1)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)): optionalDependencies: vite: 8.0.14(@types/node@25.0.9)(esbuild@0.28.1)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) @@ -48063,10 +47801,10 @@ snapshots: transitivePeerDependencies: - msw - vitest@4.1.4(@types/node@25.0.9)(@vitest/ui@4.1.4)(jsdom@29.1.1(@noble/hashes@2.0.1))(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)): + vitest@4.1.4(@types/node@25.0.9)(@vitest/ui@4.1.4)(jsdom@29.1.1(@noble/hashes@2.0.1))(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0)): dependencies: '@vitest/expect': 4.1.4 - '@vitest/mocker': 4.1.4(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) + '@vitest/mocker': 4.1.4(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0)) '@vitest/pretty-format': 4.1.4 '@vitest/runner': 4.1.4 '@vitest/snapshot': 4.1.4 @@ -48083,7 +47821,7 @@ snapshots: tinyexec: 1.0.2 tinyglobby: 0.2.15 tinyrainbow: 3.1.0 - vite: 7.3.6(@types/node@25.0.9)(jiti@2.7.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.97.2)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 25.0.9 @@ -48091,12 +47829,11 @@ snapshots: jsdom: 29.1.1(@noble/hashes@2.0.1) transitivePeerDependencies: - msw - optional: true - vitest@4.1.4(@types/node@25.0.9)(@vitest/ui@4.1.4)(jsdom@29.1.1(@noble/hashes@2.0.1))(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0)): + vitest@4.1.4(@types/node@25.0.9)(@vitest/ui@4.1.4)(jsdom@29.1.1(@noble/hashes@2.0.1))(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)): dependencies: '@vitest/expect': 4.1.4 - '@vitest/mocker': 4.1.4(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0)) + '@vitest/mocker': 4.1.4(msw@2.7.0(@types/node@25.0.9)(typescript@6.0.2))(vite@8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0)) '@vitest/pretty-format': 4.1.4 '@vitest/runner': 4.1.4 '@vitest/snapshot': 4.1.4 @@ -48113,7 +47850,7 @@ snapshots: tinyexec: 1.0.2 tinyglobby: 0.2.15 tinyrainbow: 3.1.0 - vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.2)(terser@5.37.0)(tsx@4.20.3)(yaml@2.9.0) + vite: 8.0.14(@types/node@25.0.9)(esbuild@0.27.4)(jiti@2.7.0)(less@4.4.2)(sass@1.97.3)(terser@5.46.0)(tsx@4.20.3)(yaml@2.9.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 25.0.9 @@ -48121,6 +47858,7 @@ snapshots: jsdom: 29.1.1(@noble/hashes@2.0.1) transitivePeerDependencies: - msw + optional: true vscode-uri@3.0.8: {} @@ -48200,6 +47938,7 @@ snapshots: '@volar/typescript': 2.4.28 '@vue/language-core': 3.3.7 typescript: 6.0.2 + optional: true vue@3.5.25(typescript@5.8.3): dependencies: @@ -48235,17 +47974,6 @@ snapshots: dependencies: xml-name-validator: 5.0.0 - wait-on@9.0.10: - dependencies: - axios: 1.18.1(debug@4.4.3) - joi: 18.2.3 - lodash: 4.18.1 - minimist: 1.2.8 - rxjs: 7.8.2 - transitivePeerDependencies: - - debug - - supports-color - walk-up-path@4.0.0: {} watchpack@2.4.2: @@ -48262,10 +47990,12 @@ snapshots: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 + optional: true watchpack@2.5.2: dependencies: graceful-fs: 4.2.11 + optional: true wbuf@1.7.3: dependencies: @@ -48311,17 +48041,6 @@ snapshots: optionalDependencies: webpack-dev-server: 5.2.4(webpack-cli@5.1.4)(webpack@5.97.1) - webpack-dev-middleware@7.4.2(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)): - dependencies: - colorette: 2.0.20 - memfs: 4.17.0 - mime-types: 2.1.35 - on-finished: 2.4.1 - range-parser: 1.2.1 - schema-utils: 4.3.3 - optionalDependencies: - webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) - webpack-dev-middleware@7.4.2(webpack@5.97.1): dependencies: colorette: 2.0.20 @@ -48345,6 +48064,7 @@ snapshots: webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) transitivePeerDependencies: - tslib + optional: true webpack-dev-server@5.2.4(webpack-cli@5.1.4)(webpack@5.97.1): dependencies: @@ -48385,7 +48105,7 @@ snapshots: - supports-color - utf-8-validate - webpack-dev-server@5.2.5(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)): + webpack-dev-server@5.2.5(tslib@2.8.1)(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -48413,7 +48133,7 @@ snapshots: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 7.4.2(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) + webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) ws: 8.20.0 optionalDependencies: webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) @@ -48421,7 +48141,9 @@ snapshots: - bufferutil - debug - supports-color + - tslib - utf-8-validate + optional: true webpack-merge@5.10.0: dependencies: @@ -48434,17 +48156,19 @@ snapshots: clone-deep: 4.0.1 flat: 5.0.2 wildcard: 2.0.1 + optional: true webpack-sources@3.2.3: {} webpack-sources@3.3.3: {} - webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)))(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)): + webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4)))(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)): dependencies: typed-assert: 1.0.9 webpack: 5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1) optionalDependencies: - html-webpack-plugin: 5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) + html-webpack-plugin: 5.6.3(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4)) + optional: true webpack-virtual-modules@0.5.0: {} @@ -48506,13 +48230,14 @@ snapshots: neo-async: 2.6.2 schema-utils: 4.3.3 tapable: 2.3.0 - terser-webpack-plugin: 5.3.16(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) + terser-webpack-plugin: 5.3.16(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4)(webpack@5.105.2(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.28.1)) watchpack: 2.5.2 webpack-sources: 3.3.3 transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js + optional: true webpack@5.97.1(@swc/core@1.15.33(@swc/helpers@0.5.23))(esbuild@0.27.4)(webpack-cli@5.1.4): dependencies: @@ -48662,8 +48387,6 @@ snapshots: is-weakmap: 2.0.2 is-weakset: 2.0.4 - which-module@2.0.1: {} - which-typed-array@1.1.19: dependencies: available-typed-arrays: 1.0.7 @@ -48764,6 +48487,7 @@ snapshots: ansi-styles: 6.2.3 string-width: 7.2.0 strip-ansi: 7.2.0 + optional: true wrappy@1.0.2: {} @@ -48782,19 +48506,13 @@ snapshots: ws@8.20.0: {} + ws@8.21.1: {} + wsl-utils@0.3.1: dependencies: is-wsl: 3.1.1 powershell-utils: 0.1.0 - - xcode@3.0.1: - dependencies: - simple-plist: 1.4.0 - uuid: 7.0.3 - - xml-js@1.6.11: - dependencies: - sax: 1.4.1 + optional: true xml-name-validator@4.0.0: {} @@ -48825,15 +48543,11 @@ snapshots: xmlchars@2.2.0: {} - xpath@0.0.32: {} - xss@1.0.15: dependencies: commander: 2.20.3 cssfilter: 0.0.10 - y18n@4.0.3: {} - y18n@5.0.8: {} yallist@3.1.1: {} @@ -48846,30 +48560,12 @@ snapshots: yaml@2.9.0: {} - yargs-parser@18.1.3: - dependencies: - camelcase: 5.3.1 - decamelize: 1.2.0 - yargs-parser@20.2.9: {} yargs-parser@21.1.1: {} - yargs-parser@22.0.0: {} - - yargs@15.4.1: - dependencies: - cliui: 6.0.0 - decamelize: 1.2.0 - find-up: 4.1.0 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - require-main-filename: 2.0.0 - set-blocking: 2.0.0 - string-width: 4.2.3 - which-module: 2.0.1 - y18n: 4.0.3 - yargs-parser: 18.1.3 + yargs-parser@22.0.0: + optional: true yargs@16.2.0: dependencies: @@ -48909,30 +48605,29 @@ snapshots: string-width: 7.2.0 y18n: 5.0.8 yargs-parser: 22.0.0 + optional: true yauzl@2.10.0: dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 - yauzl@3.2.0: + yauzl@3.4.0: dependencies: - buffer-crc32: 0.2.13 pend: 1.2.0 yazl@3.3.1: dependencies: buffer-crc32: 1.0.0 - yn@3.1.1: {} - yocto-queue@0.1.0: {} yocto-queue@1.2.1: {} yoctocolors-cjs@2.1.3: {} - yoctocolors@2.1.2: {} + yoctocolors@2.1.2: + optional: true youch-core@0.3.3: dependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 92d02ee131e..2434fcc06cf 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -7,7 +7,7 @@ trustPolicy: 'no-downgrade' trustPolicyExclude: - 'chokidar@4.0.3' # known to be safe, installed by sass, prisma, netlify... no planned releases in v4, packages is on v5 now - - 'semver@5.7.2' # installed by @nativescript/vite through less and make-dir; 5.7.2 is the final semver v5 release + - 'semver@5.7.2' # installed through less (make-dir) and shelljs (execa); 5.7.2 is the final semver v5 release - 'semver@6.3.1' # installed by babel, ecosystem has been on v7 for 7 years now, but babel is horribly out of date, 6.3.1 is the latest v6 and was released 3 years ago - 'undici@6.21.2' # installed by cheerio@1.0.0 -> html-link-extractor@1.0.5 -> markdown-link-extractor@4.0.3, is only 1 year old, v6, v7 and v8 are maintained in parallel - '@netlify/edge-bundler@14.7.0' # existing Netlify dev transitive flagged by pnpm 11.9 trust downgrade checks @@ -49,11 +49,6 @@ catalog: '@tanstack/vue-query': ^5.99.0 overrides: - 'tanstack-start-example-nativescript>vite': 7.3.6 - '@nativescript/vite@2.0.3>vite': 7.3.6 - 'nativescript@9.0.6>axios': 1.18.1 - 'nativescript@9.0.6>simple-git': 3.36.0 - 'wait-on@9.0.10>axios': 1.18.1 '@types/babel__traverse': '^7.28.0' vite-plugin-dts: 4.2.3 solid-js: 1.9.12