From eb61102b2b3ce8093856c578b694d0996eb27337 Mon Sep 17 00:00:00 2001 From: maiieul <45822175+maiieul@users.noreply.github.com> Date: Wed, 10 Jun 2026 22:50:38 +0200 Subject: [PATCH 1/3] chore: wip --- frameworks/qwik/package.json | 6 +- .../src/hooks/usePathSignal/usePathSignal.ts | 4 +- frameworks/qwik/src/types/field.ts | 30 +- frameworks/qwik/src/types/form.ts | 16 +- packages/core/package.json | 2 +- playgrounds/qwik/package.json | 8 +- playgrounds/qwik/src/components/Checkbox.tsx | 6 +- playgrounds/qwik/src/components/FileInput.tsx | 6 +- .../qwik/src/components/InputErrors.tsx | 9 +- .../qwik/src/components/RadioGroup.tsx | 6 +- playgrounds/qwik/src/components/Select.tsx | 6 +- playgrounds/qwik/src/components/Slider.tsx | 6 +- playgrounds/qwik/src/components/TextInput.tsx | 11 +- playgrounds/qwik/src/entry.preview.tsx | 3 +- pnpm-lock.yaml | 2795 ++++++++++++++++- website/package.json | 8 +- .../input-components/index.mdx | 16 +- 17 files changed, 2739 insertions(+), 199 deletions(-) diff --git a/frameworks/qwik/package.json b/frameworks/qwik/package.json index 9eff37f4..2695dd0b 100644 --- a/frameworks/qwik/package.json +++ b/frameworks/qwik/package.json @@ -47,16 +47,16 @@ "@formisch/core": "workspace:*", "@formisch/eslint-config": "workspace:*", "@formisch/methods": "workspace:*", - "@qwik.dev/core": "2.0.0-beta.5", + "@qwik.dev/core": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99", "@types/node": "24.0.13", "eslint": "9.31.0", - "eslint-plugin-qwik": "2.0.0-beta.5", + "eslint-plugin-qwik": "2.0.0-beta.35", "globals": "16.3.0", "prettier": "3.6.2", "tsdown": "0.12.9", "typescript": "5.8.3", "valibot": "^1.4.1", - "vite": "7.0.4", + "vite": "8.0.14", "vite-tsconfig-paths": "^5.1.4" }, "peerDependencies": { diff --git a/frameworks/qwik/src/hooks/usePathSignal/usePathSignal.ts b/frameworks/qwik/src/hooks/usePathSignal/usePathSignal.ts index 4baa5c4e..f79b139d 100644 --- a/frameworks/qwik/src/hooks/usePathSignal/usePathSignal.ts +++ b/frameworks/qwik/src/hooks/usePathSignal/usePathSignal.ts @@ -1,5 +1,5 @@ import type { Path } from '@formisch/core/qwik'; -import { type ReadonlySignal, useSignal } from '@qwik.dev/core'; +import { type Signal, useSignal } from '@qwik.dev/core'; // @__NO_SIDE_EFFECTS__ function isEqual(a: Path, b: Path): boolean { @@ -21,7 +21,7 @@ function isEqual(a: Path, b: Path): boolean { // @__NO_SIDE_EFFECTS__ export function usePathSignal( path: TPath -): ReadonlySignal { +): Readonly> { const signal = useSignal(path); if (!isEqual(signal.value, path)) { signal.value = path; diff --git a/frameworks/qwik/src/types/field.ts b/frameworks/qwik/src/types/field.ts index e933a57f..eb4675fe 100644 --- a/frameworks/qwik/src/types/field.ts +++ b/frameworks/qwik/src/types/field.ts @@ -7,7 +7,7 @@ import type { ValidArrayPath, ValidPath, } from '@formisch/core/qwik'; -import type { QRL, ReadonlySignal } from '@qwik.dev/core'; +import type { QRL, Signal } from '@qwik.dev/core'; import type * as v from 'valibot'; /** @@ -54,29 +54,29 @@ export interface FieldStore< /** * The path to the field within the form. */ - readonly path: ReadonlySignal, TFieldPath>>; + readonly path: Readonly, TFieldPath>>>; /** * The current input value of the field. */ - readonly input: ReadonlySignal< - PartialValues, TFieldPath>> + readonly input: Readonly< + Signal, TFieldPath>>> >; /** * The current error messages of the field. */ - readonly errors: ReadonlySignal<[string, ...string[]] | null>; + readonly errors: Readonly>; /** * Whether the field has been touched. */ - readonly isTouched: ReadonlySignal; + readonly isTouched: Readonly>; /** * Whether the field input differs from its initial value. */ - readonly isDirty: ReadonlySignal; + readonly isDirty: Readonly>; /** * Whether the field is valid according to the schema. */ - readonly isValid: ReadonlySignal; + readonly isValid: Readonly>; /** * Sets the field input value programmatically. */ @@ -99,27 +99,27 @@ export interface FieldArrayStore< /** * The path to the array field within the form. */ - readonly path: ReadonlySignal< - ValidArrayPath, TFieldArrayPath> + readonly path: Readonly< + Signal, TFieldArrayPath>> >; /** * The item IDs of the array field. */ - readonly items: ReadonlySignal; + readonly items: Readonly>; /** * The current error messages of the field array. */ - readonly errors: ReadonlySignal<[string, ...string[]] | null>; + readonly errors: Readonly>; /** * Whether the field array has been touched. */ - readonly isTouched: ReadonlySignal; + readonly isTouched: Readonly>; /** * Whether the field array input differs from its initial value. */ - readonly isDirty: ReadonlySignal; + readonly isDirty: Readonly>; /** * Whether the field array is valid according to the schema. */ - readonly isValid: ReadonlySignal; + readonly isValid: Readonly>; } diff --git a/frameworks/qwik/src/types/form.ts b/frameworks/qwik/src/types/form.ts index c0a13f7b..ad48dd62 100644 --- a/frameworks/qwik/src/types/form.ts +++ b/frameworks/qwik/src/types/form.ts @@ -1,5 +1,5 @@ import type { BaseFormStore, FormSchema } from '@formisch/core/qwik'; -import type { ReadonlySignal } from '@qwik.dev/core'; +import type { Signal } from '@qwik.dev/core'; /** * Form store interface. @@ -9,32 +9,32 @@ export interface FormStore /** * Whether the form is currently submitting. */ - readonly isSubmitting: ReadonlySignal; + readonly isSubmitting: Readonly>; /** * Whether the form has been submitted. */ - readonly isSubmitted: ReadonlySignal; + readonly isSubmitted: Readonly>; /** * Whether the form is currently validating. */ - readonly isValidating: ReadonlySignal; + readonly isValidating: Readonly>; /** * Whether any field in the form has been touched. */ - readonly isTouched: ReadonlySignal; + readonly isTouched: Readonly>; /** * Whether any field in the form differs from its initial value. */ - readonly isDirty: ReadonlySignal; + readonly isDirty: Readonly>; /** * Whether the form is valid according to the schema. */ - readonly isValid: ReadonlySignal; + readonly isValid: Readonly>; /** * The current error messages of the form. * * Hint: This property only contains validation errors at the root level * of the form. To get all errors from all fields, use `getAllErrors`. */ - readonly errors: ReadonlySignal<[string, ...string[]] | null>; + readonly errors: Readonly>; } diff --git a/packages/core/package.json b/packages/core/package.json index fa4e8db7..04701a67 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -75,7 +75,7 @@ "@angular/core": "^21.0.0", "@formisch/eslint-config": "workspace:*", "@preact/signals": "^2.9.0", - "@qwik.dev/core": "2.0.0-beta.5", + "@qwik.dev/core": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99", "@types/node": "24.0.13", "@types/react": "^19.2.5", "@vitest/coverage-v8": "^4.1.7", diff --git a/playgrounds/qwik/package.json b/playgrounds/qwik/package.json index 92f4086d..54dc65a4 100644 --- a/playgrounds/qwik/package.json +++ b/playgrounds/qwik/package.json @@ -31,12 +31,12 @@ "devDependencies": { "@eslint/js": "^9.31.0", "@formisch/qwik": "workspace:*", - "@qwik.dev/core": "2.0.0-beta.5", - "@qwik.dev/router": "2.0.0-beta.5", + "@qwik.dev/core": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99", + "@qwik.dev/router": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99", "@tailwindcss/vite": "^4.1.11", "@types/node": "24.0.13", "eslint": "9.31.0", - "eslint-plugin-qwik": "2.0.0-beta.5", + "eslint-plugin-qwik": "2.0.0-beta.35", "globals": "16.3.0", "prettier": "3.6.2", "prettier-plugin-tailwindcss": "^0.6.14", @@ -44,7 +44,7 @@ "typescript": "5.8.3", "typescript-eslint": "8.36.0", "typescript-plugin-css-modules": "^5.1.0", - "vite": "6.3.5", + "vite": "8.0.14", "vite-tsconfig-paths": "^5.1.4" } } diff --git a/playgrounds/qwik/src/components/Checkbox.tsx b/playgrounds/qwik/src/components/Checkbox.tsx index c54be0aa..341989b0 100644 --- a/playgrounds/qwik/src/components/Checkbox.tsx +++ b/playgrounds/qwik/src/components/Checkbox.tsx @@ -1,5 +1,5 @@ import type { FieldElementProps } from '@formisch/qwik'; -import { component$, ReadonlySignal } from '@qwik.dev/core'; +import { component$, Signal } from '@qwik.dev/core'; import clsx from 'clsx'; import { InputErrors } from './InputErrors'; @@ -7,9 +7,9 @@ interface CheckboxProps extends FieldElementProps { class?: string; label?: string; value?: string; - input: ReadonlySignal; + input: Readonly>; required?: boolean; - errors: ReadonlySignal<[string, ...string[]] | null>; + errors: Readonly>; } /** diff --git a/playgrounds/qwik/src/components/FileInput.tsx b/playgrounds/qwik/src/components/FileInput.tsx index f3a6ccd9..55b19eb9 100644 --- a/playgrounds/qwik/src/components/FileInput.tsx +++ b/playgrounds/qwik/src/components/FileInput.tsx @@ -1,6 +1,6 @@ /* eslint-disable qwik/valid-lexical-scope */ import type { FieldElementProps } from '@formisch/qwik'; -import { component$, ReadonlySignal, useComputed$ } from '@qwik.dev/core'; +import { component$, Signal, useComputed$ } from '@qwik.dev/core'; import clsx from 'clsx'; import { InputErrors } from './InputErrors'; import { InputLabel } from './InputLabel'; @@ -11,8 +11,8 @@ interface FileInputProps extends FieldElementProps { accept?: string; required?: boolean; multiple?: boolean; - input: ReadonlySignal; - errors: ReadonlySignal<[string, ...string[]] | null>; + input: Readonly>; + errors: Readonly>; } /** diff --git a/playgrounds/qwik/src/components/InputErrors.tsx b/playgrounds/qwik/src/components/InputErrors.tsx index 1f5bbe58..a0b73fdb 100644 --- a/playgrounds/qwik/src/components/InputErrors.tsx +++ b/playgrounds/qwik/src/components/InputErrors.tsx @@ -1,15 +1,10 @@ -import { - component$, - ReadonlySignal, - useSignal, - useTask$, -} from '@qwik.dev/core'; +import { component$, Signal, useSignal, useTask$ } from '@qwik.dev/core'; import { isBrowser } from '@qwik.dev/core/build'; import { Expandable } from './Expandable'; type InputErrorProps = { name: string; - errors: ReadonlySignal<[string, ...string[]] | null>; + errors: Readonly>; }; /** diff --git a/playgrounds/qwik/src/components/RadioGroup.tsx b/playgrounds/qwik/src/components/RadioGroup.tsx index 87e93bb6..9513d279 100644 --- a/playgrounds/qwik/src/components/RadioGroup.tsx +++ b/playgrounds/qwik/src/components/RadioGroup.tsx @@ -1,5 +1,5 @@ import type { FieldElementProps } from '@formisch/qwik'; -import { component$, ReadonlySignal } from '@qwik.dev/core'; +import { component$, Signal } from '@qwik.dev/core'; import clsx from 'clsx'; import { InputErrors } from './InputErrors'; import { InputLabel } from './InputLabel'; @@ -10,8 +10,8 @@ interface RadioGroupProps extends FieldElementProps { label?: string; options: { label: string; value: string }[]; required?: boolean; - input: ReadonlySignal; - errors: ReadonlySignal<[string, ...string[]] | null>; + input: Readonly>; + errors: Readonly>; } /** diff --git a/playgrounds/qwik/src/components/Select.tsx b/playgrounds/qwik/src/components/Select.tsx index b4b0e39f..cef1d61f 100644 --- a/playgrounds/qwik/src/components/Select.tsx +++ b/playgrounds/qwik/src/components/Select.tsx @@ -1,5 +1,5 @@ import type { FieldElementProps } from '@formisch/qwik'; -import { component$, ReadonlySignal, useComputed$ } from '@qwik.dev/core'; +import { component$, Signal, useComputed$ } from '@qwik.dev/core'; import clsx from 'clsx'; import { AngleDownIcon } from '~/icons'; import { InputErrors } from './InputErrors'; @@ -13,8 +13,8 @@ interface SelectProps extends FieldElementProps { size?: number; placeholder?: string; required?: boolean; - input: ReadonlySignal; - errors: ReadonlySignal<[string, ...string[]] | null>; + input: Readonly>; + errors: Readonly>; } /** diff --git a/playgrounds/qwik/src/components/Slider.tsx b/playgrounds/qwik/src/components/Slider.tsx index c59a7e2f..cd602137 100644 --- a/playgrounds/qwik/src/components/Slider.tsx +++ b/playgrounds/qwik/src/components/Slider.tsx @@ -1,5 +1,5 @@ import type { FieldElementProps } from '@formisch/qwik'; -import { component$, ReadonlySignal } from '@qwik.dev/core'; +import { component$, Signal } from '@qwik.dev/core'; import clsx from 'clsx'; import { InputErrors } from './InputErrors'; import { InputLabel } from './InputLabel'; @@ -11,8 +11,8 @@ interface SliderProps extends FieldElementProps { max?: number; step?: number; required?: boolean; - input: ReadonlySignal; - errors: ReadonlySignal<[string, ...string[]] | null>; + input: Readonly>; + errors: Readonly>; } /** diff --git a/playgrounds/qwik/src/components/TextInput.tsx b/playgrounds/qwik/src/components/TextInput.tsx index 1dcbc2b0..b869f286 100644 --- a/playgrounds/qwik/src/components/TextInput.tsx +++ b/playgrounds/qwik/src/components/TextInput.tsx @@ -1,10 +1,5 @@ import type { FieldElementProps } from '@formisch/qwik'; -import { - component$, - ReadonlySignal, - useSignal, - useTask$, -} from '@qwik.dev/core'; +import { component$, Signal, useSignal, useTask$ } from '@qwik.dev/core'; import clsx from 'clsx'; import { InputErrors } from './InputErrors'; import { InputLabel } from './InputLabel'; @@ -15,8 +10,8 @@ interface TextInputProps extends FieldElementProps { label?: string; placeholder?: string; required?: boolean; - input: ReadonlySignal; - errors: ReadonlySignal<[string, ...string[]] | null>; + input: Readonly>; + errors: Readonly>; } /** diff --git a/playgrounds/qwik/src/entry.preview.tsx b/playgrounds/qwik/src/entry.preview.tsx index a13df9b0..d2582cbe 100644 --- a/playgrounds/qwik/src/entry.preview.tsx +++ b/playgrounds/qwik/src/entry.preview.tsx @@ -10,7 +10,6 @@ * - https://vitejs.dev/config/preview-options.html#preview-options * */ -import qwikRouterConfig from '@qwik-router-config'; import { createQwikRouter } from '@qwik.dev/router/middleware/node'; // make sure qwikRouterConfig is imported before entry import render from './entry.ssr'; @@ -18,4 +17,4 @@ import render from './entry.ssr'; /** * The default export is the QwikRouter adapter used by Vite preview. */ -export default createQwikRouter({ render, qwikRouterConfig }); +export default createQwikRouter({ render }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b69e500b..5be0b3a1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,6 +4,7 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false +<<<<<<< HEAD overrides: '@babel/plugin-transform-modules-systemjs@7': 7.29.4 '@sveltejs/kit@2': 2.60.1 @@ -40,6 +41,8 @@ overrides: patchedDependencies: '@qwik.dev/router@2.0.0-beta.9': e002def78f4681060d18bc24d686c24ee1d1b997c399a2cb1c03baf3b860e4c8 +======= +>>>>>>> 9742820 (chore: wip) importers: .: @@ -82,7 +85,11 @@ importers: version: link:../../packages/methods '@preact/preset-vite': specifier: ^2.10.5 +<<<<<<< HEAD version: 2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.59.0)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + version: 2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.52.5)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) '@preact/signals': specifier: ^2.9.0 version: 2.9.0(preact@10.29.2) @@ -96,8 +103,13 @@ importers: specifier: 24.0.13 version: 24.0.13 '@vitest/coverage-v8': +<<<<<<< HEAD specifier: ^4.1.7 version: 4.1.7(vitest@4.1.7) +======= + specifier: ^3.2.4 + version: 3.2.4(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) eslint: specifier: ^9.31.0 version: 9.38.0(jiti@2.6.1) @@ -120,11 +132,19 @@ importers: specifier: ^1.4.1 version: 1.4.1(typescript@5.8.3) vite: +<<<<<<< HEAD specifier: 6.4.2 version: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vitest: specifier: ^4.1.7 version: 4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.0.13)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + specifier: ^6.0.4 + version: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vitest: + specifier: ^3.2.4 + version: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) frameworks/qwik: devDependencies: @@ -138,8 +158,13 @@ importers: specifier: workspace:* version: link:../../packages/methods '@qwik.dev/core': +<<<<<<< HEAD specifier: 2.0.0-beta.5 version: 2.0.0-beta.5(prettier@3.6.2)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99 + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) '@types/node': specifier: 24.0.13 version: 24.0.13 @@ -147,8 +172,8 @@ importers: specifier: 9.31.0 version: 9.31.0(jiti@2.6.1) eslint-plugin-qwik: - specifier: 2.0.0-beta.5 - version: 2.0.0-beta.5(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3) + specifier: 2.0.0-beta.35 + version: 2.0.0-beta.35(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3) globals: specifier: 16.3.0 version: 16.3.0 @@ -165,11 +190,19 @@ importers: specifier: ^1.4.1 version: 1.4.1(typescript@5.8.3) vite: +<<<<<<< HEAD specifier: 7.3.2 version: 7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vite-tsconfig-paths: specifier: ^5.1.4 version: 5.1.4(typescript@5.8.3)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + specifier: 8.0.14 + version: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-tsconfig-paths: + specifier: ^5.1.4 + version: 5.1.4(typescript@5.8.3)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) frameworks/react: dependencies: @@ -206,10 +239,17 @@ importers: version: 19.2.3(@types/react@19.2.7) '@vitejs/plugin-react': specifier: ^5.1.1 +<<<<<<< HEAD version: 5.1.1(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) '@vitest/coverage-v8': specifier: ^4.1.7 version: 4.1.7(vitest@4.1.7) +======= + version: 5.1.1(vite@7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@vitest/coverage-v8': + specifier: ^3.2.4 + version: 3.2.4(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) eslint: specifier: ^9.39.1 version: 9.39.1(jiti@2.6.1) @@ -238,11 +278,19 @@ importers: specifier: ~5.9.3 version: 5.9.3 vite: +<<<<<<< HEAD specifier: 7.3.2 version: 7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vitest: specifier: ^4.1.7 version: 4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.10.1)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + specifier: ^7.2.4 + version: 7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vitest: + specifier: ^3.2.4 + version: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) frameworks/solid: devDependencies: @@ -265,8 +313,13 @@ importers: specifier: 24.0.13 version: 24.0.13 '@vitest/coverage-v8': +<<<<<<< HEAD specifier: ^4.1.7 version: 4.1.7(vitest@4.1.7) +======= + specifier: ^3.2.4 + version: 3.2.4(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) eslint: specifier: ^9.31.0 version: 9.38.0(jiti@2.6.1) @@ -290,10 +343,14 @@ importers: version: 0.16.8(publint@0.3.15)(typescript@5.8.3)(vue-tsc@3.1.2(typescript@5.8.3)) tsup: specifier: ^8.5.0 - version: 8.5.0(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.8.1) + version: 8.5.0(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.9.0) tsup-preset-solid: specifier: ^2.2.0 +<<<<<<< HEAD version: 2.2.0(esbuild@0.27.7)(solid-js@1.9.9)(tsup@8.5.0(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.8.1)) +======= + version: 2.2.0(esbuild@0.25.11)(solid-js@1.9.9)(tsup@8.5.0(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) typescript: specifier: ^5.8.3 version: 5.8.3 @@ -302,10 +359,17 @@ importers: version: 1.4.1(typescript@5.8.3) vite-plugin-solid: specifier: ^2.11.6 +<<<<<<< HEAD version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) vitest: specifier: 4.1.7 version: 4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.0.13)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + vitest: + specifier: 3.2.4 + version: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) frameworks/svelte: devDependencies: @@ -323,21 +387,33 @@ importers: version: link:../../packages/methods '@sveltejs/adapter-auto': specifier: ^6.1.0 +<<<<<<< HEAD version: 6.1.1(@sveltejs/kit@2.60.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.42.1)(typescript@5.9.3)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))) '@sveltejs/kit': specifier: 2.60.1 version: 2.60.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.42.1)(typescript@5.9.3)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + version: 6.1.1(@sveltejs/kit@2.47.3(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))) + '@sveltejs/kit': + specifier: ^2.37.1 + version: 2.47.3(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) '@sveltejs/package': specifier: ^2.5.0 version: 2.5.4(svelte@5.42.1)(typescript@5.9.3) '@sveltejs/vite-plugin-svelte': specifier: ^6.2.0 +<<<<<<< HEAD version: 6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + version: 6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) '@testing-library/jest-dom': specifier: ^6.6.0 version: 6.9.1 '@testing-library/svelte': specifier: ^5.2.4 +<<<<<<< HEAD version: 5.3.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@4.1.7) '@types/node': specifier: 24.0.13 @@ -345,6 +421,12 @@ importers: '@vitest/coverage-v8': specifier: ^4.1.7 version: 4.1.7(vitest@4.1.7) +======= + version: 5.3.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@vitest/coverage-v8': + specifier: ^3.2.4 + version: 3.2.4(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) eslint: specifier: ^9.35.0 version: 9.38.0(jiti@2.6.1) @@ -373,11 +455,19 @@ importers: specifier: ^1.4.1 version: 1.4.1(typescript@5.9.3) vite: +<<<<<<< HEAD specifier: 7.3.2 version: 7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vitest: specifier: ^4.1.7 version: 4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.0.13)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + specifier: ^7.1.5 + version: 7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vitest: + specifier: ^3.2.4 + version: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) frameworks/vue: devDependencies: @@ -397,8 +487,13 @@ importers: specifier: ^24.1.0 version: 24.9.1 '@vitest/coverage-v8': +<<<<<<< HEAD specifier: ^4.1.7 version: 4.1.7(vitest@4.1.7) +======= + specifier: ^3.2.4 + version: 3.2.4(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) '@vue/eslint-config-typescript': specifier: ^14.6.0 version: 14.6.0(eslint-plugin-vue@10.3.0(@typescript-eslint/parser@8.48.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.8.3))(eslint@9.38.0(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.6.1))))(eslint@9.38.0(jiti@2.6.1))(typescript@5.8.3) @@ -422,13 +517,18 @@ importers: version: 5.8.3 unplugin-vue: specifier: ^7.0.0 - version: 7.0.3(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(vue@3.5.22(typescript@5.8.3))(yaml@2.8.1) + version: 7.0.3(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(vue@3.5.22(typescript@5.8.3))(yaml@2.9.0) valibot: specifier: ^1.4.1 version: 1.4.1(typescript@5.8.3) vitest: +<<<<<<< HEAD specifier: ^4.1.7 version: 4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.9.1)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@6.4.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + specifier: ^3.2.4 + version: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) vue: specifier: ^3.5.18 version: 3.5.22(typescript@5.8.3) @@ -448,8 +548,13 @@ importers: specifier: ^2.9.0 version: 2.9.0(preact@10.29.2) '@qwik.dev/core': +<<<<<<< HEAD specifier: 2.0.0-beta.5 version: 2.0.0-beta.5(prettier@3.6.2)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@4.1.7) +======= + specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99 + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) '@types/node': specifier: 24.0.13 version: 24.0.13 @@ -457,8 +562,13 @@ importers: specifier: ^19.2.5 version: 19.2.7 '@vitest/coverage-v8': +<<<<<<< HEAD specifier: ^4.1.7 version: 4.1.7(vitest@4.1.7) +======= + specifier: ^3.2.4 + version: 3.2.4(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) eslint: specifier: ^9.31.0 version: 9.38.0(jiti@2.6.1) @@ -490,8 +600,13 @@ importers: specifier: ^1.4.1 version: 1.4.1(typescript@5.8.3) vitest: +<<<<<<< HEAD specifier: 4.1.7 version: 4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.0.13)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + specifier: 3.2.4 + version: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) vue: specifier: ^3.5.17 version: 3.5.22(typescript@5.8.3) @@ -536,8 +651,13 @@ importers: specifier: ^19.2.5 version: 19.2.7 '@vitest/coverage-v8': +<<<<<<< HEAD specifier: ^4.1.7 version: 4.1.7(vitest@4.1.7) +======= + specifier: ^3.2.4 + version: 3.2.4(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) eslint: specifier: ^9.31.0 version: 9.38.0(jiti@2.6.1) @@ -560,8 +680,13 @@ importers: specifier: ^1.4.1 version: 1.4.1(typescript@5.8.3) vitest: +<<<<<<< HEAD specifier: 4.1.7 version: 4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.0.13)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + specifier: 3.2.4 + version: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) playgrounds/preact: dependencies: @@ -592,10 +717,17 @@ importers: version: link:../../packages/eslint-config '@preact/preset-vite': specifier: ^2.10.5 +<<<<<<< HEAD version: 2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.59.0)(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) '@tailwindcss/vite': specifier: ^4.1.11 version: 4.1.16(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + version: 2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.52.5)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@tailwindcss/vite': + specifier: ^4.1.11 + version: 4.1.16(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) eslint: specifier: ^9.31.0 version: 9.38.0(jiti@2.6.1) @@ -609,8 +741,13 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: +<<<<<<< HEAD specifier: 6.4.2 version: 6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + specifier: ^6.0.4 + version: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) playgrounds/qwik: dependencies: @@ -631,6 +768,7 @@ importers: specifier: workspace:* version: link:../../frameworks/qwik '@qwik.dev/core': +<<<<<<< HEAD specifier: 2.0.0-beta.5 version: 2.0.0-beta.5(prettier@3.6.2)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@4.1.7) '@qwik.dev/router': @@ -639,6 +777,16 @@ importers: '@tailwindcss/vite': specifier: ^4.1.11 version: 4.1.16(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99 + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@qwik.dev/router': + specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99 + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.52.5)(typescript@5.8.3)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@tailwindcss/vite': + specifier: ^4.1.11 + version: 4.1.16(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) '@types/node': specifier: 24.0.13 version: 24.0.13 @@ -646,8 +794,8 @@ importers: specifier: 9.31.0 version: 9.31.0(jiti@2.6.1) eslint-plugin-qwik: - specifier: 2.0.0-beta.5 - version: 2.0.0-beta.5(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3) + specifier: 2.0.0-beta.35 + version: 2.0.0-beta.35(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3) globals: specifier: 16.3.0 version: 16.3.0 @@ -670,11 +818,19 @@ importers: specifier: ^5.1.0 version: 5.2.0(ts-node@10.9.1(@types/node@24.0.13)(typescript@5.8.3))(typescript@5.8.3) vite: +<<<<<<< HEAD specifier: 6.4.2 version: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vite-tsconfig-paths: specifier: ^5.1.4 version: 5.1.4(typescript@5.8.3)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + specifier: 8.0.14 + version: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-tsconfig-paths: + specifier: ^5.1.4 + version: 5.1.4(typescript@5.8.3)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) playgrounds/react: dependencies: @@ -686,7 +842,11 @@ importers: version: 0.8.4 '@tailwindcss/vite': specifier: ^4.1.17 +<<<<<<< HEAD version: 4.1.17(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + version: 4.1.17(vite@7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) clsx: specifier: ^2.1.1 version: 2.1.1 @@ -717,7 +877,11 @@ importers: version: 19.2.3(@types/react@19.2.7) '@vitejs/plugin-react': specifier: ^5.1.1 +<<<<<<< HEAD version: 5.1.1(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + version: 5.1.1(vite@7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) eslint: specifier: ^9.39.1 version: 9.39.1(jiti@2.6.1) @@ -740,8 +904,13 @@ importers: specifier: ^8.46.4 version: 8.48.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) vite: +<<<<<<< HEAD specifier: 7.3.2 version: 7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + specifier: ^7.2.4 + version: 7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) playgrounds/solid: dependencies: @@ -762,10 +931,17 @@ importers: version: 0.15.3(solid-js@1.9.9) '@solidjs/start': specifier: ^1.1.6 +<<<<<<< HEAD version: 1.2.0(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vinxi@0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) '@tailwindcss/vite': specifier: ^4.1.11 version: 4.1.16(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + version: 1.2.0(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vinxi@0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@tailwindcss/vite': + specifier: ^4.1.11 + version: 4.1.16(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) clsx: specifier: ^2.1.1 version: 2.1.1 @@ -780,7 +956,11 @@ importers: version: 1.4.1(typescript@5.9.3) vinxi: specifier: ^0.5.8 +<<<<<<< HEAD version: 0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + version: 0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) devDependencies: '@formisch/eslint-config': specifier: workspace:* @@ -795,8 +975,13 @@ importers: specifier: ^5.8.3 version: 5.9.3 vite: +<<<<<<< HEAD specifier: 6.4.2 version: 6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + specifier: ^6.3.3 + version: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) playgrounds/svelte: dependencies: @@ -818,6 +1003,7 @@ importers: version: 9.38.0 '@sveltejs/adapter-auto': specifier: ^6.1.0 +<<<<<<< HEAD version: 6.1.1(@sveltejs/kit@2.60.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.42.1)(typescript@5.9.3)(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))) '@sveltejs/kit': specifier: 2.60.1 @@ -828,6 +1014,18 @@ importers: '@tailwindcss/vite': specifier: ^4.1.13 version: 4.1.16(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + version: 6.1.1(@sveltejs/kit@2.47.3(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))) + '@sveltejs/kit': + specifier: ^2.37.1 + version: 2.47.3(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@sveltejs/vite-plugin-svelte': + specifier: ^6.2.0 + version: 6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@tailwindcss/vite': + specifier: ^4.1.13 + version: 4.1.16(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) eslint: specifier: ^9.35.0 version: 9.38.0(jiti@2.6.1) @@ -853,8 +1051,13 @@ importers: specifier: ^8.43.0 version: 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) vite: +<<<<<<< HEAD specifier: 7.3.2 version: 7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + specifier: ^7.1.5 + version: 7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) playgrounds/vue: dependencies: @@ -876,7 +1079,11 @@ importers: devDependencies: '@tailwindcss/vite': specifier: ^4.1.11 +<<<<<<< HEAD version: 4.1.16(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + version: 4.1.16(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) '@tsconfig/node22': specifier: ^22.0.2 version: 22.0.2 @@ -885,7 +1092,11 @@ importers: version: 24.9.1 '@vitejs/plugin-vue': specifier: ^6.0.0 +<<<<<<< HEAD version: 6.0.1(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3)) +======= + version: 6.0.1(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vue@3.5.22(typescript@5.8.3)) +>>>>>>> 9742820 (chore: wip) '@vue/eslint-config-typescript': specifier: ^14.6.0 version: 14.6.0(eslint-plugin-vue@10.3.0(@typescript-eslint/parser@8.48.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.8.3))(eslint@9.38.0(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.6.1))))(eslint@9.38.0(jiti@2.6.1))(typescript@5.8.3) @@ -911,11 +1122,19 @@ importers: specifier: ~5.8.3 version: 5.8.3 vite: +<<<<<<< HEAD specifier: 7.3.2 version: 7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vite-plugin-vue-devtools: specifier: ^8.0.0 version: 8.0.3(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3)) +======= + specifier: ^7.0.6 + version: 7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-plugin-vue-devtools: + specifier: ^8.0.0 + version: 8.0.3(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vue@3.5.22(typescript@5.8.3)) +>>>>>>> 9742820 (chore: wip) vue-tsc: specifier: ^3.0.4 version: 3.1.2(typescript@5.8.3) @@ -951,17 +1170,25 @@ importers: version: 1.4.1(typescript@5.8.3) devDependencies: '@qwik.dev/core': +<<<<<<< HEAD specifier: 2.0.0-beta.9 version: 2.0.0-beta.9(prettier@3.6.2)(vite@5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)) '@qwik.dev/router': specifier: 2.0.0-beta.9 version: 2.0.0-beta.9(patch_hash=e002def78f4681060d18bc24d686c24ee1d1b997c399a2cb1c03baf3b860e4c8)(rollup@4.59.0)(typescript@5.8.3) +======= + specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99 + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@qwik.dev/router': + specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99 + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.52.5)(typescript@5.8.3)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) '@shikijs/rehype': specifier: ^3.13.0 version: 3.13.0 '@tailwindcss/vite': specifier: ^4.1.13 - version: 4.1.16(vite@5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)) + version: 4.1.16(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) '@types/eslint': specifier: ^8.56.12 version: 8.56.12 @@ -987,8 +1214,8 @@ importers: specifier: ^8.57.1 version: 8.57.1 eslint-plugin-qwik: - specifier: 2.0.0-beta.9 - version: 2.0.0-beta.9(eslint@8.57.1)(typescript@5.8.3) + specifier: 2.0.0-beta.35 + version: 2.0.0-beta.35(eslint@8.57.1)(typescript@5.8.3) gray-matter: specifier: ^4.0.3 version: 4.0.3 @@ -1020,20 +1247,29 @@ importers: specifier: 7.24.0 version: 7.24.0 vercel: +<<<<<<< HEAD specifier: ^32.0.0 version: 32.7.2 +======= + specifier: ^29.1.1 + version: 29.4.0(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(ts-node@10.9.1(@types/node@22.18.12)(typescript@5.8.3)) +>>>>>>> 9742820 (chore: wip) vite: - specifier: ^5.4.20 - version: 5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0) + specifier: 8.0.14 + version: 8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) vite-imagetools: specifier: ^7.0.5 version: 7.1.1(rollup@4.59.0) vite-tsconfig-paths: specifier: ^5.1.4 +<<<<<<< HEAD version: 5.1.4(typescript@5.8.3)(vite@5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)) wrangler: specifier: ^4.98.0 version: 4.98.0 +======= + version: 5.1.4(typescript@5.8.3)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) packages: @@ -1059,6 +1295,9 @@ packages: '@asamuzakjp/css-color@3.2.0': resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==} + '@azure/functions@3.5.1': + resolution: {integrity: sha512-6UltvJiuVpvHSwLcK/Zc6NfUwlkDLOFFx97BHCJzlWNsfiWwzwmTsxJXg4kE/LemKTHxPpfoPE+kOJ8hAdiKFQ==} + '@babel/code-frame@7.26.2': resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} @@ -1803,6 +2042,9 @@ packages: resolution: {integrity: sha512-hUMFbDQ/nZN+1TLMi6iMO1QFz9RSV8yGG8S42WFPFma1d7VSNE0eMdJUmwjmtav22/iQkzHMmu6oTSfAvRGS8g==} engines: {node: '>=16'} + '@emnapi/core@1.10.0': + resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==} + '@emnapi/core@1.6.0': resolution: {integrity: sha512-zq/ay+9fNIJJtJiZxdTnXS20PllcYMX3OE23ESc4HK/bdYu3cOWYVhsOhVnXALfU/uqJIxn5NBPd9z4v+SfoSg==} @@ -1815,6 +2057,15 @@ packages: '@emnapi/wasi-threads@1.1.0': resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} +<<<<<<< HEAD +======= + '@emnapi/wasi-threads@1.2.1': + resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==} + + '@emotion/hash@0.9.2': + resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} + +>>>>>>> 9742820 (chore: wip) '@es-joy/jsdoccomment@0.50.2': resolution: {integrity: sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA==} engines: {node: '>=18'} @@ -2443,6 +2694,12 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/eslint-utils@4.9.1': + resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/regexpp@4.12.2': resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} @@ -3015,6 +3272,20 @@ packages: '@napi-rs/wasm-runtime@1.0.7': resolution: {integrity: sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==} + '@napi-rs/wasm-runtime@1.1.4': + resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==} + peerDependencies: + '@emnapi/core': ^1.7.1 + '@emnapi/runtime': ^1.7.1 + + '@netlify/edge-functions@3.0.8': + resolution: {integrity: sha512-ml1oCDsRTTRmZS2nUj8XRD1b6+foEiZT3lPk7qQ4nv/jnxylHJ20ooPzPDH+cJmGjXFrMeR14/91W1o6D2ftBg==} + engines: {node: '>=18.0.0'} + + '@netlify/types@2.8.0': + resolution: {integrity: sha512-8/g0Pt6y6wXj5Ia5eeYLiXhRfWeqZXGXpGFeCiiQdUOem+FPtXdA4+YdGxqzWc7D0AvptKSO01KGeeVWHSu8Kg==} + engines: {node: ^18.14.0 || >=20} + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} @@ -3099,6 +3370,9 @@ packages: resolution: {integrity: sha512-8iE5/4OK0SLHqWzRxSvI1gjFPmIH6718s8iwkuco95rBZsCZIHq+5wy4lYsASxnH+8FOhbGndiUrcwsVG5i2zw==} engines: {node: ^20.19.0 || >=22.12.0} + '@oxc-project/types@0.132.0': + resolution: {integrity: sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==} + '@oxc-project/types@0.76.0': resolution: {integrity: sha512-CH3THIrSViKal8yV/Wh3FK0pFhp40nzW1MUDCik9fNuid2D/7JJXKJnfFOAvMxInGXDlvmgT6ACAzrl47TqzkQ==} @@ -3259,20 +3533,27 @@ packages: '@quansync/fs@0.1.5': resolution: {integrity: sha512-lNS9hL2aS2NZgNW7BBj+6EBl4rOf8l+tQ0eRY6JWCI8jI2kc53gSoqbjojU0OnAWhzoXiOjFyGsHcDGePB3lhA==} - '@qwik.dev/core@2.0.0-beta.5': - resolution: {integrity: sha512-Q2dTdlyevyR5l7Hhj5739/6loC/DHIBdsJEU66p1PsnVNFMmOtrcBGyokl/gIaTzsXGuY2Xq3MSpkDI+gKt/RA==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99': + resolution: {tarball: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99} + version: 2.0.0-beta.35 + engines: {node: ^20.3.0 || >=21.0.0} hasBin: true peerDependencies: prettier: '*' +<<<<<<< HEAD vite: 6.4.2 vitest: '>=2 <3' +======= + vite: '>=6 < 9' + vitest: '>=2 <5' +>>>>>>> 9742820 (chore: wip) peerDependenciesMeta: prettier: optional: true vitest: optional: true +<<<<<<< HEAD '@qwik.dev/core@2.0.0-beta.9': resolution: {integrity: sha512-MemsRTsLbqF17c/rfTWAojZTCpdKg6tWXs/xjpgeMcCzcmDwoqm3KrQ3GqgrBNu+7gMBPSWK0cb7hrd7q9uTQg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} @@ -3286,16 +3567,28 @@ packages: optional: true vitest: optional: true - - '@qwik.dev/router@2.0.0-beta.5': - resolution: {integrity: sha512-Dk7kiaVo20wO+n7c9we9yGW88IMMJjAmxvJuwzWIZaQNhsn+D/6FyjOfBnw0gbRH41NywsC/mkUrp35aVps6Ig==} +======= + '@qwik.dev/optimizer@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@7813a99': + resolution: {tarball: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@7813a99} + version: 2.1.0-beta.4 + engines: {node: ^20.3.0 || >=21.0.0} +>>>>>>> 9742820 (chore: wip) + + '@qwik.dev/router@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99': + resolution: {tarball: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99} + version: 2.0.0-beta.35 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} peerDependencies: +<<<<<<< HEAD vite: 6.4.2 '@qwik.dev/router@2.0.0-beta.9': resolution: {integrity: sha512-lLNZov52LTGUZaC+ZWxdnFxd6FBf10gM1ZFhI0rvJwtWAuE0GlqG5ILa63jkvmDsg7cPTmbsCZnazCFxSqbAng==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} +======= + '@qwik.dev/core': ^2.0.0-beta.35 + vite: '>=6 < 9' +>>>>>>> 9742820 (chore: wip) '@resvg/resvg-wasm@2.4.0': resolution: {integrity: sha512-C7c51Nn4yTxXFKvgh2txJFNweaVcfUPQxwEUFw4aWsCmfiBDJsTSwviIF8EcwjQ6k8bPyMWCl1vw4BdxE569Cg==} @@ -3307,6 +3600,12 @@ packages: cpu: [arm64] os: [android] + '@rolldown/binding-android-arm64@1.0.2': + resolution: {integrity: sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + '@rolldown/binding-darwin-arm64@1.0.0-beta.26': resolution: {integrity: sha512-I73Ej+PVoCJiYQHpy45CHKkLgFqrYv9O1CUJs6TIav6f8f9WAVeN/k0YXrs0tgMO20AfsyEN8zenz2wprVWOYQ==} cpu: [arm64] @@ -3318,6 +3617,12 @@ packages: cpu: [arm64] os: [darwin] + '@rolldown/binding-darwin-arm64@1.0.2': + resolution: {integrity: sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + '@rolldown/binding-darwin-x64@1.0.0-beta.26': resolution: {integrity: sha512-IcXzfO2/9bnm6WfCNmGxBiD1kQQdA0pTjjGcjvglUub8H6RlEY0tz+IIQxUirsl/++84S0PkCuafAxZi8Am8fg==} cpu: [x64] @@ -3329,6 +3634,12 @@ packages: cpu: [x64] os: [darwin] + '@rolldown/binding-darwin-x64@1.0.2': + resolution: {integrity: sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + '@rolldown/binding-freebsd-x64@1.0.0-beta.26': resolution: {integrity: sha512-foLJNqEFdvwFm2MXDFxgywxJMic+wovbpEyszlz5K/sUbN7sP2+NJ7MZAUMHuggiswB4Rt1HqRLYKy26zJev8g==} cpu: [x64] @@ -3340,6 +3651,12 @@ packages: cpu: [x64] os: [freebsd] + '@rolldown/binding-freebsd-x64@1.0.2': + resolution: {integrity: sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.26': resolution: {integrity: sha512-1BWDpLtujfZCvWAcfIamqHGWo2+VnPWvpZQR0DL5qNit6cu3FC0sRZ+bZzTUK0QWDTA7nUy5RR9fUTL2PQxH2g==} cpu: [arm] @@ -3351,6 +3668,12 @@ packages: cpu: [arm] os: [linux] + '@rolldown/binding-linux-arm-gnueabihf@1.0.2': + resolution: {integrity: sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.26': resolution: {integrity: sha512-lg6DVwciFb7sIw0ONDHeLhRuFQl/wz+J26bxfVOVzVoQ7Zgl07gDklv7q96W7SRDAjlG/20flBOexdiPim/I3g==} cpu: [arm64] @@ -3364,6 +3687,12 @@ packages: os: [linux] libc: [glibc] + '@rolldown/binding-linux-arm64-gnu@1.0.2': + resolution: {integrity: sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.26': resolution: {integrity: sha512-0X14trOBVtU13Y0XYeb8EvOvb3/TxJVOmalDakEID/UUX9qkvOmlU0fvoDVmsnhH6yx23bDlpmOj0f8V3BCgIw==} cpu: [arm64] @@ -3377,6 +3706,24 @@ packages: os: [linux] libc: [musl] + '@rolldown/binding-linux-arm64-musl@1.0.2': + resolution: {integrity: sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-ppc64-gnu@1.0.2': + resolution: {integrity: sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + + '@rolldown/binding-linux-s390x-gnu@1.0.2': + resolution: {integrity: sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.26': resolution: {integrity: sha512-stb8XloM+N3hSKUs6kS5tNqrlTGsCoYuh9emFZtTovfFzzdFYevgXoOdeGoXv9KkPh5B7MOMl4/7c+WaX46Opg==} cpu: [x64] @@ -3390,6 +3737,12 @@ packages: os: [linux] libc: [glibc] + '@rolldown/binding-linux-x64-gnu@1.0.2': + resolution: {integrity: sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + '@rolldown/binding-linux-x64-musl@1.0.0-beta.26': resolution: {integrity: sha512-5udEpAS5IUy2t74d/m40JUYyk3Ga8QXQDvK7eGqDDOwz8/7Piq0kCwmNuLnpSRiqbXNP8mnVlvtIcASJUEtRPA==} cpu: [x64] @@ -3403,12 +3756,24 @@ packages: os: [linux] libc: [musl] + '@rolldown/binding-linux-x64-musl@1.0.2': + resolution: {integrity: sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + '@rolldown/binding-openharmony-arm64@1.0.0-beta.52': resolution: {integrity: sha512-1BNQW8u4ro8bsN1+tgKENJiqmvc+WfuaUhXzMImOVSMw28pkBKdfZtX2qJPADV3terx+vNJtlsgSGeb3+W6Jiw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] + '@rolldown/binding-openharmony-arm64@1.0.2': + resolution: {integrity: sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + '@rolldown/binding-wasm32-wasi@1.0.0-beta.26': resolution: {integrity: sha512-Is5tTdScXXQzslj7+jCFncPoRNARJ/+fYt/C9+Yx0QQ67/m8pGPLFoCzIKmJQZ8QHzOfq5ML4CQlMgBbCFlZqQ==} engines: {node: '>=14.21.3'} @@ -3419,6 +3784,11 @@ packages: engines: {node: '>=14.0.0'} cpu: [wasm32] + '@rolldown/binding-wasm32-wasi@1.0.2': + resolution: {integrity: sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [wasm32] + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.26': resolution: {integrity: sha512-bH+TB+/8Z/95cxGws0fH995HsbsopVYdGcuM1Z/Hnqe7KPLkhqkubsambHQYd1V/QNbLzAgJ0nMAFLyBrwFZZQ==} cpu: [arm64] @@ -3430,6 +3800,12 @@ packages: cpu: [arm64] os: [win32] + '@rolldown/binding-win32-arm64-msvc@1.0.2': + resolution: {integrity: sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.26': resolution: {integrity: sha512-Nsg7ZzfwLHwKGneuNHEpqdBekmZA5pzVOuFx5R8EVyva8dg+sgtDHQRmiVSVYe25YYISNFXDSuHKwNhrWI4HWA==} cpu: [ia32] @@ -3452,6 +3828,12 @@ packages: cpu: [x64] os: [win32] + '@rolldown/binding-win32-x64-msvc@1.0.2': + resolution: {integrity: sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + '@rolldown/pluginutils@1.0.0-beta.26': resolution: {integrity: sha512-r/5po89voz/QRPDmoErL10+hVuTAuz1SHvokx+yWBlOIPB5C41jC7QhLqq9kaebx/+EHyoV3z22/qBfX81Ns8A==} @@ -3464,6 +3846,9 @@ packages: '@rolldown/pluginutils@1.0.0-beta.52': resolution: {integrity: sha512-/L0htLJZbaZFL1g9OHOblTxbCYIGefErJjtYOwgl9ZqNx27P3L0SDfjhhHIss32gu5NWgnxuT2a2Hnnv6QGHKA==} + '@rolldown/pluginutils@1.0.1': + resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==} + '@rollup/plugin-alias@5.1.1': resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} engines: {node: '>=14.0.0'} @@ -4217,6 +4602,9 @@ packages: '@types/postcss-modules-scope@3.0.4': resolution: {integrity: sha512-//ygSisVq9kVI0sqx3UPLzWIMCmtSVrzdljtuaAEJtGoGnpjBikZ2sXO5MpH9SnWX9HRfXxHifDAXcQjupWnIQ==} + '@types/prismjs@1.26.6': + resolution: {integrity: sha512-vqlvI7qlMvcCBbVe0AKAb4f97//Hy0EBTaiW8AalRnG/xAN5zOiWWyrNqNXeq8+KAuvRewjCVY1+IPxk4RdNYw==} + '@types/react-dom@19.2.3': resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==} peerDependencies: @@ -4297,6 +4685,12 @@ packages: peerDependencies: typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/project-service@8.60.0': + resolution: {integrity: sha512-aZu74NNKJeUWqCjDddzdiKaS82dgYgV/vmf+Ui3ZdZejmgfXR/q+pRumgobnQ2cCJTgGTWp4ypiwsuofFubavg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.1.0' + '@typescript-eslint/scope-manager@8.36.0': resolution: {integrity: sha512-wCnapIKnDkN62fYtTGv2+RY8FlnBYA3tNm0fm91kc2BjPhV2vIjwwozJ7LToaLAyb1ca8BxrS7vT+Pvvf7RvqA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4309,6 +4703,10 @@ packages: resolution: {integrity: sha512-uGSSsbrtJrLduti0Q1Q9+BF1/iFKaxGoQwjWOIVNJv0o6omrdyR8ct37m4xIl5Zzpkp69Kkmvom7QFTtue89YQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/scope-manager@8.60.0': + resolution: {integrity: sha512-pFzqhllJMs+jghLQWzV00ds39xLzuyqPSev5pd8f4Ir0rtKR3ZLUB4/4dhjOFighWb9larvtfJvqL+4yKDI3Xw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/tsconfig-utils@8.36.0': resolution: {integrity: sha512-Nhh3TIEgN18mNbdXpd5Q8mSCBnrZQeY9V7Ca3dqYvNDStNIGRmJA6dmrIPMJ0kow3C7gcQbpsG2rPzy1Ks/AnA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4327,6 +4725,12 @@ packages: peerDependencies: typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/tsconfig-utils@8.60.0': + resolution: {integrity: sha512-BZPR3RGYlAXnly6ymAxfkVn5rCbZzQNou0rxv3GfWZ8cTQp+hhVd73khbGLAd8k1TlAPLISH337M+tAgAnaJDQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.1.0' + '@typescript-eslint/type-utils@8.36.0': resolution: {integrity: sha512-5aaGYG8cVDd6cxfk/ynpYzxBRZJk7w/ymto6uiyUFtdCozQIsQWh7M28/6r57Fwkbweng8qAzoMCPwSJfWlmsg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4360,6 +4764,10 @@ packages: resolution: {integrity: sha512-cQMcGQQH7kwKoVswD1xdOytxQR60MWKM1di26xSUtxehaDs/32Zpqsu5WJlXTtTTqyAVK8R7hvsUnIXRS+bjvA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/types@8.60.0': + resolution: {integrity: sha512-AsE7x2XaAK+CVbeih0Fvbn+r1qHxtpLDJ3XUuFcIinT318T90yHMJC+Zgv+jUuDjQQd06HKwxnDu6sz1IcTilA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/typescript-estree@8.36.0': resolution: {integrity: sha512-JaS8bDVrfVJX4av0jLpe4ye0BpAaUW7+tnS4Y4ETa3q7NoZgzYbN9zDQTJ8kPb5fQ4n0hliAt9tA4Pfs2zA2Hg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4378,6 +4786,12 @@ packages: peerDependencies: typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/typescript-estree@8.60.0': + resolution: {integrity: sha512-3AcZNBGMClm6CXDyo8kYvVGT/sx29sS0oBsIb9oZI2gunA4Vm2M3YHzRLPvsUBBsl+yB5FPtltq7gGH0iTlp9g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.1.0' + '@typescript-eslint/utils@8.36.0': resolution: {integrity: sha512-VOqmHu42aEMT+P2qYjylw6zP/3E/HvptRwdn/PZxyV27KhZg2IOszXod4NcXisWzPAGSS4trE/g4moNj6XmH2g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4399,6 +4813,13 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/utils@8.60.0': + resolution: {integrity: sha512-HtXuPfrHTyBDkameWpl+vJb1Uevu2tznAyahM1Oc4AENidCLTPiZDWIo4GfcxNdC/RcfGcadzzkqbRG87dUrQA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' + '@typescript-eslint/visitor-keys@8.36.0': resolution: {integrity: sha512-vZrhV2lRPWDuGoxcmrzRZyxAggPL+qp3WzUrlZD+slFueDiYHxeBa34dUXPuC0RmGKzl4lS5kFJYvKCq9cnNDA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4411,6 +4832,10 @@ packages: resolution: {integrity: sha512-T0XJMaRPOH3+LBbAfzR2jalckP1MSG/L9eUtY0DEzUyVaXJ/t6zN0nR7co5kz0Jko/nkSYCBRkz1djvjajVTTg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/visitor-keys@8.60.0': + resolution: {integrity: sha512-9WI52t8ZGLVGrPMBet25yAftqY/n95+zmoUUtJBBQTKDSKUu7OsPTroT2op7U9JatkoRccL0YkWDNMFfC4Sjxg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@ungap/structured-clone@1.3.0': resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} deprecated: Potential CWE-502 - Update to 1.3.1 or higher @@ -6043,17 +6468,11 @@ packages: peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 - eslint-plugin-qwik@2.0.0-beta.5: - resolution: {integrity: sha512-meH0AnmDCRtDNJps0Dfrrxse/h2bYsox0miFrgnfoz58iZ9aHxfpebflUTxtFPp7RkNpxZvLtGJOGIMxbE6fEg==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - - eslint-plugin-qwik@2.0.0-beta.9: - resolution: {integrity: sha512-tjzJ1AfCHts9eChr4B4kMksoxkM4aeHDU9IumJgsz97OwhiNP6uMa2vI1n5aykI0iABqFRXivLEeQp63tAEDTw==} + eslint-plugin-qwik@2.0.0-beta.35: + resolution: {integrity: sha512-kVmh3HXivvL8mhXyF9yQIooGL4cz23KBFAdbSb22kScutFj7YqLO4toW42V1OEsiVvlRD6ycJqvLivoz6o70aA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} peerDependencies: - eslint: ^8.57.0 || ^9.0.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 eslint-plugin-react-hooks@5.2.0: resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==} @@ -6134,6 +6553,10 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-visitor-keys@5.0.1: + resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + eslint@8.57.1: resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -6220,6 +6643,19 @@ packages: estree-util-to-js@2.0.0: resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} +<<<<<<< HEAD +======= + estree-util-value-to-estree@1.3.0: + resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==} + engines: {node: '>=12.0.0'} + + estree-util-value-to-estree@3.5.0: + resolution: {integrity: sha512-aMV56R27Gv3QmfmF1MY12GWkGzzeAezAX+UplqHVASfjc9wNzI/X6hC0S9oxq61WT4aQesLGslWP9tKk6ghRZQ==} + + estree-util-visit@1.2.1: + resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} + +>>>>>>> 9742820 (chore: wip) estree-util-visit@2.0.0: resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} @@ -6474,6 +6910,9 @@ packages: github-from-package@0.0.0: resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} + github-slugger@2.0.0: + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} @@ -6577,9 +7016,24 @@ packages: resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} + hast-util-heading-rank@2.1.1: + resolution: {integrity: sha512-iAuRp+ESgJoRFJbSyaqsfvJDY6zzmFoEnL1gtz1+U8gKtGGj1p0CVlysuUAUjq95qlZESHINLThwJzNGmgGZxA==} + + hast-util-heading-rank@3.0.0: + resolution: {integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==} + hast-util-is-element@3.0.0: resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} +<<<<<<< HEAD +======= + hast-util-parse-selector@3.1.1: + resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} + + hast-util-to-estree@2.3.3: + resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==} + +>>>>>>> 9742820 (chore: wip) hast-util-to-estree@3.1.3: resolution: {integrity: sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==} @@ -6589,12 +7043,18 @@ packages: hast-util-to-jsx-runtime@2.3.6: resolution: {integrity: sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==} + hast-util-to-string@2.0.0: + resolution: {integrity: sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==} + hast-util-to-string@3.0.1: resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==} hast-util-whitespace@3.0.0: resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + hastscript@7.2.0: + resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} + he@1.2.0: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true @@ -6709,8 +7169,17 @@ packages: resolution: {integrity: sha512-8Aa4NecBBGmTkaAUjcuRYgTPKHCsBEWYmCnvKCL6/bxedehtVVFyZPdXe8DD0Nevd6UWBq85ifUaJ8498lgqNQ==} engines: {node: '>=18.0.0'} +<<<<<<< HEAD immutable@5.1.5: resolution: {integrity: sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==} +======= + imagetools-core@9.1.0: + resolution: {integrity: sha512-xQjs+2vrxLnAjCq+omuNkd5UQTld9/bP8+YT0LyYTlKfuSQtgUBvqhUwGugzSAh6sCdN+LnROMuLswn5hZ9Fhg==} + engines: {node: '>=20.0.0'} + + immutable@5.1.4: + resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==} +>>>>>>> 9742820 (chore: wip) import-fresh@3.3.1: resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} @@ -7121,6 +7590,9 @@ packages: kolorist@1.8.0: resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + launch-editor@2.14.0: + resolution: {integrity: sha512-Pj3ZOx9dD1BClS7YcSQx0An1PCF9wz4JpvbEmKvDxQtm0jxlkk5NhW8x0SBAKA/acHBKZaqdd5FFOWlXo500JA==} + lazystream@1.0.1: resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} engines: {node: '>= 0.6.3'} @@ -7140,30 +7612,60 @@ packages: cpu: [arm64] os: [android] + lightningcss-android-arm64@1.32.0: + resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] + lightningcss-darwin-arm64@1.30.2: resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] + lightningcss-darwin-arm64@1.32.0: + resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + lightningcss-darwin-x64@1.30.2: resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] + lightningcss-darwin-x64@1.32.0: + resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + lightningcss-freebsd-x64@1.30.2: resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [freebsd] + lightningcss-freebsd-x64@1.32.0: + resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + lightningcss-linux-arm-gnueabihf@1.30.2: resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==} engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] + lightningcss-linux-arm-gnueabihf@1.32.0: + resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + lightningcss-linux-arm64-gnu@1.30.2: resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==} engines: {node: '>= 12.0.0'} @@ -7171,6 +7673,12 @@ packages: os: [linux] libc: [glibc] + lightningcss-linux-arm64-gnu@1.32.0: + resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + lightningcss-linux-arm64-musl@1.30.2: resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==} engines: {node: '>= 12.0.0'} @@ -7178,6 +7686,12 @@ packages: os: [linux] libc: [musl] + lightningcss-linux-arm64-musl@1.32.0: + resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + lightningcss-linux-x64-gnu@1.30.2: resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==} engines: {node: '>= 12.0.0'} @@ -7185,6 +7699,12 @@ packages: os: [linux] libc: [glibc] + lightningcss-linux-x64-gnu@1.32.0: + resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + lightningcss-linux-x64-musl@1.30.2: resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==} engines: {node: '>= 12.0.0'} @@ -7192,22 +7712,44 @@ packages: os: [linux] libc: [musl] + lightningcss-linux-x64-musl@1.32.0: + resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + lightningcss-win32-arm64-msvc@1.30.2: resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [win32] + lightningcss-win32-arm64-msvc@1.32.0: + resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + lightningcss-win32-x64-msvc@1.30.2: resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] + lightningcss-win32-x64-msvc@1.32.0: + resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + lightningcss@1.30.2: resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==} engines: {node: '>= 12.0.0'} + lightningcss@1.32.0: + resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} + engines: {node: '>= 12.0.0'} + lilconfig@2.1.0: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} @@ -7266,6 +7808,9 @@ packages: resolution: {integrity: sha512-l1mfj2atMqndAHI3ls7XqPxEjV2J9ZkcNyHpoZA3r2T1LLwDB69jgkMWh71YKwhBbK0G2f4WSn05ahmQXVxupA==} deprecated: Bad release. Please use lodash@4.17.21 instead. + long@4.0.0: + resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} + longest-streak@3.1.0: resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} @@ -7318,13 +7863,63 @@ packages: resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} engines: {node: '>=16'} + markdown-table@3.0.4: + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + + marked@12.0.2: + resolution: {integrity: sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==} + engines: {node: '>= 18'} + hasBin: true + math-intrinsics@1.1.0: resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} engines: {node: '>= 0.4'} +<<<<<<< HEAD + mdast-util-from-markdown@2.0.2: + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + +======= + mdast-util-definitions@5.1.2: + resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} + + mdast-util-find-and-replace@3.0.2: + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} + + mdast-util-from-markdown@1.3.1: + resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} + mdast-util-from-markdown@2.0.2: resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + mdast-util-frontmatter@1.0.1: + resolution: {integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==} + + mdast-util-frontmatter@2.0.1: + resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==} + + mdast-util-gfm-autolink-literal@2.0.1: + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + + mdast-util-gfm-footnote@2.1.0: + resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} + + mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + + mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + + mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + + mdast-util-gfm@3.1.0: + resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} + + mdast-util-mdx-expression@1.3.2: + resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} + +>>>>>>> 9742820 (chore: wip) mdast-util-mdx-expression@2.0.1: resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==} @@ -7382,6 +7977,39 @@ packages: micromark-core-commonmark@2.0.3: resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} +<<<<<<< HEAD +======= + micromark-extension-frontmatter@1.1.1: + resolution: {integrity: sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ==} + + micromark-extension-frontmatter@2.0.0: + resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==} + + micromark-extension-gfm-autolink-literal@2.1.0: + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + + micromark-extension-gfm-footnote@2.1.0: + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + + micromark-extension-gfm-strikethrough@2.1.0: + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + + micromark-extension-gfm-table@2.1.1: + resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} + + micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + + micromark-extension-gfm-task-list-item@2.1.0: + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + + micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + + micromark-extension-mdx-expression@1.0.8: + resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==} + +>>>>>>> 9742820 (chore: wip) micromark-extension-mdx-expression@3.0.1: resolution: {integrity: sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==} @@ -7506,10 +8134,19 @@ packages: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} +<<<<<<< HEAD miniflare@4.20260603.0: resolution: {integrity: sha512-+kMQYB82gC8MPOuojHur3icQsUeZUEJ+Sphuo5rVC3Ri9txBLAW/mH33b9OVrpmkogQeaaqPS4tPtugJZhk5Kw==} engines: {node: '>=22.0.0'} hasBin: true +======= + minimatch@10.2.5: + resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==} + engines: {node: 18 || 20 || >=22} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} +>>>>>>> 9742820 (chore: wip) minimatch@3.1.4: resolution: {integrity: sha512-twmL+S8+7yIsE9wsqgzU3E8/LumN3M3QELrBZ20OdmQ9jB2JvW5oZtBEmft84k/Gs5CG9mqtWc6Y9vW+JEzGxw==} @@ -7575,6 +8212,11 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true + nanoid@3.3.12: + resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + nanoid@5.1.6: resolution: {integrity: sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==} engines: {node: ^18 || >=20} @@ -7919,6 +8561,10 @@ packages: resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} engines: {node: '>=12'} + picomatch@4.0.4: + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} + engines: {node: '>=12'} + pidtree@0.6.0: resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} engines: {node: '>=0.10'} @@ -8013,6 +8659,10 @@ packages: postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + postcss@8.5.15: + resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==} + engines: {node: ^10 || ^12 || >=14} + postcss@8.5.6: resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} engines: {node: ^10 || ^12 || >=14} @@ -8283,6 +8933,9 @@ packages: resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} engines: {node: '>= 0.4'} + refractor@4.9.0: + resolution: {integrity: sha512-nEG1SPXFoGGx+dcjftjv8cAjEusIh6ED1xhf5DG3C0x/k+rmZ2duKnc3QLpt6qeHv5fPb8uwN3VWN2BT7fr3Og==} + regenerate-unicode-properties@10.2.2: resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==} engines: {node: '>=4'} @@ -8324,12 +8977,31 @@ packages: resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==} hasBin: true + rehype-autolink-headings@7.1.0: + resolution: {integrity: sha512-rItO/pSdvnvsP4QRB1pmPiNHUskikqtPojZKJPPPAVx9Hj8i8TwMBhofrrAYRhYOOBZH9tgmG5lPqDLuIWPWmw==} + rehype-external-links@3.0.0: resolution: {integrity: sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==} rehype-recma@1.0.0: resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==} +<<<<<<< HEAD +======= + remark-frontmatter@4.0.1: + resolution: {integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==} + + remark-frontmatter@5.0.0: + resolution: {integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==} + + remark-gfm@4.0.1: + resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} + + remark-mdx-frontmatter@1.1.1: + resolution: {integrity: sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==} + engines: {node: '>=12.2.0'} + +>>>>>>> 9742820 (chore: wip) remark-mdx@3.1.1: resolution: {integrity: sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==} @@ -8339,6 +9011,15 @@ packages: remark-rehype@11.1.2: resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} +<<<<<<< HEAD +======= + remark-rehype@9.1.0: + resolution: {integrity: sha512-oLa6YmgAYg19zb0ZrBACh40hpBLteYROaPLhBXzLgjqyHQrN+gVP9N/FJvfzuNNuzCutktkroXEZBrxAxKhh7Q==} + + remark-stringify@11.0.0: + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + +>>>>>>> 9742820 (chore: wip) require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} @@ -8429,6 +9110,11 @@ packages: engines: {node: ^20.19.0 || >=22.12.0} hasBin: true + rolldown@1.0.2: + resolution: {integrity: sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + rollup-plugin-visualizer@6.0.5: resolution: {integrity: sha512-9+HlNgKCVbJDs8tVtjQ43US12eqaiHyyiLMdBwQ7vSZPiHMysGNo2E88TAp1si5wx8NAoYriI2A5kuKfIakmJg==} engines: {node: '>=18'} @@ -8579,8 +9265,13 @@ packages: set-cookie-parser@2.7.1: resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==} +<<<<<<< HEAD set-cookie-parser@3.1.0: resolution: {integrity: sha512-kjnC1DXBHcxaOaOXBHBeRtltsDG2nUiUni+jP92M9gYdW12rsmx92UsfpH7o5tDRs7I1ZZPSQJQGv3UaRfCiuw==} +======= + set-cookie-parser@2.7.2: + resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==} +>>>>>>> 9742820 (chore: wip) set-function-length@1.2.2: resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} @@ -8624,6 +9315,10 @@ packages: resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} engines: {node: '>= 0.4'} + shell-quote@1.8.4: + resolution: {integrity: sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ==} + engines: {node: '>= 0.4'} + shiki@1.29.2: resolution: {integrity: sha512-njXuliz/cP+67jU2hukkxCNuH1yUi4QfdZZY+sMr5PPrIyXSu5iTb/qYC4BiWWB0vZ+7TbdvYUCeL23zpwCfbg==} @@ -9014,9 +9709,26 @@ packages: resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} engines: {node: '>=12.0.0'} +<<<<<<< HEAD tinyrainbow@3.1.0: resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} - engines: {node: '>=14.0.0'} +======= + tinyglobby@0.2.16: + resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==} + engines: {node: '>=12.0.0'} + + tinypool@1.1.1: + resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} + engines: {node: ^18.0.0 || >=20.0.0} + + tinyrainbow@2.0.0: + resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} + engines: {node: '>=14.0.0'} + + tinyspy@4.0.4: + resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==} +>>>>>>> 9742820 (chore: wip) + engines: {node: '>=14.0.0'} tldts-core@6.1.86: resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} @@ -9071,6 +9783,12 @@ packages: peerDependencies: typescript: '>=4.8.4' + ts-api-utils@2.5.0: + resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} @@ -9503,9 +10221,24 @@ packages: util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} +<<<<<<< HEAD uuid@3.3.2: resolution: {integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==} 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). +======= + utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + + uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + 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 + + uvu@0.5.6: + resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} + engines: {node: '>=8'} +>>>>>>> 9742820 (chore: wip) hasBin: true v8-compile-cache-lib@3.0.1: @@ -9550,6 +10283,12 @@ packages: peerDependencies: vite: 6.4.2 + vite-imagetools@10.0.0: + resolution: {integrity: sha512-+83L32YPU/2BOHWhudO2+9T5HBvb3+0qHoUNN7fb0+XcAoXilx7aE25cDPWU5kBi5Yc750zYCvHxgfyR+tAuMA==} + engines: {node: '>=22.0.0'} + peerDependencies: + vite: '>=7.0.0' + vite-imagetools@7.1.1: resolution: {integrity: sha512-6Dz0ZD2u1u59dw0ryid4beaDcCNNiTfLXUg6XLxx9n7Qm4BgAAm8TozYUnIH0aT4FDAADZqHsh9ZtISzAs4eKA==} engines: {node: '>=18.0.0'} @@ -9669,8 +10408,53 @@ packages: yaml: optional: true +<<<<<<< HEAD vite@7.3.2: resolution: {integrity: sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==} +======= + vite@7.1.12: + resolution: {integrity: sha512-ZWyE8YXEXqJrrSLvYgrRP7p62OziLW7xI5HYGWFzOvupfAlrLvURSzv/FyGyy0eidogEM3ujU+kUG1zuHgb6Ug==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + 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@7.2.6: + resolution: {integrity: sha512-tI2l/nFHC5rLh7+5+o7QjKjSR04ivXDF4jcgV0f/bTQ+OJiITy5S6gaynVsEM+7RqzufMnVbIon6Sr5x1SDYaQ==} +>>>>>>> 9742820 (chore: wip) engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -9709,6 +10493,49 @@ packages: yaml: optional: true + vite@8.0.14: + resolution: {integrity: sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + '@vitejs/devtools': ^0.1.18 + esbuild: ^0.27.0 || ^0.28.0 + jiti: '>=1.21.0' + less: ^4.0.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 + '@vitejs/devtools': + optional: true + esbuild: + optional: true + jiti: + optional: true + less: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + vitefu@1.1.1: resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} peerDependencies: @@ -9970,8 +10797,8 @@ packages: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} - yaml@2.8.1: - resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} + yaml@2.9.0: + resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==} engines: {node: '>= 14.6'} hasBin: true @@ -10030,12 +10857,6 @@ packages: peerDependencies: zod: ^3.25.0 || ^4.0.0 - zod@3.22.4: - resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} - - zod@3.25.48: - resolution: {integrity: sha512-0X1mz8FtgEIvaxGjdIImYpZEaZMrund9pGXm3M6vM7Reba0e2eI71KPjSCGXBfwKDPwPoywf6waUKc3/tFvX2Q==} - zod@3.25.76: resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} @@ -10062,6 +10883,12 @@ snapshots: '@csstools/css-tokenizer': 3.0.4 lru-cache: 10.4.3 + '@azure/functions@3.5.1': + dependencies: + iconv-lite: 0.6.3 + long: 4.0.0 + uuid: 8.3.2 + '@babel/code-frame@7.26.2': dependencies: '@babel/helper-validator-identifier': 7.28.5 @@ -10959,6 +11786,12 @@ snapshots: dependencies: '@edge-runtime/primitives': 4.0.5 + '@emnapi/core@1.10.0': + dependencies: + '@emnapi/wasi-threads': 1.2.1 + tslib: 2.8.1 + optional: true + '@emnapi/core@1.6.0': dependencies: '@emnapi/wasi-threads': 1.1.0 @@ -10980,6 +11813,16 @@ snapshots: tslib: 2.8.1 optional: true +<<<<<<< HEAD +======= + '@emnapi/wasi-threads@1.2.1': + dependencies: + tslib: 2.8.1 + optional: true + + '@emotion/hash@0.9.2': {} + +>>>>>>> 9742820 (chore: wip) '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.8 @@ -11317,6 +12160,16 @@ snapshots: eslint: 9.39.1(jiti@2.6.1) eslint-visitor-keys: 3.4.3 + '@eslint-community/eslint-utils@4.9.1(eslint@8.57.1)': + dependencies: + eslint: 8.57.1 + eslint-visitor-keys: 3.4.3 + + '@eslint-community/eslint-utils@4.9.1(eslint@9.31.0(jiti@2.6.1))': + dependencies: + eslint: 9.31.0(jiti@2.6.1) + eslint-visitor-keys: 3.4.3 + '@eslint-community/regexpp@4.12.2': {} '@eslint/compat@1.4.0(eslint@9.38.0(jiti@2.6.1))': @@ -11790,7 +12643,7 @@ snapshots: unist-util-position-from-estree: 2.0.0 unist-util-stringify-position: 4.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.2 + vfile: 6.0.3 transitivePeerDependencies: - supports-color @@ -11808,6 +12661,19 @@ snapshots: '@tybys/wasm-util': 0.10.1 optional: true + '@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': + dependencies: + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@tybys/wasm-util': 0.10.1 + optional: true + + '@netlify/edge-functions@3.0.8': + dependencies: + '@netlify/types': 2.8.0 + + '@netlify/types@2.8.0': {} + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': dependencies: eslint-scope: 5.1.1 @@ -11898,6 +12764,8 @@ snapshots: '@oxc-project/runtime@0.99.0': {} + '@oxc-project/types@0.132.0': {} + '@oxc-project/types@0.76.0': {} '@oxc-project/types@0.99.0': {} @@ -11989,17 +12857,27 @@ snapshots: '@poppinss/exception@1.2.2': {} +<<<<<<< HEAD '@preact/preset-vite@2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.59.0)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + '@preact/preset-vite@2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.52.5)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@babel/core': 7.28.5 '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.5) '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.5) +<<<<<<< HEAD '@prefresh/vite': 2.4.11(preact@10.29.2)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) '@rollup/pluginutils': 5.3.0(rollup@4.59.0) +======= + '@prefresh/vite': 2.4.11(preact@10.29.2)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@rollup/pluginutils': 5.3.0(rollup@4.52.5) +>>>>>>> 9742820 (chore: wip) babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.28.5) debug: 4.4.3 magic-string: 0.30.21 picocolors: 1.1.1 +<<<<<<< HEAD vite: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vite-prerender-plugin: 0.5.12(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) zimmerframe: 1.1.4 @@ -12021,6 +12899,10 @@ snapshots: picocolors: 1.1.1 vite: 6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vite-prerender-plugin: 0.5.12(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + vite: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-prerender-plugin: 0.5.12(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) zimmerframe: 1.1.4 transitivePeerDependencies: - preact @@ -12042,7 +12924,11 @@ snapshots: '@prefresh/utils@1.2.1': {} +<<<<<<< HEAD '@prefresh/vite@2.4.11(preact@10.29.2)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + '@prefresh/vite@2.4.11(preact@10.29.2)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@babel/core': 7.28.5 '@prefresh/babel-plugin': 0.5.2 @@ -12050,6 +12936,7 @@ snapshots: '@prefresh/utils': 1.2.1 '@rollup/pluginutils': 4.2.1 preact: 10.29.2 +<<<<<<< HEAD vite: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -12063,6 +12950,9 @@ snapshots: '@rollup/pluginutils': 4.2.1 preact: 10.29.2 vite: 6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + vite: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) transitivePeerDependencies: - supports-color @@ -12072,6 +12962,7 @@ snapshots: dependencies: quansync: 0.2.11 +<<<<<<< HEAD '@qwik.dev/core@2.0.0-beta.5(prettier@3.6.2)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@4.1.7)': dependencies: csstype: 3.1.3 @@ -12086,9 +12977,20 @@ snapshots: csstype: 3.1.3 rollup: 4.59.0 vite: 7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + '@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': + dependencies: + '@qwik.dev/optimizer': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@7813a99 + csstype: 3.2.3 + launch-editor: 2.14.0 + magic-string: 0.30.21 + vite: 8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) optionalDependencies: prettier: 3.6.2 + vitest: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +<<<<<<< HEAD '@qwik.dev/core@2.0.0-beta.9(prettier@3.6.2)(vite@5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0))': dependencies: csstype: 3.1.3 @@ -12098,94 +13000,215 @@ snapshots: prettier: 3.6.2 '@qwik.dev/router@2.0.0-beta.5(typescript@5.8.3)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + '@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': + dependencies: + '@qwik.dev/optimizer': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@7813a99 + csstype: 3.2.3 + launch-editor: 2.14.0 + magic-string: 0.30.21 + vite: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + optionalDependencies: + prettier: 3.6.2 + vitest: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@qwik.dev/optimizer@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@7813a99': {} + + '@qwik.dev/router@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.52.5)(typescript@5.8.3)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: + '@azure/functions': 3.5.1 '@mdx-js/mdx': 3.1.1 + '@netlify/edge-functions': 3.0.8 + '@qwik.dev/core': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) '@types/mdx': 2.0.13 + estree-util-value-to-estree: 3.5.0 + github-slugger: 2.0.0 + hast-util-heading-rank: 2.1.1 + hast-util-to-string: 2.0.0 + kleur: 4.1.5 + marked: 12.0.2 + mdast-util-mdx: 3.0.0 + refractor: 4.9.0 + rehype-autolink-headings: 7.1.0 + remark-frontmatter: 5.0.0 + remark-gfm: 4.0.1 + set-cookie-parser: 2.7.2 source-map: 0.7.6 svgo: 3.3.3 +<<<<<<< HEAD undici: 6.24.0 valibot: 1.4.1(typescript@5.8.3) vfile: 6.0.2 vite: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vite-imagetools: 7.1.1(rollup@4.59.0) zod: 3.22.4 +======= + unified: 11.0.5 + unist-util-visit: 5.0.0 + valibot: 1.4.1(typescript@5.8.3) + vfile: 6.0.3 + vite: 8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-imagetools: 10.0.0(rollup@4.52.5)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + yaml: 2.9.0 + zod: 3.25.76 +>>>>>>> 9742820 (chore: wip) transitivePeerDependencies: - rollup - supports-color - typescript +<<<<<<< HEAD '@qwik.dev/router@2.0.0-beta.9(patch_hash=e002def78f4681060d18bc24d686c24ee1d1b997c399a2cb1c03baf3b860e4c8)(rollup@4.59.0)(typescript@5.8.3)': +======= + '@qwik.dev/router@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.52.5)(typescript@5.8.3)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: + '@azure/functions': 3.5.1 '@mdx-js/mdx': 3.1.1 + '@netlify/edge-functions': 3.0.8 + '@qwik.dev/core': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) '@types/mdx': 2.0.13 + estree-util-value-to-estree: 3.5.0 + github-slugger: 2.0.0 + hast-util-heading-rank: 2.1.1 + hast-util-to-string: 2.0.0 + kleur: 4.1.5 + marked: 12.0.2 + mdast-util-mdx: 3.0.0 + refractor: 4.9.0 + rehype-autolink-headings: 7.1.0 + remark-frontmatter: 5.0.0 + remark-gfm: 4.0.1 + set-cookie-parser: 2.7.2 source-map: 0.7.6 svgo: 3.3.3 +<<<<<<< HEAD undici: 6.24.0 valibot: 1.4.1(typescript@5.8.3) vfile: 6.0.3 vite-imagetools: 7.1.1(rollup@4.59.0) zod: 3.25.48 +======= + unified: 11.0.5 + unist-util-visit: 5.0.0 + valibot: 1.4.1(typescript@5.8.3) + vfile: 6.0.3 + vite: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-imagetools: 10.0.0(rollup@4.52.5)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + yaml: 2.9.0 + zod: 3.25.76 +>>>>>>> 9742820 (chore: wip) transitivePeerDependencies: - rollup - supports-color - typescript +<<<<<<< HEAD +======= + '@remix-run/router@1.6.2': {} + + '@remix-run/server-runtime@1.16.1': + dependencies: + '@remix-run/router': 1.6.2 + '@web3-storage/multipart-parser': 1.0.0 + cookie: 0.4.2 + set-cookie-parser: 2.7.2 + source-map: 0.7.6 + +>>>>>>> 9742820 (chore: wip) '@resvg/resvg-wasm@2.4.0': {} '@rolldown/binding-android-arm64@1.0.0-beta.52': optional: true + '@rolldown/binding-android-arm64@1.0.2': + optional: true + '@rolldown/binding-darwin-arm64@1.0.0-beta.26': optional: true '@rolldown/binding-darwin-arm64@1.0.0-beta.52': optional: true + '@rolldown/binding-darwin-arm64@1.0.2': + optional: true + '@rolldown/binding-darwin-x64@1.0.0-beta.26': optional: true '@rolldown/binding-darwin-x64@1.0.0-beta.52': optional: true + '@rolldown/binding-darwin-x64@1.0.2': + optional: true + '@rolldown/binding-freebsd-x64@1.0.0-beta.26': optional: true '@rolldown/binding-freebsd-x64@1.0.0-beta.52': optional: true + '@rolldown/binding-freebsd-x64@1.0.2': + optional: true + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.26': optional: true '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.52': optional: true + '@rolldown/binding-linux-arm-gnueabihf@1.0.2': + optional: true + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.26': optional: true '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.52': optional: true + '@rolldown/binding-linux-arm64-gnu@1.0.2': + optional: true + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.26': optional: true '@rolldown/binding-linux-arm64-musl@1.0.0-beta.52': optional: true + '@rolldown/binding-linux-arm64-musl@1.0.2': + optional: true + + '@rolldown/binding-linux-ppc64-gnu@1.0.2': + optional: true + + '@rolldown/binding-linux-s390x-gnu@1.0.2': + optional: true + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.26': optional: true '@rolldown/binding-linux-x64-gnu@1.0.0-beta.52': optional: true + '@rolldown/binding-linux-x64-gnu@1.0.2': + optional: true + '@rolldown/binding-linux-x64-musl@1.0.0-beta.26': optional: true '@rolldown/binding-linux-x64-musl@1.0.0-beta.52': optional: true + '@rolldown/binding-linux-x64-musl@1.0.2': + optional: true + '@rolldown/binding-openharmony-arm64@1.0.0-beta.52': optional: true + '@rolldown/binding-openharmony-arm64@1.0.2': + optional: true + '@rolldown/binding-wasm32-wasi@1.0.0-beta.26': dependencies: '@napi-rs/wasm-runtime': 0.2.12 @@ -12196,12 +13219,22 @@ snapshots: '@napi-rs/wasm-runtime': 1.0.7 optional: true + '@rolldown/binding-wasm32-wasi@1.0.2': + dependencies: + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + optional: true + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.26': optional: true '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.52': optional: true + '@rolldown/binding-win32-arm64-msvc@1.0.2': + optional: true + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.26': optional: true @@ -12214,6 +13247,9 @@ snapshots: '@rolldown/binding-win32-x64-msvc@1.0.0-beta.52': optional: true + '@rolldown/binding-win32-x64-msvc@1.0.2': + optional: true + '@rolldown/pluginutils@1.0.0-beta.26': {} '@rolldown/pluginutils@1.0.0-beta.29': {} @@ -12222,7 +13258,13 @@ snapshots: '@rolldown/pluginutils@1.0.0-beta.52': {} +<<<<<<< HEAD '@rollup/plugin-alias@5.1.1(rollup@4.59.0)': +======= + '@rolldown/pluginutils@1.0.1': {} + + '@rollup/plugin-alias@5.1.1(rollup@4.52.5)': +>>>>>>> 9742820 (chore: wip) optionalDependencies: rollup: 4.59.0 @@ -12481,11 +13523,19 @@ snapshots: dependencies: solid-js: 1.9.9 +<<<<<<< HEAD '@solidjs/start@1.2.0(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vinxi@0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': dependencies: '@tanstack/server-functions-plugin': 1.121.21(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) '@vinxi/plugin-directives': 0.5.1(vinxi@0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) '@vinxi/server-components': 0.5.1(vinxi@0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + '@solidjs/start@1.2.0(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vinxi@0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': + dependencies: + '@tanstack/server-functions-plugin': 1.121.21(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@vinxi/plugin-directives': 0.5.1(vinxi@0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@vinxi/server-components': 0.5.1(vinxi@0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) cookie-es: 2.0.0 defu: 6.1.5 error-stack-parser: 2.1.4 @@ -12497,8 +13547,13 @@ snapshots: source-map-js: 1.2.1 terracotta: 1.0.6(solid-js@1.9.9) tinyglobby: 0.2.15 +<<<<<<< HEAD vinxi: 0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vite-plugin-solid: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + vinxi: 0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-plugin-solid: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) transitivePeerDependencies: - '@testing-library/jest-dom' - solid-js @@ -12520,11 +13575,19 @@ snapshots: dependencies: acorn: 8.15.0 +<<<<<<< HEAD '@sveltejs/adapter-auto@6.1.1(@sveltejs/kit@2.60.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.42.1)(typescript@5.9.3)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)))': dependencies: '@sveltejs/kit': 2.60.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.42.1)(typescript@5.9.3)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) '@sveltejs/adapter-auto@6.1.1(@sveltejs/kit@2.60.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.42.1)(typescript@5.9.3)(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)))': +======= + '@sveltejs/adapter-auto@6.1.1(@sveltejs/kit@2.47.3(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))': + dependencies: + '@sveltejs/kit': 2.47.3(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + + '@sveltejs/kit@2.47.3(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@sveltejs/kit': 2.60.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.42.1)(typescript@5.9.3)(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) @@ -12532,7 +13595,11 @@ snapshots: dependencies: '@standard-schema/spec': 1.1.0 '@sveltejs/acorn-typescript': 1.0.6(acorn@8.15.0) +<<<<<<< HEAD '@sveltejs/vite-plugin-svelte': 6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + '@sveltejs/vite-plugin-svelte': 6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) '@types/cookie': 0.6.0 acorn: 8.15.0 cookie: 0.6.0 @@ -12544,6 +13611,7 @@ snapshots: set-cookie-parser: 3.1.0 sirv: 3.0.2 svelte: 5.42.1 +<<<<<<< HEAD vite: 7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) optionalDependencies: typescript: 5.9.3 @@ -12567,6 +13635,9 @@ snapshots: vite: 7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) optionalDependencies: typescript: 5.9.3 +======= + vite: 7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) '@sveltejs/package@2.5.4(svelte@5.42.1)(typescript@5.9.3)': dependencies: @@ -12579,6 +13650,7 @@ snapshots: transitivePeerDependencies: - typescript +<<<<<<< HEAD '@sveltejs/vite-plugin-svelte-inspector@5.0.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': dependencies: '@sveltejs/vite-plugin-svelte': 6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) @@ -12600,12 +13672,31 @@ snapshots: '@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': dependencies: '@sveltejs/vite-plugin-svelte-inspector': 5.0.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + '@sveltejs/vite-plugin-svelte-inspector@5.0.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': + dependencies: + '@sveltejs/vite-plugin-svelte': 6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + debug: 4.4.3 + svelte: 5.42.1 + vite: 7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - supports-color + + '@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': + dependencies: + '@sveltejs/vite-plugin-svelte-inspector': 5.0.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) debug: 4.4.3 deepmerge: 4.3.1 magic-string: 0.30.21 svelte: 5.42.1 +<<<<<<< HEAD vite: 7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vitefu: 1.1.1(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + vite: 7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vitefu: 1.1.1(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) transitivePeerDependencies: - supports-color @@ -12743,49 +13834,83 @@ snapshots: '@tailwindcss/oxide-win32-arm64-msvc': 4.1.17 '@tailwindcss/oxide-win32-x64-msvc': 4.1.17 - '@tailwindcss/vite@4.1.16(vite@5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0))': + '@tailwindcss/vite@4.1.16(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': dependencies: '@tailwindcss/node': 4.1.16 '@tailwindcss/oxide': 4.1.16 tailwindcss: 4.1.16 - vite: 5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0) + vite: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +<<<<<<< HEAD '@tailwindcss/vite@4.1.16(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + '@tailwindcss/vite@4.1.16(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@tailwindcss/node': 4.1.16 '@tailwindcss/oxide': 4.1.16 tailwindcss: 4.1.16 +<<<<<<< HEAD vite: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) '@tailwindcss/vite@4.1.16(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + vite: 7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@tailwindcss/vite@4.1.16(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@tailwindcss/node': 4.1.16 '@tailwindcss/oxide': 4.1.16 tailwindcss: 4.1.16 +<<<<<<< HEAD vite: 6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) '@tailwindcss/vite@4.1.16(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + vite: 7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@tailwindcss/vite@4.1.16(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@tailwindcss/node': 4.1.16 '@tailwindcss/oxide': 4.1.16 tailwindcss: 4.1.16 +<<<<<<< HEAD vite: 7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) '@tailwindcss/vite@4.1.16(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + vite: 8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@tailwindcss/vite@4.1.16(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@tailwindcss/node': 4.1.16 '@tailwindcss/oxide': 4.1.16 tailwindcss: 4.1.16 +<<<<<<< HEAD vite: 7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) '@tailwindcss/vite@4.1.17(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + vite: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@tailwindcss/vite@4.1.17(vite@7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@tailwindcss/node': 4.1.17 '@tailwindcss/oxide': 4.1.17 tailwindcss: 4.1.17 +<<<<<<< HEAD vite: 7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) '@tanstack/directive-functions-plugin@1.121.21(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + vite: 7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@tanstack/directive-functions-plugin@1.121.21(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@babel/code-frame': 7.26.2 '@babel/core': 7.28.5 @@ -12794,7 +13919,11 @@ snapshots: '@tanstack/router-utils': 1.133.19 babel-dead-code-elimination: 1.0.10 tiny-invariant: 1.3.3 +<<<<<<< HEAD vite: 6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + vite: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) transitivePeerDependencies: - supports-color @@ -12811,7 +13940,11 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD '@tanstack/server-functions-plugin@1.121.21(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + '@tanstack/server-functions-plugin@1.121.21(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@babel/code-frame': 7.26.2 '@babel/core': 7.28.5 @@ -12820,7 +13953,11 @@ snapshots: '@babel/template': 7.27.2 '@babel/traverse': 7.28.5 '@babel/types': 7.28.5 +<<<<<<< HEAD '@tanstack/directive-functions-plugin': 1.121.21(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + '@tanstack/directive-functions-plugin': 1.121.21(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) babel-dead-code-elimination: 1.0.10 tiny-invariant: 1.3.3 transitivePeerDependencies: @@ -12877,14 +14014,23 @@ snapshots: dependencies: svelte: 5.42.1 +<<<<<<< HEAD '@testing-library/svelte@5.3.1(svelte@5.42.1)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@4.1.7)': +======= + '@testing-library/svelte@5.3.1(svelte@5.42.1)(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@testing-library/dom': 10.4.1 '@testing-library/svelte-core': 1.0.0(svelte@5.42.1) svelte: 5.42.1 optionalDependencies: +<<<<<<< HEAD vite: 7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vitest: 4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.0.13)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + vite: 7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vitest: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) '@tootallnate/once@2.0.0': {} @@ -12993,6 +14139,13 @@ snapshots: dependencies: '@types/braces': 3.0.5 +<<<<<<< HEAD +======= + '@types/minimatch@6.0.0': + dependencies: + minimatch: 10.2.5 + +>>>>>>> 9742820 (chore: wip) '@types/ms@2.1.0': {} '@types/node@14.18.33': {} @@ -13021,6 +14174,8 @@ snapshots: dependencies: postcss: 8.5.6 + '@types/prismjs@1.26.6': {} + '@types/react-dom@19.2.3(@types/react@19.2.7)': dependencies: '@types/react': 19.2.7 @@ -13225,6 +14380,15 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/project-service@8.60.0(typescript@5.8.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.60.0(typescript@5.8.3) + '@typescript-eslint/types': 8.60.0 + debug: 4.4.3 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/scope-manager@8.36.0': dependencies: '@typescript-eslint/types': 8.36.0 @@ -13240,6 +14404,11 @@ snapshots: '@typescript-eslint/types': 8.48.0 '@typescript-eslint/visitor-keys': 8.48.0 + '@typescript-eslint/scope-manager@8.60.0': + dependencies: + '@typescript-eslint/types': 8.60.0 + '@typescript-eslint/visitor-keys': 8.60.0 + '@typescript-eslint/tsconfig-utils@8.36.0(typescript@5.8.3)': dependencies: typescript: 5.8.3 @@ -13260,6 +14429,10 @@ snapshots: dependencies: typescript: 5.9.3 + '@typescript-eslint/tsconfig-utils@8.60.0(typescript@5.8.3)': + dependencies: + typescript: 5.8.3 + '@typescript-eslint/type-utils@8.36.0(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3)': dependencies: '@typescript-eslint/typescript-estree': 8.36.0(typescript@5.8.3) @@ -13325,6 +14498,8 @@ snapshots: '@typescript-eslint/types@8.48.0': {} + '@typescript-eslint/types@8.60.0': {} + '@typescript-eslint/typescript-estree@8.36.0(typescript@5.8.3)': dependencies: '@typescript-eslint/project-service': 8.36.0(typescript@5.8.3) @@ -13403,6 +14578,21 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@8.60.0(typescript@5.8.3)': + dependencies: + '@typescript-eslint/project-service': 8.60.0(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.60.0(typescript@5.8.3) + '@typescript-eslint/types': 8.60.0 + '@typescript-eslint/visitor-keys': 8.60.0 + debug: 4.4.3 + minimatch: 10.2.5 + semver: 7.7.3 + tinyglobby: 0.2.16 + ts-api-utils: 2.5.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/utils@8.36.0(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3)': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.31.0(jiti@2.6.1)) @@ -13425,17 +14615,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.46.2(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3)': - dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.31.0(jiti@2.6.1)) - '@typescript-eslint/scope-manager': 8.46.2 - '@typescript-eslint/types': 8.46.2 - '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.8.3) - eslint: 9.31.0(jiti@2.6.1) - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/utils@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.8.3)': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1)) @@ -13491,6 +14670,28 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/utils@8.60.0(eslint@8.57.1)(typescript@5.8.3)': + dependencies: + '@eslint-community/eslint-utils': 4.9.1(eslint@8.57.1) + '@typescript-eslint/scope-manager': 8.60.0 + '@typescript-eslint/types': 8.60.0 + '@typescript-eslint/typescript-estree': 8.60.0(typescript@5.8.3) + eslint: 8.57.1 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.60.0(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3)': + dependencies: + '@eslint-community/eslint-utils': 4.9.1(eslint@9.31.0(jiti@2.6.1)) + '@typescript-eslint/scope-manager': 8.60.0 + '@typescript-eslint/types': 8.60.0 + '@typescript-eslint/typescript-estree': 8.60.0(typescript@5.8.3) + eslint: 9.31.0(jiti@2.6.1) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/visitor-keys@8.36.0': dependencies: '@typescript-eslint/types': 8.36.0 @@ -13506,6 +14707,11 @@ snapshots: '@typescript-eslint/types': 8.48.0 eslint-visitor-keys: 4.2.1 + '@typescript-eslint/visitor-keys@8.60.0': + dependencies: + '@typescript-eslint/types': 8.60.0 + eslint-visitor-keys: 5.0.1 + '@ungap/structured-clone@1.3.0': {} '@vercel/build-utils@7.3.0': {} @@ -13540,12 +14746,66 @@ snapshots: '@vercel/gatsby-plugin-vercel-analytics@1.0.11': dependencies: - web-vitals: 0.2.4 - - '@vercel/gatsby-plugin-vercel-builder@2.0.12': - dependencies: - '@sinclair/typebox': 0.25.24 - '@vercel/build-utils': 7.3.0 +<<<<<<< HEAD +======= + '@emotion/hash': 0.9.2 + '@vanilla-extract/private': 1.0.9 + css-what: 6.2.2 + cssesc: 3.0.0 + csstype: 3.2.3 + dedent: 1.7.0 + deep-object-diff: 1.1.9 + deepmerge: 4.3.1 + lru-cache: 10.4.3 + media-query-parser: 2.0.2 + modern-ahocorasick: 1.1.0 + picocolors: 1.1.1 + transitivePeerDependencies: + - babel-plugin-macros + + '@vanilla-extract/integration@6.5.0(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)': + dependencies: + '@babel/core': 7.28.5 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5) + '@vanilla-extract/babel-plugin-debug-ids': 1.2.2 + '@vanilla-extract/css': 1.17.4 + esbuild: 0.17.19 + eval: 0.1.8 + find-up: 5.0.0 + javascript-stringify: 2.1.0 + lodash: 4.17.21 + mlly: 1.8.0 + outdent: 0.8.0 + vite: 5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0) + vite-node: 1.6.1(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + '@vanilla-extract/private@1.0.9': {} + + '@vercel/build-utils@6.7.3': {} + + '@vercel/error-utils@1.0.8': {} + + '@vercel/gatsby-plugin-vercel-analytics@1.0.10': + dependencies: + '@babel/runtime': 7.12.1 +>>>>>>> 9742820 (chore: wip) + web-vitals: 0.2.4 + + '@vercel/gatsby-plugin-vercel-builder@2.0.12': + dependencies: + '@sinclair/typebox': 0.25.24 + '@vercel/build-utils': 7.3.0 '@vercel/routing-utils': 3.1.0 esbuild: 0.14.47 etag: 1.8.1 @@ -13645,18 +14905,106 @@ snapshots: - encoding - supports-color +<<<<<<< HEAD '@vercel/remix-builder@2.0.14': dependencies: '@vercel/nft': 0.24.2 '@vercel/static-config': 3.0.0 +======= + '@vercel/remix-builder@1.8.10(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(ts-node@10.9.1(@types/node@22.18.12)(typescript@5.8.3))': + dependencies: + '@remix-run/dev': '@vercel/remix-run-dev@1.16.1(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(ts-node@10.9.1(@types/node@22.18.12)(typescript@5.8.3))' + '@vercel/build-utils': 6.7.3 + '@vercel/nft': 0.22.5 + '@vercel/static-config': 2.0.17 + path-to-regexp: 6.2.1 + semver: 7.3.8 +>>>>>>> 9742820 (chore: wip) ts-morph: 12.0.0 transitivePeerDependencies: - encoding - supports-color +<<<<<<< HEAD '@vercel/routing-utils@3.1.0': dependencies: path-to-regexp: 6.3.0 +======= + '@vercel/remix-run-dev@1.16.1(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(ts-node@10.9.1(@types/node@22.18.12)(typescript@5.8.3))': + dependencies: + '@babel/core': 7.28.5 + '@babel/generator': 7.28.5 + '@babel/parser': 7.28.5 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5) + '@babel/preset-env': 7.28.5(@babel/core@7.28.5) + '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5) + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 + '@npmcli/package-json': 2.0.0 + '@remix-run/server-runtime': 1.16.1 + '@vanilla-extract/integration': 6.5.0(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0) + arg: 5.0.2 + cacache: 15.3.0 + chalk: 4.1.2 + chokidar: 3.6.0 + dotenv: 16.6.1 + esbuild: 0.17.6 + esbuild-plugin-polyfill-node: 0.2.0(esbuild@0.17.6) + execa: 5.1.1 + exit-hook: 2.2.1 + express: 4.21.2 + fast-glob: 3.2.11 + fs-extra: 10.1.0 + get-port: 5.1.1 + gunzip-maybe: 1.4.2 + inquirer: 8.2.7(@types/node@22.18.12) + jsesc: 3.0.2 + json5: 2.2.3 + lodash: 4.17.21 + lodash.debounce: 4.0.8 + lru-cache: 7.18.3 + minimatch: 9.0.5 + node-fetch: 2.7.0 + ora: 5.4.1 + postcss: 8.5.15 + postcss-discard-duplicates: 5.1.0(postcss@8.5.15) + postcss-load-config: 4.0.2(postcss@8.5.15)(ts-node@10.9.1(@types/node@22.18.12)(typescript@5.8.3)) + postcss-modules: 6.0.1(postcss@8.5.15) + prettier: 2.7.1 + pretty-ms: 7.0.1 + proxy-agent: 5.0.0 + react-refresh: 0.14.2 + recast: 0.21.5 + remark-frontmatter: 4.0.1 + remark-mdx-frontmatter: 1.1.1 + semver: 7.7.3 + sort-package-json: 1.57.0 + tar-fs: 2.1.4 + tsconfig-paths: 4.2.0 + ws: 7.5.10 + xdm: 2.1.0 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - bluebird + - bufferutil + - encoding + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - ts-node + - utf-8-validate + + '@vercel/routing-utils@2.2.1': + dependencies: + path-to-regexp: 6.1.0 +>>>>>>> 9742820 (chore: wip) optionalDependencies: ajv: 6.12.6 @@ -13695,7 +15043,11 @@ snapshots: untun: 0.1.3 uqr: 0.1.2 +<<<<<<< HEAD '@vinxi/plugin-directives@0.5.1(vinxi@0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + '@vinxi/plugin-directives@0.5.1(vinxi@0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@babel/parser': 7.28.5 acorn: 8.15.0 @@ -13706,20 +15058,34 @@ snapshots: magicast: 0.2.11 recast: 0.23.11 tslib: 2.8.1 +<<<<<<< HEAD vinxi: 0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) '@vinxi/server-components@0.5.1(vinxi@0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': dependencies: '@vinxi/plugin-directives': 0.5.1(vinxi@0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + vinxi: 0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@vinxi/server-components@0.5.1(vinxi@0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': + dependencies: + '@vinxi/plugin-directives': 0.5.1(vinxi@0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) acorn: 8.15.0 acorn-loose: 8.5.2 acorn-typescript: 1.4.13(acorn@8.15.0) astring: 1.9.0 magicast: 0.2.11 recast: 0.23.11 +<<<<<<< HEAD vinxi: 0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) '@vitejs/plugin-react@5.1.1(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + vinxi: 0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@vitejs/plugin-react@5.1.1(vite@7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@babel/core': 7.28.5 '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5) @@ -13727,6 +15093,7 @@ snapshots: '@rolldown/pluginutils': 1.0.0-beta.47 '@types/babel__core': 7.20.5 react-refresh: 0.18.0 +<<<<<<< HEAD vite: 7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -13738,6 +15105,19 @@ snapshots: vue: 3.5.22(typescript@5.8.3) '@vitest/coverage-v8@4.1.7(vitest@4.1.7)': +======= + vite: 7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - supports-color + + '@vitejs/plugin-vue@6.0.1(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vue@3.5.22(typescript@5.8.3))': + dependencies: + '@rolldown/pluginutils': 1.0.0-beta.29 + vite: 7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vue: 3.5.22(typescript@5.8.3) + + '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@bcoe/v8-coverage': 1.0.2 '@vitest/utils': 4.1.7 @@ -13745,6 +15125,7 @@ snapshots: istanbul-lib-coverage: 3.2.2 istanbul-lib-report: 3.0.1 istanbul-reports: 3.2.0 +<<<<<<< HEAD magicast: 0.5.3 obug: 2.1.1 std-env: 4.1.0 @@ -13752,6 +15133,56 @@ snapshots: vitest: 4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.0.13)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) '@vitest/expect@4.1.7': +======= + magic-string: 0.30.21 + magicast: 0.3.5 + std-env: 3.10.0 + test-exclude: 7.0.1 + tinyrainbow: 2.0.0 + vitest: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - supports-color + + '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': + dependencies: + '@ampproject/remapping': 2.3.0 + '@bcoe/v8-coverage': 1.0.2 + ast-v8-to-istanbul: 0.3.8 + debug: 4.4.3 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 5.0.6 + istanbul-reports: 3.2.0 + magic-string: 0.30.21 + magicast: 0.3.5 + std-env: 3.10.0 + test-exclude: 7.0.1 + tinyrainbow: 2.0.0 + vitest: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - supports-color + + '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': + dependencies: + '@ampproject/remapping': 2.3.0 + '@bcoe/v8-coverage': 1.0.2 + ast-v8-to-istanbul: 0.3.8 + debug: 4.4.3 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 5.0.6 + istanbul-reports: 3.2.0 + magic-string: 0.30.21 + magicast: 0.3.5 + std-env: 3.10.0 + test-exclude: 7.0.1 + tinyrainbow: 2.0.0 + vitest: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - supports-color + + '@vitest/expect@3.2.4': +>>>>>>> 9742820 (chore: wip) dependencies: '@standard-schema/spec': 1.1.0 '@types/chai': 5.2.3 @@ -13760,37 +15191,64 @@ snapshots: chai: 6.2.2 tinyrainbow: 3.1.0 +<<<<<<< HEAD '@vitest/mocker@4.1.7(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + '@vitest/mocker@3.2.4(vite@7.2.6(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@vitest/spy': 4.1.7 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: +<<<<<<< HEAD vite: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) '@vitest/mocker@4.1.7(vite@6.4.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + vite: 7.2.6(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + optional: true + + '@vitest/mocker@3.2.4(vite@7.2.6(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@vitest/spy': 4.1.7 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: +<<<<<<< HEAD vite: 6.4.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) '@vitest/mocker@4.1.7(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + vite: 7.2.6(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@vitest/mocker@3.2.4(vite@7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@vitest/spy': 4.1.7 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: +<<<<<<< HEAD vite: 7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) '@vitest/mocker@4.1.7(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': +======= + vite: 7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@vitest/mocker@3.2.4(vite@7.2.6(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 9742820 (chore: wip) dependencies: '@vitest/spy': 4.1.7 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: +<<<<<<< HEAD vite: 7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + vite: 7.2.6(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) '@vitest/pretty-format@4.1.7': dependencies: @@ -13889,14 +15347,22 @@ snapshots: '@vue/devtools-api@6.6.4': {} +<<<<<<< HEAD '@vue/devtools-core@8.0.3(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3))': +======= + '@vue/devtools-core@8.0.3(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vue@3.5.22(typescript@5.8.3))': +>>>>>>> 9742820 (chore: wip) dependencies: '@vue/devtools-kit': 8.0.3 '@vue/devtools-shared': 8.0.3 mitt: 3.0.1 nanoid: 5.1.6 pathe: 2.0.3 +<<<<<<< HEAD vite-hot-client: 2.1.0(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + vite-hot-client: 2.1.0(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) vue: 3.5.22(typescript@5.8.3) transitivePeerDependencies: - vite @@ -15455,19 +16921,19 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-qwik@2.0.0-beta.5(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3): + eslint-plugin-qwik@2.0.0-beta.35(eslint@8.57.1)(typescript@5.8.3): dependencies: - '@typescript-eslint/utils': 8.46.2(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3) - eslint: 9.31.0(jiti@2.6.1) + '@typescript-eslint/utils': 8.60.0(eslint@8.57.1)(typescript@5.8.3) + eslint: 8.57.1 jsx-ast-utils: 3.3.5 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-qwik@2.0.0-beta.9(eslint@8.57.1)(typescript@5.8.3): + eslint-plugin-qwik@2.0.0-beta.35(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3): dependencies: - '@typescript-eslint/utils': 8.46.2(eslint@8.57.1)(typescript@5.8.3) - eslint: 8.57.1 + '@typescript-eslint/utils': 8.60.0(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3) + eslint: 9.31.0(jiti@2.6.1) jsx-ast-utils: 3.3.5 transitivePeerDependencies: - supports-color @@ -15614,6 +17080,8 @@ snapshots: eslint-visitor-keys@4.2.1: {} + eslint-visitor-keys@5.0.1: {} + eslint@8.57.1: dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1) @@ -15837,6 +17305,22 @@ snapshots: astring: 1.9.0 source-map: 0.7.6 +<<<<<<< HEAD +======= + estree-util-value-to-estree@1.3.0: + dependencies: + is-plain-obj: 3.0.0 + + estree-util-value-to-estree@3.5.0: + dependencies: + '@types/estree': 1.0.8 + + estree-util-visit@1.2.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/unist': 2.0.11 + +>>>>>>> 9742820 (chore: wip) estree-util-visit@2.0.0: dependencies: '@types/estree-jsx': 1.0.5 @@ -15935,6 +17419,10 @@ snapshots: optionalDependencies: picomatch: 4.0.4 + fdir@6.5.0(picomatch@4.0.4): + optionalDependencies: + picomatch: 4.0.4 + fflate@0.7.4: {} fflate@0.8.3: {} @@ -16096,6 +17584,8 @@ snapshots: github-from-package@0.0.0: {} + github-slugger@2.0.0: {} + glob-parent@5.1.2: dependencies: is-glob: 4.0.3 @@ -16205,10 +17695,45 @@ snapshots: dependencies: function-bind: 1.1.2 + hast-util-heading-rank@2.1.1: + dependencies: + '@types/hast': 2.3.10 + + hast-util-heading-rank@3.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-is-element@3.0.0: dependencies: '@types/hast': 3.0.4 +<<<<<<< HEAD +======= + hast-util-parse-selector@3.1.1: + dependencies: + '@types/hast': 2.3.10 + + hast-util-to-estree@2.3.3: + dependencies: + '@types/estree': 1.0.8 + '@types/estree-jsx': 1.0.5 + '@types/hast': 2.3.10 + '@types/unist': 2.0.11 + comma-separated-tokens: 2.0.3 + estree-util-attach-comments: 2.1.1 + estree-util-is-identifier-name: 2.1.0 + hast-util-whitespace: 2.0.1 + mdast-util-mdx-expression: 1.3.2 + mdast-util-mdxjs-esm: 1.3.1 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + style-to-object: 0.4.4 + unist-util-position: 4.0.4 + zwitch: 2.0.4 + transitivePeerDependencies: + - supports-color + +>>>>>>> 9742820 (chore: wip) hast-util-to-estree@3.1.3: dependencies: '@types/estree': 1.0.8 @@ -16264,6 +17789,10 @@ snapshots: transitivePeerDependencies: - supports-color + hast-util-to-string@2.0.0: + dependencies: + '@types/hast': 2.3.10 + hast-util-to-string@3.0.1: dependencies: '@types/hast': 3.0.4 @@ -16272,6 +17801,14 @@ snapshots: dependencies: '@types/hast': 3.0.4 + hastscript@7.2.0: + dependencies: + '@types/hast': 2.3.10 + comma-separated-tokens: 2.0.3 + hast-util-parse-selector: 3.1.1 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + he@1.2.0: {} hermes-estree@0.25.1: {} @@ -16364,6 +17901,17 @@ snapshots: dependencies: safer-buffer: 2.1.2 +<<<<<<< HEAD +======= + iconv-lite@0.7.0: + dependencies: + safer-buffer: 2.1.2 + + icss-utils@5.1.0(postcss@8.5.15): + dependencies: + postcss: 8.5.15 + +>>>>>>> 9742820 (chore: wip) icss-utils@5.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -16379,7 +17927,13 @@ snapshots: imagetools-core@7.1.0: {} +<<<<<<< HEAD immutable@5.1.5: {} +======= + imagetools-core@9.1.0: {} + + immutable@5.1.4: {} +>>>>>>> 9742820 (chore: wip) import-fresh@3.3.1: dependencies: @@ -16773,6 +18327,11 @@ snapshots: kolorist@1.8.0: {} + launch-editor@2.14.0: + dependencies: + picocolors: 1.1.1 + shell-quote: 1.8.4 + lazystream@1.0.1: dependencies: readable-stream: 2.3.8 @@ -16799,36 +18358,69 @@ snapshots: lightningcss-android-arm64@1.30.2: optional: true + lightningcss-android-arm64@1.32.0: + optional: true + lightningcss-darwin-arm64@1.30.2: optional: true + lightningcss-darwin-arm64@1.32.0: + optional: true + lightningcss-darwin-x64@1.30.2: optional: true + lightningcss-darwin-x64@1.32.0: + optional: true + lightningcss-freebsd-x64@1.30.2: optional: true + lightningcss-freebsd-x64@1.32.0: + optional: true + lightningcss-linux-arm-gnueabihf@1.30.2: optional: true + lightningcss-linux-arm-gnueabihf@1.32.0: + optional: true + lightningcss-linux-arm64-gnu@1.30.2: optional: true + lightningcss-linux-arm64-gnu@1.32.0: + optional: true + lightningcss-linux-arm64-musl@1.30.2: optional: true + lightningcss-linux-arm64-musl@1.32.0: + optional: true + lightningcss-linux-x64-gnu@1.30.2: optional: true + lightningcss-linux-x64-gnu@1.32.0: + optional: true + lightningcss-linux-x64-musl@1.30.2: optional: true + lightningcss-linux-x64-musl@1.32.0: + optional: true + lightningcss-win32-arm64-msvc@1.30.2: optional: true + lightningcss-win32-arm64-msvc@1.32.0: + optional: true + lightningcss-win32-x64-msvc@1.30.2: optional: true + lightningcss-win32-x64-msvc@1.32.0: + optional: true + lightningcss@1.30.2: dependencies: detect-libc: 2.1.2 @@ -16845,6 +18437,22 @@ snapshots: lightningcss-win32-arm64-msvc: 1.30.2 lightningcss-win32-x64-msvc: 1.30.2 + lightningcss@1.32.0: + dependencies: + detect-libc: 2.1.2 + optionalDependencies: + lightningcss-android-arm64: 1.32.0 + lightningcss-darwin-arm64: 1.32.0 + lightningcss-darwin-x64: 1.32.0 + lightningcss-freebsd-x64: 1.32.0 + lightningcss-linux-arm-gnueabihf: 1.32.0 + lightningcss-linux-arm64-gnu: 1.32.0 + lightningcss-linux-arm64-musl: 1.32.0 + lightningcss-linux-x64-gnu: 1.32.0 + lightningcss-linux-x64-musl: 1.32.0 + lightningcss-win32-arm64-msvc: 1.32.0 + lightningcss-win32-x64-msvc: 1.32.0 + lilconfig@2.1.0: {} lilconfig@3.1.3: {} @@ -16907,6 +18515,8 @@ snapshots: lodash@4.18.0: {} + long@4.0.0: {} + longest-streak@3.1.0: {} loose-envify@1.4.0: @@ -16965,8 +18575,45 @@ snapshots: markdown-extensions@2.0.0: {} + markdown-table@3.0.4: {} + + marked@12.0.2: {} + math-intrinsics@1.1.0: {} +<<<<<<< HEAD +======= + mdast-util-definitions@5.1.2: + dependencies: + '@types/mdast': 3.0.15 + '@types/unist': 2.0.11 + unist-util-visit: 4.1.2 + + mdast-util-find-and-replace@3.0.2: + dependencies: + '@types/mdast': 4.0.4 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.1 + unist-util-visit-parents: 6.0.2 + + mdast-util-from-markdown@1.3.1: + dependencies: + '@types/mdast': 3.0.15 + '@types/unist': 2.0.11 + decode-named-character-reference: 1.2.0 + mdast-util-to-string: 3.2.0 + micromark: 3.2.0 + micromark-util-decode-numeric-character-reference: 1.1.0 + micromark-util-decode-string: 1.1.0 + micromark-util-normalize-identifier: 1.1.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + unist-util-stringify-position: 3.0.3 + uvu: 0.5.6 + transitivePeerDependencies: + - supports-color + +>>>>>>> 9742820 (chore: wip) mdast-util-from-markdown@2.0.2: dependencies: '@types/mdast': 4.0.4 @@ -16984,75 +18631,162 @@ snapshots: transitivePeerDependencies: - supports-color - mdast-util-mdx-expression@2.0.1: +<<<<<<< HEAD +======= + mdast-util-frontmatter@1.0.1: + dependencies: + '@types/mdast': 3.0.15 + mdast-util-to-markdown: 1.5.0 + micromark-extension-frontmatter: 1.1.1 + + mdast-util-frontmatter@2.0.1: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 '@types/mdast': 4.0.4 devlop: 1.1.0 + escape-string-regexp: 5.0.0 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 + micromark-extension-frontmatter: 2.0.0 transitivePeerDependencies: - supports-color - mdast-util-mdx-jsx@3.2.0: + mdast-util-gfm-autolink-literal@2.0.1: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 '@types/mdast': 4.0.4 - '@types/unist': 3.0.3 ccount: 2.0.1 devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.2 + micromark-util-character: 2.1.1 + + mdast-util-gfm-footnote@2.1.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 - parse-entities: 4.0.2 - stringify-entities: 4.0.4 - unist-util-stringify-position: 4.0.0 - vfile-message: 4.0.3 + micromark-util-normalize-identifier: 2.0.1 transitivePeerDependencies: - supports-color - mdast-util-mdx@3.0.0: + mdast-util-gfm-strikethrough@2.0.0: dependencies: + '@types/mdast': 4.0.4 mdast-util-from-markdown: 2.0.2 - mdast-util-mdx-expression: 2.0.1 - mdast-util-mdx-jsx: 3.2.0 - mdast-util-mdxjs-esm: 2.0.1 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color - mdast-util-mdxjs-esm@2.0.1: + mdast-util-gfm-table@2.0.0: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 '@types/mdast': 4.0.4 devlop: 1.1.0 + markdown-table: 3.0.4 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color - mdast-util-phrasing@4.1.0: - dependencies: - '@types/mdast': 4.0.4 - unist-util-is: 6.0.1 - - mdast-util-to-hast@13.2.0: + mdast-util-gfm-task-list-item@2.0.0: dependencies: - '@types/hast': 3.0.4 '@types/mdast': 4.0.4 - '@ungap/structured-clone': 1.3.0 devlop: 1.1.0 - micromark-util-sanitize-uri: 2.0.1 - trim-lines: 3.0.1 - unist-util-position: 5.0.0 - unist-util-visit: 5.0.0 - vfile: 6.0.2 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color - mdast-util-to-markdown@2.1.2: + mdast-util-gfm@3.1.0: dependencies: - '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm-autolink-literal: 2.0.1 + mdast-util-gfm-footnote: 2.1.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-expression@1.3.2: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 + mdast-util-from-markdown: 1.3.1 + mdast-util-to-markdown: 1.5.0 + transitivePeerDependencies: + - supports-color + +>>>>>>> 9742820 (chore: wip) + mdast-util-mdx-expression@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-jsx@3.2.0: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + parse-entities: 4.0.2 + stringify-entities: 4.0.4 + unist-util-stringify-position: 4.0.0 + vfile-message: 4.0.3 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx@3.0.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdxjs-esm@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.1 + + mdast-util-to-hast@13.2.0: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.3.0 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.1 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.2 + + mdast-util-to-markdown@2.1.2: + dependencies: + '@types/mdast': 4.0.4 '@types/unist': 3.0.3 longest-streak: 3.1.0 mdast-util-phrasing: 4.1.0 @@ -17109,6 +18843,92 @@ snapshots: micromark-util-symbol: 2.0.1 micromark-util-types: 2.0.2 +<<<<<<< HEAD +======= + micromark-extension-frontmatter@1.1.1: + dependencies: + fault: 2.0.1 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + + micromark-extension-frontmatter@2.0.0: + dependencies: + fault: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-autolink-literal@2.1.0: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-footnote@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-strikethrough@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-table@2.1.1: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-tagfilter@2.0.0: + dependencies: + micromark-util-types: 2.0.2 + + micromark-extension-gfm-task-list-item@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm@3.0.0: + dependencies: + micromark-extension-gfm-autolink-literal: 2.1.0 + micromark-extension-gfm-footnote: 2.1.0 + micromark-extension-gfm-strikethrough: 2.1.0 + micromark-extension-gfm-table: 2.1.1 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.1.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-mdx-expression@1.0.8: + dependencies: + '@types/estree': 1.0.8 + micromark-factory-mdx-expression: 1.0.9 + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-events-to-acorn: 1.2.3 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + +>>>>>>> 9742820 (chore: wip) micromark-extension-mdx-expression@3.0.1: dependencies: '@types/estree': 1.0.8 @@ -17321,6 +19141,7 @@ snapshots: min-indent@1.0.1: {} +<<<<<<< HEAD miniflare@4.20260603.0: dependencies: '@cspotcode/source-map-support': 0.8.1 @@ -17334,6 +19155,13 @@ snapshots: - utf-8-validate minimatch@3.1.4: +======= + minimatch@10.2.5: + dependencies: + brace-expansion: 5.0.6 + + minimatch@3.1.2: +>>>>>>> 9742820 (chore: wip) dependencies: brace-expansion: 1.1.12 @@ -17386,6 +19214,8 @@ snapshots: nanoid@3.3.11: {} + nanoid@3.3.12: {} + nanoid@5.1.6: {} napi-build-utils@2.0.0: {} @@ -17398,7 +19228,15 @@ snapshots: sax: 1.4.1 optional: true +<<<<<<< HEAD nitropack@2.12.8(better-sqlite3@12.10.0)(rolldown@1.0.0-beta.52): +======= + negotiator@0.6.3: {} + + netmask@2.0.2: {} + + nitropack@2.12.8(rolldown@1.0.2): +>>>>>>> 9742820 (chore: wip) dependencies: '@cloudflare/kv-asset-handler': 0.4.0 '@rollup/plugin-alias': 5.1.1(rollup@4.59.0) @@ -17450,8 +19288,13 @@ snapshots: pkg-types: 2.3.0 pretty-bytes: 7.1.0 radix3: 1.1.2 +<<<<<<< HEAD rollup: 4.59.0 rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-beta.52)(rollup@4.59.0) +======= + rollup: 4.52.5 + rollup-plugin-visualizer: 6.0.5(rolldown@1.0.2)(rollup@4.52.5) +>>>>>>> 9742820 (chore: wip) scule: 1.3.0 semver: 7.5.2 serve-placeholder: 2.0.2 @@ -17809,6 +19652,8 @@ snapshots: picomatch@4.0.4: {} + picomatch@4.0.4: {} + pidtree@0.6.0: {} pify@4.0.1: @@ -17830,6 +19675,13 @@ snapshots: possible-typed-array-names@1.1.0: {} +<<<<<<< HEAD +======= + postcss-discard-duplicates@5.1.0(postcss@8.5.15): + dependencies: + postcss: 8.5.15 + +>>>>>>> 9742820 (chore: wip) postcss-load-config@3.1.4(postcss@8.5.6)(ts-node@10.9.1(@types/node@24.0.13)(typescript@5.8.3)): dependencies: lilconfig: 2.1.0 @@ -17854,19 +19706,42 @@ snapshots: postcss: 8.5.6 ts-node: 10.9.1(@types/node@24.10.1)(typescript@5.9.3) +<<<<<<< HEAD postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(yaml@2.8.1): +======= + postcss-load-config@4.0.2(postcss@8.5.15)(ts-node@10.9.1(@types/node@22.18.12)(typescript@5.8.3)): + dependencies: + lilconfig: 3.1.3 + yaml: 2.9.0 + optionalDependencies: + postcss: 8.5.15 + ts-node: 10.9.1(@types/node@22.18.12)(typescript@5.8.3) + + postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(yaml@2.9.0): +>>>>>>> 9742820 (chore: wip) dependencies: lilconfig: 3.1.3 optionalDependencies: jiti: 2.6.1 - postcss: 8.5.6 + postcss: 8.5.15 tsx: 4.20.6 - yaml: 2.8.1 + yaml: 2.9.0 + + postcss-modules-extract-imports@3.1.0(postcss@8.5.15): + dependencies: + postcss: 8.5.15 postcss-modules-extract-imports@3.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 + postcss-modules-local-by-default@4.2.0(postcss@8.5.15): + dependencies: + icss-utils: 5.1.0(postcss@8.5.15) + postcss: 8.5.15 + postcss-selector-parser: 7.1.0 + postcss-value-parser: 4.2.0 + postcss-modules-local-by-default@4.2.0(postcss@8.5.6): dependencies: icss-utils: 5.1.0(postcss@8.5.6) @@ -17874,11 +19749,36 @@ snapshots: postcss-selector-parser: 7.1.0 postcss-value-parser: 4.2.0 + postcss-modules-scope@3.2.1(postcss@8.5.15): + dependencies: + postcss: 8.5.15 + postcss-selector-parser: 7.1.0 + postcss-modules-scope@3.2.1(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-selector-parser: 7.1.0 +<<<<<<< HEAD +======= + postcss-modules-values@4.0.0(postcss@8.5.15): + dependencies: + icss-utils: 5.1.0(postcss@8.5.15) + postcss: 8.5.15 + + postcss-modules@6.0.1(postcss@8.5.15): + dependencies: + generic-names: 4.0.0 + icss-utils: 5.1.0(postcss@8.5.15) + lodash.camelcase: 4.3.0 + postcss: 8.5.15 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.15) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.15) + postcss-modules-scope: 3.2.1(postcss@8.5.15) + postcss-modules-values: 4.0.0(postcss@8.5.15) + string-hash: 1.1.3 + +>>>>>>> 9742820 (chore: wip) postcss-safe-parser@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -17899,6 +19799,12 @@ snapshots: postcss-value-parser@4.2.0: {} + postcss@8.5.15: + dependencies: + nanoid: 3.3.12 + picocolors: 1.1.1 + source-map-js: 1.2.1 + postcss@8.5.6: dependencies: nanoid: 3.3.11 @@ -18099,7 +20005,7 @@ snapshots: dependencies: '@types/estree': 1.0.8 estree-util-build-jsx: 3.0.1 - vfile: 6.0.2 + vfile: 6.0.3 recma-jsx@1.0.1(acorn@8.15.0): dependencies: @@ -18115,14 +20021,14 @@ snapshots: '@types/estree': 1.0.8 esast-util-from-js: 2.0.1 unified: 11.0.5 - vfile: 6.0.2 + vfile: 6.0.3 recma-stringify@1.0.0: dependencies: '@types/estree': 1.0.8 estree-util-to-js: 2.0.0 unified: 11.0.5 - vfile: 6.0.2 + vfile: 6.0.3 redent@3.0.0: dependencies: @@ -18146,6 +20052,13 @@ snapshots: get-proto: 1.0.1 which-builtin-type: 1.2.1 + refractor@4.9.0: + dependencies: + '@types/hast': 2.3.10 + '@types/prismjs': 1.26.6 + hastscript: 7.2.0 + parse-entities: 4.0.2 + regenerate-unicode-properties@10.2.2: dependencies: regenerate: 1.4.2 @@ -18197,6 +20110,15 @@ snapshots: dependencies: jsesc: 3.1.0 + rehype-autolink-headings@7.1.0: + dependencies: + '@types/hast': 3.0.4 + '@ungap/structured-clone': 1.3.0 + hast-util-heading-rank: 3.0.0 + hast-util-is-element: 3.0.0 + unified: 11.0.5 + unist-util-visit: 5.0.0 + rehype-external-links@3.0.0: dependencies: '@types/hast': 3.0.4 @@ -18214,6 +20136,43 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD +======= + remark-frontmatter@4.0.1: + dependencies: + '@types/mdast': 3.0.15 + mdast-util-frontmatter: 1.0.1 + micromark-extension-frontmatter: 1.1.1 + unified: 10.1.2 + + remark-frontmatter@5.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-frontmatter: 2.0.1 + micromark-extension-frontmatter: 2.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-gfm@4.0.1: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-gfm: 3.1.0 + micromark-extension-gfm: 3.0.0 + remark-parse: 11.0.0 + remark-stringify: 11.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-mdx-frontmatter@1.1.1: + dependencies: + estree-util-is-identifier-name: 1.1.0 + estree-util-value-to-estree: 1.3.0 + js-yaml: 4.1.0 + toml: 3.0.0 + +>>>>>>> 9742820 (chore: wip) remark-mdx@3.1.1: dependencies: mdast-util-mdx: 3.0.0 @@ -18236,8 +20195,24 @@ snapshots: '@types/mdast': 4.0.4 mdast-util-to-hast: 13.2.0 unified: 11.0.5 - vfile: 6.0.2 + vfile: 6.0.3 + +<<<<<<< HEAD +======= + remark-rehype@9.1.0: + dependencies: + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 + mdast-util-to-hast: 11.3.0 + unified: 10.1.2 + remark-stringify@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-to-markdown: 2.1.2 + unified: 11.0.5 + +>>>>>>> 9742820 (chore: wip) require-directory@2.1.1: {} require-from-string@2.0.2: {} @@ -18366,15 +20341,45 @@ snapshots: '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.52 '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.52 +<<<<<<< HEAD rollup-plugin-visualizer@6.0.5(rolldown@1.0.0-beta.52)(rollup@4.59.0): +======= + rolldown@1.0.2: + dependencies: + '@oxc-project/types': 0.132.0 + '@rolldown/pluginutils': 1.0.1 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.0.2 + '@rolldown/binding-darwin-arm64': 1.0.2 + '@rolldown/binding-darwin-x64': 1.0.2 + '@rolldown/binding-freebsd-x64': 1.0.2 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.2 + '@rolldown/binding-linux-arm64-gnu': 1.0.2 + '@rolldown/binding-linux-arm64-musl': 1.0.2 + '@rolldown/binding-linux-ppc64-gnu': 1.0.2 + '@rolldown/binding-linux-s390x-gnu': 1.0.2 + '@rolldown/binding-linux-x64-gnu': 1.0.2 + '@rolldown/binding-linux-x64-musl': 1.0.2 + '@rolldown/binding-openharmony-arm64': 1.0.2 + '@rolldown/binding-wasm32-wasi': 1.0.2 + '@rolldown/binding-win32-arm64-msvc': 1.0.2 + '@rolldown/binding-win32-x64-msvc': 1.0.2 + + rollup-plugin-visualizer@6.0.5(rolldown@1.0.2)(rollup@4.52.5): +>>>>>>> 9742820 (chore: wip) dependencies: open: 8.4.2 picomatch: 4.0.4 source-map: 0.7.6 yargs: 17.7.2 optionalDependencies: +<<<<<<< HEAD rolldown: 1.0.0-beta.52 rollup: 4.59.0 +======= + rolldown: 1.0.2 + rollup: 4.52.5 +>>>>>>> 9742820 (chore: wip) rollup-preset-solid@3.0.0(@types/babel__core@7.20.5)(solid-js@1.9.9): dependencies: @@ -18594,7 +20599,11 @@ snapshots: set-cookie-parser@2.7.1: {} +<<<<<<< HEAD set-cookie-parser@3.1.0: {} +======= + set-cookie-parser@2.7.2: {} +>>>>>>> 9742820 (chore: wip) set-function-length@1.2.2: dependencies: @@ -18716,6 +20725,8 @@ snapshots: shell-quote@1.8.3: {} + shell-quote@1.8.4: {} + shiki@1.29.2: dependencies: '@shikijs/core': 1.29.2 @@ -19043,6 +21054,18 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} + svelte-check@4.3.3(picomatch@4.0.4)(svelte@5.42.1)(typescript@5.9.3): + dependencies: + '@jridgewell/trace-mapping': 0.3.31 + chokidar: 4.0.3 + fdir: 6.5.0(picomatch@4.0.4) + picocolors: 1.1.1 + sade: 1.8.1 + svelte: 5.42.1 + typescript: 5.9.3 + transitivePeerDependencies: + - picomatch + svelte-check@4.3.3(picomatch@4.0.4)(svelte@5.42.1)(typescript@5.9.3): dependencies: '@jridgewell/trace-mapping': 0.3.31 @@ -19191,7 +21214,20 @@ snapshots: fdir: 6.5.0(picomatch@4.0.4) picomatch: 4.0.4 +<<<<<<< HEAD tinyrainbow@3.1.0: {} +======= + tinyglobby@0.2.16: + dependencies: + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 + + tinypool@1.1.1: {} + + tinyrainbow@2.0.0: {} + + tinyspy@4.0.4: {} +>>>>>>> 9742820 (chore: wip) tldts-core@6.1.86: {} @@ -19237,6 +21273,10 @@ snapshots: dependencies: typescript: 5.9.3 + ts-api-utils@2.5.0(typescript@5.8.3): + dependencies: + typescript: 5.8.3 + ts-interface-checker@0.1.13: {} ts-morph@12.0.0: @@ -19422,16 +21462,23 @@ snapshots: dependencies: esbuild: 0.15.18 +<<<<<<< HEAD tsup-preset-solid@2.2.0(esbuild@0.27.7)(solid-js@1.9.9)(tsup@8.5.0(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.8.1)): dependencies: esbuild-plugin-solid: 0.5.0(esbuild@0.27.7)(solid-js@1.9.9) tsup: 8.5.0(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.8.1) +======= + tsup-preset-solid@2.2.0(esbuild@0.25.11)(solid-js@1.9.9)(tsup@8.5.0(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.9.0)): + dependencies: + esbuild-plugin-solid: 0.5.0(esbuild@0.25.11)(solid-js@1.9.9) + tsup: 8.5.0(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) transitivePeerDependencies: - esbuild - solid-js - supports-color - tsup@8.5.0(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.8.1): + tsup@8.5.0(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.9.0): dependencies: bundle-require: 5.1.0(esbuild@0.25.11) cac: 6.7.14 @@ -19442,7 +21489,7 @@ snapshots: fix-dts-default-cjs-exports: 1.0.1 joycon: 3.1.1 picocolors: 1.1.1 - postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(yaml@2.8.1) + postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(yaml@2.9.0) resolve-from: 5.0.0 rollup: 4.59.0 source-map: 0.8.0-beta.0 @@ -19451,7 +21498,7 @@ snapshots: tinyglobby: 0.2.15 tree-kill: 1.2.2 optionalDependencies: - postcss: 8.5.6 + postcss: 8.5.15 typescript: 5.8.3 transitivePeerDependencies: - jiti @@ -19742,14 +21789,18 @@ snapshots: pathe: 2.0.3 picomatch: 4.0.4 - unplugin-vue@7.0.3(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(vue@3.5.22(typescript@5.8.3))(yaml@2.8.1): + unplugin-vue@7.0.3(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(vue@3.5.22(typescript@5.8.3))(yaml@2.9.0): dependencies: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 '@vue/reactivity': 3.5.22 debug: 4.4.3 unplugin: 2.3.10 +<<<<<<< HEAD vite: 7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + vite: 7.2.6(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) vue: 3.5.22(typescript@5.8.3) transitivePeerDependencies: - '@types/node' @@ -19828,7 +21879,20 @@ snapshots: util-deprecate@1.0.2: {} +<<<<<<< HEAD uuid@3.3.2: {} +======= + utils-merge@1.0.1: {} + + uuid@8.3.2: {} + + uvu@0.5.6: + dependencies: + dequal: 2.0.3 + diff: 5.2.0 + kleur: 4.1.5 + sade: 1.8.1 +>>>>>>> 9742820 (chore: wip) v8-compile-cache-lib@3.0.1: {} @@ -19842,6 +21906,7 @@ snapshots: validate-html-nesting@1.2.3: {} +<<<<<<< HEAD vercel@32.7.2: dependencies: '@vercel/build-utils': 7.3.0 @@ -19856,6 +21921,22 @@ snapshots: '@vercel/ruby': 2.0.4 '@vercel/static-build': 2.0.14 chokidar: 3.3.1 +======= + vary@1.1.2: {} + + vercel@29.4.0(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(ts-node@10.9.1(@types/node@22.18.12)(typescript@5.8.3)): + dependencies: + '@vercel/build-utils': 6.7.3 + '@vercel/go': 2.5.1 + '@vercel/hydrogen': 0.0.64 + '@vercel/next': 3.8.5 + '@vercel/node': 2.14.3 + '@vercel/python': 3.1.60 + '@vercel/redwood': 1.1.15 + '@vercel/remix-builder': 1.8.10(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(ts-node@10.9.1(@types/node@22.18.12)(typescript@5.8.3)) + '@vercel/ruby': 1.3.76 + '@vercel/static-build': 1.3.32 +>>>>>>> 9742820 (chore: wip) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -19878,7 +21959,11 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.3 +<<<<<<< HEAD vinxi@0.5.8(@types/node@24.10.1)(better-sqlite3@12.10.0)(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(rolldown@1.0.0-beta.52)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1): +======= + vinxi@0.5.8(@types/node@24.10.1)(db0@0.3.4)(ioredis@5.8.2)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(rolldown@1.0.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): +>>>>>>> 9742820 (chore: wip) dependencies: '@babel/core': 7.28.5 '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) @@ -19899,7 +21984,11 @@ snapshots: hookable: 5.5.3 http-proxy: 1.18.1 micromatch: 4.0.8 +<<<<<<< HEAD nitropack: 2.12.8(better-sqlite3@12.10.0)(rolldown@1.0.0-beta.52) +======= + nitropack: 2.12.8(rolldown@1.0.2) +>>>>>>> 9742820 (chore: wip) node-fetch-native: 1.6.7 path-to-regexp: 6.3.0 pathe: 1.1.2 @@ -19911,8 +22000,13 @@ snapshots: ufo: 1.6.1 unctx: 2.4.1 unenv: 1.10.0 +<<<<<<< HEAD unstorage: 1.17.1(db0@0.3.4(better-sqlite3@12.10.0))(ioredis@5.8.2) vite: 6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + unstorage: 1.17.1(db0@0.3.4)(ioredis@5.8.2) + vite: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) zod: 3.25.76 transitivePeerDependencies: - '@azure/app-configuration' @@ -19959,6 +22053,7 @@ snapshots: - xml2js - yaml +<<<<<<< HEAD vite-dev-rpc@1.1.0(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): dependencies: birpc: 2.6.1 @@ -19968,6 +22063,35 @@ snapshots: vite-hot-client@2.1.0(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): dependencies: vite: 7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + vite-dev-rpc@1.1.0(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): + dependencies: + birpc: 2.6.1 + vite: 7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-hot-client: 2.1.0(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + + vite-hot-client@2.1.0(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): + dependencies: + vite: 7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + vite-imagetools@10.0.0(rollup@4.52.5)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.52.5) + imagetools-core: 9.1.0 + sharp: 0.34.4 + vite: 8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - rollup + + vite-imagetools@10.0.0(rollup@4.52.5)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.52.5) + imagetools-core: 9.1.0 + sharp: 0.34.4 + vite: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - rollup +>>>>>>> 9742820 (chore: wip) vite-imagetools@7.1.1(rollup@4.59.0): dependencies: @@ -19977,7 +22101,114 @@ snapshots: transitivePeerDependencies: - rollup +<<<<<<< HEAD vite-plugin-inspect@11.3.3(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): +======= + vite-node@1.6.1(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0): + dependencies: + cac: 6.7.14 + debug: 4.4.3 + pathe: 1.1.2 + picocolors: 1.1.1 + vite: 5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vite-node@3.2.4(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + cac: 6.7.14 + debug: 4.4.3 + es-module-lexer: 1.7.0 + pathe: 2.0.3 + vite: 7.2.6(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - '@types/node' + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + optional: true + + vite-node@3.2.4(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + cac: 6.7.14 + debug: 4.4.3 + es-module-lexer: 1.7.0 + pathe: 2.0.3 + vite: 7.2.6(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - '@types/node' + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + vite-node@3.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + cac: 6.7.14 + debug: 4.4.3 + es-module-lexer: 1.7.0 + pathe: 2.0.3 + vite: 7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - '@types/node' + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + vite-node@3.2.4(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + cac: 6.7.14 + debug: 4.4.3 + es-module-lexer: 1.7.0 + pathe: 2.0.3 + vite: 7.2.6(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - '@types/node' + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + vite-plugin-inspect@11.3.3(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): +>>>>>>> 9742820 (chore: wip) dependencies: ansis: 4.2.0 debug: 4.4.3 @@ -19987,12 +22218,21 @@ snapshots: perfect-debounce: 2.0.0 sirv: 3.0.2 unplugin-utils: 0.3.1 +<<<<<<< HEAD vite: 7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vite-dev-rpc: 1.1.0(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) transitivePeerDependencies: - supports-color vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): +======= + vite: 7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-dev-rpc: 1.1.0(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + transitivePeerDependencies: + - supports-color + + vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): +>>>>>>> 9742820 (chore: wip) dependencies: '@babel/core': 7.28.5 '@types/babel__core': 7.20.5 @@ -20000,14 +22240,23 @@ snapshots: merge-anything: 5.1.7 solid-js: 1.9.9 solid-refresh: 0.6.3(solid-js@1.9.9) +<<<<<<< HEAD vite: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vitefu: 1.1.1(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + vite: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vitefu: 1.1.1(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) optionalDependencies: '@testing-library/jest-dom': 6.9.1 transitivePeerDependencies: - supports-color +<<<<<<< HEAD vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): +======= + vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): +>>>>>>> 9742820 (chore: wip) dependencies: '@babel/core': 7.28.5 '@types/babel__core': 7.20.5 @@ -20015,13 +22264,19 @@ snapshots: merge-anything: 5.1.7 solid-js: 1.9.9 solid-refresh: 0.6.3(solid-js@1.9.9) +<<<<<<< HEAD vite: 6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vitefu: 1.1.1(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + vite: 8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vitefu: 1.1.1(vite@8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) optionalDependencies: '@testing-library/jest-dom': 6.9.1 transitivePeerDependencies: - supports-color +<<<<<<< HEAD vite-plugin-vue-devtools@8.0.3(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3)): dependencies: '@vue/devtools-core': 8.0.3(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3)) @@ -20031,12 +22286,27 @@ snapshots: vite: 7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vite-plugin-inspect: 11.3.3(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) vite-plugin-vue-inspector: 5.3.2(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) +======= + vite-plugin-vue-devtools@8.0.3(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vue@3.5.22(typescript@5.8.3)): + dependencies: + '@vue/devtools-core': 8.0.3(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vue@3.5.22(typescript@5.8.3)) + '@vue/devtools-kit': 8.0.3 + '@vue/devtools-shared': 8.0.3 + sirv: 3.0.2 + vite: 7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-plugin-inspect: 11.3.3(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + vite-plugin-vue-inspector: 5.3.2(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 9742820 (chore: wip) transitivePeerDependencies: - '@nuxt/kit' - supports-color - vue +<<<<<<< HEAD vite-plugin-vue-inspector@5.3.2(vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): +======= + vite-plugin-vue-inspector@5.3.2(vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): +>>>>>>> 9742820 (chore: wip) dependencies: '@babel/core': 7.28.5 '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.5) @@ -20047,11 +22317,19 @@ snapshots: '@vue/compiler-dom': 3.5.22 kolorist: 1.8.0 magic-string: 0.30.21 +<<<<<<< HEAD vite: 7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) transitivePeerDependencies: - supports-color vite-prerender-plugin@0.5.12(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): +======= + vite: 7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + transitivePeerDependencies: + - supports-color + + vite-prerender-plugin@0.5.12(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): +>>>>>>> 9742820 (chore: wip) dependencies: kolorist: 1.8.0 magic-string: 0.30.21 @@ -20059,6 +22337,7 @@ snapshots: simple-code-frame: 1.3.0 source-map: 0.7.6 stack-trace: 1.0.0-pre2 +<<<<<<< HEAD vite: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vite-prerender-plugin@0.5.12(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): @@ -20070,29 +22349,41 @@ snapshots: source-map: 0.7.6 stack-trace: 1.0.0-pre2 vite: 6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + vite: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) - vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)): + vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): dependencies: debug: 4.4.3 globrex: 0.1.2 tsconfck: 3.1.6(typescript@5.8.3) optionalDependencies: - vite: 5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0) + vite: 8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) transitivePeerDependencies: - supports-color - typescript +<<<<<<< HEAD vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): +======= + vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): +>>>>>>> 9742820 (chore: wip) dependencies: debug: 4.4.3 globrex: 0.1.2 tsconfck: 3.1.6(typescript@5.8.3) optionalDependencies: +<<<<<<< HEAD vite: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + vite: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) transitivePeerDependencies: - supports-color - typescript +<<<<<<< HEAD vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): dependencies: debug: 4.4.3 @@ -20109,15 +22400,23 @@ snapshots: esbuild: 0.21.5 postcss: 8.5.6 rollup: 4.59.0 +======= + vite@5.4.21(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0): + dependencies: + esbuild: 0.21.5 + postcss: 8.5.15 + rollup: 4.52.5 +>>>>>>> 9742820 (chore: wip) optionalDependencies: '@types/node': 22.18.12 fsevents: 2.3.3 less: 4.4.2 - lightningcss: 1.30.2 + lightningcss: 1.32.0 sass: 1.93.2 stylus: 0.62.0 terser: 5.44.0 +<<<<<<< HEAD vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1): dependencies: esbuild: 0.25.11 @@ -20139,6 +22438,9 @@ snapshots: yaml: 2.8.1 vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1): +======= + vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): +>>>>>>> 9742820 (chore: wip) dependencies: esbuild: 0.25.11 fdir: 6.5.0(picomatch@4.0.4) @@ -20151,13 +22453,14 @@ snapshots: fsevents: 2.3.3 jiti: 2.6.1 less: 4.4.2 - lightningcss: 1.30.2 + lightningcss: 1.32.0 sass: 1.93.2 stylus: 0.62.0 terser: 5.44.0 tsx: 4.20.6 - yaml: 2.8.1 + yaml: 2.9.0 +<<<<<<< HEAD vite@6.4.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1): dependencies: esbuild: 0.25.11 @@ -20165,40 +22468,102 @@ snapshots: picomatch: 4.0.4 postcss: 8.5.6 rollup: 4.59.0 +======= + vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + esbuild: 0.25.11 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.52.5 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 24.10.1 + fsevents: 2.3.3 + jiti: 2.6.1 + less: 4.4.2 + lightningcss: 1.32.0 + sass: 1.93.2 + stylus: 0.62.0 + terser: 5.44.0 + tsx: 4.20.6 + yaml: 2.9.0 + + vite@7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + esbuild: 0.25.11 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.52.5 +>>>>>>> 9742820 (chore: wip) tinyglobby: 0.2.15 optionalDependencies: '@types/node': 24.9.1 fsevents: 2.3.3 jiti: 2.6.1 less: 4.4.2 - lightningcss: 1.30.2 + lightningcss: 1.32.0 sass: 1.93.2 stylus: 0.62.0 terser: 5.44.0 tsx: 4.20.6 - yaml: 2.8.1 + yaml: 2.9.0 +<<<<<<< HEAD vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1): +======= + vite@7.2.6(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): +>>>>>>> 9742820 (chore: wip) dependencies: esbuild: 0.27.7 fdir: 6.5.0(picomatch@4.0.4) picomatch: 4.0.4 postcss: 8.5.6 +<<<<<<< HEAD rollup: 4.59.0 +======= + rollup: 4.52.5 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 22.18.12 + fsevents: 2.3.3 + jiti: 2.6.1 + less: 4.4.2 + lightningcss: 1.32.0 + sass: 1.93.2 + stylus: 0.62.0 + terser: 5.44.0 + tsx: 4.20.6 + yaml: 2.9.0 + optional: true + + vite@7.2.6(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + esbuild: 0.25.11 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.52.5 +>>>>>>> 9742820 (chore: wip) tinyglobby: 0.2.15 optionalDependencies: '@types/node': 24.0.13 fsevents: 2.3.3 jiti: 2.6.1 less: 4.4.2 - lightningcss: 1.30.2 + lightningcss: 1.32.0 sass: 1.93.2 stylus: 0.62.0 terser: 5.44.0 tsx: 4.20.6 - yaml: 2.8.1 + yaml: 2.9.0 +<<<<<<< HEAD vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1): +======= + vite@7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): +>>>>>>> 9742820 (chore: wip) dependencies: esbuild: 0.27.7 fdir: 6.5.0(picomatch@4.0.4) @@ -20211,14 +22576,18 @@ snapshots: fsevents: 2.3.3 jiti: 2.6.1 less: 4.4.2 - lightningcss: 1.30.2 + lightningcss: 1.32.0 sass: 1.93.2 stylus: 0.62.0 terser: 5.44.0 tsx: 4.20.6 - yaml: 2.8.1 + yaml: 2.9.0 +<<<<<<< HEAD vite@7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1): +======= + vite@7.2.6(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): +>>>>>>> 9742820 (chore: wip) dependencies: esbuild: 0.27.7 fdir: 6.5.0(picomatch@4.0.4) @@ -20231,13 +22600,14 @@ snapshots: fsevents: 2.3.3 jiti: 2.6.1 less: 4.4.2 - lightningcss: 1.30.2 + lightningcss: 1.32.0 sass: 1.93.2 stylus: 0.62.0 terser: 5.44.0 tsx: 4.20.6 - yaml: 2.8.1 + yaml: 2.9.0 +<<<<<<< HEAD vitefu@1.1.1(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): optionalDependencies: vite: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) @@ -20265,6 +22635,89 @@ snapshots: '@vitest/utils': 4.1.7 es-module-lexer: 2.1.0 expect-type: 1.3.0 +======= + vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + lightningcss: 1.32.0 + picomatch: 4.0.4 + postcss: 8.5.15 + rolldown: 1.0.2 + tinyglobby: 0.2.16 + optionalDependencies: + '@types/node': 22.18.12 + esbuild: 0.17.6 + fsevents: 2.3.3 + jiti: 2.6.1 + less: 4.4.2 + sass: 1.93.2 + stylus: 0.62.0 + terser: 5.44.0 + tsx: 4.20.6 + yaml: 2.9.0 + + vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + lightningcss: 1.32.0 + picomatch: 4.0.4 + postcss: 8.5.15 + rolldown: 1.0.2 + tinyglobby: 0.2.16 + optionalDependencies: + '@types/node': 24.0.13 + fsevents: 2.3.3 + jiti: 2.6.1 + less: 4.4.2 + sass: 1.93.2 + stylus: 0.62.0 + terser: 5.44.0 + tsx: 4.20.6 + yaml: 2.9.0 + + vite@8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + lightningcss: 1.32.0 + picomatch: 4.0.4 + postcss: 8.5.15 + rolldown: 1.0.2 + tinyglobby: 0.2.16 + optionalDependencies: + '@types/node': 24.10.1 + esbuild: 0.25.11 + fsevents: 2.3.3 + jiti: 2.6.1 + less: 4.4.2 + sass: 1.93.2 + stylus: 0.62.0 + terser: 5.44.0 + tsx: 4.20.6 + yaml: 2.9.0 + + vitefu@1.1.1(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): + optionalDependencies: + vite: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + vitefu@1.1.1(vite@7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): + optionalDependencies: + vite: 7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + vitefu@1.1.1(vite@8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): + optionalDependencies: + vite: 8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + '@types/chai': 5.2.3 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@7.2.6(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.3 + debug: 4.4.3 + expect-type: 1.2.2 +>>>>>>> 9742820 (chore: wip) magic-string: 0.30.21 obug: 2.1.1 pathe: 2.0.3 @@ -20273,17 +22726,74 @@ snapshots: tinybench: 2.9.0 tinyexec: 1.0.2 tinyglobby: 0.2.15 +<<<<<<< HEAD tinyrainbow: 3.1.0 vite: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@edge-runtime/vm': 3.1.7 +======= + tinypool: 1.1.1 + tinyrainbow: 2.0.0 + vite: 7.2.6(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-node: 3.2.4(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + why-is-node-running: 2.3.0 + optionalDependencies: + '@edge-runtime/vm': 3.2.0 + '@types/debug': 4.1.12 + '@types/node': 22.18.12 + jsdom: 26.1.0 + transitivePeerDependencies: + - jiti + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + optional: true + + vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + '@types/chai': 5.2.3 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@7.2.6(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.3 + debug: 4.4.3 + expect-type: 1.2.2 + magic-string: 0.30.21 + pathe: 2.0.3 + picomatch: 4.0.3 + std-env: 3.10.0 + tinybench: 2.9.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.15 + tinypool: 1.1.1 + tinyrainbow: 2.0.0 + vite: 7.2.6(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-node: 3.2.4(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + why-is-node-running: 2.3.0 + optionalDependencies: + '@edge-runtime/vm': 3.2.0 + '@types/debug': 4.1.12 +>>>>>>> 9742820 (chore: wip) '@types/node': 24.0.13 '@vitest/coverage-v8': 4.1.7(vitest@4.1.7) jsdom: 26.1.0 transitivePeerDependencies: - msw +<<<<<<< HEAD vitest@4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.0.13)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): dependencies: '@vitest/expect': 4.1.7 @@ -20295,6 +22805,21 @@ snapshots: '@vitest/utils': 4.1.7 es-module-lexer: 2.1.0 expect-type: 1.3.0 +======= + vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + '@types/chai': 5.2.3 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.3 + debug: 4.4.3 + expect-type: 1.2.2 +>>>>>>> 9742820 (chore: wip) magic-string: 0.30.21 obug: 2.1.1 pathe: 2.0.3 @@ -20303,8 +22828,15 @@ snapshots: tinybench: 2.9.0 tinyexec: 1.0.2 tinyglobby: 0.2.15 +<<<<<<< HEAD tinyrainbow: 3.1.0 vite: 7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + tinypool: 1.1.1 + tinyrainbow: 2.0.0 + vite: 7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-node: 3.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) why-is-node-running: 2.3.0 optionalDependencies: '@edge-runtime/vm': 3.1.7 @@ -20344,6 +22876,7 @@ snapshots: transitivePeerDependencies: - msw +<<<<<<< HEAD vitest@4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.9.1)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@6.4.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): dependencies: '@vitest/expect': 4.1.7 @@ -20355,6 +22888,21 @@ snapshots: '@vitest/utils': 4.1.7 es-module-lexer: 2.1.0 expect-type: 1.3.0 +======= + vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + '@types/chai': 5.2.3 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@7.2.6(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.3 + debug: 4.4.3 + expect-type: 1.2.2 +>>>>>>> 9742820 (chore: wip) magic-string: 0.30.21 obug: 2.1.1 pathe: 2.0.3 @@ -20363,8 +22911,15 @@ snapshots: tinybench: 2.9.0 tinyexec: 1.0.2 tinyglobby: 0.2.15 +<<<<<<< HEAD tinyrainbow: 3.1.0 vite: 6.4.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) +======= + tinypool: 1.1.1 + tinyrainbow: 2.0.0 + vite: 7.2.6(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-node: 3.2.4(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 9742820 (chore: wip) why-is-node-running: 2.3.0 optionalDependencies: '@edge-runtime/vm': 3.1.7 @@ -20598,7 +23153,7 @@ snapshots: yaml@1.10.2: {} - yaml@2.8.1: {} + yaml@2.9.0: {} yargs-parser@21.1.1: {} @@ -20669,10 +23224,6 @@ snapshots: dependencies: zod: 3.25.76 - zod@3.22.4: {} - - zod@3.25.48: {} - zod@3.25.76: {} zwitch@2.0.4: {} diff --git a/website/package.json b/website/package.json index 7bb6a066..7bf581be 100644 --- a/website/package.json +++ b/website/package.json @@ -33,8 +33,8 @@ "qwik": "qwik" }, "devDependencies": { - "@qwik.dev/core": "2.0.0-beta.9", - "@qwik.dev/router": "2.0.0-beta.9", + "@qwik.dev/core": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99", + "@qwik.dev/router": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99", "@shikijs/rehype": "^3.13.0", "@tailwindcss/vite": "^4.1.13", "@types/eslint": "^8.56.12", @@ -45,7 +45,7 @@ "@vercel/og": "^0.6.5", "dotenv": "^16.4.7", "eslint": "^8.57.1", - "eslint-plugin-qwik": "2.0.0-beta.9", + "eslint-plugin-qwik": "2.0.0-beta.35", "gray-matter": "^4.0.3", "prettier": "^3.5.2", "rehype-external-links": "^3.0.0", @@ -57,7 +57,7 @@ "typescript": "^5.7.3", "undici": "^7.3.0", "vercel": "^32.0.0", - "vite": "^5.4.20", + "vite": "8.0.14", "vite-imagetools": "^7.0.5", "vite-tsconfig-paths": "^5.1.4", "wrangler": "^4.98.0" diff --git a/website/src/routes/(docs)/qwik/guides/(main-concepts)/input-components/index.mdx b/website/src/routes/(docs)/qwik/guides/(main-concepts)/input-components/index.mdx index 67300a9d..266b876b 100644 --- a/website/src/routes/(docs)/qwik/guides/(main-concepts)/input-components/index.mdx +++ b/website/src/routes/(docs)/qwik/guides/(main-concepts)/input-components/index.mdx @@ -66,14 +66,14 @@ In the first step, you create a new file for the `TextInput` component and, if y ```tsx import type { FieldElementProps } from '@formisch/qwik'; -import { component$, type ReadonlySignal } from '@qwik.dev/core'; +import { component$, type Signal } from '@qwik.dev/core'; interface TextInputProps extends FieldElementProps { type: 'text' | 'email' | 'tel' | 'password' | 'url' | 'date'; label?: string; placeholder?: string; - input: ReadonlySignal; - errors: ReadonlySignal<[string, ...string[]] | null>; + input: Readonly>; + errors: Readonly>; required?: boolean; } ``` @@ -84,7 +84,7 @@ In the next step, add the component function to the file. We can destructure the ```tsx import type { FieldElementProps } from '@formisch/qwik'; -import { component$, type ReadonlySignal } from '@qwik.dev/core'; +import { component$, type Signal } from '@qwik.dev/core'; interface TextInputProps extends FieldElementProps { /* ... */ @@ -102,7 +102,7 @@ After that, you can add the JSX code to the return statement. ```tsx import type { FieldElementProps } from '@formisch/qwik'; -import { component$, type ReadonlySignal } from '@qwik.dev/core'; +import { component$, type Signal } from '@qwik.dev/core'; interface TextInputProps extends FieldElementProps { /* ... */ @@ -142,14 +142,14 @@ Below is an overview of the entire code of the `TextInput` component. ```tsx import type { FieldElementProps } from '@formisch/qwik'; -import { component$, type ReadonlySignal } from '@qwik.dev/core'; +import { component$, type Signal } from '@qwik.dev/core'; interface TextInputProps extends FieldElementProps { type: 'text' | 'email' | 'tel' | 'password' | 'url' | 'date'; label?: string; placeholder?: string; - input: ReadonlySignal; - errors: ReadonlySignal<[string, ...string[]] | null>; + input: Readonly>; + errors: Readonly>; required?: boolean; } From 4a1955a8ece06ec9368c305ec2d83d6a6fa2a4e4 Mon Sep 17 00:00:00 2001 From: maiieul <45822175+maiieul@users.noreply.github.com> Date: Thu, 11 Jun 2026 07:18:25 +0200 Subject: [PATCH 2/3] fix: double render bug with pkg.pr.new --- frameworks/qwik/package.json | 6 +- packages/core/package.json | 2 +- playgrounds/qwik/package.json | 8 +- playgrounds/qwik/src/entry.preview.tsx | 1 - pnpm-lock.yaml | 1599 ++++++++++++++++++++++-- website/package.json | 4 +- 6 files changed, 1497 insertions(+), 123 deletions(-) diff --git a/frameworks/qwik/package.json b/frameworks/qwik/package.json index 2695dd0b..6812f242 100644 --- a/frameworks/qwik/package.json +++ b/frameworks/qwik/package.json @@ -47,16 +47,16 @@ "@formisch/core": "workspace:*", "@formisch/eslint-config": "workspace:*", "@formisch/methods": "workspace:*", - "@qwik.dev/core": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99", + "@qwik.dev/core": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671", "@types/node": "24.0.13", "eslint": "9.31.0", - "eslint-plugin-qwik": "2.0.0-beta.35", + "eslint-plugin-qwik": "https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671", "globals": "16.3.0", "prettier": "3.6.2", "tsdown": "0.12.9", "typescript": "5.8.3", "valibot": "^1.4.1", - "vite": "8.0.14", + "vite": "7.3.5", "vite-tsconfig-paths": "^5.1.4" }, "peerDependencies": { diff --git a/packages/core/package.json b/packages/core/package.json index 04701a67..21511574 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -75,7 +75,7 @@ "@angular/core": "^21.0.0", "@formisch/eslint-config": "workspace:*", "@preact/signals": "^2.9.0", - "@qwik.dev/core": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99", + "@qwik.dev/core": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671", "@types/node": "24.0.13", "@types/react": "^19.2.5", "@vitest/coverage-v8": "^4.1.7", diff --git a/playgrounds/qwik/package.json b/playgrounds/qwik/package.json index 54dc65a4..e9bc57b0 100644 --- a/playgrounds/qwik/package.json +++ b/playgrounds/qwik/package.json @@ -31,12 +31,12 @@ "devDependencies": { "@eslint/js": "^9.31.0", "@formisch/qwik": "workspace:*", - "@qwik.dev/core": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99", - "@qwik.dev/router": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99", + "@qwik.dev/core": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671", + "@qwik.dev/router": "https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@1778671", "@tailwindcss/vite": "^4.1.11", "@types/node": "24.0.13", "eslint": "9.31.0", - "eslint-plugin-qwik": "2.0.0-beta.35", + "eslint-plugin-qwik": "https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671", "globals": "16.3.0", "prettier": "3.6.2", "prettier-plugin-tailwindcss": "^0.6.14", @@ -44,7 +44,7 @@ "typescript": "5.8.3", "typescript-eslint": "8.36.0", "typescript-plugin-css-modules": "^5.1.0", - "vite": "8.0.14", + "vite": "7.3.5", "vite-tsconfig-paths": "^5.1.4" } } diff --git a/playgrounds/qwik/src/entry.preview.tsx b/playgrounds/qwik/src/entry.preview.tsx index d2582cbe..b59ce341 100644 --- a/playgrounds/qwik/src/entry.preview.tsx +++ b/playgrounds/qwik/src/entry.preview.tsx @@ -11,7 +11,6 @@ * */ import { createQwikRouter } from '@qwik.dev/router/middleware/node'; -// make sure qwikRouterConfig is imported before entry import render from './entry.ssr'; /** diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5be0b3a1..bbe88a26 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -85,11 +85,15 @@ importers: version: link:../../packages/methods '@preact/preset-vite': specifier: ^2.10.5 +<<<<<<< HEAD <<<<<<< HEAD version: 2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.59.0)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) ======= version: 2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.52.5)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) >>>>>>> 9742820 (chore: wip) +======= + version: 2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.61.1)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@preact/signals': specifier: ^2.9.0 version: 2.9.0(preact@10.29.2) @@ -158,6 +162,7 @@ importers: specifier: workspace:* version: link:../../packages/methods '@qwik.dev/core': +<<<<<<< HEAD <<<<<<< HEAD specifier: 2.0.0-beta.5 version: 2.0.0-beta.5(prettier@3.6.2)(vite@7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) @@ -165,6 +170,10 @@ importers: specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99 version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) >>>>>>> 9742820 (chore: wip) +======= + specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671 + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671(prettier@3.6.2)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@types/node': specifier: 24.0.13 version: 24.0.13 @@ -172,8 +181,8 @@ importers: specifier: 9.31.0 version: 9.31.0(jiti@2.6.1) eslint-plugin-qwik: - specifier: 2.0.0-beta.35 - version: 2.0.0-beta.35(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3) + specifier: https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671 + version: https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3) globals: specifier: 16.3.0 version: 16.3.0 @@ -190,6 +199,7 @@ importers: specifier: ^1.4.1 version: 1.4.1(typescript@5.8.3) vite: +<<<<<<< HEAD <<<<<<< HEAD specifier: 7.3.2 version: 7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) @@ -203,6 +213,13 @@ importers: specifier: ^5.1.4 version: 5.1.4(typescript@5.8.3)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) >>>>>>> 9742820 (chore: wip) +======= + specifier: 7.3.5 + version: 7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-tsconfig-paths: + specifier: ^5.1.4 + version: 5.1.4(typescript@5.8.3)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) frameworks/react: dependencies: @@ -346,11 +363,15 @@ importers: version: 8.5.0(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.9.0) tsup-preset-solid: specifier: ^2.2.0 +<<<<<<< HEAD <<<<<<< HEAD version: 2.2.0(esbuild@0.27.7)(solid-js@1.9.9)(tsup@8.5.0(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.8.1)) ======= version: 2.2.0(esbuild@0.25.11)(solid-js@1.9.9)(tsup@8.5.0(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.9.0)) >>>>>>> 9742820 (chore: wip) +======= + version: 2.2.0(esbuild@0.27.7)(solid-js@1.9.9)(tsup@8.5.0(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) typescript: specifier: ^5.8.3 version: 5.8.3 @@ -359,6 +380,7 @@ importers: version: 1.4.1(typescript@5.8.3) vite-plugin-solid: specifier: ^2.11.6 +<<<<<<< HEAD <<<<<<< HEAD version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) vitest: @@ -366,6 +388,9 @@ importers: version: 4.1.7(@edge-runtime/vm@3.1.7)(@types/node@24.0.13)(@vitest/coverage-v8@4.1.7)(jsdom@26.1.0)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) ======= version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +======= + version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@8.0.14(@types/node@24.10.1)(esbuild@0.27.7)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) vitest: specifier: 3.2.4 version: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) @@ -548,6 +573,7 @@ importers: specifier: ^2.9.0 version: 2.9.0(preact@10.29.2) '@qwik.dev/core': +<<<<<<< HEAD <<<<<<< HEAD specifier: 2.0.0-beta.5 version: 2.0.0-beta.5(prettier@3.6.2)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@4.1.7) @@ -555,6 +581,10 @@ importers: specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99 version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) >>>>>>> 9742820 (chore: wip) +======= + specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671 + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(esbuild@0.27.7)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@types/node': specifier: 24.0.13 version: 24.0.13 @@ -717,6 +747,7 @@ importers: version: link:../../packages/eslint-config '@preact/preset-vite': specifier: ^2.10.5 +<<<<<<< HEAD <<<<<<< HEAD version: 2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.59.0)(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) '@tailwindcss/vite': @@ -724,6 +755,9 @@ importers: version: 4.1.16(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) ======= version: 2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.52.5)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +======= + version: 2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.61.1)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@tailwindcss/vite': specifier: ^4.1.11 version: 4.1.16(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) @@ -768,6 +802,7 @@ importers: specifier: workspace:* version: link:../../frameworks/qwik '@qwik.dev/core': +<<<<<<< HEAD <<<<<<< HEAD specifier: 2.0.0-beta.5 version: 2.0.0-beta.5(prettier@3.6.2)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@4.1.7) @@ -780,13 +815,21 @@ importers: ======= specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99 version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +======= + specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671 + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671(prettier@3.6.2)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@qwik.dev/router': - specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99 - version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.52.5)(typescript@5.8.3)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@1778671 + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@1778671(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671(prettier@3.6.2)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.61.1)(typescript@5.8.3)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) '@tailwindcss/vite': specifier: ^4.1.11 +<<<<<<< HEAD version: 4.1.16(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) >>>>>>> 9742820 (chore: wip) +======= + version: 4.1.16(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@types/node': specifier: 24.0.13 version: 24.0.13 @@ -794,8 +837,8 @@ importers: specifier: 9.31.0 version: 9.31.0(jiti@2.6.1) eslint-plugin-qwik: - specifier: 2.0.0-beta.35 - version: 2.0.0-beta.35(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3) + specifier: https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671 + version: https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3) globals: specifier: 16.3.0 version: 16.3.0 @@ -818,6 +861,7 @@ importers: specifier: ^5.1.0 version: 5.2.0(ts-node@10.9.1(@types/node@24.0.13)(typescript@5.8.3))(typescript@5.8.3) vite: +<<<<<<< HEAD <<<<<<< HEAD specifier: 6.4.2 version: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) @@ -831,6 +875,13 @@ importers: specifier: ^5.1.4 version: 5.1.4(typescript@5.8.3)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) >>>>>>> 9742820 (chore: wip) +======= + specifier: 7.3.5 + version: 7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-tsconfig-paths: + specifier: ^5.1.4 + version: 5.1.4(typescript@5.8.3)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) playgrounds/react: dependencies: @@ -1178,17 +1229,21 @@ importers: version: 2.0.0-beta.9(patch_hash=e002def78f4681060d18bc24d686c24ee1d1b997c399a2cb1c03baf3b860e4c8)(rollup@4.59.0)(typescript@5.8.3) ======= specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99 - version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) '@qwik.dev/router': specifier: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99 +<<<<<<< HEAD version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.52.5)(typescript@5.8.3)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) >>>>>>> 9742820 (chore: wip) +======= + version: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.61.1)(typescript@5.8.3)(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@shikijs/rehype': specifier: ^3.13.0 version: 3.13.0 '@tailwindcss/vite': specifier: ^4.1.13 - version: 4.1.16(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + version: 4.1.16(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) '@types/eslint': specifier: ^8.56.12 version: 8.56.12 @@ -1214,8 +1269,8 @@ importers: specifier: ^8.57.1 version: 8.57.1 eslint-plugin-qwik: - specifier: 2.0.0-beta.35 - version: 2.0.0-beta.35(eslint@8.57.1)(typescript@5.8.3) + specifier: https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671 + version: https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671(eslint@8.57.1)(typescript@5.8.3) gray-matter: specifier: ^4.0.3 version: 4.0.3 @@ -1255,10 +1310,11 @@ importers: version: 29.4.0(@types/node@22.18.12)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(ts-node@10.9.1(@types/node@22.18.12)(typescript@5.8.3)) >>>>>>> 9742820 (chore: wip) vite: - specifier: 8.0.14 - version: 8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + specifier: 7.3.5 + version: 7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) vite-imagetools: specifier: ^7.0.5 +<<<<<<< HEAD version: 7.1.1(rollup@4.59.0) vite-tsconfig-paths: specifier: ^5.1.4 @@ -1270,6 +1326,12 @@ importers: ======= version: 5.1.4(typescript@5.8.3)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) >>>>>>> 9742820 (chore: wip) +======= + version: 7.1.1(rollup@4.61.1) + vite-tsconfig-paths: + specifier: ^5.1.4 + version: 5.1.4(typescript@5.8.3)(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) packages: @@ -2082,11 +2144,25 @@ packages: cpu: [ppc64] os: [aix] +<<<<<<< HEAD '@esbuild/aix-ppc64@0.27.3': resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] +======= + '@esbuild/aix-ppc64@0.27.7': + resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.17.19': + resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/aix-ppc64@0.27.7': resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} @@ -2106,12 +2182,15 @@ packages: cpu: [arm64] os: [android] +<<<<<<< HEAD '@esbuild/android-arm64@0.27.3': resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==} engines: {node: '>=18'} cpu: [arm64] os: [android] +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/android-arm64@0.27.7': resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==} engines: {node: '>=18'} @@ -2136,10 +2215,23 @@ packages: cpu: [arm] os: [android] +<<<<<<< HEAD '@esbuild/android-arm@0.27.3': resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==} engines: {node: '>=18'} cpu: [arm] +======= + '@esbuild/android-arm@0.27.7': + resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.17.19': + resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} + engines: {node: '>=12'} + cpu: [x64] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [android] '@esbuild/android-arm@0.27.7': @@ -2160,11 +2252,25 @@ packages: cpu: [x64] os: [android] +<<<<<<< HEAD '@esbuild/android-x64@0.27.3': resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==} engines: {node: '>=18'} cpu: [x64] os: [android] +======= + '@esbuild/android-x64@0.27.7': + resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.17.19': + resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/android-x64@0.27.7': resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==} @@ -2184,10 +2290,23 @@ packages: cpu: [arm64] os: [darwin] +<<<<<<< HEAD '@esbuild/darwin-arm64@0.27.3': resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==} engines: {node: '>=18'} cpu: [arm64] +======= + '@esbuild/darwin-arm64@0.27.7': + resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.17.19': + resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} + engines: {node: '>=12'} + cpu: [x64] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [darwin] '@esbuild/darwin-arm64@0.27.7': @@ -2208,11 +2327,25 @@ packages: cpu: [x64] os: [darwin] +<<<<<<< HEAD '@esbuild/darwin-x64@0.27.3': resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==} engines: {node: '>=18'} cpu: [x64] os: [darwin] +======= + '@esbuild/darwin-x64@0.27.7': + resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.17.19': + resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/darwin-x64@0.27.7': resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==} @@ -2232,10 +2365,23 @@ packages: cpu: [arm64] os: [freebsd] +<<<<<<< HEAD '@esbuild/freebsd-arm64@0.27.3': resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==} engines: {node: '>=18'} cpu: [arm64] +======= + '@esbuild/freebsd-arm64@0.27.7': + resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.17.19': + resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} + engines: {node: '>=12'} + cpu: [x64] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [freebsd] '@esbuild/freebsd-arm64@0.27.7': @@ -2256,11 +2402,25 @@ packages: cpu: [x64] os: [freebsd] +<<<<<<< HEAD '@esbuild/freebsd-x64@0.27.3': resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] +======= + '@esbuild/freebsd-x64@0.27.7': + resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.17.19': + resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/freebsd-x64@0.27.7': resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==} @@ -2280,10 +2440,23 @@ packages: cpu: [arm64] os: [linux] +<<<<<<< HEAD '@esbuild/linux-arm64@0.27.3': resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==} engines: {node: '>=18'} cpu: [arm64] +======= + '@esbuild/linux-arm64@0.27.7': + resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.17.19': + resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} + engines: {node: '>=12'} + cpu: [arm] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [linux] '@esbuild/linux-arm64@0.27.7': @@ -2304,10 +2477,23 @@ packages: cpu: [arm] os: [linux] +<<<<<<< HEAD '@esbuild/linux-arm@0.27.3': resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==} engines: {node: '>=18'} cpu: [arm] +======= + '@esbuild/linux-arm@0.27.7': + resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.17.19': + resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} + engines: {node: '>=12'} + cpu: [ia32] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [linux] '@esbuild/linux-arm@0.27.7': @@ -2328,12 +2514,15 @@ packages: cpu: [ia32] os: [linux] +<<<<<<< HEAD '@esbuild/linux-ia32@0.27.3': resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==} engines: {node: '>=18'} cpu: [ia32] os: [linux] +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/linux-ia32@0.27.7': resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==} engines: {node: '>=18'} @@ -2358,10 +2547,23 @@ packages: cpu: [loong64] os: [linux] +<<<<<<< HEAD '@esbuild/linux-loong64@0.27.3': resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==} engines: {node: '>=18'} cpu: [loong64] +======= + '@esbuild/linux-loong64@0.27.7': + resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.17.19': + resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} + engines: {node: '>=12'} + cpu: [mips64el] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [linux] '@esbuild/linux-loong64@0.27.7': @@ -2382,10 +2584,23 @@ packages: cpu: [mips64el] os: [linux] +<<<<<<< HEAD '@esbuild/linux-mips64el@0.27.3': resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==} engines: {node: '>=18'} cpu: [mips64el] +======= + '@esbuild/linux-mips64el@0.27.7': + resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.17.19': + resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} + engines: {node: '>=12'} + cpu: [ppc64] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [linux] '@esbuild/linux-mips64el@0.27.7': @@ -2406,10 +2621,23 @@ packages: cpu: [ppc64] os: [linux] +<<<<<<< HEAD '@esbuild/linux-ppc64@0.27.3': resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==} engines: {node: '>=18'} cpu: [ppc64] +======= + '@esbuild/linux-ppc64@0.27.7': + resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.17.19': + resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} + engines: {node: '>=12'} + cpu: [riscv64] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [linux] '@esbuild/linux-ppc64@0.27.7': @@ -2430,10 +2658,23 @@ packages: cpu: [riscv64] os: [linux] +<<<<<<< HEAD '@esbuild/linux-riscv64@0.27.3': resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==} engines: {node: '>=18'} cpu: [riscv64] +======= + '@esbuild/linux-riscv64@0.27.7': + resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.17.19': + resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} + engines: {node: '>=12'} + cpu: [s390x] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [linux] '@esbuild/linux-riscv64@0.27.7': @@ -2454,10 +2695,23 @@ packages: cpu: [s390x] os: [linux] +<<<<<<< HEAD '@esbuild/linux-s390x@0.27.3': resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==} engines: {node: '>=18'} cpu: [s390x] +======= + '@esbuild/linux-s390x@0.27.7': + resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.17.19': + resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==} + engines: {node: '>=12'} + cpu: [x64] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [linux] '@esbuild/linux-s390x@0.27.7': @@ -2478,12 +2732,15 @@ packages: cpu: [x64] os: [linux] +<<<<<<< HEAD '@esbuild/linux-x64@0.27.3': resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==} engines: {node: '>=18'} cpu: [x64] os: [linux] +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/linux-x64@0.27.7': resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==} engines: {node: '>=18'} @@ -2496,10 +2753,23 @@ packages: cpu: [arm64] os: [netbsd] +<<<<<<< HEAD '@esbuild/netbsd-arm64@0.27.3': resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==} engines: {node: '>=18'} cpu: [arm64] +======= + '@esbuild/netbsd-arm64@0.27.7': + resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.17.19': + resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} + engines: {node: '>=12'} + cpu: [x64] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [netbsd] '@esbuild/netbsd-arm64@0.27.7': @@ -2520,12 +2790,15 @@ packages: cpu: [x64] os: [netbsd] +<<<<<<< HEAD '@esbuild/netbsd-x64@0.27.3': resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/netbsd-x64@0.27.7': resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==} engines: {node: '>=18'} @@ -2538,10 +2811,23 @@ packages: cpu: [arm64] os: [openbsd] +<<<<<<< HEAD '@esbuild/openbsd-arm64@0.27.3': resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==} engines: {node: '>=18'} cpu: [arm64] +======= + '@esbuild/openbsd-arm64@0.27.7': + resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.17.19': + resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} + engines: {node: '>=12'} + cpu: [x64] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [openbsd] '@esbuild/openbsd-arm64@0.27.7': @@ -2562,12 +2848,15 @@ packages: cpu: [x64] os: [openbsd] +<<<<<<< HEAD '@esbuild/openbsd-x64@0.27.3': resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/openbsd-x64@0.27.7': resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==} engines: {node: '>=18'} @@ -2580,11 +2869,25 @@ packages: cpu: [arm64] os: [openharmony] +<<<<<<< HEAD '@esbuild/openharmony-arm64@0.27.3': resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==} engines: {node: '>=18'} cpu: [arm64] os: [openharmony] +======= + '@esbuild/openharmony-arm64@0.27.7': + resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.17.19': + resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/openharmony-arm64@0.27.7': resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==} @@ -2604,11 +2907,25 @@ packages: cpu: [x64] os: [sunos] +<<<<<<< HEAD '@esbuild/sunos-x64@0.27.3': resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==} engines: {node: '>=18'} cpu: [x64] os: [sunos] +======= + '@esbuild/sunos-x64@0.27.7': + resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.17.19': + resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/sunos-x64@0.27.7': resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==} @@ -2628,10 +2945,23 @@ packages: cpu: [arm64] os: [win32] +<<<<<<< HEAD '@esbuild/win32-arm64@0.27.3': resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==} engines: {node: '>=18'} cpu: [arm64] +======= + '@esbuild/win32-arm64@0.27.7': + resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.17.19': + resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} + engines: {node: '>=12'} + cpu: [ia32] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [win32] '@esbuild/win32-arm64@0.27.7': @@ -2652,10 +2982,23 @@ packages: cpu: [ia32] os: [win32] +<<<<<<< HEAD '@esbuild/win32-ia32@0.27.3': resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==} engines: {node: '>=18'} cpu: [ia32] +======= + '@esbuild/win32-ia32@0.27.7': + resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.17.19': + resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} + engines: {node: '>=12'} + cpu: [x64] +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) os: [win32] '@esbuild/win32-ia32@0.27.7': @@ -2676,12 +3019,15 @@ packages: cpu: [x64] os: [win32] +<<<<<<< HEAD '@esbuild/win32-x64@0.27.3': resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==} engines: {node: '>=18'} cpu: [x64] os: [win32] +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/win32-x64@0.27.7': resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==} engines: {node: '>=18'} @@ -3533,16 +3879,31 @@ packages: '@quansync/fs@0.1.5': resolution: {integrity: sha512-lNS9hL2aS2NZgNW7BBj+6EBl4rOf8l+tQ0eRY6JWCI8jI2kc53gSoqbjojU0OnAWhzoXiOjFyGsHcDGePB3lhA==} - '@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99': - resolution: {tarball: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99} - version: 2.0.0-beta.35 + '@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671': + resolution: {tarball: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671} + version: 2.0.0-beta.37 engines: {node: ^20.3.0 || >=21.0.0} hasBin: true peerDependencies: prettier: '*' -<<<<<<< HEAD - vite: 6.4.2 - vitest: '>=2 <3' + vite: '>=6 <9' + vitest: '>=2 <4' + peerDependenciesMeta: + prettier: + optional: true + vitest: + optional: true + + '@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99': + resolution: {tarball: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99} + version: 2.0.0-beta.35 + engines: {node: ^20.3.0 || >=21.0.0} + hasBin: true + peerDependencies: + prettier: '*' +<<<<<<< HEAD + vite: 6.4.2 + vitest: '>=2 <3' ======= vite: '>=6 < 9' vitest: '>=2 <5' @@ -3553,6 +3914,7 @@ packages: vitest: optional: true +<<<<<<< HEAD <<<<<<< HEAD '@qwik.dev/core@2.0.0-beta.9': resolution: {integrity: sha512-MemsRTsLbqF17c/rfTWAojZTCpdKg6tWXs/xjpgeMcCzcmDwoqm3KrQ3GqgrBNu+7gMBPSWK0cb7hrd7q9uTQg==} @@ -3568,12 +3930,27 @@ packages: vitest: optional: true ======= +======= + '@qwik.dev/optimizer@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@1778671': + resolution: {tarball: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@1778671} + version: 2.1.0-beta.5 + engines: {node: ^20.3.0 || >=21.0.0} + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@qwik.dev/optimizer@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@7813a99': resolution: {tarball: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@7813a99} version: 2.1.0-beta.4 engines: {node: ^20.3.0 || >=21.0.0} >>>>>>> 9742820 (chore: wip) + '@qwik.dev/router@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@1778671': + resolution: {tarball: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@1778671} + version: 2.0.0-beta.37 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + peerDependencies: + '@qwik.dev/core': ^2.0.0-beta.37 + vite: '>=6 <9' + '@qwik.dev/router@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99': resolution: {tarball: https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99} version: 2.0.0-beta.35 @@ -3943,6 +4320,7 @@ packages: cpu: [arm] os: [android] +<<<<<<< HEAD '@rollup/rollup-android-arm64@4.59.0': resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==} cpu: [arm64] @@ -3970,34 +4348,134 @@ packages: '@rollup/rollup-linux-arm-gnueabihf@4.59.0': resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==} +======= + '@rollup/rollup-android-arm-eabi@4.61.1': + resolution: {integrity: sha512-JnBB8MdXj45cajvTuO5FmPlvFVJRQgvrz1uSEl3NwqFnReAPGwb8EanbGi4z2nRaqLzjJSv5/JmycoTKlRZxHA==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.52.5': + resolution: {integrity: sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-android-arm64@4.61.1': + resolution: {integrity: sha512-Jx2g7iSjw4AOT0HDPHM9RV3GNjRXwybWtSFZiZAYUTjUwjVrYIwq3kBf+LnhqJlzXFAqTAh2F7IGI+O568exPw==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.52.5': + resolution: {integrity: sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-arm64@4.61.1': + resolution: {integrity: sha512-0F1L/Z3Eqv8mT2n3dCpeO8GcTvHvVqkP5/t6DMsn0KzhYVcg+s7Ncl5DS8qjKYEeio6Az0Gt6nyBORay5qIlCA==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.52.5': + resolution: {integrity: sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.61.1': + resolution: {integrity: sha512-qLttcH871ujY4YcVfUSShhOw+CsoTatYz8gRbHO7Bb92QH059/P0y5do1KMs41fY0BpD2x4AJH/gID0zFiqVKQ==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.52.5': + resolution: {integrity: sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-arm64@4.61.1': + resolution: {integrity: sha512-fUI4RapGE0Oh3mb8mgfvC1O2nU1RpDZUKnDQm3xB1Ipg7C2wTs5Kstz7G2uWK99a8S2yTMq8/P4uycwNa0nJyw==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.52.5': + resolution: {integrity: sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.61.1': + resolution: {integrity: sha512-H5YrdvJaDtI/U9/emrD4b++xkvp3y/JvOe4rizHbxvkyMfRS/CiRYdji+Pl8D0brEaNFWUh1drQxgAGIl6Xudw==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.52.5': + resolution: {integrity: sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) cpu: [arm] os: [linux] libc: [glibc] +<<<<<<< HEAD '@rollup/rollup-linux-arm-musleabihf@4.59.0': resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==} +======= + '@rollup/rollup-linux-arm-gnueabihf@4.61.1': + resolution: {integrity: sha512-Q8CBCCQtDFrYtXoeUXSrnFXKOnyUhx6bz+SkL6A0E7V8kAiCJ5pamq1WtbfpVGhR5TSpXY6ak3avmDc5fHTyJA==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.52.5': + resolution: {integrity: sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) cpu: [arm] os: [linux] libc: [musl] +<<<<<<< HEAD '@rollup/rollup-linux-arm64-gnu@4.59.0': resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==} +======= + '@rollup/rollup-linux-arm-musleabihf@4.61.1': + resolution: {integrity: sha512-nwnhk1581l0FBVellGcVCAT0Oi06onEA3WB53sf01VO3I0UPBkMH9sXONYME2K0ovXcNayJfNtHfm6mpJElatQ==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.52.5': + resolution: {integrity: sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) cpu: [arm64] os: [linux] libc: [glibc] +<<<<<<< HEAD '@rollup/rollup-linux-arm64-musl@4.59.0': resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==} +======= + '@rollup/rollup-linux-arm64-gnu@4.61.1': + resolution: {integrity: sha512-x5Xr49hwt3hdW75UOZm3395YwwzPyauktslv29KpWL/T+vVAzoT3azLcTWv0eMciBNrx+DYjH4paehHoLpPvpg==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.52.5': + resolution: {integrity: sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) cpu: [arm64] os: [linux] libc: [musl] +<<<<<<< HEAD '@rollup/rollup-linux-loong64-gnu@4.59.0': resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==} +======= + '@rollup/rollup-linux-arm64-musl@4.61.1': + resolution: {integrity: sha512-unMS3H73DpaoPyyEVPjGKleM/s0mkmsauTENpw4INQY8y4+IuLNjkueQ5QCtC0D3N38Y38yhAU8OoZ20S2Tm6w==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loong64-gnu@4.52.5': + resolution: {integrity: sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) cpu: [loong64] os: [linux] libc: [glibc] +<<<<<<< HEAD '@rollup/rollup-linux-loong64-musl@4.59.0': resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==} cpu: [loong64] @@ -4006,10 +4484,25 @@ packages: '@rollup/rollup-linux-ppc64-gnu@4.59.0': resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==} +======= + '@rollup/rollup-linux-loong64-gnu@4.61.1': + resolution: {integrity: sha512-zNZzGRnAhwjFEYmvphJRV5XaQGjs62cCmeYYHUT//NbvEnHauw+I85nGG+SiVg5ld4GX8D1IbKIX+ozITQnhMQ==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-loong64-musl@4.61.1': + resolution: {integrity: sha512-LdpWGL8X209B2SIvWjqlc8VZgM6PKfontSerGepuldQmHYrAOtnMCXeJkxXGbC+PPZVOuu5czJo7fNV6aeW8rQ==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-ppc64-gnu@4.52.5': + resolution: {integrity: sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) cpu: [ppc64] os: [linux] libc: [glibc] +<<<<<<< HEAD '@rollup/rollup-linux-ppc64-musl@4.59.0': resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==} cpu: [ppc64] @@ -4018,34 +4511,89 @@ packages: '@rollup/rollup-linux-riscv64-gnu@4.59.0': resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==} +======= + '@rollup/rollup-linux-ppc64-gnu@4.61.1': + resolution: {integrity: sha512-EC5kTtNaNGOmbMGqar8dvJy6y/hg99GAwjfBz++pxZhQATXGcRjd6c5en5wcbru0vkRmiMGsQKdMJOOf6sza4g==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-ppc64-musl@4.61.1': + resolution: {integrity: sha512-8hiwp6D4acEcNK78I4rP0/XtS1sknWIAMJBPdR4l6zUtyTm5KiTDr5bXmWt4foY7nAN7AThDHgkLIEZOWKbzWw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.52.5': + resolution: {integrity: sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) cpu: [riscv64] os: [linux] libc: [glibc] +<<<<<<< HEAD '@rollup/rollup-linux-riscv64-musl@4.59.0': resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==} +======= + '@rollup/rollup-linux-riscv64-gnu@4.61.1': + resolution: {integrity: sha512-10dh/h/BqA7DuMPWSxkR8uks18FRwnwOEqr5zOTEl+NOwP/OMzKX8OFR/Of9xxDA7D5qef1Nzar5WDD2kCCr1g==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.52.5': + resolution: {integrity: sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) cpu: [riscv64] os: [linux] libc: [musl] +<<<<<<< HEAD '@rollup/rollup-linux-s390x-gnu@4.59.0': resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==} +======= + '@rollup/rollup-linux-riscv64-musl@4.61.1': + resolution: {integrity: sha512-YKJ5lg35DP17gcAOggnihe+APw9HLyj1Xn7gsmGumBJAUDa6NGXNixJzmkWLhcK9TOuuyQjdamzvJefkO7qHZQ==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.52.5': + resolution: {integrity: sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) cpu: [s390x] os: [linux] libc: [glibc] +<<<<<<< HEAD '@rollup/rollup-linux-x64-gnu@4.59.0': resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==} +======= + '@rollup/rollup-linux-s390x-gnu@4.61.1': + resolution: {integrity: sha512-Mlil5G2Jj6a7B3LWGctg+XPL9vdXYuzCtNXfxOQ0nPjc2m6ueUktocPGH9bnAM0bNRKb/bAWTujUU7IJQdQA+g==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.52.5': + resolution: {integrity: sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) cpu: [x64] os: [linux] libc: [glibc] +<<<<<<< HEAD '@rollup/rollup-linux-x64-musl@4.59.0': resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==} +======= + '@rollup/rollup-linux-x64-gnu@4.61.1': + resolution: {integrity: sha512-bVWIOIk6pV01p4CdUbPP7CJ/434z+OooYjDuFcR+44N35YvKUC66G8MGnvcWx5mWKW3g61J+t74l3Kj15Kwn2Q==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.52.5': + resolution: {integrity: sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) cpu: [x64] os: [linux] libc: [musl] +<<<<<<< HEAD '@rollup/rollup-openbsd-x64@4.59.0': resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==} cpu: [x64] @@ -4073,6 +4621,65 @@ packages: '@rollup/rollup-win32-x64-msvc@4.59.0': resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==} +======= + '@rollup/rollup-linux-x64-musl@4.61.1': + resolution: {integrity: sha512-qy5pBvZbqNFheBz61R1rzsezjm0J7O2oNGoWtGoY89SZYLUfxAJTBAqDChqAIdB4rCiIbi9nF7yZ83GnNiLwSw==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-openbsd-x64@4.61.1': + resolution: {integrity: sha512-E83TXjI4zm0+5f2qO+UOudaCYIhYwpJ5jq6YCZNIZ+6CbfhKrkAGezeiASBL9ElxAxFsRS9ZhESv8mfnj6TKeg==} + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.52.5': + resolution: {integrity: sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-openharmony-arm64@4.61.1': + resolution: {integrity: sha512-fbWnKqVkjrJN38vNe3ahkbk6iejS/3b0Nt7EEtPpE6RBacZcGXNKbzfHN3GUUlXOPghUg0j6XUGrtjX9z1sIvA==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.52.5': + resolution: {integrity: sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-arm64-msvc@4.61.1': + resolution: {integrity: sha512-ArMl38iVAbk0New1ogihQNY6iphLi4ZaRsa037gUzv5yeKPY8TD3Dmy4x2RNC1VztU/uqm+G+/RwFrSka3Oy2g==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.52.5': + resolution: {integrity: sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.61.1': + resolution: {integrity: sha512-0mYtjHS9ucAbcATycCNK9IGBk/cCe/ma7EmSLGZdsxnOA8cjRIyU04wDpVAD9NiOfLUR9KTxdiO53uOkherqjQ==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.52.5': + resolution: {integrity: sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.61.1': + resolution: {integrity: sha512-gK1iCEPfpoSG9wfBihXxvBMi8ZfcWffYkEsC/Eih+iFENTaewvNcrEQ69lIOWYO5pePHKLHHO7nq5AILGO/HQQ==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.52.5': + resolution: {integrity: sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==} +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.61.1': + resolution: {integrity: sha512-X+zaP2x+j4RXGfbp/seSoRHWnPxzApilDszisZxbYH5C/jTxFhCtDNdPGZb9lJyYPs24wGxruPF7Y+sIXt9Gzw==} cpu: [x64] os: [win32] @@ -4560,6 +5167,18 @@ packages: '@types/estree@1.0.8': resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} +<<<<<<< HEAD +======= + '@types/estree@1.0.9': + resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==} + + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@types/hast@3.0.4': resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} @@ -6392,11 +7011,14 @@ packages: engines: {node: '>=18'} hasBin: true +<<<<<<< HEAD esbuild@0.27.3: resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==} engines: {node: '>=18'} hasBin: true +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) esbuild@0.27.7: resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==} engines: {node: '>=18'} @@ -6468,8 +7090,9 @@ packages: peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 - eslint-plugin-qwik@2.0.0-beta.35: - resolution: {integrity: sha512-kVmh3HXivvL8mhXyF9yQIooGL4cz23KBFAdbSb22kScutFj7YqLO4toW42V1OEsiVvlRD6ycJqvLivoz6o70aA==} + eslint-plugin-qwik@https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671: + resolution: {tarball: https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671} + version: 2.0.0-beta.37 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 @@ -9136,6 +9759,11 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + rollup@4.61.1: + resolution: {integrity: sha512-I4KW6iuRpuu2uHBLraZ1wNZe0DP7lnRha+VJ9tNaYVaVgKhW0aI3h4RYnoRPeql0flHm/Co55b7snEDcOfOJrA==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + rrweb-cssom@0.8.0: resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} @@ -10493,6 +11121,46 @@ packages: yaml: optional: true + vite@7.3.5: + resolution: {integrity: sha512-KuOaNhcnGFN2zIPGA7wRmzF+lJA1sea7rHq17aiJ++9lzY1WWG6Jpwqwe1KNbRVPIqHmr8GLYx7jbrQcN/7/ww==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + 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} @@ -11837,7 +12505,14 @@ snapshots: '@esbuild/aix-ppc64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/aix-ppc64@0.27.3': +======= + '@esbuild/aix-ppc64@0.27.7': + optional: true + + '@esbuild/android-arm64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/aix-ppc64@0.27.7': @@ -11849,9 +12524,12 @@ snapshots: '@esbuild/android-arm64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/android-arm64@0.27.3': optional: true +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/android-arm64@0.27.7': optional: true @@ -11864,7 +12542,14 @@ snapshots: '@esbuild/android-arm@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/android-arm@0.27.3': +======= + '@esbuild/android-arm@0.27.7': + optional: true + + '@esbuild/android-x64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/android-arm@0.27.7': @@ -11876,7 +12561,14 @@ snapshots: '@esbuild/android-x64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/android-x64@0.27.3': +======= + '@esbuild/android-x64@0.27.7': + optional: true + + '@esbuild/darwin-arm64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/android-x64@0.27.7': @@ -11888,7 +12580,14 @@ snapshots: '@esbuild/darwin-arm64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/darwin-arm64@0.27.3': +======= + '@esbuild/darwin-arm64@0.27.7': + optional: true + + '@esbuild/darwin-x64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/darwin-arm64@0.27.7': @@ -11900,7 +12599,14 @@ snapshots: '@esbuild/darwin-x64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/darwin-x64@0.27.3': +======= + '@esbuild/darwin-x64@0.27.7': + optional: true + + '@esbuild/freebsd-arm64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/darwin-x64@0.27.7': @@ -11912,7 +12618,14 @@ snapshots: '@esbuild/freebsd-arm64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/freebsd-arm64@0.27.3': +======= + '@esbuild/freebsd-arm64@0.27.7': + optional: true + + '@esbuild/freebsd-x64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/freebsd-arm64@0.27.7': @@ -11924,7 +12637,14 @@ snapshots: '@esbuild/freebsd-x64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/freebsd-x64@0.27.3': +======= + '@esbuild/freebsd-x64@0.27.7': + optional: true + + '@esbuild/linux-arm64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/freebsd-x64@0.27.7': @@ -11936,7 +12656,14 @@ snapshots: '@esbuild/linux-arm64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/linux-arm64@0.27.3': +======= + '@esbuild/linux-arm64@0.27.7': + optional: true + + '@esbuild/linux-arm@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/linux-arm64@0.27.7': @@ -11948,7 +12675,14 @@ snapshots: '@esbuild/linux-arm@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/linux-arm@0.27.3': +======= + '@esbuild/linux-arm@0.27.7': + optional: true + + '@esbuild/linux-ia32@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/linux-arm@0.27.7': @@ -11960,9 +12694,12 @@ snapshots: '@esbuild/linux-ia32@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/linux-ia32@0.27.3': optional: true +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/linux-ia32@0.27.7': optional: true @@ -11975,7 +12712,14 @@ snapshots: '@esbuild/linux-loong64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/linux-loong64@0.27.3': +======= + '@esbuild/linux-loong64@0.27.7': + optional: true + + '@esbuild/linux-mips64el@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/linux-loong64@0.27.7': @@ -11987,10 +12731,17 @@ snapshots: '@esbuild/linux-mips64el@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/linux-mips64el@0.27.3': +======= + '@esbuild/linux-mips64el@0.27.7': optional: true - '@esbuild/linux-mips64el@0.27.7': + '@esbuild/linux-ppc64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) + optional: true + + '@esbuild/linux-mips64el@0.27.7': optional: true '@esbuild/linux-ppc64@0.21.5': @@ -11999,7 +12750,14 @@ snapshots: '@esbuild/linux-ppc64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/linux-ppc64@0.27.3': +======= + '@esbuild/linux-ppc64@0.27.7': + optional: true + + '@esbuild/linux-riscv64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/linux-ppc64@0.27.7': @@ -12011,7 +12769,14 @@ snapshots: '@esbuild/linux-riscv64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/linux-riscv64@0.27.3': +======= + '@esbuild/linux-riscv64@0.27.7': + optional: true + + '@esbuild/linux-s390x@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/linux-riscv64@0.27.7': @@ -12023,7 +12788,14 @@ snapshots: '@esbuild/linux-s390x@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/linux-s390x@0.27.3': +======= + '@esbuild/linux-s390x@0.27.7': + optional: true + + '@esbuild/linux-x64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/linux-s390x@0.27.7': @@ -12035,16 +12807,26 @@ snapshots: '@esbuild/linux-x64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/linux-x64@0.27.3': optional: true +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/linux-x64@0.27.7': optional: true '@esbuild/netbsd-arm64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/netbsd-arm64@0.27.3': +======= + '@esbuild/netbsd-arm64@0.27.7': + optional: true + + '@esbuild/netbsd-x64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/netbsd-arm64@0.27.7': @@ -12056,16 +12838,26 @@ snapshots: '@esbuild/netbsd-x64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/netbsd-x64@0.27.3': optional: true +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/netbsd-x64@0.27.7': optional: true '@esbuild/openbsd-arm64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/openbsd-arm64@0.27.3': +======= + '@esbuild/openbsd-arm64@0.27.7': + optional: true + + '@esbuild/openbsd-x64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/openbsd-arm64@0.27.7': @@ -12077,16 +12869,26 @@ snapshots: '@esbuild/openbsd-x64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/openbsd-x64@0.27.3': optional: true +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/openbsd-x64@0.27.7': optional: true '@esbuild/openharmony-arm64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/openharmony-arm64@0.27.3': +======= + '@esbuild/openharmony-arm64@0.27.7': + optional: true + + '@esbuild/sunos-x64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/openharmony-arm64@0.27.7': @@ -12098,7 +12900,14 @@ snapshots: '@esbuild/sunos-x64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/sunos-x64@0.27.3': +======= + '@esbuild/sunos-x64@0.27.7': + optional: true + + '@esbuild/win32-arm64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/sunos-x64@0.27.7': @@ -12110,7 +12919,14 @@ snapshots: '@esbuild/win32-arm64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/win32-arm64@0.27.3': +======= + '@esbuild/win32-arm64@0.27.7': + optional: true + + '@esbuild/win32-ia32@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/win32-arm64@0.27.7': @@ -12122,7 +12938,14 @@ snapshots: '@esbuild/win32-ia32@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/win32-ia32@0.27.3': +======= + '@esbuild/win32-ia32@0.27.7': + optional: true + + '@esbuild/win32-x64@0.17.19': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optional: true '@esbuild/win32-ia32@0.27.7': @@ -12134,9 +12957,12 @@ snapshots: '@esbuild/win32-x64@0.25.11': optional: true +<<<<<<< HEAD '@esbuild/win32-x64@0.27.3': optional: true +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@esbuild/win32-x64@0.27.7': optional: true @@ -12857,11 +13683,15 @@ snapshots: '@poppinss/exception@1.2.2': {} +<<<<<<< HEAD <<<<<<< HEAD '@preact/preset-vite@2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.59.0)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': ======= '@preact/preset-vite@2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.52.5)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': >>>>>>> 9742820 (chore: wip) +======= + '@preact/preset-vite@2.10.5(@babel/core@7.28.5)(preact@10.29.2)(rollup@4.61.1)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) dependencies: '@babel/core': 7.28.5 '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.5) @@ -12871,8 +13701,12 @@ snapshots: '@rollup/pluginutils': 5.3.0(rollup@4.59.0) ======= '@prefresh/vite': 2.4.11(preact@10.29.2)(vite@6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +<<<<<<< HEAD '@rollup/pluginutils': 5.3.0(rollup@4.52.5) >>>>>>> 9742820 (chore: wip) +======= + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.28.5) debug: 4.4.3 magic-string: 0.30.21 @@ -12962,6 +13796,7 @@ snapshots: dependencies: quansync: 0.2.11 +<<<<<<< HEAD <<<<<<< HEAD '@qwik.dev/core@2.0.0-beta.5(prettier@3.6.2)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@4.1.7)': dependencies: @@ -12979,11 +13814,15 @@ snapshots: vite: 7.3.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) ======= '@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +======= + '@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671(prettier@3.6.2)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) dependencies: - '@qwik.dev/optimizer': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@7813a99 + '@qwik.dev/optimizer': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@1778671 csstype: 3.2.3 launch-editor: 2.14.0 magic-string: 0.30.21 +<<<<<<< HEAD vite: 8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) >>>>>>> 9742820 (chore: wip) optionalDependencies: @@ -13008,19 +13847,52 @@ snapshots: launch-editor: 2.14.0 magic-string: 0.30.21 vite: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +======= + rollup: 4.61.1 + vite: 7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optionalDependencies: prettier: 3.6.2 vitest: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + '@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(esbuild@0.27.7)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': + dependencies: + '@qwik.dev/optimizer': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@1778671 + csstype: 3.2.3 + launch-editor: 2.14.0 + magic-string: 0.30.21 + rollup: 4.61.1 + vite: 8.0.14(@types/node@24.0.13)(esbuild@0.27.7)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + optionalDependencies: + prettier: 3.6.2 + vitest: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': + dependencies: + '@qwik.dev/optimizer': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@7813a99 + csstype: 3.2.3 + launch-editor: 2.14.0 + magic-string: 0.30.21 + vite: 7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + optionalDependencies: + prettier: 3.6.2 + vitest: 3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@qwik.dev/optimizer@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@1778671': {} + '@qwik.dev/optimizer@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/optimizer@7813a99': {} +<<<<<<< HEAD '@qwik.dev/router@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.52.5)(typescript@5.8.3)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': >>>>>>> 9742820 (chore: wip) +======= + '@qwik.dev/router@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@1778671(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671(prettier@3.6.2)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.61.1)(typescript@5.8.3)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) dependencies: '@azure/functions': 3.5.1 '@mdx-js/mdx': 3.1.1 '@netlify/edge-functions': 3.0.8 - '@qwik.dev/core': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@qwik.dev/core': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@1778671(prettier@3.6.2)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) '@types/mdx': 2.0.13 estree-util-value-to-estree: 3.5.0 github-slugger: 2.0.0 @@ -13048,8 +13920,8 @@ snapshots: unist-util-visit: 5.0.0 valibot: 1.4.1(typescript@5.8.3) vfile: 6.0.3 - vite: 8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) - vite-imagetools: 10.0.0(rollup@4.52.5)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + vite: 7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-imagetools: 10.0.0(rollup@4.61.1)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) yaml: 2.9.0 zod: 3.25.76 >>>>>>> 9742820 (chore: wip) @@ -13058,16 +13930,20 @@ snapshots: - supports-color - typescript +<<<<<<< HEAD <<<<<<< HEAD '@qwik.dev/router@2.0.0-beta.9(patch_hash=e002def78f4681060d18bc24d686c24ee1d1b997c399a2cb1c03baf3b860e4c8)(rollup@4.59.0)(typescript@5.8.3)': ======= '@qwik.dev/router@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.52.5)(typescript@5.8.3)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': >>>>>>> 9742820 (chore: wip) +======= + '@qwik.dev/router@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/router@7813a99(@qwik.dev/core@https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)))(rollup@4.61.1)(typescript@5.8.3)(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) dependencies: '@azure/functions': 3.5.1 '@mdx-js/mdx': 3.1.1 '@netlify/edge-functions': 3.0.8 - '@qwik.dev/core': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@24.0.13)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + '@qwik.dev/core': https://pkg.pr.new/QwikDev/qwik/@qwik.dev/core@7813a99(prettier@3.6.2)(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))(vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) '@types/mdx': 2.0.13 estree-util-value-to-estree: 3.5.0 github-slugger: 2.0.0 @@ -13094,8 +13970,8 @@ snapshots: unist-util-visit: 5.0.0 valibot: 1.4.1(typescript@5.8.3) vfile: 6.0.3 - vite: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) - vite-imagetools: 10.0.0(rollup@4.52.5)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) + vite: 7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite-imagetools: 10.0.0(rollup@4.61.1)(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) yaml: 2.9.0 zod: 3.25.76 >>>>>>> 9742820 (chore: wip) @@ -13263,10 +14139,16 @@ snapshots: ======= '@rolldown/pluginutils@1.0.1': {} +<<<<<<< HEAD '@rollup/plugin-alias@5.1.1(rollup@4.52.5)': >>>>>>> 9742820 (chore: wip) optionalDependencies: rollup: 4.59.0 +======= + '@rollup/plugin-alias@5.1.1(rollup@4.61.1)': + optionalDependencies: + rollup: 4.61.1 +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@rollup/plugin-babel@6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.59.0)': dependencies: @@ -13279,9 +14161,15 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD '@rollup/plugin-commonjs@28.0.9(rollup@4.59.0)': dependencies: '@rollup/pluginutils': 5.3.0(rollup@4.59.0) +======= + '@rollup/plugin-commonjs@28.0.9(rollup@4.61.1)': + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) commondir: 1.0.1 estree-walker: 2.0.2 fdir: 6.5.0(picomatch@4.0.4) @@ -13289,6 +14177,7 @@ snapshots: magic-string: 0.30.21 picomatch: 4.0.4 optionalDependencies: +<<<<<<< HEAD rollup: 4.59.0 '@rollup/plugin-inject@5.0.5(rollup@4.59.0)': @@ -13304,118 +14193,312 @@ snapshots: '@rollup/pluginutils': 5.3.0(rollup@4.59.0) optionalDependencies: rollup: 4.59.0 +======= + rollup: 4.61.1 + + '@rollup/plugin-inject@5.0.5(rollup@4.61.1)': + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) + estree-walker: 2.0.2 + magic-string: 0.30.21 + optionalDependencies: + rollup: 4.61.1 + + '@rollup/plugin-json@6.1.0(rollup@4.61.1)': + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) + optionalDependencies: + rollup: 4.61.1 +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) + + '@rollup/plugin-node-resolve@16.0.3(rollup@4.59.0)': + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) + '@types/resolve': 1.20.2 + deepmerge: 4.3.1 + is-module: 1.0.0 + resolve: 1.22.11 + optionalDependencies: + rollup: 4.59.0 + +<<<<<<< HEAD + '@rollup/plugin-replace@6.0.2(rollup@4.59.0)': + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) + magic-string: 0.30.21 + optionalDependencies: + rollup: 4.59.0 +======= + '@rollup/plugin-node-resolve@16.0.3(rollup@4.61.1)': + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) + '@types/resolve': 1.20.2 + deepmerge: 4.3.1 + is-module: 1.0.0 + resolve: 1.22.11 + optionalDependencies: + rollup: 4.61.1 + + '@rollup/plugin-replace@6.0.2(rollup@4.61.1)': + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) + magic-string: 0.30.21 + optionalDependencies: + rollup: 4.61.1 +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) + + '@rollup/plugin-terser@0.4.4(rollup@4.59.0)': + dependencies: + serialize-javascript: 7.0.5 + smob: 1.5.0 + terser: 5.44.0 + optionalDependencies: + rollup: 4.59.0 + + '@rollup/plugin-terser@0.4.4(rollup@4.61.1)': + dependencies: + serialize-javascript: 6.0.2 + smob: 1.5.0 + terser: 5.44.0 + optionalDependencies: + rollup: 4.61.1 + + '@rollup/pluginutils@4.2.1': + dependencies: + estree-walker: 2.0.2 + picomatch: 2.3.2 + + '@rollup/pluginutils@5.3.0(rollup@4.59.0)': + dependencies: + '@types/estree': 1.0.8 + estree-walker: 2.0.2 + picomatch: 4.0.4 + optionalDependencies: + rollup: 4.59.0 + +<<<<<<< HEAD + '@rollup/rollup-android-arm-eabi@4.59.0': + optional: true + + '@rollup/rollup-android-arm64@4.59.0': + optional: true + + '@rollup/rollup-darwin-arm64@4.59.0': + optional: true + + '@rollup/rollup-darwin-x64@4.59.0': + optional: true + + '@rollup/rollup-freebsd-arm64@4.59.0': + optional: true + + '@rollup/rollup-freebsd-x64@4.59.0': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.59.0': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.59.0': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.59.0': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.59.0': + optional: true + + '@rollup/rollup-linux-loong64-gnu@4.59.0': + optional: true + + '@rollup/rollup-linux-loong64-musl@4.59.0': + optional: true + + '@rollup/rollup-linux-ppc64-gnu@4.59.0': + optional: true + + '@rollup/rollup-linux-ppc64-musl@4.59.0': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.59.0': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.59.0': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.59.0': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.59.0': + optional: true + + '@rollup/rollup-linux-x64-musl@4.59.0': + optional: true + + '@rollup/rollup-openbsd-x64@4.59.0': + optional: true + + '@rollup/rollup-openharmony-arm64@4.59.0': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.59.0': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.59.0': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.59.0': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.59.0': +======= + '@rollup/pluginutils@5.3.0(rollup@4.61.1)': + dependencies: + '@types/estree': 1.0.8 + estree-walker: 2.0.2 + picomatch: 4.0.3 + optionalDependencies: + rollup: 4.61.1 + + '@rollup/rollup-android-arm-eabi@4.52.5': + optional: true + + '@rollup/rollup-android-arm-eabi@4.61.1': + optional: true + + '@rollup/rollup-android-arm64@4.52.5': + optional: true + + '@rollup/rollup-android-arm64@4.61.1': + optional: true + + '@rollup/rollup-darwin-arm64@4.52.5': + optional: true + + '@rollup/rollup-darwin-arm64@4.61.1': + optional: true + + '@rollup/rollup-darwin-x64@4.52.5': + optional: true + + '@rollup/rollup-darwin-x64@4.61.1': + optional: true + + '@rollup/rollup-freebsd-arm64@4.52.5': + optional: true + + '@rollup/rollup-freebsd-arm64@4.61.1': + optional: true + + '@rollup/rollup-freebsd-x64@4.52.5': + optional: true + + '@rollup/rollup-freebsd-x64@4.61.1': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.52.5': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.61.1': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.52.5': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.61.1': + optional: true - '@rollup/plugin-node-resolve@16.0.3(rollup@4.59.0)': - dependencies: - '@rollup/pluginutils': 5.3.0(rollup@4.59.0) - '@types/resolve': 1.20.2 - deepmerge: 4.3.1 - is-module: 1.0.0 - resolve: 1.22.11 - optionalDependencies: - rollup: 4.59.0 + '@rollup/rollup-linux-arm64-gnu@4.52.5': + optional: true - '@rollup/plugin-replace@6.0.2(rollup@4.59.0)': - dependencies: - '@rollup/pluginutils': 5.3.0(rollup@4.59.0) - magic-string: 0.30.21 - optionalDependencies: - rollup: 4.59.0 + '@rollup/rollup-linux-arm64-gnu@4.61.1': + optional: true - '@rollup/plugin-terser@0.4.4(rollup@4.59.0)': - dependencies: - serialize-javascript: 7.0.5 - smob: 1.5.0 - terser: 5.44.0 - optionalDependencies: - rollup: 4.59.0 + '@rollup/rollup-linux-arm64-musl@4.52.5': + optional: true - '@rollup/pluginutils@4.2.1': - dependencies: - estree-walker: 2.0.2 - picomatch: 2.3.2 + '@rollup/rollup-linux-arm64-musl@4.61.1': + optional: true - '@rollup/pluginutils@5.3.0(rollup@4.59.0)': - dependencies: - '@types/estree': 1.0.8 - estree-walker: 2.0.2 - picomatch: 4.0.4 - optionalDependencies: - rollup: 4.59.0 + '@rollup/rollup-linux-loong64-gnu@4.52.5': + optional: true - '@rollup/rollup-android-arm-eabi@4.59.0': + '@rollup/rollup-linux-loong64-gnu@4.61.1': optional: true - '@rollup/rollup-android-arm64@4.59.0': + '@rollup/rollup-linux-loong64-musl@4.61.1': optional: true - '@rollup/rollup-darwin-arm64@4.59.0': + '@rollup/rollup-linux-ppc64-gnu@4.52.5': optional: true - '@rollup/rollup-darwin-x64@4.59.0': + '@rollup/rollup-linux-ppc64-gnu@4.61.1': optional: true - '@rollup/rollup-freebsd-arm64@4.59.0': + '@rollup/rollup-linux-ppc64-musl@4.61.1': optional: true - '@rollup/rollup-freebsd-x64@4.59.0': + '@rollup/rollup-linux-riscv64-gnu@4.52.5': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.59.0': + '@rollup/rollup-linux-riscv64-gnu@4.61.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.59.0': + '@rollup/rollup-linux-riscv64-musl@4.52.5': optional: true - '@rollup/rollup-linux-arm64-gnu@4.59.0': + '@rollup/rollup-linux-riscv64-musl@4.61.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.59.0': + '@rollup/rollup-linux-s390x-gnu@4.52.5': optional: true - '@rollup/rollup-linux-loong64-gnu@4.59.0': + '@rollup/rollup-linux-s390x-gnu@4.61.1': optional: true - '@rollup/rollup-linux-loong64-musl@4.59.0': + '@rollup/rollup-linux-x64-gnu@4.52.5': optional: true - '@rollup/rollup-linux-ppc64-gnu@4.59.0': + '@rollup/rollup-linux-x64-gnu@4.61.1': optional: true - '@rollup/rollup-linux-ppc64-musl@4.59.0': + '@rollup/rollup-linux-x64-musl@4.52.5': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.59.0': + '@rollup/rollup-linux-x64-musl@4.61.1': optional: true - '@rollup/rollup-linux-riscv64-musl@4.59.0': + '@rollup/rollup-openbsd-x64@4.61.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.59.0': + '@rollup/rollup-openharmony-arm64@4.52.5': optional: true - '@rollup/rollup-linux-x64-gnu@4.59.0': + '@rollup/rollup-openharmony-arm64@4.61.1': optional: true - '@rollup/rollup-linux-x64-musl@4.59.0': + '@rollup/rollup-win32-arm64-msvc@4.52.5': optional: true - '@rollup/rollup-openbsd-x64@4.59.0': + '@rollup/rollup-win32-arm64-msvc@4.61.1': optional: true - '@rollup/rollup-openharmony-arm64@4.59.0': + '@rollup/rollup-win32-ia32-msvc@4.52.5': optional: true - '@rollup/rollup-win32-arm64-msvc@4.59.0': + '@rollup/rollup-win32-ia32-msvc@4.61.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.59.0': + '@rollup/rollup-win32-x64-gnu@4.52.5': optional: true - '@rollup/rollup-win32-x64-gnu@4.59.0': + '@rollup/rollup-win32-x64-gnu@4.61.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.59.0': + '@rollup/rollup-win32-x64-msvc@4.52.5': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) + optional: true + + '@rollup/rollup-win32-x64-msvc@4.61.1': optional: true '@rtsao/scc@1.1.0': {} @@ -13870,12 +14953,17 @@ snapshots: ======= vite: 7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +<<<<<<< HEAD '@tailwindcss/vite@4.1.16(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': >>>>>>> 9742820 (chore: wip) +======= + '@tailwindcss/vite@4.1.16(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) dependencies: '@tailwindcss/node': 4.1.16 '@tailwindcss/oxide': 4.1.16 tailwindcss: 4.1.16 +<<<<<<< HEAD <<<<<<< HEAD vite: 7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) @@ -13885,16 +14973,25 @@ snapshots: '@tailwindcss/vite@4.1.16(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': >>>>>>> 9742820 (chore: wip) +======= + vite: 7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + + '@tailwindcss/vite@4.1.16(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) dependencies: '@tailwindcss/node': 4.1.16 '@tailwindcss/oxide': 4.1.16 tailwindcss: 4.1.16 +<<<<<<< HEAD <<<<<<< HEAD vite: 7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) '@tailwindcss/vite@4.1.17(vite@7.3.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))': ======= vite: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +======= + vite: 7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@tailwindcss/vite@4.1.17(vite@7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0))': >>>>>>> 9742820 (chore: wip) @@ -14072,6 +15169,13 @@ snapshots: tslib: 2.8.1 optional: true +<<<<<<< HEAD +======= + '@types/acorn@4.0.6': + dependencies: + '@types/estree': 1.0.9 + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@types/aria-query@5.0.4': {} '@types/babel__core@7.20.5': @@ -14115,12 +15219,33 @@ snapshots: '@types/estree': 1.0.8 '@types/json-schema': 7.0.15 +<<<<<<< HEAD +======= + '@types/estree-jsx@0.0.1': + dependencies: + '@types/estree': 1.0.9 + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@types/estree-jsx@1.0.5': dependencies: '@types/estree': 1.0.8 '@types/estree@1.0.8': {} +<<<<<<< HEAD +======= + '@types/estree@1.0.9': {} + + '@types/glob@7.2.0': + dependencies: + '@types/minimatch': 6.0.0 + '@types/node': 24.10.1 + + '@types/hast@2.3.10': + dependencies: + '@types/unist': 2.0.11 + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) '@types/hast@3.0.4': dependencies: '@types/unist': 3.0.3 @@ -14842,10 +15967,17 @@ snapshots: - encoding - supports-color +<<<<<<< HEAD '@vercel/nft@0.30.3(rollup@4.59.0)': dependencies: '@mapbox/node-pre-gyp': 2.0.0 '@rollup/pluginutils': 5.3.0(rollup@4.59.0) +======= + '@vercel/nft@0.30.3(rollup@4.61.1)': + dependencies: + '@mapbox/node-pre-gyp': 2.0.0 + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) acorn: 8.15.0 acorn-import-attributes: 1.9.5(acorn@8.15.0) async-sema: 3.1.1 @@ -16628,6 +17760,15 @@ snapshots: esbuild-openbsd-64@0.15.18: optional: true +<<<<<<< HEAD +======= + esbuild-plugin-polyfill-node@0.2.0(esbuild@0.17.6): + dependencies: + '@jspm/core': 2.1.0 + esbuild: 0.17.6 + import-meta-resolve: 2.2.2 + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) esbuild-plugin-solid@0.5.0(esbuild@0.27.7)(solid-js@1.9.9): dependencies: '@babel/core': 7.28.5 @@ -16765,6 +17906,7 @@ snapshots: '@esbuild/win32-ia32': 0.25.11 '@esbuild/win32-x64': 0.25.11 +<<<<<<< HEAD esbuild@0.27.3: optionalDependencies: '@esbuild/aix-ppc64': 0.27.3 @@ -16794,6 +17936,8 @@ snapshots: '@esbuild/win32-ia32': 0.27.3 '@esbuild/win32-x64': 0.27.3 +======= +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) esbuild@0.27.7: optionalDependencies: '@esbuild/aix-ppc64': 0.27.7 @@ -16921,7 +18065,7 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-qwik@2.0.0-beta.35(eslint@8.57.1)(typescript@5.8.3): + eslint-plugin-qwik@https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671(eslint@8.57.1)(typescript@5.8.3): dependencies: '@typescript-eslint/utils': 8.60.0(eslint@8.57.1)(typescript@5.8.3) eslint: 8.57.1 @@ -16930,7 +18074,7 @@ snapshots: - supports-color - typescript - eslint-plugin-qwik@2.0.0-beta.35(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3): + eslint-plugin-qwik@https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3): dependencies: '@typescript-eslint/utils': 8.60.0(eslint@9.31.0(jiti@2.6.1))(typescript@5.8.3) eslint: 9.31.0(jiti@2.6.1) @@ -17281,6 +18425,13 @@ snapshots: estraverse@5.3.0: {} +<<<<<<< HEAD +======= + estree-util-attach-comments@2.1.1: + dependencies: + '@types/estree': 1.0.9 + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) estree-util-attach-comments@3.0.0: dependencies: '@types/estree': 1.0.8 @@ -17715,7 +18866,7 @@ snapshots: hast-util-to-estree@2.3.3: dependencies: - '@types/estree': 1.0.8 + '@types/estree': 1.0.9 '@types/estree-jsx': 1.0.5 '@types/hast': 2.3.10 '@types/unist': 2.0.11 @@ -18919,7 +20070,7 @@ snapshots: micromark-extension-mdx-expression@1.0.8: dependencies: - '@types/estree': 1.0.8 + '@types/estree': 1.0.9 micromark-factory-mdx-expression: 1.0.9 micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -18940,6 +20091,22 @@ snapshots: micromark-util-symbol: 2.0.1 micromark-util-types: 2.0.2 +<<<<<<< HEAD +======= + micromark-extension-mdx-jsx@1.0.5: + dependencies: + '@types/acorn': 4.0.6 + '@types/estree': 1.0.9 + estree-util-is-identifier-name: 2.1.0 + micromark-factory-mdx-expression: 1.0.9 + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + vfile-message: 3.1.4 + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) micromark-extension-mdx-jsx@3.0.2: dependencies: '@types/estree': 1.0.8 @@ -18957,6 +20124,21 @@ snapshots: dependencies: micromark-util-types: 2.0.2 +<<<<<<< HEAD +======= + micromark-extension-mdxjs-esm@1.0.5: + dependencies: + '@types/estree': 1.0.9 + micromark-core-commonmark: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-events-to-acorn: 1.2.3 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + unist-util-position-from-estree: 1.1.2 + uvu: 0.5.6 + vfile-message: 3.1.4 + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) micromark-extension-mdxjs-esm@3.0.0: dependencies: '@types/estree': 1.0.8 @@ -18993,6 +20175,20 @@ snapshots: micromark-util-symbol: 2.0.1 micromark-util-types: 2.0.2 +<<<<<<< HEAD +======= + micromark-factory-mdx-expression@1.0.9: + dependencies: + '@types/estree': 1.0.9 + micromark-util-character: 1.2.0 + micromark-util-events-to-acorn: 1.2.3 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + unist-util-position-from-estree: 1.1.2 + uvu: 0.5.6 + vfile-message: 3.1.4 + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) micromark-factory-mdx-expression@2.0.3: dependencies: '@types/estree': 1.0.8 @@ -19057,6 +20253,20 @@ snapshots: micromark-util-encode@2.0.1: {} +<<<<<<< HEAD +======= + micromark-util-events-to-acorn@1.2.3: + dependencies: + '@types/acorn': 4.0.6 + '@types/estree': 1.0.9 + '@types/unist': 2.0.11 + estree-util-visit: 1.2.1 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + vfile-message: 3.1.4 + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) micromark-util-events-to-acorn@2.0.3: dependencies: '@types/estree': 1.0.8 @@ -19239,6 +20449,7 @@ snapshots: >>>>>>> 9742820 (chore: wip) dependencies: '@cloudflare/kv-asset-handler': 0.4.0 +<<<<<<< HEAD '@rollup/plugin-alias': 5.1.1(rollup@4.59.0) '@rollup/plugin-commonjs': 28.0.9(rollup@4.59.0) '@rollup/plugin-inject': 5.0.5(rollup@4.59.0) @@ -19247,6 +20458,16 @@ snapshots: '@rollup/plugin-replace': 6.0.2(rollup@4.59.0) '@rollup/plugin-terser': 0.4.4(rollup@4.59.0) '@vercel/nft': 0.30.3(rollup@4.59.0) +======= + '@rollup/plugin-alias': 5.1.1(rollup@4.61.1) + '@rollup/plugin-commonjs': 28.0.9(rollup@4.61.1) + '@rollup/plugin-inject': 5.0.5(rollup@4.61.1) + '@rollup/plugin-json': 6.1.0(rollup@4.61.1) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.61.1) + '@rollup/plugin-replace': 6.0.2(rollup@4.61.1) + '@rollup/plugin-terser': 0.4.4(rollup@4.61.1) + '@vercel/nft': 0.30.3(rollup@4.61.1) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) archiver: 7.0.1 c12: 3.3.1(magicast@0.3.5) chokidar: 4.0.3 @@ -19288,6 +20509,7 @@ snapshots: pkg-types: 2.3.0 pretty-bytes: 7.1.0 radix3: 1.1.2 +<<<<<<< HEAD <<<<<<< HEAD rollup: 4.59.0 rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-beta.52)(rollup@4.59.0) @@ -19295,6 +20517,10 @@ snapshots: rollup: 4.52.5 rollup-plugin-visualizer: 6.0.5(rolldown@1.0.2)(rollup@4.52.5) >>>>>>> 9742820 (chore: wip) +======= + rollup: 4.61.1 + rollup-plugin-visualizer: 6.0.5(rolldown@1.0.2)(rollup@4.61.1) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) scule: 1.3.0 semver: 7.5.2 serve-placeholder: 2.0.2 @@ -19644,6 +20870,15 @@ snapshots: perfect-debounce@2.0.0: {} +<<<<<<< HEAD +======= + periscopic@3.1.0: + dependencies: + '@types/estree': 1.0.9 + estree-walker: 3.0.3 + is-reference: 3.0.3 + +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) picocolors@1.0.0: {} picocolors@1.1.1: {} @@ -20365,8 +21600,12 @@ snapshots: '@rolldown/binding-win32-arm64-msvc': 1.0.2 '@rolldown/binding-win32-x64-msvc': 1.0.2 +<<<<<<< HEAD rollup-plugin-visualizer@6.0.5(rolldown@1.0.2)(rollup@4.52.5): >>>>>>> 9742820 (chore: wip) +======= + rollup-plugin-visualizer@6.0.5(rolldown@1.0.2)(rollup@4.61.1): +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) dependencies: open: 8.4.2 picomatch: 4.0.4 @@ -20378,8 +21617,12 @@ snapshots: rollup: 4.59.0 ======= rolldown: 1.0.2 +<<<<<<< HEAD rollup: 4.52.5 >>>>>>> 9742820 (chore: wip) +======= + rollup: 4.61.1 +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) rollup-preset-solid@3.0.0(@types/babel__core@7.20.5)(solid-js@1.9.9): dependencies: @@ -20430,6 +21673,37 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.59.0 fsevents: 2.3.3 + rollup@4.61.1: + dependencies: + '@types/estree': 1.0.9 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.61.1 + '@rollup/rollup-android-arm64': 4.61.1 + '@rollup/rollup-darwin-arm64': 4.61.1 + '@rollup/rollup-darwin-x64': 4.61.1 + '@rollup/rollup-freebsd-arm64': 4.61.1 + '@rollup/rollup-freebsd-x64': 4.61.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.61.1 + '@rollup/rollup-linux-arm-musleabihf': 4.61.1 + '@rollup/rollup-linux-arm64-gnu': 4.61.1 + '@rollup/rollup-linux-arm64-musl': 4.61.1 + '@rollup/rollup-linux-loong64-gnu': 4.61.1 + '@rollup/rollup-linux-loong64-musl': 4.61.1 + '@rollup/rollup-linux-ppc64-gnu': 4.61.1 + '@rollup/rollup-linux-ppc64-musl': 4.61.1 + '@rollup/rollup-linux-riscv64-gnu': 4.61.1 + '@rollup/rollup-linux-riscv64-musl': 4.61.1 + '@rollup/rollup-linux-s390x-gnu': 4.61.1 + '@rollup/rollup-linux-x64-gnu': 4.61.1 + '@rollup/rollup-linux-x64-musl': 4.61.1 + '@rollup/rollup-openbsd-x64': 4.61.1 + '@rollup/rollup-openharmony-arm64': 4.61.1 + '@rollup/rollup-win32-arm64-msvc': 4.61.1 + '@rollup/rollup-win32-ia32-msvc': 4.61.1 + '@rollup/rollup-win32-x64-gnu': 4.61.1 + '@rollup/rollup-win32-x64-msvc': 4.61.1 + fsevents: 2.3.3 + rrweb-cssom@0.8.0: {} run-applescript@7.1.0: {} @@ -21462,6 +22736,7 @@ snapshots: dependencies: esbuild: 0.15.18 +<<<<<<< HEAD <<<<<<< HEAD tsup-preset-solid@2.2.0(esbuild@0.27.7)(solid-js@1.9.9)(tsup@8.5.0(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.8.1)): dependencies: @@ -21469,8 +22744,11 @@ snapshots: tsup: 8.5.0(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.8.1) ======= tsup-preset-solid@2.2.0(esbuild@0.25.11)(solid-js@1.9.9)(tsup@8.5.0(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.9.0)): +======= + tsup-preset-solid@2.2.0(esbuild@0.27.7)(solid-js@1.9.9)(tsup@8.5.0(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.9.0)): +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) dependencies: - esbuild-plugin-solid: 0.5.0(esbuild@0.25.11)(solid-js@1.9.9) + esbuild-plugin-solid: 0.5.0(esbuild@0.27.7)(solid-js@1.9.9) tsup: 8.5.0(jiti@2.6.1)(postcss@8.5.15)(tsx@4.20.6)(typescript@5.8.3)(yaml@2.9.0) >>>>>>> 9742820 (chore: wip) transitivePeerDependencies: @@ -21745,7 +23023,7 @@ snapshots: pkg-types: 2.3.0 scule: 1.3.0 strip-literal: 3.1.0 - tinyglobby: 0.2.15 + tinyglobby: 0.2.16 unplugin: 2.3.10 unplugin-utils: 0.3.1 @@ -21796,11 +23074,15 @@ snapshots: '@vue/reactivity': 3.5.22 debug: 4.4.3 unplugin: 2.3.10 +<<<<<<< HEAD <<<<<<< HEAD vite: 7.3.2(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) ======= vite: 7.2.6(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) >>>>>>> 9742820 (chore: wip) +======= + vite: 7.3.5(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) vue: 3.5.22(typescript@5.8.3) transitivePeerDependencies: - '@types/node' @@ -22074,28 +23356,34 @@ snapshots: dependencies: vite: 7.1.12(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) - vite-imagetools@10.0.0(rollup@4.52.5)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): + vite-imagetools@10.0.0(rollup@4.61.1)(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): dependencies: - '@rollup/pluginutils': 5.3.0(rollup@4.52.5) + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) imagetools-core: 9.1.0 sharp: 0.34.4 - vite: 8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite: 7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) transitivePeerDependencies: - rollup - vite-imagetools@10.0.0(rollup@4.52.5)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): + vite-imagetools@10.0.0(rollup@4.61.1)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): dependencies: - '@rollup/pluginutils': 5.3.0(rollup@4.52.5) + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) imagetools-core: 9.1.0 sharp: 0.34.4 - vite: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite: 7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) transitivePeerDependencies: - rollup >>>>>>> 9742820 (chore: wip) +<<<<<<< HEAD vite-imagetools@7.1.1(rollup@4.59.0): dependencies: '@rollup/pluginutils': 5.3.0(rollup@4.59.0) +======= + vite-imagetools@7.1.1(rollup@4.61.1): + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) imagetools-core: 7.1.0 sharp: 0.34.4 transitivePeerDependencies: @@ -22128,7 +23416,7 @@ snapshots: debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.2.6(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite: 7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) transitivePeerDependencies: - '@types/node' - jiti @@ -22150,7 +23438,7 @@ snapshots: debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.2.6(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite: 7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) transitivePeerDependencies: - '@types/node' - jiti @@ -22171,7 +23459,7 @@ snapshots: debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.2.6(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite: 7.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) transitivePeerDependencies: - '@types/node' - jiti @@ -22192,7 +23480,7 @@ snapshots: debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.2.6(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite: 7.3.5(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) transitivePeerDependencies: - '@types/node' - jiti @@ -22252,11 +23540,15 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD <<<<<<< HEAD vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): ======= vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): >>>>>>> 9742820 (chore: wip) +======= + vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.9)(vite@8.0.14(@types/node@24.10.1)(esbuild@0.27.7)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) dependencies: '@babel/core': 7.28.5 '@types/babel__core': 7.20.5 @@ -22264,6 +23556,7 @@ snapshots: merge-anything: 5.1.7 solid-js: 1.9.9 solid-refresh: 0.6.3(solid-js@1.9.9) +<<<<<<< HEAD <<<<<<< HEAD vite: 6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) vitefu: 1.1.1(vite@6.4.2(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)) @@ -22271,6 +23564,10 @@ snapshots: vite: 8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) vitefu: 1.1.1(vite@8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) >>>>>>> 9742820 (chore: wip) +======= + vite: 8.0.14(@types/node@24.10.1)(esbuild@0.27.7)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vitefu: 1.1.1(vite@8.0.14(@types/node@24.10.1)(esbuild@0.27.7)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optionalDependencies: '@testing-library/jest-dom': 6.9.1 transitivePeerDependencies: @@ -22353,32 +23650,40 @@ snapshots: vite: 6.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) >>>>>>> 9742820 (chore: wip) - vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): + vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): dependencies: debug: 4.4.3 globrex: 0.1.2 tsconfck: 3.1.6(typescript@5.8.3) optionalDependencies: - vite: 8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite: 7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) transitivePeerDependencies: - supports-color - typescript +<<<<<<< HEAD <<<<<<< HEAD vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): ======= vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): >>>>>>> 9742820 (chore: wip) +======= + vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) dependencies: debug: 4.4.3 globrex: 0.1.2 tsconfck: 3.1.6(typescript@5.8.3) optionalDependencies: +<<<<<<< HEAD <<<<<<< HEAD vite: 6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1) ======= vite: 8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) >>>>>>> 9742820 (chore: wip) +======= + vite: 7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) transitivePeerDependencies: - supports-color - typescript @@ -22405,8 +23710,12 @@ snapshots: dependencies: esbuild: 0.21.5 postcss: 8.5.15 +<<<<<<< HEAD rollup: 4.52.5 >>>>>>> 9742820 (chore: wip) +======= + rollup: 4.61.1 +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) optionalDependencies: '@types/node': 22.18.12 fsevents: 2.3.3 @@ -22607,6 +23916,7 @@ snapshots: tsx: 4.20.6 yaml: 2.9.0 +<<<<<<< HEAD <<<<<<< HEAD vitefu@1.1.1(vite@6.4.2(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)): optionalDependencies: @@ -22637,25 +23947,89 @@ snapshots: expect-type: 1.3.0 ======= vite@8.0.14(@types/node@22.18.12)(esbuild@0.17.6)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): +======= + vite@7.3.5(@types/node@22.18.12)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): +>>>>>>> 1902352 (fix: double render bug with pkg.pr.new) dependencies: - lightningcss: 1.32.0 + esbuild: 0.27.7 + fdir: 6.5.0(picomatch@4.0.4) picomatch: 4.0.4 postcss: 8.5.15 - rolldown: 1.0.2 + rollup: 4.61.1 tinyglobby: 0.2.16 optionalDependencies: '@types/node': 22.18.12 - esbuild: 0.17.6 fsevents: 2.3.3 jiti: 2.6.1 less: 4.4.2 + lightningcss: 1.32.0 + sass: 1.93.2 + stylus: 0.62.0 + terser: 5.44.0 + tsx: 4.20.6 + yaml: 2.9.0 + + vite@7.3.5(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + esbuild: 0.27.7 + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 + postcss: 8.5.15 + rollup: 4.61.1 + tinyglobby: 0.2.16 + optionalDependencies: + '@types/node': 24.0.13 + fsevents: 2.3.3 + jiti: 2.6.1 + less: 4.4.2 + lightningcss: 1.32.0 + sass: 1.93.2 + stylus: 0.62.0 + terser: 5.44.0 + tsx: 4.20.6 + yaml: 2.9.0 + + vite@7.3.5(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + esbuild: 0.27.7 + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 + postcss: 8.5.15 + rollup: 4.61.1 + tinyglobby: 0.2.16 + optionalDependencies: + '@types/node': 24.10.1 + fsevents: 2.3.3 + jiti: 2.6.1 + less: 4.4.2 + lightningcss: 1.32.0 + sass: 1.93.2 + stylus: 0.62.0 + terser: 5.44.0 + tsx: 4.20.6 + yaml: 2.9.0 + + vite@7.3.5(@types/node@24.9.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + dependencies: + esbuild: 0.27.7 + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 + postcss: 8.5.15 + rollup: 4.61.1 + tinyglobby: 0.2.16 + optionalDependencies: + '@types/node': 24.9.1 + fsevents: 2.3.3 + jiti: 2.6.1 + less: 4.4.2 + lightningcss: 1.32.0 sass: 1.93.2 stylus: 0.62.0 terser: 5.44.0 tsx: 4.20.6 yaml: 2.9.0 - vite@8.0.14(@types/node@24.0.13)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + vite@8.0.14(@types/node@24.0.13)(esbuild@0.27.7)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): dependencies: lightningcss: 1.32.0 picomatch: 4.0.4 @@ -22664,6 +24038,7 @@ snapshots: tinyglobby: 0.2.16 optionalDependencies: '@types/node': 24.0.13 + esbuild: 0.27.7 fsevents: 2.3.3 jiti: 2.6.1 less: 4.4.2 @@ -22673,7 +24048,7 @@ snapshots: tsx: 4.20.6 yaml: 2.9.0 - vite@8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): + vite@8.0.14(@types/node@24.10.1)(esbuild@0.27.7)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): dependencies: lightningcss: 1.32.0 picomatch: 4.0.4 @@ -22682,7 +24057,7 @@ snapshots: tinyglobby: 0.2.16 optionalDependencies: '@types/node': 24.10.1 - esbuild: 0.25.11 + esbuild: 0.27.7 fsevents: 2.3.3 jiti: 2.6.1 less: 4.4.2 @@ -22700,9 +24075,9 @@ snapshots: optionalDependencies: vite: 7.1.12(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) - vitefu@1.1.1(vite@8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): + vitefu@1.1.1(vite@8.0.14(@types/node@24.10.1)(esbuild@0.27.7)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0)): optionalDependencies: - vite: 8.0.14(@types/node@24.10.1)(esbuild@0.25.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) + vite: 8.0.14(@types/node@24.10.1)(esbuild@0.27.7)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0) vitest@3.2.4(@edge-runtime/vm@3.2.0)(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.6.1)(jsdom@26.1.0)(less@4.4.2)(lightningcss@1.32.0)(sass@1.93.2)(stylus@0.62.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.9.0): dependencies: diff --git a/website/package.json b/website/package.json index 7bf581be..150157a4 100644 --- a/website/package.json +++ b/website/package.json @@ -45,7 +45,7 @@ "@vercel/og": "^0.6.5", "dotenv": "^16.4.7", "eslint": "^8.57.1", - "eslint-plugin-qwik": "2.0.0-beta.35", + "eslint-plugin-qwik": "https://pkg.pr.new/QwikDev/qwik/eslint-plugin-qwik@1778671", "gray-matter": "^4.0.3", "prettier": "^3.5.2", "rehype-external-links": "^3.0.0", @@ -57,7 +57,7 @@ "typescript": "^5.7.3", "undici": "^7.3.0", "vercel": "^32.0.0", - "vite": "8.0.14", + "vite": "7.3.5", "vite-imagetools": "^7.0.5", "vite-tsconfig-paths": "^5.1.4", "wrangler": "^4.98.0" From 3e3f563f8e7985ae3991fa954c4576183d5da4d9 Mon Sep 17 00:00:00 2001 From: maiieul <45822175+maiieul@users.noreply.github.com> Date: Thu, 11 Jun 2026 07:29:50 +0200 Subject: [PATCH 3/3] fix: type Signal --- playgrounds/qwik/src/components/TextInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playgrounds/qwik/src/components/TextInput.tsx b/playgrounds/qwik/src/components/TextInput.tsx index b869f286..4013aefe 100644 --- a/playgrounds/qwik/src/components/TextInput.tsx +++ b/playgrounds/qwik/src/components/TextInput.tsx @@ -1,5 +1,5 @@ import type { FieldElementProps } from '@formisch/qwik'; -import { component$, Signal, useSignal, useTask$ } from '@qwik.dev/core'; +import { component$, type Signal, useSignal, useTask$ } from '@qwik.dev/core'; import clsx from 'clsx'; import { InputErrors } from './InputErrors'; import { InputLabel } from './InputLabel';